ash_hq/lib/ash_hq_web/schema.ex

19 lines
289 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
2024-04-03 13:24:23 +13:00
@domains [AshHq.Docs]
2022-09-16 10:35:33 +12:00
2024-04-03 13:24:23 +13:00
use AshGraphql, domains: @domains
2022-09-16 10:35:33 +12:00
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