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
+1-1
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ type BundleItemOption @doc(description: "BundleItemOption defines characteristic
66
66
price_type: PriceTypeEnum@doc(description: "One of FIXED, PERCENT, or DYNAMIC.")
67
67
can_change_quantity: Boolean@doc(description: "Indicates whether the customer can change the number of items for this option.")
68
68
product: ProductInterface@doc(description: "Contains details about this product option.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product")
69
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\BundleGraphQl\\Model\\Resolver\\Options\\BundleItemOptionUid") # A Base64 string that encodes option details.
69
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\BundleGraphQl\\Model\\Resolver\\Options\\BundleItemOptionUid") # A Base64 string that encodes option details.
70
70
}
71
71
72
72
typeBundleProductimplementsProductInterface, PhysicalProductInterface, CustomizableProductInterface@doc(description: "BundleProduct defines basic features of a bundle product and contains multiple BundleItems.") {
Copy file name to clipboardexpand all lines: app/code/Magento/CatalogGraphQl/etc/schema.graphqls
+8-8
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ type CustomizableAreaValue @doc(description: "CustomizableAreaValue defines the
132
132
price_type: PriceTypeEnum@doc(description: "FIXED, PERCENT, or DYNAMIC.")
133
133
sku: String@doc(description: "The Stock Keeping Unit for this option.")
134
134
max_characters: Int@doc(description: "The maximum number of characters that can be entered for this customizable option.")
135
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
135
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
136
136
}
137
137
138
138
typeCategoryTreeimplementsCategoryInterface@doc(description: "Category Tree implementation.") {
@@ -154,7 +154,7 @@ type CustomizableDateValue @doc(description: "CustomizableDateValue defines the
154
154
price: Float@doc(description: "The price assigned to this option.")
155
155
price_type: PriceTypeEnum@doc(description: "FIXED, PERCENT, or DYNAMIC.")
156
156
sku: String@doc(description: "The Stock Keeping Unit for this option.")
157
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
157
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
158
158
}
159
159
160
160
typeCustomizableDropDownOptionimplementsCustomizableOptionInterface@doc(description: "CustomizableDropDownOption contains information about a drop down menu that is defined as part of a customizable option.") {
@@ -168,7 +168,7 @@ type CustomizableDropDownValue @doc(description: "CustomizableDropDownValue defi
168
168
sku: String@doc(description: "The Stock Keeping Unit for this option.")
169
169
title: String@doc(description: "The display name for this option.")
170
170
sort_order: Int@doc(description: "The order in which the option is displayed.")
171
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
171
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
172
172
}
173
173
174
174
typeCustomizableMultipleOptionimplementsCustomizableOptionInterface@doc(description: "CustomizableMultipleOption contains information about a multiselect that is defined as part of a customizable option.") {
@@ -182,7 +182,7 @@ type CustomizableMultipleValue @doc(description: "CustomizableMultipleValue defi
182
182
sku: String@doc(description: "The Stock Keeping Unit for this option.")
183
183
title: String@doc(description: "The display name for this option.")
184
184
sort_order: Int@doc(description: "The order in which the option is displayed.")
typeCustomizableFieldOptionimplementsCustomizableOptionInterface@doc(description: "CustomizableFieldOption contains information about a text field that is defined as part of a customizable option.") {
@@ -195,7 +195,7 @@ type CustomizableFieldValue @doc(description: "CustomizableFieldValue defines th
195
195
price_type: PriceTypeEnum@doc(description: "FIXED, PERCENT, or DYNAMIC.")
196
196
sku: String@doc(description: "The Stock Keeping Unit for this option.")
197
197
max_characters: Int@doc(description: "The maximum number of characters that can be entered for this customizable option.")
198
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
198
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
199
199
}
200
200
201
201
typeCustomizableFileOptionimplementsCustomizableOptionInterface@doc(description: "CustomizableFileOption contains information about a file picker that is defined as part of a customizable option.") {
@@ -210,7 +210,7 @@ type CustomizableFileValue @doc(description: "CustomizableFileValue defines the
210
210
file_extension: String@doc(description: "The file extension to accept.")
211
211
image_size_x: Int@doc(description: "The maximum width of an image.")
212
212
image_size_y: Int@doc(description: "The maximum height of an image.")
213
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
213
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableEnteredOptionValueUid") # A Base64 string that encodes option details.
214
214
}
215
215
216
216
interfaceMediaGalleryInterface@doc(description: "Contains basic information about a product image or video.") @typeResolver(class: "Magento\\CatalogGraphQl\\Model\\MediaGalleryTypeResolver") {
@@ -280,7 +280,7 @@ type CustomizableRadioValue @doc(description: "CustomizableRadioValue defines th
280
280
sku: String@doc(description: "The Stock Keeping Unit for this option.")
281
281
title: String@doc(description: "The display name for this option.")
282
282
sort_order: Int@doc(description: "The order in which the radio button is displayed.")
283
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
283
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
284
284
}
285
285
286
286
typeCustomizableCheckboxOptionimplementsCustomizableOptionInterface@doc(description: "CustomizableCheckbbixOption contains information about a set of checkbox values that are defined as part of a customizable option.") {
@@ -294,7 +294,7 @@ type CustomizableCheckboxValue @doc(description: "CustomizableCheckboxValue defi
294
294
sku: String@doc(description: "The Stock Keeping Unit for this option.")
295
295
title: String@doc(description: "The display name for this option.")
296
296
sort_order: Int@doc(description: "The order in which the checkbox value is displayed.")
297
-
uid: ID@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
297
+
uid: ID!@doc(description: "An encoded string that encodes option details.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\CustomizableSelectedOptionValueUid") # A Base64 string that encodes option details.
298
298
}
299
299
300
300
typeVirtualProductimplementsProductInterface, CustomizableProductInterface@doc(description: "A virtual product is non-tangible product that does not require shipping and is not kept in inventory.") {
0 commit comments