# `Selecto.Subfilter.JoinPathResolver.JoinResolution`

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

# `join_config`

```elixir
@type join_config() :: %{
  from: atom(),
  to: atom(),
  type: :inner | :left | :right | :full | :self,
  on: String.t() | nil,
  field: atom() | nil
}
```

# `t`

```elixir
@type t() :: %Selecto.Subfilter.JoinPathResolver.JoinResolution{
  is_aggregation: boolean(),
  joins: [join_config()],
  path_segments: [String.t()],
  target_field: String.t() | nil,
  target_table: atom()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
