GraphQL INPUT_OBJECT

UpdateProductListInput

Input for product list update. A product list is a list of products you select and categorize for a particular purpose, such as product type.

link Definition

  • input UpdateProductListInput {
  • # Unique ID of the product list.
  • id: Int!
  • # Name of the product list.
  • name: String
  • # List type of the product list.
  • type: ListTypeEnum
  • # List of product IDs within the product list.
  • productIds: [Int]
  • }

link Required by