Skip to content

Instantly share code, notes, and snippets.

@shamalroy
Created August 15, 2015 01:44
Show Gist options
  • Save shamalroy/daeb49bc0a7256334eb9 to your computer and use it in GitHub Desktop.
Save shamalroy/daeb49bc0a7256334eb9 to your computer and use it in GitHub Desktop.
MongoDB find documents
db.myCollection.find({ "name": "Manhattan" })
db.myCollection.find({ "detail.age": 25 })
db.myCollection.find({ "detail.age": { $lt: 60 }})
db.myCollection.find({ $or: [{"name": "My Name"}, {"detail.age": 25 } ]})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment