Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into customer-files-uid-update
  • Loading branch information
RakeshJesadiya authored Oct 20, 2020
commit 6372db252704b160b7b86e39c388c8c62127f30c
8 changes: 6 additions & 2 deletions design-documents/graph-ql/coverage/customer/Wishlist.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,12 @@ type Customer {

type Wishlist {
uid: ID
items: [WishlistItem] @deprecated(reason: "Use field `items_v2` from type `Wishlist` instead")
items_v2: [WishlistItemInterface] @doc(description: "An array of items in the customer's wishlist")
items: [WishlistItem] @deprecated(reason: "Use field `items_v3` from type `Wishlist` instead")
items_v2: [WishlistItemInterface] @doc(description: "An array of items in the customer's wishlist") @deprecated(reason: "Use field `items_v3` from type `Wishlist` instead")
items_v3(
currentPage: Int = 1 @doc(description: "current page of the customer wishlist items. default is 1")
pageSize: Int = 20 @doc(description: "page size for the customer wishlist items. default is 20")
): WishlistItems! @doc(description: "An array of items in the customer's wishlist")
items_count: Int
sharing_code: String
updated_at: String
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.