BundleItem
Defines an individual item within a bundle product.
type BundleItem = {
__typename?: 'BundleItem';
option_id?: Maybe<Scalars['Int']['output']>; /** An array of additional options for this bundle item. */
options?: Maybe<Array<Maybe<BundleItemOption>>>; /** A number indicating the sequence order of this item compared to the other bundle items. */
position?: Maybe<Scalars['Int']['output']>; /** The range of prices for the product */
price_range: PriceRange; /** Indicates whether the item must be included in the bundle. */
required?: Maybe<Scalars['Boolean']['output']>; /** The SKU of the bundle product. */
sku?: Maybe<Scalars['String']['output']>; /** The display name of the item. */
title?: Maybe<Scalars['String']['output']>; /** The input type that the customer uses to select the item. Examples include radio button and checkbox. */
type?: Maybe<Scalars['String']['output']>; /** The unique ID for a `BundleItem` object. */
uid?: Maybe<Scalars['ID']['output']>;
};