ash_postgres/test/support/resources/subquery/through.ex

63 lines
1.1 KiB
Elixir
Raw Normal View History

defmodule AshPostgres.Test.Subquery.Through do
@moduledoc false
alias AshPostgres.Test.Subquery.Child
alias AshPostgres.Test.Subquery.Parent
alias AshPostgres.Test.Subquery.ParentDomain
use Ash.Resource,
domain: AshPostgres.Test.Subquery.ChildDomain,
data_layer: AshPostgres.DataLayer,
authorizers: [
Ash.Policy.Authorizer
]
postgres do
repo AshPostgres.TestRepo
table "subquery_through"
end
attributes do
attribute :parent_id, :uuid do
public?(true)
primary_key?(true)
allow_nil?(false)
end
attribute :child_id, :uuid do
public?(true)
primary_key?(true)
allow_nil?(false)
end
end
code_interface do
define(:create)
define(:read)
end
relationships do
belongs_to :parent, Parent do
public?(true)
domain(ParentDomain)
end
belongs_to :child, Child do
public?(true)
source_attribute(:parent_id)
destination_attribute(:id)
end
end
policies do
policy always() do
authorize_if(always())
end
end
actions do
default_accept(:*)
defaults([:create, :read, :update, :destroy])
end
end