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/BundleGraphQl/etc/schema.graphqls
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ type BundleItem @doc(description: "BundleItem defines an individual item in a bu
14
14
typeBundleItemOption@doc(description: "BundleItemOption defines characteristics and options for a specific bundle item.") {
15
15
id: Int@doc(description: "The ID assigned to the bundled item option.")
16
16
label: String@doc(description: "The text that identifies the bundled item option.") @resolver(class: "Magento\\BundleGraphQl\\Model\\Resolver\\Options\\Label")
17
+
qty: Float@deprecated(reason: "The `qty` is deprecated. Use `quantity` instead.") @doc(description: "Indicates the quantity of this specific bundle item.")
17
18
quantity: Float@doc(description: "Indicates the quantity of this specific bundle item.")
18
19
position: Int@doc(description: "When a bundle item contains multiple options, the relative position of this option compared to the other options.")
19
20
is_default: Boolean@doc(description: "Indicates whether this option is the default option.")
0 commit comments