Skip to content

Commit e34fd2c

Browse files
committed
rr feedback
1 parent a4f8bd0 commit e34fd2c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+260
-261
lines changed

snooty.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@ version = "5.4"
3030
full-version = "{+version+}.0"
3131
mdb-server = "MongoDB Server"
3232
package-name-org = "mongodb-org"
33-
api-root = "https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs"
34-
client-api = "{+api-root+}/mongodb-driver-sync/com/mongodb/client"
35-
core-api = "{+api-root+}/mongodb-driver-core/com/mongodb"
33+
driver-api = "https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-sync/com/mongodb/client"
34+
core-api = "https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-core/com/mongodb"
3635
stable-api = "Stable API"
3736
mongocrypt-version = "{+full-version+}"
3837
nettyVersion = "io.netty:netty-all:4.1.87.Final"

source/aggregation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Aggregation operations have some :manual:`limitations </core/aggregation-pipelin
7474
of 16 megabytes.
7575

7676
- Pipeline stages have a memory limit of 100 megabytes by default. If required, you can exceed this limit by using
77-
the `allowDiskUse <{+client-api+}/AggregateIterable.html#allowDiskUse(java.lang.Boolean)>`__
77+
the `allowDiskUse <{+driver-api+}/AggregateIterable.html#allowDiskUse(java.lang.Boolean)>`__
7878
method.
7979

8080
.. important:: ``$graphLookup`` exception

source/aggregation/aggregation-examples.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ The preceding aggregation produces the following results:
106106
For more information about the methods and classes mentioned in this section,
107107
see the following API Documentation:
108108

109-
- `MongoCollection.aggregate() <{+client-api+}/MongoCollection.html#aggregate(java.util.List)>`__
109+
- `MongoCollection.aggregate() <{+driver-api+}/MongoCollection.html#aggregate(java.util.List)>`__
110110
- `Aggregates.match <{+core-api+}/client/model/Aggregates.html#match(org.bson.conversions.Bson)>`__
111111

112112
Explain Aggregation Example
@@ -162,8 +162,8 @@ following resources:
162162
- :manual:`Explain Output </reference/explain-results/>` Server Manual Entry
163163
- :manual:`Query Plans </core/query-plans/>` Server Manual Entry
164164
- `ExplainVerbosity <{+core-api+}/ExplainVerbosity>`__ API Documentation
165-
- `explain() <{+client-api+}/FindIterable.html#explain()>`__ API Documentation
166-
- `AggregateIterable <{+client-api+}/AggregateIterable.html>`__ API Documentation
165+
- `explain() <{+driver-api+}/FindIterable.html#explain()>`__ API Documentation
166+
- `AggregateIterable <{+driver-api+}/AggregateIterable.html>`__ API Documentation
167167

168168
Aggregation Expression Example
169169
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

source/api-documentation.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@ API Documentation
77
.. meta::
88
:description: Read the API documentation for the {+driver-long+} and related packages.
99

10-
- `BSON <{+api-root+}/bson/index.html>`__ - classes for working with the
10+
- `BSON <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson/index.html>`__ - classes for working with the
1111
BSON data format.
12-
- `BSON Record Codec <{+api-root+}/bson-record-codec/index.html>`__ -
12+
- `BSON Record Codec <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson-record-codec/index.html>`__ -
1313
classes for encoding and decoding between Java records and the BSON data
1414
format.
15-
- `Core <{+api-root+}/mongodb-driver-core/index.html>`__ - classes that
15+
- `Core <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-core/index.html>`__ - classes that
1616
contain essential driver functionality.
17-
- `Java Driver (modern API) <{+api-root+}/mongodb-driver-sync/index.html>`__ -
17+
- `Java Driver (modern API) <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-sync/index.html>`__ -
1818
classes for the current driver API.
19-
- `Java Driver (legacy API) <{+api-root+}/mongodb-driver-legacy/index.html>`__ -
19+
- `Java Driver (legacy API) <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-legacy/index.html>`__ -
2020
classes that support the legacy driver API. To learn how to upgrade from the
2121
legacy API to the modern API from the :ref:`<java-legacy-api>` documentation.
2222

2323
.. toctree::
2424
:titlesonly:
2525
:maxdepth: 1
2626

27-
BSON <{+api-root+}/bson/index.html>
28-
BSON Record Codec <{+api-root+}/bson-record-codec/index.html>
29-
Core <{+api-root+}/mongodb-driver-core/index.html>
30-
Java Driver (modern API) <{+api-root+}/mongodb-driver-sync/index.html>
31-
Java Driver (legacy API) <{+api-root+}/mongodb-driver-legacy/index.html>
27+
BSON <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson/index.html>
28+
BSON Record Codec <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson-record-codec/index.html>
29+
Core <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-core/index.html>
30+
Java Driver (modern API) <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-sync/index.html>
31+
Java Driver (legacy API) <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/mongodb-driver-legacy/index.html>
3232

source/atlas-search.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ API Documentation
102102
To learn more about the methods mentioned in this guide, see
103103
the following API documentation:
104104

105-
- `MongoCollection.aggregate() <{+client-api+}/MongoCollection.html#aggregate(java.util.List)>`__
105+
- `MongoCollection.aggregate() <{+driver-api+}/MongoCollection.html#aggregate(java.util.List)>`__
106106
- `Aggregates.search() <{+core-api+}/client/model/Aggregates.html#search(com.mongodb.client.model.search.SearchCollector)>`__
107107
- `Aggregates.project() <{+core-api+}/client/model/Aggregates.html#project(org.bson.conversions.Bson)>`__

source/atlas-vector-search.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,4 +104,4 @@ guide, see the following API documentation:
104104
- `Projections.metaVectorSearchScore()
105105
<{+core-api+}/client/model/Projections.html#metaVectorSearchScore(java.lang.String)>`__
106106

107-
- `BinaryVector <{+api-root+}/bson/org/bson/BinaryVector.html>`__
107+
- `BinaryVector <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson/org/bson/BinaryVector.html>`__

source/builders/indexes.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ the field. See our guide on :ref:`Indexes <java-fundamentals-indexes>` for
3131
examples of queries covered by indexes.
3232

3333
The ``Indexes`` class provides static factory methods for all the MongoDB index types.
34-
Each method returns a `BSON <{+api-root+}/bson/org/bson/conversions/Bson.html>`__
34+
Each method returns a `BSON <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson/org/bson/conversions/Bson.html>`__
3535
instance, which you can pass to
36-
`createIndex() <{+client-api+}/MongoCollection.html#createIndex(org.bson.conversions.Bson,com.mongodb.client.model.IndexOptions)>`__.
36+
`createIndex() <{+driver-api+}/MongoCollection.html#createIndex(org.bson.conversions.Bson,com.mongodb.client.model.IndexOptions)>`__.
3737

3838
.. tip::
3939

source/builders/sort.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ For more information about the classes and interfaces in this section, see the
6969
following API Documentation:
7070

7171
- `Sorts <{+core-api+}/client/model/Sorts.html>`__
72-
- `BSON <{+api-root+}/bson/org/bson/conversions/Bson.html>`__
73-
- `FindIterable <{+client-api+}/FindIterable.html>`__
72+
- `BSON <https://mongodb.github.io/mongo-java-driver/{+version+}/apidocs/bson/org/bson/conversions/Bson.html>`__
73+
- `FindIterable <{+driver-api+}/FindIterable.html>`__
7474
- `Aggregates <{+core-api+}/client/model/Aggregates.html>`__
7575

7676
Ascending

source/command.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ API Documentation
7474

7575
For more information about the method used to run database commands, see the following API documentation:
7676

77-
- `runCommand() <{+client-api+}/MongoDatabase.html#runCommand(org.bson.conversions.Bson)>`__
77+
- `runCommand() <{+driver-api+}/MongoDatabase.html#runCommand(org.bson.conversions.Bson)>`__
7878

7979
Server Manual Entries
8080
~~~~~~~~~~~~~~~~~~~~~

source/connection/specify-connection-options/jndi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,5 +130,5 @@ JNDI Datasource.
130130
For JNDI implementations other than those listed here, you can create
131131
your own ``Factory`` wrapper based on the driver's built-in
132132
`MongoClientFactory
133-
<{+client-api+}/MongoClientFactory.html>`__
133+
<{+driver-api+}/MongoClientFactory.html>`__
134134
implementation.

source/connection/specify-connection-options/network-compression.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ API Documentation
147147
To learn more about any of the methods or types discussed in this
148148
guide, see the following API documentation:
149149

150-
- `MongoClient <{+client-api+}/MongoClient.html>`__
150+
- `MongoClient <{+driver-api+}/MongoClient.html>`__
151151
- `createSnappyCompressor() <{+core-api+}/com/mongodb/MongoCompressor.html#createSnappyCompressor()>`__
152152
- `createZlibCompressor() <{+core-api+}/com/mongodb/MongoCompressor.html#createZlibCompressor()>`__
153153
- `createZstdCompressor() <{+core-api+}/com/mongodb/MongoCompressor.html#createZstdCompressor()>`__

source/connection/specify-connection-options/stable-api.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ section, see the following API Documentation:
101101
- `ServerAddress <{+core-api+}/ServerAddress.html>`__
102102
- `MongoClientSettings <{+core-api+}/MongoClientSettings.html>`__
103103
- `MongoClientSettings.Builder <{+core-api+}/MongoClientSettings.Builder.html>`__
104-
- `MongoClients.create() <{+client-api+}/MongoClients.html#create(com.mongodb.MongoClientSettings)>`__
105-
- `MongoClient <{+client-api+}/MongoClient.html>`__
104+
- `MongoClients.create() <{+driver-api+}/MongoClients.html#create(com.mongodb.MongoClientSettings)>`__
105+
- `MongoClient <{+driver-api+}/MongoClient.html>`__
106106

107107
.. _versioned-api-options:
108108
.. _stable-api-options:

source/crud/bulk.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ document. The examples in each section use the following documents in the
7979
For more information about the methods and classes mentioned in this section,
8080
see the following API documentation:
8181

82-
- `bulkWrite() <{+client-api+}/MongoCollection.html#bulkWrite(java.util.List,com.mongodb.client.model.BulkWriteOptions)>`__
82+
- `bulkWrite() <{+driver-api+}/MongoCollection.html#bulkWrite(java.util.List,com.mongodb.client.model.BulkWriteOptions)>`__
8383
- `WriteModel <{+core-api+}/client/model/WriteModel.html>`__
8484
- `BulkWriteOptions <{+core-api+}/client/model/BulkWriteOptions.html>`__
8585

@@ -503,7 +503,7 @@ To learn more about the methods and classes mentioned in this section,
503503
see the following API documentation:
504504

505505
- `bulkWrite()
506-
<{+client-api+}/MongoCluster.html#bulkWrite(java.util.List,com.mongodb.client.model.bulk.ClientBulkWriteOptions)>`__
506+
<{+driver-api+}/MongoCluster.html#bulkWrite(java.util.List,com.mongodb.client.model.bulk.ClientBulkWriteOptions)>`__
507507
- `ClientNamespacedWriteModel
508508
<{+core-api+}/client/model/bulk/ClientNamespacedWriteModel.html>`__
509509
- `MongoNamespace <{+core-api+}/MongoNamespace.html>`__
@@ -635,14 +635,14 @@ operations in this section, see the following API documentation:
635635
MongoCollection
636636
```````````````
637637

638-
- `bulkWrite() <{+client-api+}/MongoCollection.html#bulkWrite(com.mongodb.client.ClientSession,java.util.List)>`__
638+
- `bulkWrite() <{+driver-api+}/MongoCollection.html#bulkWrite(com.mongodb.client.ClientSession,java.util.List)>`__
639639
- `BulkWriteOptions <{+core-api+}/client/model/BulkWriteOptions.html>`__
640640
- `MongoBulkWriteException <{+core-api+}/MongoBulkWriteException.html>`__
641641

642642
MongoClient
643643
```````````
644644

645-
- `bulkWrite() <{+client-api+}/MongoCluster.html#bulkWrite(com.mongodb.client.ClientSession,java.util.List)>`__
645+
- `bulkWrite() <{+driver-api+}/MongoCluster.html#bulkWrite(com.mongodb.client.ClientSession,java.util.List)>`__
646646
- `ClientBulkWriteOptions <{+core-api+}/client/model/bulk/ClientBulkWriteOptions.html>`__
647647
- `ClientBulkWriteResult <{+core-api+}/client/model/bulk/ClientBulkWriteResult.html>`__
648648

source/crud/collations.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -369,8 +369,8 @@ the output resembles the following:
369369
For more information about the methods and classes mentioned in this section,
370370
see the following API Documentation:
371371

372-
- `find() <{+client-api+}/MongoCollection.html#find()>`__
373-
- `sort() <{+client-api+}/FindIterable.html#sort(org.bson.conversions.Bson)>`__
372+
- `find() <{+driver-api+}/MongoCollection.html#find()>`__
373+
- `sort() <{+driver-api+}/FindIterable.html#sort(org.bson.conversions.Bson)>`__
374374
- `Sorts <{+core-api+}/client/model/Sorts.html>`__
375375

376376
findOneAndUpdate() Example
@@ -418,7 +418,7 @@ returns the following update document:
418418
For more information about the methods and classes mentioned in this section,
419419
see the following API Documentation:
420420

421-
- `findOneAndUpdate <{+client-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__
421+
- `findOneAndUpdate <{+driver-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__
422422
- `findOneAndUpdateOptions <{+core-api+}/client/model/FindOneAndUpdateOptions.html>`__
423423
- `Filters <{+core-api+}/client/model/Filters.html>`__
424424
- `Updates <{+core-api+}/client/model/Updates.html>`__
@@ -478,7 +478,7 @@ by binary collation.
478478
For more information about the methods and classes mentioned in this section,
479479
see the following API Documentation:
480480

481-
- `findOneAndDelete <{+client-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson)>`__
481+
- `findOneAndDelete <{+driver-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson)>`__
482482
- `FindOneAndDeleteOptions <{+core-api+}/client/model/FindOneAndDeleteOptions.html>`__
483483
- `Filters <{+core-api+}/client/model/Filters.html>`__
484484
- `Sorts <{+core-api+}/client/model/Sorts.html>`__
@@ -530,8 +530,8 @@ The preceding code outputs the following documents:
530530
For more information about the methods and classes mentioned in this section,
531531
see the following API Documentation:
532532

533-
- `aggregate() <{+client-api+}/MongoCollection.html#aggregate(java.util.List)>`__
534-
- `AggregateIterable <{+client-api+}/AggregateIterable.html>`__
533+
- `aggregate() <{+driver-api+}/MongoCollection.html#aggregate(java.util.List)>`__
534+
- `AggregateIterable <{+driver-api+}/AggregateIterable.html>`__
535535
- `CollationStrength <{+core-api+}/client/model/CollationStrength.html>`__
536536
- `Accumulators <{+core-api+}/client/model/Accumulators.html>`__
537537
- `Aggregates <{+core-api+}/client/model/Aggregates.html>`__

source/crud/compound-operations.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ For more information about the upsert operation, see our
109109
For more information about the methods and classes mentioned in this section,
110110
see the following API Documentation:
111111

112-
- `findOneAndUpdate() <{+client-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__
112+
- `findOneAndUpdate() <{+driver-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__
113113
- `FindOneAndUpdateOptions <{+core-api+}/client/model/FindOneAndUpdateOptions.html>`__
114114
- `MongoExecutionTimeoutException <{+core-api+}/MongoExecutionTimeoutException.html>`__
115115

@@ -154,7 +154,7 @@ The output of the preceding code resembles the following:
154154
For more information about the methods and classes mentioned in this section,
155155
see the following API Documentation:
156156

157-
- `findOneAndReplace() <{+client-api+}/MongoCollection.html#findOneAndReplace(org.bson.conversions.Bson,TDocument,com.mongodb.client.model.FindOneAndReplaceOptions)>`__
157+
- `findOneAndReplace() <{+driver-api+}/MongoCollection.html#findOneAndReplace(org.bson.conversions.Bson,TDocument,com.mongodb.client.model.FindOneAndReplaceOptions)>`__
158158
- `FindOneAndReplaceOptions <{+core-api+}/client/model/FindOneAndReplaceOptions.html>`__
159159

160160
Find and Delete
@@ -192,7 +192,7 @@ For more information about the ``Sorts`` class, see our
192192
For more information about the methods and classes mentioned in this section,
193193
see the following API Documentation:
194194

195-
- `findOneAndDelete() <{+client-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson,com.mongodb.client.model.FindOneAndDeleteOptions)>`__
195+
- `findOneAndDelete() <{+driver-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson,com.mongodb.client.model.FindOneAndDeleteOptions)>`__
196196
- `FindOneAndDeleteOptions <{+core-api+}/client/model/FindOneAndDeleteOptions.html>`__
197197

198198
Avoiding a Race Condition
@@ -324,4 +324,4 @@ For more information of the ``Filters`` class, see our
324324
:ref:`guide on the Filters builder <filters-builders>`.
325325

326326
For more information about the ``findOneAndUpdate()`` method, see
327-
the API Documentation for the `MongoCollection class <{+client-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__.
327+
the API Documentation for the `MongoCollection class <{+driver-api+}/MongoCollection.html#findOneAndUpdate(org.bson.conversions.Bson,java.util.List,com.mongodb.client.model.FindOneAndUpdateOptions)>`__.

source/crud/crud-settings.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ and concerns from the ``MongoClient`` that accesses them. See the
2828
more information. However, you can apply custom settings to your individual databases and
2929
collections by using the following methods:
3030

31-
- `MongoDatabase.withReadConcern() <{+client-api+}/MongoDatabase.html#withReadConcern(com.mongodb.ReadConcern)>`__
31+
- `MongoDatabase.withReadConcern() <{+driver-api+}/MongoDatabase.html#withReadConcern(com.mongodb.ReadConcern)>`__
3232

33-
- `MongoDatabase.withReadPreference() <{+client-api+}/MongoDatabase.html#withReadPreference(com.mongodb.ReadPreference)>`__
33+
- `MongoDatabase.withReadPreference() <{+driver-api+}/MongoDatabase.html#withReadPreference(com.mongodb.ReadPreference)>`__
3434

35-
- `MongoDatabase.withWriteConcern() <{+client-api+}/MongoDatabase.html#withWriteConcern(com.mongodb.WriteConcern)>`__
35+
- `MongoDatabase.withWriteConcern() <{+driver-api+}/MongoDatabase.html#withWriteConcern(com.mongodb.WriteConcern)>`__
3636

37-
- `MongoCollection.withReadConcern() <{+client-api+}/MongoCollection.html#withReadConcern(com.mongodb.ReadConcern)>`__
37+
- `MongoCollection.withReadConcern() <{+driver-api+}/MongoCollection.html#withReadConcern(com.mongodb.ReadConcern)>`__
3838

39-
- `MongoCollection.withReadPreference() <{+client-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__
39+
- `MongoCollection.withReadPreference() <{+driver-api+}/MongoCollection.html#withReadPreference(com.mongodb.ReadPreference)>`__
4040

41-
- `MongoCollection.withWriteConcern() <{+client-api+}/MongoCollection.html#withWriteConcern(com.mongodb.WriteConcern)>`__
41+
- `MongoCollection.withWriteConcern() <{+driver-api+}/MongoCollection.html#withWriteConcern(com.mongodb.WriteConcern)>`__
4242

4343
.. tip::
4444

source/crud/delete.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ API Documentation
193193

194194
For more information about the methods and classes used to delete documents, see the following API documentation:
195195

196-
- `deleteOne() <{+client-api+}/MongoCollection.html#deleteOne(org.bson.conversions.Bson)>`__
197-
- `deleteMany() <{+client-api+}/MongoCollection.html#deleteMany(org.bson.conversions.Bson)>`__
198-
- `findOneAndDelete() <{+client-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson)>`__
196+
- `deleteOne() <{+driver-api+}/MongoCollection.html#deleteOne(org.bson.conversions.Bson)>`__
197+
- `deleteMany() <{+driver-api+}/MongoCollection.html#deleteMany(org.bson.conversions.Bson)>`__
198+
- `findOneAndDelete() <{+driver-api+}/MongoCollection.html#findOneAndDelete(org.bson.conversions.Bson)>`__
199199
- `DeleteOptions <{+core-api+}/client/model/DeleteOptions.html>`__
200200
- `FindOneAndDeleteOptions <{+core-api+}/client/model/FindOneAndDeleteOptions.html>`__
201201
- `DeleteResult <{+core-api+}/client/result/DeleteResult.html>`__

0 commit comments

Comments
 (0)