Skip to content

Commit d9a33d9

Browse files
committed
reduce info
1 parent ad5ea28 commit d9a33d9

File tree

1 file changed

+3
-5
lines changed
  • source/fundamentals/crud/write-operations

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -499,11 +499,9 @@ databases and collections at once.
499499
To perform a client bulk operation, you create an pass a list of
500500
``ClientNamespacedWriteModel`` instances to this method.
501501

502-
There are six subtypes of ``ClientNamespacedWriteModel``: ``ClientNamespacedInsertOneModel``,
503-
``ClientNamespacedUpdateOneModel``, ``ClientNamespacedUpdateManyModel``,
504-
``ClientNamespacedReplaceOneModel``, ``ClientNamespacedDeleteOneModel``, and
505-
``ClientNamespacedDeleteManyModel``. To construct these write models, you can
506-
use the ``ClientNamespacedWriteModel`` methods ``insertOne()``, ``updateOne()``,
502+
There are six subtypes of ``ClientNamespacedWriteModel`` that are used to
503+
represent write operations. To construct these write models, you can use the
504+
corresponding ``ClientNamespacedWriteModel`` methods ``insertOne()``, ``updateOne()``,
507505
``updateMany()``, ``replaceOne()``, ``deleteOne()``, and ``deleteMany()``. These
508506
methods take a ``MongoNamespace`` object that defines which
509507
database and collection to write to.

0 commit comments

Comments
 (0)