A time predicate for a temporal JQL clause.

interface JqlQueryClauseTimePredicate {
    operand: JqlQueryClauseOperand;
    operator:
        | "on"
        | "after"
        | "before"
        | "from"
        | "by"
        | "to"
        | "during";
}

Hierarchy

  • Record<string, unknown>
    • JqlQueryClauseTimePredicate

Properties

Properties

Details of an operand in a JQL clause.

operator:
    | "on"
    | "after"
    | "before"
    | "from"
    | "by"
    | "to"
    | "during"

The operator between the field and the operand.