View Source Ash.Resource.Aggregate (ash v1.53.2)

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{
  default: term(),
  description: String.t() | nil,
  field: atom(),
  filter: Keyword.t(),
  filterable?: term(),
  kind: :count | :first | :sum | :list,
  name: atom(),
  private?: boolean(),
  relationship_path: [atom()],
  sort: term()
}

Link to this section Functions

Link to this function

relationship_path(value)

View Source