An element of the order-by JQL clause.

interface JqlQueryOrderByClauseElement {
    direction?: "desc" | "asc";
    field: JqlQueryField;
}

Properties

Properties

direction?: "desc" | "asc"

The direction in which to order the results.

A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.