Answers for "how to delete a field from a document in mongodb"

Go
5

how to delete a document in mongodb

to delete a document
db.games.deleteOne({name:"Snake"})
Posted by: Guest on May-27-2021
1

how to remove field from document in mongodb

=> Use the $unset field update operator to completely remove a field from a document.
{ $unset: { "field_name": "value" } }

=> You can specify multiple fields to remove by separating them with a comma.
{ $unset: { name: "", weight: "" } }
Posted by: Guest on June-09-2021

Code answers related to "how to delete a field from a document in mongodb"

Browse Popular Code Answers by Language