GroupedProductItem
Contains information about an individual grouped product item.
type GroupedProductItem = {
__typename?: 'GroupedProductItem'; /** The relative position of this item compared to the other group items. */
position?: Maybe<Scalars['Int']['output']>; /** Details about this product option. */
product?: Maybe<ProductInterface>; /** The quantity of this grouped product item. */
qty?: Maybe<Scalars['Float']['output']>;
};