map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface SortOptions

    Options to specify how query results are sorted

    interface SortOptions {
        sort?: readonly SortItem[];
        sortIgnoreCase?: boolean;
    }
    Index

    Properties

    sort?: readonly SortItem[]

    An array of sort definitions. Each definition contains an attribute property to sort on and a 'descending' property indicating the direction of sorting.

    sortIgnoreCase?: boolean

    Defines that sorting should be done ignoring case. Default is true.