WishlistCartUserInputError
Contains details about errors encountered when a customer added wish list items to the cart.
type WishlistCartUserInputError = {
__typename?: 'WishlistCartUserInputError'; /** An error code that describes the error encountered. */
code: WishlistCartUserInputErrorType; /** A localized error message. */
message: Scalars['String']['output']; /** The unique ID of the `Wishlist` object containing an error. */
wishlistId: Scalars['ID']['output']; /** The unique ID of the wish list item containing an error. */
wishlistItemId: Scalars['ID']['output'];
};