escalation Level
Filter work items by level of their escalations. Each work item is a part of the result set which has not fired escalation on the defined level.
Available operators: =, !=, <, >, <=, >=
* 
Escalation level cbQL filters using the = operator only work with integers that are equal to or less than 0. Positive integers are not accepted.
For example, an escalation filter using the = operator set to -1 means an escalation level of 1.
escalationLevel = -1
escalationLevel <= -1
escalationLevel >= -1
escalationLevel != -1
* 
Escalation level cbQL filters not using the = operator work with integers that are equal to or greater than 0. Negative integers are not accepted.
For example, an escalation filter not using the = operator set to 1 means an escalation level of 1.
escalationLevel < 1
escalationLevel > 1
Was this helpful?