ash_graphql/test/support/resources/user.ex
2021-04-04 03:10:50 -04:00

27 lines
417 B
Elixir

defmodule AshGraphql.Test.User do
@moduledoc false
use Ash.Resource,
data_layer: Ash.DataLayer.Ets,
extensions: [AshGraphql.Resource]
graphql do
type :user
queries do
read_one :current_user, :current_user
end
end
actions do
read :current_user do
filter(id: actor(:id))
end
end
attributes do
uuid_primary_key(:id)
attribute(:name, :string)
end
end