GraphQL INPUT_OBJECT

CreateProductListInput

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

link Definition

  • input CreateProductListInput {
  • # Unique ID of the client account.
  • clientId: 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