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 check the version of MongoDB?
- How to use watch in MongoDB?
- How to update many documents in MongoDB?
- How to use MongoDB queue?
- How to create a many to many relation in MongoDB?
- How to insert new document into MongoDB?
- How to use hint in MongoDB?
- How to work with time series data in MongoDB?
- How to use unwind in MongoDB?
See more codes...