Skip to content

Instantly share code, notes, and snippets.

@countnazgul
Last active April 17, 2022 18:54
Show Gist options
  • Save countnazgul/d33533f75b87ebf1df41 to your computer and use it in GitHub Desktop.
Save countnazgul/d33533f75b87ebf1df41 to your computer and use it in GitHub Desktop.
[Limit number of returned docs] Limit number of MongoDB query #mongo #mongoose
Posts
.find({})
.sort({})
.limit(5)
.exec(function(err, posts) {
console.log(posts)
});
@jacksUWIld76
Copy link

MongoDB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment