|
|
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