GraphQL OBJECT

ProductBundle

Bundle including several products. A bundle is a combination of two or more products sold together at a specific price.

link Definition

  • type ProductBundle {
  • # Position in the cart.
  • position: Int
  • # Number of units included in the bundle.
  • quantity: Int
  • # Indicates whether the product is hidden in the bundle.
  • isHidden: Boolean
  • # Product included in the bundle.
  • itemProduct: Product
  • }