We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d15b9cb + 4ec8b44 commit f335eb5Copy full SHA for f335eb5
design-documents/graph-ql/coverage/Wishlist.graphqls
@@ -7,8 +7,9 @@ type Mutation {
7
}
8
9
type Customer {
10
- wishlist: Wishlist! @doc(description: "Customer wishlist") # Commerce will extend filed with required `id` argument `wishlists(ids: ID!)`
11
- wishlists: [Wishlist!]! @doc(description: "Customer multiple wishlists") # Multiple wishlists Commerce functionality
+ wishlist: Wishlist! @deprecated(reason: "Use `Customer.wishlists` or `Customer.wishlist_v2")
+ wishlist_v2(id: ID!): Wishlist
12
+ wishlists: [Wishlist!]! @doc(description: "Customer wishlists are limited to a max of 1 wishlist in Magento Open Source")
13
14
15
type Wishlist {
0 commit comments