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/QuoteGraphQl/etc/schema.graphqls
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
# See COPYING.txt for license details.
3
3
4
4
typeQuery {
5
-
cart(cart_id: String!@doc(description: "The masked ID of the cart to query.")): Cart@resolver (class: "\\Magento\\QuoteGraphQl\\Model\\Resolver\\Cart") @doc(description:"Return information about the specified shopping cart.") @cache(cacheable: false)
5
+
cart(cart_id: String!@doc(description: "The unique ID of the cart to query.")): Cart@resolver (class: "\\Magento\\QuoteGraphQl\\Model\\Resolver\\Cart") @doc(description:"Return information about the specified shopping cart.") @cache(cacheable: false)
6
6
customerCart: Cart!@resolver (class: "\\Magento\\QuoteGraphQl\\Model\\Resolver\\CustomerCart") @doc(description:"Return information about the customer's shopping cart.") @cache(cacheable: false)
7
7
}
8
8
@@ -30,7 +30,7 @@ input createEmptyCartInput @doc(description: "Assigns a specific `cart_id` to th
30
30
}
31
31
32
32
inputAddSimpleProductsToCartInput@doc(description: "Defines the simple and group products to add to the cart.") {
33
-
cart_id: String!@doc(description: "The ID of the cart.")
33
+
cart_id: String!@doc(description: "The unique ID of a `Cart` object.")
34
34
cart_items: [SimpleProductCartItemInput!]!@doc(description: "An array of simple and group items to add.")
35
35
}
36
36
@@ -40,7 +40,7 @@ input SimpleProductCartItemInput @doc(description: "Defines a single product to
40
40
}
41
41
42
42
inputAddVirtualProductsToCartInput@doc(description: "Defines the virtual products to add to the cart.") {
43
-
cart_id: String!@doc(description: "The ID of the cart.")
43
+
cart_id: String!@doc(description: "The unique ID of a `Cart` object.")
44
44
cart_items: [VirtualProductCartItemInput!]!@doc(description: "An array of virtual products to add.")
0 commit comments