SortParams

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

Extends: ListBase<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.

SortParams(List<SortField>? fields)

  • fields: List<SortField>? - list of fields to sort by.

Examples

var filter = FilterParams.fromTuples(['type', 'Type1']);
var paging =  PagingParams(0, 100);
var sorting =  SortingParams( SortField('create_time', true));

myDataClient.getDataByFilter(filter, paging, sorting, (err, page) {...});

See also