CompareList
Contains iterable information such as the array of items, the count, and attributes that represent the compare list.
type CompareList = {
__typename?: 'CompareList'; /** An array of attributes that can be used for comparing products. */
attributes?: Maybe<Array<Maybe<ComparableAttribute>>>; /** The number of items in the compare list. */
item_count: Scalars['Int']['output']; /** An array of products to compare. */
items?: Maybe<Array<Maybe<ComparableItem>>>; /** The unique ID assigned to the compare list. */
uid: Scalars['ID']['output'];
};