Interface Join

interface Join {
    fields: JoinField[];
    leftKey?: string;
    leftTable?: string;
    rightAlias?: string;
    rightKey?: string;
    tables?: Table[];
    type: "Left" | "Inner" | "Right";
}

Properties

fields: JoinField[]
leftKey?: string
leftTable?: string
rightAlias?: string
rightKey?: string
tables?: Table[]
type: "Left" | "Inner" | "Right"

Generated using TypeDoc