Guest User

Untitled

a guest
Dec 14th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. ("item.property": "attr1") AND ("item.property": /^+/)
  2.  
  3. collection.aggregate(
  4. { $match:
  5. { $and:
  6. [
  7. { "item.property": "attr1" },
  8. { "item.property": /^+/ }
  9. ]
  10. }
  11. }
Add Comment
Please, Sign In to add comment