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

Represents a named aggregate on the resource that can be loaded

Link to this section Summary

Link to this section Types

@type t() :: %Ash.Resource.Aggregate{
  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(),
  relationship_path: [atom()],
  sort: term(),
  type: term()
}

Link to this section Functions

Link to this function

relationship_path(value)

View Source