INPUT_OBJECT

AdvertFilters

Attributes for filtering adverts

link GraphQL Schema definition

  • input AdvertFilters {
  • # Advert with matching marketplacer database ID
  • legacyId: Int
  • # Variants with matching barcode
  • barcode: String
  • # Advert with variant with matching sku
  • sku: String
  • # Advert with matching title
  • title: String
  • # Advert with matching brand
  • brandId: ID
  • # Advert with matching category
  • taxonId: ID
  • # Advert that have been rejected via vetting
  • rejectedViaVetting: Boolean
  • # Advert with matching status
  • status: AdvertStatusEnum
  • # Select adverts created since this time
  • createdSince: ISO8601DateTime
  • # Select adverts created until this time
  • createdUntil: ISO8601DateTime
  • # Adverts that have catalog rule errors
  • withFailedCatalogRules: Boolean
  • }