rethinkdb_ecto
rethinkdb_ecto copied to clipboard
RethinkDB adapter for Ecto.
Hello, I followed the directions in setting up an `Api.Repo`. Everytime I use `Api.Repo.all(Api.Tick)`, I get the following error ``` ** (KeyError) key :fields not found in: %{prefix: nil, preloads:...
## Issue If I have two schemas that are related through a `many_to_many` relationship using a [Join schema](https://hexdocs.pm/ecto/Ecto.Schema.html#many_to_many/3-join-schema-example), I do not get the expected number of results (I get too...
There are some semantic conflicts between rethinkdb default behavior on update and Ecto integration tests that will need to be resolved: See discussion here: https://github.com/hamiltop/rethinkdb-elixir/issues/115
I was running the example in Ecto's doc for [optimistic locking](https://hexdocs.pm/ecto/Ecto.Changeset.html#optimistic_lock/3) while using RethinkDB.Ecto as the adapter. `Repo.update!(stale_change)` didn't update the row, but it didn't throw a `Ecto.StaleModelError` either. What...