Alokai

WishlistItem

Contains details about a wish list item.

type WishlistItem = {
  __typename?: 'WishlistItem'; /** The time when the customer added the item to the wish list. */
  added_at?: Maybe<Scalars['String']['output']>; /** The customer's comment about this item. */
  description?: Maybe<Scalars['String']['output']>; /** The unique ID for a `WishlistItem` object. */
  id?: Maybe<Scalars['Int']['output']>; /** Details about the wish list item. */
  product?: Maybe<ProductInterface>; /** The quantity of this wish list item */
  qty?: Maybe<Scalars['Float']['output']>;
};

Referenced Types

On this page