ash_graphql/lib/ash_graphql.ex

14 lines
207 B
Elixir
Raw Normal View History

2020-05-02 04:32:56 +12:00
defmodule AshGraphql do
@moduledoc """
Documentation for `AshGraphql`.
"""
2020-06-06 06:41:00 +12:00
def fields(resource) do
resource.graphql_fields()
end
2020-05-02 04:32:56 +12:00
2020-06-06 06:41:00 +12:00
def type(resource) do
resource.graphql_type()
2020-05-02 04:32:56 +12:00
end
end