Selecto.Subfilter.JoinPathResolver.JoinResolution (Selecto v0.4.3)

Structure representing a resolved join path with all necessary join information.

Link to this section Summary

Link to this section Types

Link to this type

join_config()

@type join_config() :: %{
  from: atom(),
  to: atom(),
  type: :inner | :left | :right | :full | :self,
  on: String.t() | nil,
  field: atom() | nil
}
@type t() :: %Selecto.Subfilter.JoinPathResolver.JoinResolution{
  is_aggregation: boolean(),
  joins: [join_config()],
  path_segments: [String.t()],
  target_field: String.t() | nil,
  target_table: atom()
}