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/ConfigurableProductGraphQl/etc/schema.graphqls
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ type SelectedConfigurableOption {
69
69
value_label: String!
70
70
}
71
71
72
-
typeConfigurableWishlistItemimplementsWishlistItemInterface@doc(description: "A configurable product wishlist item"){
72
+
typeConfigurableWishlistItemimplementsWishlistItemInterface@doc(description: "A configurable product wish list item"){
73
73
child_sku: String!@doc(description: "The SKU of the simple product corresponding to a set of selected configurable options") @resolver(class: "\\Magento\\ConfigurableProductGraphQl\\Model\\Wishlist\\ChildSku")
Copy file name to clipboardExpand all lines: app/code/Magento/DownloadableGraphQl/etc/schema.graphqls
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ type DownloadableProductSamples @doc(description: "DownloadableProductSamples de
65
65
sample_file: String@deprecated(reason: "`sample_url` serves to get the downloadable sample")
66
66
}
67
67
68
-
typeDownloadableWishlistItemimplementsWishlistItemInterface@doc(description: "A downloadable product wishlist item") {
68
+
typeDownloadableWishlistItemimplementsWishlistItemInterface@doc(description: "A downloadable product wish list item") {
69
69
links_v2: [DownloadableProductLinks] @doc(description: "An array containing information about the selected links") @resolver(class: "\\Magento\\DownloadableGraphQl\\Model\\Wishlist\\ItemLinks")
70
70
samples: [DownloadableProductSamples] @doc(description: "An array containing information about the selected samples") @resolver(class: "Magento\\DownloadableGraphQl\\Resolver\\Product\\Samples")
Copy file name to clipboardExpand all lines: app/code/Magento/WishlistGraphQl/etc/schema.graphqls
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ type Customer {
9
9
wishlists(
10
10
pageSize: Int = 20 @doc(description: "Specifies the maximum number of results to return at once. This attribute is optional."),
11
11
currentPage: Int = 1 @doc(description: "Specifies which page of results to return. The default value is 1.")
12
-
): [Wishlist!]!@doc(description: "An array of wishlists. In Magento Open Source, customers are limited to one wishlist. The number of wishlists is not restricted for Magento Commerce") @resolver(class:"\\Magento\\WishlistGraphQl\\Model\\Resolver\\CustomerWishlists")
12
+
): [Wishlist!]!@doc(description: "An array of wishlists. In Magento Open Source, customers are limited to one wish list. The number of wish lists is configurable for Magento Commerce") @resolver(class:"\\Magento\\WishlistGraphQl\\Model\\Resolver\\CustomerWishlists")
13
13
wishlist: Wishlist!@deprecated(reason: "Use `Customer.wishlists` or `Customer.wishlist_v2`") @resolver(class:"\\Magento\\WishlistGraphQl\\Model\\Resolver\\CustomerWishlistResolver") @doc(description: "Contains a customer's wish lists") @cache(cacheable: false)
14
-
wishlist_v2(id: ID!): Wishlist@doc(description: "Retrieve the specified wishlist") @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistById")
14
+
wishlist_v2(id: ID!): Wishlist@doc(description: "Retrieve the specified wish list") @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\WishlistById")
15
15
}
16
16
17
17
typeWishlistOutput@doc(description: "Deprecated: `Wishlist` type should be used instead") {
id: ID@doc(description: "The ID of the wish list item")
36
-
quantity: Float@doc(description: "The quantity of this wish list item")
35
+
id: ID!@doc(description: "The ID of the wish list item")
36
+
quantity: Float!@doc(description: "The quantity of this wish list item")
37
37
description: String@doc(description: "The description of the item")
38
-
added_at: String@doc(description: "The date and time the item was added to the wish list")
38
+
added_at: String!@doc(description: "The date and time the item was added to the wish list")
39
39
product: ProductInterface@doc(description: "Product details of the wish list item") @resolver(class: "\\Magento\\WishlistGraphQl\\Model\\Resolver\\ProductResolver")
40
40
customizable_options: [SelectedCustomizableOption] @doc(description: "Custom options selected for the wish list item")
0 commit comments