Wishlist
Contains a customer wish list.
type Wishlist = {
__typename?: 'Wishlist'; /** The unique ID for a `Wishlist` object. */
id?: Maybe<Scalars['ID']['output']>; /** @deprecated Use the `items_v2` field instead. */
items?: Maybe<Array<Maybe<WishlistItem>>>; /** The number of items in the wish list. */
items_count?: Maybe<Scalars['Int']['output']>; /** An array of items in the customer's wish list. */
items_v2?: Maybe<WishlistItems>; /** An encrypted code that Magento uses to link to the wish list. */
sharing_code?: Maybe<Scalars['String']['output']>; /** The time of the last modification to the wish list. */
updated_at?: Maybe<Scalars['String']['output']>;
};