ash_hq/lib/ash_hq_web/schema.ex

19 lines
280 B
Elixir
Raw Normal View History

2022-09-16 10:35:33 +12:00
defmodule AshHqWeb.Schema do
@moduledoc "The absinthe graphql schema"
2022-09-16 10:35:33 +12:00
use Absinthe.Schema
@apis [AshHq.Docs]
2022-09-16 10:35:33 +12:00
use AshGraphql, apis: @apis
query do
end
mutation do
end
def plugins do
2022-09-16 10:35:33 +12:00
[Absinthe.Middleware.Dataloader | Absinthe.Plugin.defaults()]
end
end