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
id: Int@doc(description: "The ID number assigned to the product") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\EntityIdToId")
249
249
name: String@doc(description: "The product name. Customers use this name to identify the product.")
250
250
sku: String@doc(description: "A number or code assigned to a product to identify the product, options, price, and manufacturer")
251
-
description: ProductTextAttribute@doc(description: "Detailed information about the product. The value can include simple HTML tags.")@resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductTextAttribute")
252
-
short_description: ProductTextAttribute@doc(description: "A short description of the product. Its use depends on the theme.")@resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductTextAttribute")
251
+
description: ProductTextAttribute@doc(description: "Detailed information about the product. The value can include simple HTML tags.")
252
+
short_description: ProductTextAttribute@doc(description: "A short description of the product. Its use depends on the theme.")
253
253
special_price: Float@doc(description: "The discounted price of the product")
254
254
special_from_date: String@doc(description: "The beginning date that a product has a special price")
255
255
special_to_date: String@doc(description: "The end date that a product has a special price")
@@ -433,8 +433,8 @@ type CategoryProducts @doc(description: "The category products object returned i
433
433
inputProductFilterInput@doc(description: "ProductFilterInput defines the filters to be used in the search. A filter contains at least one attribute, a comparison operator, and the value that is being searched for.") {
434
434
name: FilterTypeInput@doc(description: "The product name. Customers use this name to identify the product.")
435
435
sku: FilterTypeInput@doc(description: "A number or code assigned to a product to identify the product, options, price, and manufacturer")
436
-
description: ProductTextAttributeTypeInput@doc(description: "Detailed information about the product. The value can include simple HTML tags.")
437
-
short_description: ProductTextAttributeTypeInput@doc(description: "A short description of the product. Its use depends on the theme.")
436
+
description: FilterTypeInput@doc(description: "Detailed information about the product. The value can include simple HTML tags.")
437
+
short_description: FilterTypeInput@doc(description: "A short description of the product. Its use depends on the theme.")
438
438
price: FilterTypeInput@doc(description: "The price of an item")
439
439
special_price: FilterTypeInput@doc(description: "The discounted price of the product")
440
440
special_from_date: FilterTypeInput@doc(description: "The beginning date that a product has a special price")
@@ -558,24 +558,5 @@ type SortFields @doc(description: "SortFields contains a default value for sort
558
558
}
559
559
560
560
typeProductTextAttribute@doc(description: "Product text attribute.") {
561
-
content: String
562
-
}
563
-
564
-
inputProductTextAttributeTypeInput@doc(description: "FilterTypeInput specifies which action will be performed in a query") {
565
-
format: String@doc(description: "Format of the content")
566
-
eq: String@doc(description: "Equals")
567
-
finset: [String] @doc(description: "Find in set. The value can contain a set of comma-separated values")
568
-
from: String@doc(description: "From. Must be used with 'to'")
569
-
gt: String@doc(description: "Greater than")
570
-
gteq: String@doc(description: "Greater than or equal to")
571
-
in: [String] @doc(description: "In. The value can contain a set of comma-separated values")
572
-
like: String@doc(description: "Like. The specified value can contain % (percent signs) to allow matching of 0 or more characters")
573
-
lt: String@doc(description: "Less than")
574
-
lteq: String@doc(description: "Less than or equal to")
575
-
moreq: String@doc(description: "More than or equal to")
576
-
neq: String@doc(description: "Not equal to")
577
-
notnull: String@doc(description: "Not null")
578
-
null: String@doc(description: "Is null")
579
-
to: String@doc(description: "To. Must be used with 'from'")
580
-
nin: [String] @doc(description: "Not in. The value can contain a set of comma-separated values")
561
+
html: String@doc(description: "Attribute HTML content") @resolver(class: "\\Magento\\CatalogGraphQl\\Model\\Resolver\\Product\\ProductTextAttribute\\HtmlContent")
0 commit comments