ginsul

Untitled

Apr 18th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.25 KB | None | 0 0
  1. #a data item
  2. {
  3.   pet:cat,
  4.   preferences:{
  5.     food:canned,
  6.     otherPets:dog
  7.   }
  8. }
  9.  
  10. #the following would find all cats that prefer canned food
  11. db.getCollection('petCollection').find(
  12. {
  13.   pet:cat,
  14.   preferences:{
  15.     food:canned
  16.   }
  17. })
Advertisement
Add Comment
Please, Sign In to add comment