Guest User

Untitled

a guest
Nov 23rd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. {
  2. "$and" : [
  3. {
  4. "temp" : {
  5. "$type" : "string"
  6. }
  7. },
  8. {
  9. "$or" : [
  10. {
  11. "user" : {
  12. "$exists" : "false",
  13. "$type" : "null"
  14. }
  15. },
  16. {
  17. "user.name" : {
  18. "$type" : "string",
  19. "$exists" : "true"
  20. }
  21. }
  22. ]
  23. }
  24. ]
  25. }
Add Comment
Please, Sign In to add comment