ACSD-64212: Order not linked to a customer account created via GraphQL after placing order
CREATED FOR:
- Experienced
- Admin
- Developer
The ACSD-64212 patch fixes the issue where an order does not get linked to a customer account that is created via GraphQL after placing the order. This patch is available when the Quality Patches Tool (QPT) 1.1.59 is installed. The patch ID is ACSD-64212. 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.7-p3
Compatible with Adobe Commerce versions:
Adobe Commerce (all deployment methods) 2.4.5 - 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
Order is not linked to a customer account when the account is created via GraphQL after placing the order.
Steps to reproduce:
- Place a guest order on the frontend.
- Send the following request to create the account:
mutation CreateAccountAfterCheckout(
$email: String!
$firstname: String!
$lastname: String!
$password: String!
$is_subscribed: Boolean!
) {
createCustomer(
input: {
email: $email
firstname: $firstname
lastname: $lastname
password: $password
is_subscribed: $is_subscribed
}
) {
customer {
email
__typename
}
__typename
}
}
{
"email": "guest@example.com",
"firstname": "first",
"lastname": "last",
"password": "password",
"is_subscribed": false
}
Expected results:
The guest order is associated with the customer after the customer account is created.
Actual results:
Customer account was created, but the guest order is not associated with the customer.
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: A self-service tool for quality patches in the Tools guide.