JoinClause

View Source

Summary

Join configuration used in compiled select statements.

Signature

type JoinClause = {
  on: Predicate;
  table: AnyTable;
  type: JoinType;
};