ash_graphql/test/support/resources/review.ex
2024-05-26 09:50:54 -04:00

27 lines
502 B
Elixir

defmodule AshGraphql.Test.Review do
@moduledoc false
use Ash.Resource,
domain: AshGraphql.Test.Domain,
data_layer: Ash.DataLayer.Ets,
extensions: [AshGraphql.Resource]
graphql do
type(:review)
end
actions do
default_accept(:*)
defaults([:create, :read, :update, :destroy])
end
attributes do
uuid_primary_key(:id)
attribute(:text, :string, public?: true)
end
relationships do
belongs_to(:movie, AshGraphql.Test.Movie, public?: true)
end
end