Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #a data item
- {
- pet:cat,
- preferences:{
- food:canned,
- otherPets:dog
- }
- }
- #the following would find all cats that prefer canned food
- db.getCollection('petCollection').find(
- {
- pet:cat,
- preferences:{
- food:canned
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment