This article might be helpful when creating the queue rules, and you are wondering which operator might be the best one to use.
Operator | Description |
= != |
This operator looks for an exact match and will evaluate each comma-separated value separately - the commas serve as OR statements. |
equal Not Equal |
Looks for an exact match to the entire string in Value and cannot accept separate values by comma |
< |
Less than - primarily used to match numbers |
> | Greater than |
<= | Less than or equal to |
>= | Greater than or equal to |
contains not contains |
Looks for the full string in Value, which cannot be used with commas. It treats that list as a string, meaning if you use commas, we are looking for the entire string of "bob.com, abc.com, hi.com." If we want to use contains, we need to put these on individual lines |
startsWith | Looks for the full string in Value from start to end and cannot be used with commas - commonly used for numbers that contain commas, such as "5,000" |
startsWith(csv) |
Same behavior as startsWith, but can be used with comma-separated lists - the commas serve as OR statements |
!= null | Not equal to [blank] |
= null |
Equal to [blank] |
containsAnyOf |
Contains an operator that allows for comma-separated values |
containsNoneOf |
Not Contains operator that allows for comma-separated values (i.e., email not contains gmail.com, yahoo.com, aol.com) |