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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -228,9 +228,9 @@ type BillingCartAddress implements CartAddressInterface {
228
228
customer_notes: String@deprecated (reason: "The field is used only in shipping address")
229
229
}
230
230
231
-
typeCartItemQuantity@deprecated(reason: "All fields in CartItemQuantity should be deprecated (so this type can be completely removed in the future releases)") {
232
-
cart_item_id: Int!
233
-
quantity: Float!
231
+
typeCartItemQuantity@doc(description:"Deprecated: `cart_items` field of `ShippingCartAddress` returns now `CartItemInterface` instead of `CartItemQuantity`") {
232
+
cart_item_id: Int!@deprecated(reason: "`cart_items` field of `ShippingCartAddress` returns now `CartItemInterface` instead of `CartItemQuantity`")
233
+
quantity: Float!@deprecated(reason: "`cart_items` field of `ShippingCartAddress` returns now `CartItemInterface` instead of `CartItemQuantity`")
0 commit comments