MCPcopy Index your code
hub / github.com/mongodb/mongo-python-driver / modified_count

Method modified_count

pymongo/results.py:239–242  ·  view source on GitHub ↗

The number of documents modified.

(self)

Source from the content-addressed store, hash-verified

237
238 @property
239 def modified_count(self) -> int:
240 """The number of documents modified."""
241 self._raise_if_unacknowledged("modified_count")
242 return cast(int, self.__bulk_api_result.get("nModified"))
243
244 @property
245 def deleted_count(self) -> int:

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected