Guest User

Untitled

a guest
Jun 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. // I want to unset comments.moderated for embedded document in the whole collection
  2. {
  3. "_id" : ObjectId("4cb7f2d5fe38855e43897d13"),
  4. "title" : "Blog Examples Considered Harmful",
  5. "comments" : [
  6. {
  7. "by" : "Bob",
  8. "moderated" : true,
  9. "text" : "first!"
  10. },
  11. {
  12. "by" : "Jane",
  13. "moderated" : false,
  14. "text" : "first!!"
  15. }
  16. ]
  17. },
  18. {
  19. "_id" : ObjectId("4cb7f2d5fe38855e43897d13"),
  20. "title" : "Typical Blog Example",
  21. "comments" : [
  22. {
  23. "by" : "Joe",
  24. "moderated" : true,
  25. "text" : "first!"
  26. },
  27. ]
  28. }
Add Comment
Please, Sign In to add comment