ash_authentication/test/support/example/schema.ex

12 lines
141 B
Elixir
Raw Normal View History

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