ash_graphql/test/support/resources/embed.ex
2024-04-11 23:49:22 -04:00

15 lines
276 B
Elixir

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, public?: true)
end
end