Type alias QueryParams

QueryParams: Partial<{
    columns: string[];
    distinct: string[];
    limit: number;
    offset: number;
    orders: Order[];
    page: number;
    relationsExists: string[];
    scopes: string[];
    wheres: WhereDescription[];
    with: string[];
}>

Generated using TypeDoc