Created
October 15, 2010 15:41
-
-
Save cgriego/628403 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// I want to unset comments.moderated for embedded document in the whole collection | |
{ | |
"_id" : ObjectId("4cb7f2d5fe38855e43897d13"), | |
"title" : "Blog Examples Considered Harmful", | |
"comments" : [ | |
{ | |
"by" : "Bob", | |
"moderated" : true, | |
"text" : "first!" | |
}, | |
{ | |
"by" : "Jane", | |
"moderated" : false, | |
"text" : "first!!" | |
} | |
] | |
}, | |
{ | |
"_id" : ObjectId("4cb7f2d5fe38855e43897d13"), | |
"title" : "Typical Blog Example", | |
"comments" : [ | |
{ | |
"by" : "Joe", | |
"moderated" : true, | |
"text" : "first!" | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment