Boolean lists
This table describes the boolean list operators.
Operator | Description | Left hand value types | Right hand types | Notes |
---|---|---|---|---|
Includes | List includes value | Boolean list | Boolean | True if the list contains the value of on the right. |
Excludes | List does not include value | Boolean list | Boolean | True if the list does not contain the value on the right. |
Is Null | List is null | Boolean list | N/A | True if the expected data was not provided. |
Is Empty | List is empty | Boolean list | N/A | True if the list has no items. |
Is Not Empty | List is not empty | Boolean list | N/A | True if the list has at least one item. |
Includes Exactly One Of | List has only one matching item | Boolean list | Boolean | True if the list has only one matching item. |
Includes At Least One Of | List has one or more matching items | Boolean list | Boolean, Boolean list | True if the list matches at least one item. |