mongo-driver-3 icon indicating copy to clipboard operation
mongo-driver-3 copied to clipboard

A Mongo client for Clojure, lightly wrapping 3.11/4.0+ versions of the Java driver

Results 3 mongo-driver-3 issues
Sort by recently updated
recently updated
newest added

Comparing `mongo-driver-3.operator` with https://www.mongodb.com/docs/manual/reference/operator/update/, I spotted what looks like a typo: a `$pushAll` operator is defined, while according to the official docs, there should be a `$pullAll` operator, and (apparently...)...

Best to see the diff with whitespace diff turned off: https://github.com/gnarroway/mongo-driver-3/pull/13/files?w=1 There's a bug in `replace-one` - the arity without options is dispatching to `find-and-replace-one` rather than itself.

In my use case, I found I could benefit from a Mongo update (updateOne or updateMany) call where the update is an [aggregation pipeline](https://www.mongodb.com/docs/manual/tutorial/update-documents-with-aggregation-pipeline/) -- a list of operations rather...