Skip to main content

BundleItem

A single component within a product bundle: how many of one ProductVariant are included in the bundle. SPEC-020 Feature 2.

type BundleItem implements Node {
id: ID!
quantity: Int!
sortOrder: Int
componentVariant: ProductVariant!
}

Fields

BundleItem.id ● ID! non-null scalar

The Globally Unique ID of this object

BundleItem.quantity ● Int! non-null scalar

How many units of this component are included per bundle.

BundleItem.sortOrder ● Int scalar

Display order of this component within the bundle.

BundleItem.componentVariant ● ProductVariant! non-null object

The component variant this entry refers to.

Interfaces

Node interface

An object with a Globally Unique ID

Member Of

ProductVariant object

Was this page helpful?