Skip to content

Instantly share code, notes, and snippets.

@godie007
Created October 6, 2017 16:08
Show Gist options
  • Select an option

  • Save godie007/beba99b4b1e450fd9006780f1580f00d to your computer and use it in GitHub Desktop.

Select an option

Save godie007/beba99b4b1e450fd9006780f1580f00d to your computer and use it in GitHub Desktop.
Convertir campos String a ObjectId MongoDB
db.getCollection('products').find().forEach(function (doc) {
db.getCollection('products').update({ _id : doc._id},{$set:{
"establishment":ObjectId(doc.establishment)
}});
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment