The CRUD API spec calls for a bulkWrite methods like so:
bulkWrite(requests: WriteModel[], options: Optional<BulkWriteOptions>): BulkWriteResult;
This is not particularly idiomatic for Go and it requires pre-allocating all the models, which isn't ideal for "open-ended" operations.
We should consider a more idiomatic approach and implement that instead of the literal method called for in the CRUD spec.
- is duplicated by
-
GODRIVER-584 Implement bulkWrite functionality
- Closed