Skip to content

Instantly share code, notes, and snippets.

@lifeisfoo
Created November 28, 2016 15:22
Show Gist options
  • Save lifeisfoo/e60e46957214ae58efe506f8a91dc556 to your computer and use it in GitHub Desktop.
Save lifeisfoo/e60e46957214ae58efe506f8a91dc556 to your computer and use it in GitHub Desktop.
Lowercase a field
db.products.find().forEach(
function(doc) {
if (!!doc.variants) {
for (i = 0, len = doc.variants.length; i < len; i++) {
doc.variants[i].sku = doc.variants[i].sku.toLowerCase();
}
}
db.products.save(doc);
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment