Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. {
  2. {
  3. "_id": "someid|goes|here",
  4. "collected": {
  5. "tags": ["abc", "def", "ghi"]
  6. }
  7. },
  8. {
  9. "_id": "someid1|goes|here",
  10. "collected": {
  11. "tags": ["abc", "klm","pqr"]
  12. },
  13. },
  14. {
  15. "_id": "someid2|goes|here",
  16. "collected": {
  17. "tags": ["efg", "hij","klm"]
  18. },
  19. }
  20. }
  21.  
  22. {
  23. "selector": {
  24. "collected.tags": {
  25. "$regex": "abc"
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement