mongodb_ecto icon indicating copy to clipboard operation
mongodb_ecto copied to clipboard

MongoDB adapter for Ecto

Results 27 mongodb_ecto issues
Sort by recently updated
recently updated
newest added
trafficstars

Use case is for basing an aggregation query on an ecto query. I would be willing to work on this.

This PR switches the adapter over to https://github.com/zookzook/elixir-mongodb-driver . ~~Currently, the mix.exs/mix.lock file is pointed at our fork at https://github.com/hundio/elixir-mongodb-driver until a Hex release is made with the required adapter...

`Ecto.Integration.Order` doesn't have `:meta` key in his struct, instead it has `:metadata`. Also changing the version of `ssl_verify_fun` to `1.1.7`

Here's my query, selecting that first 10 elements from user's collection. ```users = Repo.all(from(u in UserModel, limit: 4, select: u))``` When I run this I get this errror ``` **...

Hi, I came across https://hex.pm/packages/mongodb_driver which supports Mongo v6 and according to it's docs also supports mongodb_ecto package. However it seems like this package (mongodb_ecto) is using mongodb package for...

Although the `Mongo.Ecto` API has no breaking changes, the underlying MongoDB driver changes (https://github.com/elixir-mongo/mongodb_ecto/pull/190), which I believe justifies a major version bump. I've added a migration guide to the Readme.

Using ecto 3.12.5, attempting to sort the result of a query with the following query pipeline ``` iex(17)> TodoItem |> order_by(asc: :id) |> Repo.all ``` results in the error ```...