Skip to content

Instantly share code, notes, and snippets.

@codegirl-007
Created April 13, 2015 19:10
Show Gist options
  • Save codegirl-007/43a710b0edf6682b0854 to your computer and use it in GitHub Desktop.
Save codegirl-007/43a710b0edf6682b0854 to your computer and use it in GitHub Desktop.
Duplicate document in Mongo
var copy = db.collection.findOne({_id : ObjectId("552c0709d07e391454f649df")},{_id:0});
for (var i = 0; i< 10; i++){
db.collection.insert(copy);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment