prorm API Reference
    Preparing search index...

    Interface OrderExpression

    Represents an ORDER BY expression

    interface OrderExpression {
        __type: "order";
        field: string;
        direction: SortDirection | "ASC" | "DESC" | "RANDOM";
    }
    Index
    __type: "order"
    field: string
    direction: SortDirection | "ASC" | "DESC" | "RANDOM"