Interface QuerySorting

A sorting for a Query.

Uses the field name and ascending flag to determine the sorting order.

interface QuerySorting {
    ascending: boolean;
    name: string;
}

Properties

Properties

ascending: boolean

The sorting order.

name: string

The name of the field to sort on.

Generated using TypeDoc