-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework how entities field is resolved to:
- Support Async resolution with 0-arity function - Support Dataloader.Ecto - Support function capture resolution
- Loading branch information
1 parent
3e9eb92
commit c1c24ec
Showing
11 changed files
with
420 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import Config | ||
|
||
config :absinthe_federation, ecto_repos: [ExampleRepo] | ||
|
||
config :absinthe_federation, ExampleRepo, | ||
adapter: Ecto.Adapters.Postgres, | ||
username: "postgres", | ||
password: "postgres", | ||
database: "example_test", | ||
hostname: "localhost", | ||
pool_size: 20, | ||
pool: Ecto.Adapters.SQL.Sandbox, | ||
log: :info |
Oops, something went wrong.