-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Ecto 4.0? #18
Comments
In addition, is there another way to query ArangoDB without relying on |
@tbm206 I suppose you mean Ecto 3.0, since there exists no version 4.0 as of now (https://www.hex.pm/packages/ecto/versions). I have been meaning to update the adapter to Ecto 3.0 for a while now, but unfortunately I never found enough time. You can always resort to pure AQL like this: {:ok, result} = ArangoDB.Ecto.query(MyRepo, """
FOR d in docs
FILTER ...
RETURN d
""") This will use the DB settings from your Repo configuration. |
I know this is an old issue but just in case someone is looking at this in the future. I have made an adapter for ArangoDB for Ecto 3.x. It also implements some additional features such as better support for graphs, geo data, etc. |
Thanks @TomGrozev ! Are you using that adapter in prod? |
Yes I am. Version 2.0 of the adapter has just been released! Has been a lot of work but finally finished. |
Hi,
I'm starting a new phoenix project where
Ecto
4.0.0 is the default version. Howeverarangodb_ecto
requiresEcto
2.2. I tried to useEcto
2.2 but it is apparently unavailable onhex
?The text was updated successfully, but these errors were encountered: