mongoose-aggregate-paginate-v2
mongoose-aggregate-paginate-v2 copied to clipboard
Pass limit 0 to return only the meta
In the mongoose-paginate-v2 package you can pass limit of 0 to return only the meta data and no docs.
Zero limit
You can use limit=0 to get only metadata:
Model.paginate({}, { limit: 0 }).then(function (result) {
// result.docs - empty array
// result.totalDocs
// result.limit - 0
});
I would very much think that having this functionality here would be great as well!
Thoughts?