The number of documents matched for an update.
(self)
| 231 | |
| 232 | @property |
| 233 | def matched_count(self) -> int: |
| 234 | """The number of documents matched for an update.""" |
| 235 | self._raise_if_unacknowledged("matched_count") |
| 236 | return cast(int, self.__bulk_api_result.get("nMatched")) |
| 237 | |
| 238 | @property |
| 239 | def modified_count(self) -> int: |
nothing calls this directly
no test coverage detected