formatQueryParameters
formatQueryParameters: ((parameters: Partial<{
columns: string[];
distinct: string[];
limit: number;
offset: number;
orders: Order[];
page: number;
relationsExists: string[];
scopes: string[];
wheres: WhereDescription[];
with: string[];
}> & Record<string, any>) => Record<string, any>)
Type declaration
-
- (parameters: Partial<{
columns: string[];
distinct: string[];
limit: number;
offset: number;
orders: Order[];
page: number;
relationsExists: string[];
scopes: string[];
wheres: WhereDescription[];
with: string[];
}> & Record<string, any>): Record<string, any>
-
Parameters
-
parameters: Partial<{
columns: string[];
distinct: string[];
limit: number;
offset: number;
orders: Order[];
page: number;
relationsExists: string[];
scopes: string[];
wheres: WhereDescription[];
with: string[];
}> & Record<string, any>
Returns Record<string, any>
Interface prescribing the expected signature of the query parameter formatting function.