RemoveProductsFromWishlistOutput
Contains the customer's wish list and any errors encountered.
type RemoveProductsFromWishlistOutput = {
__typename?: 'RemoveProductsFromWishlistOutput'; /** An array of errors encountered while deleting products from a wish list. */
user_errors: Array<Maybe<WishListUserInputError>>; /** Contains the wish list with after items were successfully deleted. */
wishlist: Wishlist;
};