Skip to content

Commit 7558707

Browse files
committed
add links
1 parent 815dd63 commit 7558707

File tree

1 file changed

+9
-4
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+9
-4
lines changed

source/fundamentals/crud/write-operations/modify.txt

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff 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

7880
You can create the ``updateDocument`` using an ``Updates`` builder as
7981
follows:
@@ -188,11 +190,14 @@ Replace Operation Parameters
188190

189191
The ``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

197202
Replace One Example
198203
~~~~~~~~~~~~~~~~~~~

0 commit comments

Comments
 (0)