Skip to content

Commit 1df4ca7

Browse files
committed
Fixing reason for deprecated annotation
1 parent 5018515 commit 1df4ca7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/WishlistGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type WishlistOutput @doc(description: "Deprecated: `Wishlist` type should be use
2424

2525
type Wishlist {
2626
id: ID @doc(description: "Wishlist unique identifier")
27-
items: [WishlistItem] @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistItemsResolver") @deprecated(description: "Use field `items_v2` from type `Wishlist` instead")
27+
items: [WishlistItem] @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistItemsResolver") @deprecated(reason: "Use field `items_v2` from type `Wishlist` instead")
2828
items_v2: [WishlistItemInterface] @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistItems") @doc(description: "An array of items in the customer's wishlist")
2929
items_count: Int @doc(description: "The number of items in the wish list")
3030
sharing_code: String @doc(description: "An encrypted code that Magento uses to link to the wish list")

0 commit comments

Comments
 (0)