Skip to content

Instantly share code, notes, and snippets.

@lucwj
Created October 15, 2017 16:21
Show Gist options
  • Save lucwj/af13954dd30b43ae7b4d3c25eb825109 to your computer and use it in GitHub Desktop.
Save lucwj/af13954dd30b43ae7b4d3c25eb825109 to your computer and use it in GitHub Desktop.
MongoDB Tip

Find and update

db.distributedomains.find().snapshot().forEach(
    function (elem) {
        db.distributedomains.update(
            {
                _id: elem._id
            },
            {
                $set: {
                    suffix: elem.domain.split(".")[1]
                }
            }
        );
    }
)

Update Many

db.users.updateMany({ order: 1 }, { $set: { order: 2} })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment