Cqrs.Absinthe.Relay (cqrs_tools v0.3.5) View Source
Macros for Absinthe.Relay
Optinal Application Configuration
config :cqrs_tools, :absinthe_relay, repo: Example.Repo
Link to this section Summary
Functions
Creates an Absinthe.Relay.Connection
query from a Command.
Link to this section Functions
Creates an Absinthe.Relay.Connection
query from a Command.
Options
:repo
- TheEcto.Repo
to use for the connection. Defaults to the configured repo in:cqrs_tools, :absinthe_relay
.:repo_fun
- The function of the:repo
to run. Defaults to:all
:as
- The name to use for the query. Defaults to the query_module name snake_cased.:only
- Use only the filters listed:except
- Create filters for all except those listed:arg_types
- A list of filter names to absinthe types. See example.
Example
defmodule ExampleApi.Types.UserTypes do
@moduledoc false
use Cqrs.Absinthe.Relay
use Absinthe.Schema.Notation
use Absinthe.Relay.Schema.Notation, :modern
alias Example.Queries.ListUsers
enum :user_status do
value :active
value :suspended
end
object :user do
field :id, :id
field :name, :string
field :email, :string
field :status, :user_status
end
connection(node_type: :user)
object :user_queries do
derive_connection ListUsers, :user,
as: :users,
repo: Example.Repo,
arg_types: [status: :user_status]
end
end