When inserting, updating or deleting multiple documents at once I think the recommended and optimal way is to use http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#bulkWrite.
It can also helps implementing patching of multiple objects using different filter queries at the same time.
So I wonder if you think it is worth considering using it to standardize the underlying interface ?
It might also help to solve #122.
When inserting, updating or deleting multiple documents at once I think the recommended and optimal way is to use http://mongodb.github.io/node-mongodb-native/3.1/api/Collection.html#bulkWrite.
It can also helps implementing patching of multiple objects using different filter queries at the same time.
So I wonder if you think it is worth considering using it to standardize the underlying interface ?
It might also help to solve #122.