ACSD-59786: GraphQL returns an error when fetching a quote_id
for an expired quote
The ACSD-59786 patch fixes the issue where a GraphQL query returns an error when fetching a quote_id
for an expired quote. This patch is available when the Quality Patches Tool (QPT) 1.1.51 is installed. The patch ID is ACSD-59786. Please note that the issue is scheduled to be fixed in Adobe Commerce 2.4.8.
Affected products and versions
The patch is created for Adobe Commerce version:
- Adobe Commerce (all deployment methods) 2.4.6-p3
Compatible with Adobe Commerce versions:
- Adobe Commerce (all deployment methods) 2.4.6 - 2.4.7-p3
magento/quality-patches
package to the latest version and check the compatibility on the Quality Patches Tool: Search for patches page. Use the patch ID as a search keyword to locate the patch.Issue
A GraphQL query returns an error when fetching a quote_id
for an expired quote.
Steps to reproduce:
-
Enable Companies and Purchase Orders.
- Stores > Configuration > General > B2B Features and set Enable Company to Yes.
- Stores > Configuration > General > B2B Features > Order Approval Configuration and set Enable Purchase Orders to Yes.
-
Create a new company and set Enable Purchase Orders to Yes for the same.
-
Create a simple product and assign it to a category.
-
Log in to Storefront using the company Admin account and create a new order using Purchase Order as the payment method.
-
Change the Quote Lifetime (days).
- Stores > Configuration > Sales > Checkout > Shopping Cart > Quote Lifetime (days) = 0.
-
Run the command
bin/magento c:f
. -
Go to the DB
quote_table
and change thecreated_at
andupdated_at
values with one day in the past. -
Run the command
bin/magento cron:run --group="sales_clean_quotes
. -
Execute the GraphQL request given below using an authorized token for the Admin who creates the Purchase Order:
code language-graphql { customer { purchase_order(uid: "MQ==") { quote { id } } } }
Expected results:
The GraphQL query returns the quote_id
.
Actual results:
The GraphQL query returns an internal server error.
Apply the patch
To apply individual patches, use the following links depending on your deployment method:
- Adobe Commerce or Magento Open Source on-premises: Quality Patches Tool > Usage in the Quality Patches Tool guide.
- Adobe Commerce on cloud infrastructure: Upgrades and Patches > Apply Patches in the Commerce on Cloud Infrastructure guide.
Related reading
To learn more about Quality Patches Tool, refer to:
- Quality Patches Tool released: a new tool to self-serve quality patches in the support knowledge base.
- Check if patch is available for your Adobe Commerce issue using Quality Patches Tool in the Quality Patches Tool guide.
For info about other patches available in QPT, refer to Quality Patches Tool: Search for patches in the Quality Patches Tool guide.