File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
source/fundamentals/crud/write-operations Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,9 @@ parameters:
7373 builder </fundamentals/builders/updates>` to create the update
7474 document.
7575- *(Optional)* ``updateOptions`` specifies options that you can set to
76- customize how the driver performs the update operation.
76+ customize how the driver performs the update operation. To learn more
77+ about this type, see the API documentation for `UpdateOptions
78+ <{+api+}/apidocs/mongodb-driver-core/com/mongodb/client/model/UpdateOptions.html>`__
7779
7880You can create the ``updateDocument`` using an ``Updates`` builder as
7981follows:
@@ -188,11 +190,14 @@ Replace Operation Parameters
188190
189191The ``replaceOne()`` method has the following parameters:
190192
191- - ``query`` specifies a query filter with the criteria to match a document to replace in your collection
193+ - ``query`` specifies a query filter with the criteria to match a
194+ document to replace in your collection.
192195- ``replacement`` specifies fields and values of a new ``Document``
193- object to replace in the matched document
196+ object to replace in the matched document.
194197- *(Optional)* ``replaceOptions`` specifies options that you can set to
195- customize how the driver performs the replace operation
198+ customize how the driver performs the replace operation. To learn more
199+ about this type, see the API documentation for `ReplaceOptions
200+ <{+api+}/apidocs/mongodb-driver-core/com/mongodb/client/model/ReplaceOptions.html>`__
196201
197202Replace One Example
198203~~~~~~~~~~~~~~~~~~~
You can’t perform that action at this time.
0 commit comments