Skip to content

Instantly share code, notes, and snippets.

@cgriego
Created October 15, 2010 15:41
Show Gist options
  • Save cgriego/628403 to your computer and use it in GitHub Desktop.
Save cgriego/628403 to your computer and use it in GitHub Desktop.
// 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