Updates
This commit is contained in:
@@ -1098,6 +1098,7 @@ export type ServerQueryParam<
|
||||
T extends { [k: string]: any } = { [k: string]: any }
|
||||
> = {
|
||||
selectFields?: string[];
|
||||
omitFields?: string[];
|
||||
query?: ServerQueryQueryObject<T>;
|
||||
limit?: number;
|
||||
page?: number;
|
||||
@@ -1160,6 +1161,14 @@ export type ServerQueryParamsJoin<
|
||||
count?: boolean;
|
||||
}
|
||||
)[];
|
||||
omitFields?: (
|
||||
| keyof Field
|
||||
| {
|
||||
field: keyof Field;
|
||||
alias?: string;
|
||||
count?: boolean;
|
||||
}
|
||||
)[];
|
||||
operator?: (typeof ServerQueryOperators)[number];
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user