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
inputBundleProductCartItemInput@doc(description: "Defines a single bundle product.") {
14
14
data: CartItemInput!@doc(description: "The quantity and SKU of the bundle product.")
15
-
bundle_options:[BundleOptionInput!]!@doc(description: "An array of options for the bundle product with the chosen value and quantity of each option.")
15
+
bundle_options:[BundleOptionInput!]!@doc(description: "A mandatory array of options for the bundle product, including each chosen option and specified quantity.")
16
16
customizable_options:[CustomizableOptionInput!] @doc(description: "The ID and value of the option.")
17
17
}
18
18
19
-
inputBundleOptionInput@doc(description: "Defines a bundle option.") {
19
+
inputBundleOptionInput@doc(description: "Defines the input for a bundle option.") {
20
20
id: Int!@doc(description: "The ID of the option.")
21
-
quantity: Float!@doc(description: "The number of a specific child item to add to the cart.")
22
-
value: [String!]!@doc(description: "An array with the chosen value of the option")
21
+
quantity: Float!@doc(description: "The number of the selected item to add to the cart.")
22
+
value: [String!]!@doc(description: "An array with the chosen value of the option.")
23
23
}
24
24
25
25
typeAddBundleProductsToCartOutput@doc(description: "Contains details about the cart after adding bundle products.") {
@@ -47,18 +47,18 @@ type SelectedBundleOptionValue @doc(description: "Contains details about a value
47
47
price: Float!@doc(description: "The price of the value for the selected bundle product option.")
48
48
}
49
49
50
-
typeBundleItem@doc(description: "Defines an individual item in a bundle product.") {
50
+
typeBundleItem@doc(description: "Defines an individual item within a bundle product.") {
51
51
option_id: Int@deprecated(reason: "Use `uid` instead") @doc(description: "An ID assigned to each type of item in a bundle product.")
52
52
uid: ID@doc(description: "The unique ID for a `BundleItem` object.")
53
53
title: String@doc(description: "The display name of the item.")
54
54
required: Boolean@doc(description: "Indicates whether the item must be included in the bundle.")
55
55
type: String@doc(description: "The input type that the customer uses to select the item. Examples include radio button and checkbox.")
56
-
position: Int@doc(description: "The relative position of this item compared to the other bundle items.")
56
+
position: Int@doc(description: "A number indicating the sequence order of this item compared to the other bundle items.")
57
57
sku: String@doc(description: "The SKU of the bundle product.")
58
58
options: [BundleItemOption] @doc(description: "An array of additional options for this bundle item.") @resolver(class: "Magento\\BundleGraphQl\\Model\\Resolver\\BundleItemLinks")
59
59
}
60
60
61
-
typeBundleItemOption@doc(description: "Defines characteristics and options for a specific bundle item.") {
61
+
typeBundleItemOption@doc(description: "Defines the characteristics that comprise a specific bundle item and its options.") {
62
62
id: Int@deprecated(reason: "Use `uid` instead") @doc(description: "The ID assigned to the bundled item option.")
63
63
label: String@doc(description: "The text that identifies the bundled item option.") @resolver(class: "Magento\\BundleGraphQl\\Model\\Resolver\\Options\\Label")
64
64
qty: Float@deprecated(reason: "Use `quantity` instead.") @doc(description: "Indicates the quantity of this specific bundle item.")
0 commit comments