Reputation: 1476
My problem is that I want to return the docs of the last five created entries in the database. I know that something like:
return Events.find({}, {sort: {createdOn: -1, limit: 5}});
should work but it does not.
Upvotes: 1
Views: 58