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/WishlistGraphQl/etc/schema.graphqls
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,21 @@ type Mutation {
69
69
typeAddWishlistItemsToCartOutput {
70
70
wishlist: Wishlist!@doc(description: "Contains the wish list with all items that were successfully added")
71
71
status: Boolean!@doc(description: "Indicates whether the attempt to add items to the customer's cart was successful")
72
-
add_wishlist_items_to_cart_user_errors: [CartUserInputError!]!@doc(description: "An array of errors encountered while adding products to the customer's cart")
72
+
add_wishlist_items_to_cart_user_errors: [WishlistCartUserInputError!]!@doc(description: "An array of errors encountered while adding products to the customer's cart")
73
+
}
74
+
75
+
typeWishlistCartUserInputError {
76
+
message: String!@doc(description: "A localized error message")
0 commit comments