sqlkit
    Preparing search index...

    Interface ManyToManyJoin<Pivot, Foreign>

    interface ManyToManyJoin<Pivot, Foreign> {
        as?: string;
        columns?: (keyof Foreign)[];
        on: { foreignField: keyof Pivot; localField: keyof Pivot };
        table: string;
    }

    Type Parameters

    • Pivot
    • Foreign
    Index

    Properties

    Properties

    as?: string
    columns?: (keyof Foreign)[]
    on: { foreignField: keyof Pivot; localField: keyof Pivot }
    table: string