ash_hq/lib/ash_hq_web/schema.ex
2023-09-12 14:04:03 -04:00

18 lines
280 B
Elixir

defmodule AshHqWeb.Schema do
@moduledoc "The absinthe graphql schema"
use Absinthe.Schema
@apis [AshHq.Docs]
use AshGraphql, apis: @apis
query do
end
mutation do
end
def plugins do
[Absinthe.Middleware.Dataloader | Absinthe.Plugin.defaults()]
end
end