Advertisement
Guest User

Untitled

a guest
May 30th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. {
  2. field: {
  3. propa: 'valuea',
  4. propb: {
  5. propc: 'valueb'
  6. }
  7. }
  8. }
  9.  
  10. // "field"#>>'{propa}' = 'valuea' AND "field"#>>'{propb, propc}' = 'valueb'
  11.  
  12. {
  13. field: {
  14. $contains: {
  15. company: "Magnafone"
  16. }
  17. }
  18. }
  19. // field @> '{"company": "Magnafone"}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement