A clause that asserts a previous value of a field. For example, status WAS "Resolved" BY currentUser() BEFORE "2019/02/02". See WAS for more information about the WAS operator.

interface FieldWasClause {
    field: JqlQueryField;
    operand: JqlQueryClauseOperand;
    operator:
        | "was"
        | "was in"
        | "was not in"
        | "was not";
    predicates: JqlQueryClauseTimePredicate[];
}

Properties

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

Details of an operand in a JQL clause.

operator:
    | "was"
    | "was in"
    | "was not in"
    | "was not"

The operator between the field and operand.

The list of time predicates.