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
meta_title: String@doc(description: "A string that is displayed in the title bar and tab of the browser and in search results lists")
258
258
meta_keyword: String@doc(description: "A comma-separated list of keywords that are visible only to search engines")
259
259
meta_description: String@doc(description: "A brief overview of the product for search results listings, maximum 255 characters")
260
-
image: String@doc(description: "The relative path to the main image on the product page")
261
-
small_image: String@doc(description: "The relative path to the small image, which is used on catalog pages")
262
-
thumbnail: String@doc(description: "The relative path to the product's thumbnail image")
260
+
image: ProductImage@doc(description: "The relative path to the main image on the product page") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductImage")
261
+
small_image: ProductImage@doc(description: "The relative path to the small image, which is used on catalog pages") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductImage")
262
+
thumbnail: ProductImage@doc(description: "The relative path to the product's thumbnail image") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductImage")
263
263
new_from_date: String@doc(description: "The beginning date for new product listings, and determines if the product is featured as a new product") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\NewFromTo")
264
264
new_to_date: String@doc(description: "The end date for new product listings") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\NewFromTo")
265
265
tier_price: Float@doc(description: "The price when tier pricing is in effect and the items purchased threshold has been reached")
@@ -352,6 +352,11 @@ type CustomizableFileValue @doc(description: "CustomizableFileValue defines the
352
352
image_size_y: Int@doc(description: "The maximum height of an image")
interfaceCustomizableOptionInterface@typeResolver(class: "Magento\\CatalogGraphQl\\Model\\CustomizableOptionTypeResolver") @doc(description: "The CustomizableOptionInterface contains basic information about a customizable option. It can be implemented by several types of configurable options.") {
356
361
title: String@doc(description: "The display name for this option")
357
362
required: Boolean@doc(description: "Indicates whether the option is required")
@@ -548,6 +553,6 @@ type SortField {
548
553
}
549
554
550
555
typeSortFields@doc(description: "SortFields contains a default value for sort fields and all available sort fields") {
551
-
default: String@doc(description: "Default value of sort fields")
556
+
default: String@doc(description: "Default value of sort fields")
0 commit comments