sqlkit
    Preparing search index...

    Interface Join<T, F>

    interface Join<T, F> {
        as?: string;
        columns?: (keyof F)[];
        on: { foreignField: keyof F; localField: keyof T };
        table: string;
        type: "left" | "right" | "full" | "inner";
    }

    Type Parameters

    • T
    • F
    Index

    Properties

    Properties

    as?: string
    columns?: (keyof F)[]
    on: { foreignField: keyof F; localField: keyof T }
    table: string
    type: "left" | "right" | "full" | "inner"