ash_graphql/test/support/resources/embed.ex

16 lines
261 B
Elixir
Raw Normal View History

defmodule AshGraphql.Test.Embed do
@moduledoc false
use Ash.Resource,
data_layer: :embedded,
extensions: [AshGraphql.Resource]
graphql do
type :embed
end
attributes do
attribute(:nested_embed, AshGraphql.Test.NestedEmbed)
end
end