ash_hq/lib/ash_hq_web/schema.ex
2024-04-02 20:24:23 -04:00

18 lines
289 B
Elixir

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