View Source Ash.Resource.Aggregate (ash v2.14.18)

Represents a named aggregate on the resource that can be loaded

Summary

Types

@type t() :: %Ash.Resource.Aggregate{
  authorize?: boolean(),
  constraints: term(),
  default: term(),
  description: String.t() | nil,
  field: atom(),
  filter: Keyword.t(),
  filterable?: term(),
  implementation: term(),
  kind: Ash.Query.Aggregate.kind(),
  name: atom(),
  private?: boolean(),
  read_action: atom() | nil,
  relationship_path: [atom()],
  sort: term(),
  type: term(),
  uniq?: term()
}

Functions

Link to this function

relationship_path(value)

View Source