You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/ConfigurableProductGraphQl/etc/schema.graphqls
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,9 +77,9 @@ type SelectedConfigurableOption @doc(description: "Contains details about a sele
77
77
}
78
78
79
79
typeConfigurableWishlistItemimplementsWishlistItemInterface@doc(description: "A configurable product wish list item."){
80
-
child_sku: String!@deprecated(reason: "Use `ConfigurableWishlistItem.selected_variant_sku` instead.") @doc(description: "The SKU of the simple product corresponding to a set of selected configurable options.") @resolver(class: "\\Magento\\ConfigurableProductGraphQl\\Model\\Wishlist\\ChildSku")
81
-
selected_variant_sku: String@doc(description: "The SKU of the simple product corresponding to a set of selected configurable options.") @resolver(class: "\\Magento\\ConfigurableProductGraphQl\\Model\\Wishlist\\SelectedVariantSku")
80
+
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.") @resolver(class: "\\Magento\\ConfigurableProductGraphQl\\Model\\Wishlist\\ChildSku")
configured_variant: ProductInterface@doc(description: "Product details of the selected variant. The value is null if some options are not configured.") @resolver(class: "\\Magento\\ConfigurableProductGraphQl\\Model\\Wishlist\\ConfiguredVariant")
83
83
}
84
84
85
85
typeConfigurableProductOptionsSelection@doc(description: "Contains metadata corresponding to the selected configurable options.") {
0 commit comments