Skip to content

Instantly share code, notes, and snippets.

@Eomm
Created February 4, 2020 15:56
Show Gist options
  • Save Eomm/03210ced5adf802600b01b74acc6dde4 to your computer and use it in GitHub Desktop.
Save Eomm/03210ced5adf802600b01b74acc6dde4 to your computer and use it in GitHub Desktop.
Mongo copy-paste
db.getCollection("aaaaaaa").find({}).limit(10)
.forEach(function(i) {
delete i._id;
i._id = UUID().toString().split('"')[1]
i.when = new Date();
i.userId = "from_ONE_2_TWO";
db.getCollection("aaaaaaaa").insert(i);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment