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

Method deleted_count

pymongo/results.py:203–206  ·  view source on GitHub ↗

The number of documents deleted.

(self)

Source from the content-addressed store, hash-verified

201
202 @property
203 def deleted_count(self) -> int:
204 """The number of documents deleted."""
205 self._raise_if_unacknowledged("deleted_count")
206 return self.__raw_result.get("n", 0)
207
208
209class _BulkWriteResultBase(_WriteResult):

Callers

nothing calls this directly

Calls 2

getMethod · 0.45

Tested by

no test coverage detected