This page has moved to Adobe Experience League and will be redirected soon.
MDVA-36170: GraphQL query to category returns not cached data
MDVA-36170: GraphQL query to category returns not cached data
The MDVA-36170 patch fixes the issue where the result of the GraphQL query is not cached. This patch is available when the Quality Patches Tool (QPT) 1.0.20 is installed. The patch ID is MDVA-36170. Please note that the issue was fixed in Adobe Commerce 2.4.2.
Affected products and versions
The patch is created for Adobe Commerce version:
Adobe Commerce on cloud infrastructure 2.3.6
Compatible with Adobe Commerce versions:
Adobe Commerce (all deployment methods) 2.3.1 - 2.4.1-p1
NOTE
The patch might become applicable to other versions with new Quality Patches Tool releases. To check if the patch is compatible with your Adobe Commerce version, update the magento/quality-patches
package to the latest version and check the compatibility on the [!DNL Quality Patches Tool]: Search for patches page. Use the patch ID as a search keyword to locate the patch.
Issue
Fixes the issue where the result of the GraphQL query is not cached.
Steps to reproduce:
The merchant is using the GET method for GraphQL caching but not getting the cached data.
https://magento_url/graphql?query={ products(filter: {category_id: {eq: "2"}}, pageSize: 2000, currentPage: 1, sort: {position: ASC}) {
items {
sku
id
name
description {
html
}
url_key
specifications
image {
label
gallery_url
}
__typename
quantity_in
small_image {
gallery_url
label
}
product_price_range {
maximum_price {
final_price {
value
}
}
minimum_price {
final_price {
value
}
}
}
... on ConfigurableProduct {
variants{
attributes{
code
label
value_index
}
product{
sku
quantity_in
}
}
}
}
}
}}
Expected results:
The data is cached.
Actual results:
The data is not cached.
Apply the patch
To apply individual patches, use the following links depending on your deployment method:
To learn more about Quality Patches Tool, refer to:
For info about other patches available in QPT, refer to Patches available in QPT in our developer documentation.