From 3099fd41daeeee9d3644aff6f91a994f5a227ffa Mon Sep 17 00:00:00 2001 From: Buba Suma Date: Mon, 7 Feb 2022 11:04:07 -0600 Subject: [PATCH] ACP2E-267: GraphQl - Issues with add Configurable product to Wishlist --- .../graph-ql/coverage/customer/Wishlist.graphqls | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/design-documents/graph-ql/coverage/customer/Wishlist.graphqls b/design-documents/graph-ql/coverage/customer/Wishlist.graphqls index 1aeeb76ed..a829adf50 100644 --- a/design-documents/graph-ql/coverage/customer/Wishlist.graphqls +++ b/design-documents/graph-ql/coverage/customer/Wishlist.graphqls @@ -1,7 +1,7 @@ type Mutation { createWishlist(input: CreateWishlistInput!): CreateWishlistOutput # Multiple wishlists Commerce functionality deleteWishlist(wishlistUid: ID!): DeleteWishlistOutput # Commerce fucntionality - in Opens Source we assume customer always has one wishlist - addProductsToWishlist(wishlistId: ID!, wishlistItems: [WishlistItemInput!]!): AddProductsToWishlistOutput + addProductsToWishlist(wishlistId: ID!, wishlistItems: [WishlistItemInput!]!): AddProductsToWishlistOutput removeProductsFromWishlist(wishlistId: ID!, wishlistItemsIds: [ID!]!): RemoveProductsFromWishlistOutput updateProductsInWishlist(wishlistId: ID!, wishlistItems: [WishlistItemUpdateInput!]!): UpdateProductsInWishlistOutput copyProductsBetweenWishlists(sourceWishlistUid: ID!, destinationWishlistUid: ID!, wishlistItems: [WishlistItemCopyInput!]!): CopyProductsBetweenWishlistsOutput @doc(description: "Copy a product to the wish list") @@ -14,7 +14,7 @@ type Mutation { } type Customer { - wishlist: Wishlist! @deprecated(reason: "Use `Customer.wishlists` or `Customer.wishlist_v2") + wishlist: Wishlist! @deprecated(reason: "Use `Customer.wishlists` or `Customer.wishlist_v2") wishlist_v2(id: ID!): Wishlist # This query will be added in the ce wishlists: [Wishlist!]! @doc(description: "Customer wishlists are limited to a max of 1 wishlist in Magento Open Source") # This query will be added in the ce } @@ -117,8 +117,9 @@ type VirtualWishlistItem implements WishlistItemInterface @doc(description: "Vir } type ConfigurableWishlistItem implements WishlistItemInterface { - child_sku: String! @doc(description: "SKU of the simple product corresponding to a set of selected configurable options.") - configurable_options: [SelectedConfigurableOption!] + child_sku: String! @deprecated(reason: "Use `ConfigurableWishlistItem.configured_variant.sku` instead.") @doc(description: "The SKU of the simple product corresponding to a set of selected configurable options.") + configurable_options: [SelectedConfigurableOption!] @doc(description: "An array of selected configurable options.") + configured_variant: ProductInterface @doc(description: "Product details of the selected variant. The value is null if some options are not configured.") } type DownloadableWishlistItem implements WishlistItemInterface @doc(description: "Downloadable Wishlist Item") {