Skip to content

Instantly share code, notes, and snippets.

@ranamahmud
Created December 20, 2020 17:24
Show Gist options
  • Save ranamahmud/cc4adb1668e9f99084d6c102cb3703f4 to your computer and use it in GitHub Desktop.
Save ranamahmud/cc4adb1668e9f99084d6c102cb3703f4 to your computer and use it in GitHub Desktop.
mongo query
try {
db.studentCollection.updateMany(
{ status: "pending" },
{ $set: { "status" : "verified" } }
);
} catch (e) {
print(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment