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
level: Int@doc(description: "Indicates the depth of the category within the tree.")
246
246
created_at: String@doc(description: "Timestamp indicating when the category was created.")
247
247
updated_at: String@doc(description: "Timestamp indicating when the category was updated.")
248
-
product_count: Int@doc(description: "The number of products in the category.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Category\\ProductsCount")
248
+
product_count: Int@doc(description: "The number of products in the category that are marked as visible. By default, in complex products, parent products are visible, but their child products are not.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Category\\ProductsCount")
249
249
default_sort_by: String@doc(description: "The attribute to use for sorting.")
250
250
products(
251
251
pageSize: Int = 20 @doc(description: "Specifies the maximum number of results to return at once. This attribute is optional."),
@@ -299,7 +299,7 @@ type SimpleProduct implements ProductInterface, PhysicalProductInterface, Custom
299
299
typeProducts@doc(description: "The Products object is the top-level object returned in a product search.") {
300
300
items: [ProductInterface] @doc(description: "An array of products that match the specified search criteria.")
301
301
page_info: SearchResultPageInfo@doc(description: "An object that includes the page_info and currentPage values specified in the query.")
302
-
total_count: Int@doc(description: "The number of products returned.")
302
+
total_count: Int@doc(description: "The number of products that are marked as visible. By default, in complex products, parent products are visible, but their child products are not.")
sort_fields: SortFields@doc(description: "An object that includes the default sort field and all available sort fields.") @resolver(class: "Magento\\CatalogGraphQl\\Model\\Resolver\\Category\\SortFields")
@@ -308,7 +308,7 @@ type Products @doc(description: "The Products object is the top-level object ret
308
308
typeCategoryProducts@doc(description: "The category products object returned in the Category query.") {
309
309
items: [ProductInterface] @doc(description: "An array of products that are assigned to the category.")
310
310
page_info: SearchResultPageInfo@doc(description: "An object that includes the page_info and currentPage values specified in the query.")
311
-
total_count: Int@doc(description: "The number of products returned.")
311
+
total_count: Int@doc(description: "The number of products in the category that are marked as visible. By default, in complex products, parent products are visible, but their child products are not.")
312
312
}
313
313
314
314
inputProductAttributeFilterInput@doc(description: "ProductAttributeFilterInput 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.") {
0 commit comments