ENUM

CatalogRulesOperatorEnum

Operators for Catalog Rules.

link GraphQL Schema definition

  • enum CatalogRulesOperatorEnum {
  • # Greater than e.g. >10 is 10.01 onwards
  • GREATER_THAN
  • # Less than e.g. <10 is any number up to 9.99
  • LESS_THAN
  • # Greater than or equal to a number
  • GREATER_THAN_OR_EQUAL_TO
  • # Less than or equal to a number
  • LESS_THAN_OR_EQUAL_TO
  • # Equal to a number
  • EQUAL_TO
  • # Not equal to a number
  • NOT_EQUAL_TO
  • # Present. When using this operator, do not provide a value
  • PRESENT
  • # Blank. When using this operator, do not provide a value
  • BLANK
  • }