View Source Ash.Resource.Relationships.HasMany (ash v2.21.4)

Represents a has_many relationship on a resource

Summary

Types

@type t() :: %Ash.Resource.Relationships.HasMany{
  api: term(),
  autogenerated_join_relationship_of: atom() | nil,
  cardinality: :many,
  context: term(),
  could_be_related_at_creation?: term(),
  description: String.t(),
  destination: Ash.Resource.t(),
  destination_attribute: atom(),
  filter: Ash.Filter.t() | nil,
  filterable?: boolean(),
  manual: atom() | {atom(), Keyword.t()} | nil,
  name: atom(),
  no_attributes?: boolean(),
  not_found_message: term(),
  private?: boolean(),
  read_action: atom(),
  sort: term(),
  source: Ash.Resource.t(),
  source_attribute: atom(),
  type: :has_many,
  validate_destination_attribute?: term(),
  violation_message: term(),
  writable?: boolean()
}

Functions