ash_authentication/test/support/example/schema.ex

11 lines
141 B
Elixir

defmodule Example.Schema do
@moduledoc false
use Absinthe.Schema
@apis [Example]
use AshGraphql, apis: @apis
query do
end
end