The number of documents inserted.
(self)
| 225 | |
| 226 | @property |
| 227 | def inserted_count(self) -> int: |
| 228 | """The number of documents inserted.""" |
| 229 | self._raise_if_unacknowledged("inserted_count") |
| 230 | return cast(int, self.__bulk_api_result.get("nInserted")) |
| 231 | |
| 232 | @property |
| 233 | def matched_count(self) -> int: |
nothing calls this directly
no test coverage detected