- Reference >
mongoShell Methods >- Collection Methods >
- db.collection.findOneAndReplace()
db.collection.findOneAndReplace()¶
On this page
Definition¶
-
db.collection.findOneAndReplace(filter, replacement, options)¶ New in version 3.2.
Modifies and replaces a single document based on the
filterandsortcriteria.The
findOneAndReplace()method has the following form:The
findOneAndReplace()method takes the following parameters:Parameter Type Description filterdocument The selection criteria for the update. The same query selectors as in the
find()method are available.Specify an empty document
{ }to replace the first document returned in the collection.replacementdocument The replacement document.
Cannot contain update operators.
The
<replacement>document cannot specify an_idvalue that differs from the replaced document.projectiondocument Optional. A subset of fields to return.
To return all fields in the matching document, omit this parameter.
sortdocument Optional. Specifies a sorting order for the documents matched by the
filter.See
cursor.sort().maxTimeMSnumber Optional. Specifies a time limit in milliseconds within which the operation must complete. Throws an error if the limit is exceeded. upsertboolean Optional. When
true,findOneAndReplace()either:- Inserts the document from the
replacementparameter if no document matches thefilter. Returnsnullafter inserting the new document, unlessreturnNewDocumentistrue. - Replaces the document that matches the
filterwith thereplacementdocument.
MongoDB will add the
_idfield to the replacement document if it is not specified in either thefilterorreplacementdocuments. If_idis present in both, the values must be equal.To avoid multiple upserts, ensure that the
queryfields are uniquely indexed.Defaults to
false.returnNewDocumentboolean Optional. When
true, returns the replacement document instead of the original document.Defaults to
false.Returns: Returns either the original document or, if returnNewDocument: true, the replacement document.- Inserts the document from the
Behavior¶
findOneAndReplace() replaces the first matching
document in the collection that matches the filter.
The sort parameter can be used to influence which document is modified.
The projection parameter takes a document in the following form:
The <boolean> value can be any of the following:
1ortrueto include the field. The method returns the_idfield even if it is not explicitly stated in the projection parameter.0orfalseto exclude the field. This can be used on any field, including_id.
Examples¶
Replace A Document¶
The scores collection contains documents similar to the following:
The following operation finds a document with score less than
20000 and replaces it:
The operation returns the original document that has been replaced:
If returnNewDocument was true, the operation would return the replacement
document instead.
Although multiple documents meet the filter criteria,
db.collection.findOneAndReplace replaces only one document.
Sort and Replace A Document¶
The scores collection contains documents similar to the following:
By including ascending sort order on the score field, the
following example replaces the document with lowest score among the
matching documents:
The operation returns the original document that has been replaced:
See Replace A Document for the non-sorted result of this command.
Project Specific Fields in Return Document¶
The scores collection contains documents similar to the following:
The following operation uses projection to only display the team field in
the returned document:
The operation returns the original document with only the team field:
Replace Document with Time Limit¶
The following operation sets a 5ms time limit to complete:
If the operation exceeds the time limit, it returns:
Replace Document with Upsert¶
The following operation uses the upsert field to insert the replacement
document if nothing matches the filter:
The operation returns the following:
If returnNewDocument was false, the operation would return null as
there is no original document to return.