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
wishlist: WishlistOutput@resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistResolver") @doc(description: "The wishlist query returns the contents of a customer's wish list")
items: [WishlistItem] @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistItemsResolver") @doc(description: "An array of items in the customer's wish list"),
10
+
items_count: Int@doc(description: "The number of items in the wish list"),
11
+
name: String@doc(description: "When multiple wish lists are enabled, the name the customer assigns to the wishlist"),
12
+
sharing_code: String@doc(description: "An encrypted code that Magento uses to link to the wish list"),
13
+
updated_at: String@doc(description: "The time of the last modification to the wish list")
14
14
}
15
15
16
16
typeWishlistItem {
17
-
id: Int@doc(description: "todo")
18
-
qty: Float@doc(description: "todo"),
19
-
description: String@doc(description: "todo"),
20
-
added_at: String@doc(description: "todo"),
17
+
id: Int@doc(description: "The wish list item ID")
18
+
qty: Float@doc(description: "The quantity of this wish list item"),
19
+
description: String@doc(description: "The customer's comment about this item"),
20
+
added_at: String@doc(description: "The time when the customer added the item to the wish list"),
0 commit comments