SortParams

Defines a list of field names used to sort query results.

Extends: Array<SortField>

Description

The SortParams class allows you to define a list of field names used to sort query results. In addition, it allows you to specify the type of order as ascending or descending.

Constructors

Creates a new instance and initializes it with specified sort fields.

public constructor(…fields: SortField[])

  • fields: SortField[] - list of fields to sort by.

Examples

let filter = FilterParams.fromTuples("type", "Type1");
let paging = new PagingParams(0, 100);
let sorting = new SortingParams(new SortField("create_time", true));

let result = await myDataClient.getDataByFilter(filter, paging, sorting);

See also