diff --git a/server/admin.api.js b/server/admin.api.js index 1d9b5a2bd..d0676f47f 100644 --- a/server/admin.api.js +++ b/server/admin.api.js @@ -45,7 +45,7 @@ export default function createAdminApi(vite) { updatedAt : { $lt: Moment().subtract(30, 'days').toDate() }, lastViewed : { $lt: Moment().subtract(30, 'days').toDate() } } }, - { $project: { _id: 1, textBinSize: { $binarySize: '$textBin' } } }, + { $project: { _id: 1, textBinSize: { $binarySize: '$textBin' }, updatedAt: 1, lastViewed: 1} }, { $match: { textBinSize: { $lt: 140 } } }, { $limit: 300 } ];