OBJECT

CatalogRule

Catalog rule

link GraphQL Schema definition

  • type CatalogRule implements Node {
  • # Indicates once the errors have been evaluated on the adverts or variants
  • assignObjectErrorsComplete: Boolean!
  • # When the record was created
  • createdAt: ISO8601DateTime!
  • # The error message returned when a product fails catalog rule validation
  • errorMessage: String!
  • id: ID!
  • # The product attribute the catalog rule is validated against
  • key: CatalogRulesKeyEnum!
  • # The catalog rule legacy ID
  • legacyId: Int!
  • # The operator used to validate the product attribute with
  • operator: CatalogRulesOperatorEnum!
  • # The value the operator is compared against
  • value: String @deprecated( reason: "This argument is deprecated in favour of values." )
  • # The values the operator is compared against
  • values: [String!]
  • # The name for the set of values displayed in the error message
  • valuesSetName: String
  • }