Skip to content

Instantly share code, notes, and snippets.

@songthamtung
Last active December 7, 2018 05:24
Show Gist options
  • Save songthamtung/546a938a88fa5dbd34b1504e2f9e2085 to your computer and use it in GitHub Desktop.
Save songthamtung/546a938a88fa5dbd34b1504e2f9e2085 to your computer and use it in GitHub Desktop.
// unset all users' rank from db
await User.bulkWrite([{updateMany : {
filter: { rank: {$exists: true}},
update: { $unset: { rank: 1 } }
}
}])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment