sqlkit
    Preparing search index...

    Interface QueryRowsPayload<T>

    interface QueryRowsPayload<T> {
        columns?: (keyof T)[];
        joins?: Join<T, any>[];
        limit?: number;
        offset?: number;
        orderBy?: OrderBy<T>[];
        where?: WhereCondition<T>;
        with?: ManyToManyJoin<any, any>[];
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    columns?: (keyof T)[]
    joins?: Join<T, any>[]
    limit?: number
    offset?: number
    orderBy?: OrderBy<T>[]
    where?: WhereCondition<T>
    with?: ManyToManyJoin<any, any>[]