Create a new batch indexer from the client with a given chunk size
(self, chunk_size=100)
| 895 | return self._to_string_recursive(res) |
| 896 | |
| 897 | def batch_indexer(self, chunk_size=100): |
| 898 | """ |
| 899 | Create a new batch indexer from the client with a given chunk size |
| 900 | """ |
| 901 | return self.BatchIndexer(self, chunk_size=chunk_size) |
| 902 | |
| 903 | def create_index( |
| 904 | self, |
no outgoing calls