Skip to content

Instantly share code, notes, and snippets.

@aitchkhan
Created February 2, 2017 12:26
Show Gist options
  • Save aitchkhan/4909a361c5abec16c8e875f522ded357 to your computer and use it in GitHub Desktop.
Save aitchkhan/4909a361c5abec16c8e875f522ded357 to your computer and use it in GitHub Desktop.
pushes multiple embedded doc to an array
//pushes multiple embedded doc to array
db.latestItems.update({}, {
$push: {
items: {
$each: [ {item_name: 'third item', price: 20 }, {item_name: 'forth item', price: 50 }]
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment