The number of documents modified.
(self)
| 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: |
nothing calls this directly
no test coverage detected