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

Method delete_results

pymongo/results.py:360–367  ·  view source on GitHub ↗

A map of successful delete operations to their results.

(self)

Source from the content-addressed store, hash-verified

358
359 @property
360 def delete_results(self) -> Mapping[int, DeleteResult]:
361 """A map of successful delete operations to their results."""
362 self._raise_if_unacknowledged("delete_results")
363 self._raise_if_not_verbose("delete_results")
364 return cast(
365 Mapping[int, DeleteResult],
366 self.bulk_api_result.get("deleteResults"),
367 )

Callers

nothing calls this directly

Calls 3

_raise_if_not_verboseMethod · 0.95
getMethod · 0.45

Tested by

no test coverage detected