Home > @infiniteobjects/shopify-data-manager > AdminTypes > CollectionRuleRelation
Specifies the relationship between the column and the condition.
Signature:
export declare enum CollectionRuleRelation
| Member | Value | Description |
|---|---|---|
| Contains | "CONTAINS" |
The attribute contains the condition. |
| EndsWith | "ENDS_WITH" |
The attribute ends with the condition. |
| Equals | "EQUALS" |
The attribute is equal to the condition. |
| GreaterThan | "GREATER_THAN" |
The attribute is greater than the condition. |
| IsNotSet | "IS_NOT_SET" |
The attribute is not set (equal to null). |
| IsSet | "IS_SET" |
The attribute is set (not equal to null). |
| LessThan | "LESS_THAN" |
The attribute is less than the condition. |
| NotContains | "NOT_CONTAINS" |
The attribute does not contain the condition. |
| NotEquals | "NOT_EQUALS" |
The attribute does not equal the condition. |
| StartsWith | "STARTS_WITH" |
The attribute starts with the condition. |