interface QuerySortRequest {
    field: string;
    order?: "ASC" | "DESC";
}

Properties

Properties

field: string
order?: "ASC" | "DESC"

The order in which to sort the related field. Default value: ASC

Generated using TypeDoc