mongodbHow to update one document in MongoDB?
Updating a document in MongoDB is a simple process. The following example code block shows how to update a document in MongoDB using the updateOne()
method:
db.collection.updateOne(
<filter>,
<update>,
{
upsert: <boolean>,
writeConcern: <document>
}
)
The updateOne()
method takes three parameters:
filter
: A document that specifies the criteria for selecting the document to update.update
: A document that specifies the modifications to apply to the document.options
: An optional parameter that specifies additional options for the update operation.
The output of the example code above would be a UpdateResult
object, which contains information about the update operation.
For more information, please refer to the MongoDB documentation.
More of Mongodb
- How to use watch in MongoDB?
- How to create a many to many relation in MongoDB?
- How to use elemmatch in MongoDB?
- How to bind IP addresses for MongoDB server?
- How to use MongoDB queue?
- How to drop a collection in MongoDB?
- How to use the limit operator in MongoDB?
- How to join two collections in MongoDB?
- How to list MongoDB users?
See more codes...