ÃÛ¶¹ÊÓƵ

ACSD-64212: Order not linked to a customer account created via GraphQL after placing order

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 ÃÛ¶¹ÊÓƵ Commerce 2.4.8.

Affected products and versions

The patch is created for ÃÛ¶¹ÊÓƵ Commerce version:

ÃÛ¶¹ÊÓƵ Commerce (all deployment methods) 2.4.7-p3

Compatible with ÃÛ¶¹ÊÓƵ Commerce versions:

ÃÛ¶¹ÊÓƵ Commerce (all deployment methods) 2.4.5 - 2.4.7-p3

NOTE
The patch might become applicable to other versions with new Quality Patches Tool releases. To check if the patch is compatible with your ÃÛ¶¹ÊÓƵ Commerce version, update the 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:

  1. Place a guest order on the frontend.
  2. 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:

To learn more about Quality Patches Tool, refer to:

recommendation-more-help
c2d96e17-5179-455c-ad3a-e1697bb4e8c3