GraphQL OBJECT

ProductList

Product list for which the notification applies.

link Definition

  • type ProductList {
  • # Client who offers the product list.
  • client: Client
  • # Date and time when the product list was created.
  • creationDate: DateTime!
  • # User who created the product list.
  • createdBy: UserAccount!
  • # Unique ID of the product list.
  • id: Int!
  • # Internal name of the product list.
  • name: String
  • # Products included in or excluded from the product list.
  • products: [Product]!
  • # Date and time when the last edit occurred.
  • lastModifyDate: DateTime!
  • # User who last modified the product list.
  • lastModifiedBy: UserAccount!
  • # Whether price configurations were added to the promotion using an include or
  • # exclude list.
  • type: ListType
  • # List of notifications in which the product list is used.
  • referringNotifications: [Notification]
  • # List of partner groups in which the product list is used.
  • referringPartnerGroups: [PartnerGroup]
  • # List of price configuration in which the product list is used.
  • referringPriceConfigurations: [PriceConfiguration]
  • # List of productSubscriptionSettings in which the product list is used.
  • referringProductSubscriptionSettings: [ProductSubscriptionSettings]
  • # List of packageDiscounts in which the product list is used.
  • referringPackageDiscounts: [PackageDiscount]
  • }