Skip to content
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

Open
tbm206 opened this issue Aug 7, 2019 · 5 comments
Open

Use Ecto 4.0? #18

tbm206 opened this issue Aug 7, 2019 · 5 comments

Comments

@tbm206
Copy link

tbm206 commented Aug 7, 2019

Hi,

I'm starting a new phoenix project where Ecto 4.0.0 is the default version. However arangodb_ecto requires Ecto 2.2. I tried to use Ecto 2.2 but it is apparently unavailable on hex?

@tbm206
Copy link
Author

tbm206 commented Aug 7, 2019

In addition, is there another way to query ArangoDB without relying on Ecto?

@mpoeter
Copy link
Member

mpoeter commented Aug 8, 2019

@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.
Anyway, you can certainly use Ecto 2.2 since this is also what we do for now. Just make sure that your deps list specifies the correct version: {:ecto, "~> 2.2"}

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.

@TomGrozev
Copy link

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.

https://github.com/TomGrozev/arangox_ecto

@lessless
Copy link

lessless commented Jan 5, 2025

Thanks @TomGrozev ! Are you using that adapter in prod?

@TomGrozev
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants