ComparableItem
Defines an object used to iterate through items for product comparisons.
type ComparableItem = {
__typename?: 'ComparableItem'; /** An array of product attributes that can be used to compare products. */
attributes: Array<Maybe<ProductAttribute>>; /** Details about a product in a compare list. */
product: ProductInterface; /** The unique ID of an item in a compare list. */
uid: Scalars['ID']['output'];
};