The number of documents upserted.
(self)
| 252 | |
| 253 | @property |
| 254 | def upserted_count(self) -> int: |
| 255 | """The number of documents upserted.""" |
| 256 | self._raise_if_unacknowledged("upserted_count") |
| 257 | return cast(int, self.__bulk_api_result.get("nUpserted")) |
| 258 | |
| 259 | |
| 260 | class BulkWriteResult(_BulkWriteResultBase): |
nothing calls this directly
no test coverage detected