From bbf75a99caff9de5425ebbf97e1c927a8bd76d80 Mon Sep 17 00:00:00 2001 From: Deepak Date: Mon, 19 Jan 2026 17:39:55 +0530 Subject: [PATCH 01/10] LYNX-1029: Documentation for GraphQL API mutations --- src/data/navigation/sections/graphql.js | 8 + .../customer/mutations/delete-address-v2.md | 79 +++++++++ .../schema/customer/mutations/index.md | 2 + .../customer/mutations/update-address-v2.md | 156 ++++++++++++++++++ .../schema/orders/queries/guest-order.md | 6 +- 5 files changed, 248 insertions(+), 3 deletions(-) create mode 100644 src/pages/graphql/schema/customer/mutations/delete-address-v2.md create mode 100644 src/pages/graphql/schema/customer/mutations/update-address-v2.md diff --git a/src/data/navigation/sections/graphql.js b/src/data/navigation/sections/graphql.js index 64350c272..a60fab381 100644 --- a/src/data/navigation/sections/graphql.js +++ b/src/data/navigation/sections/graphql.js @@ -583,6 +583,10 @@ module.exports = [ title: "deleteCustomerAddress", path: "/graphql/schema/customer/mutations/delete-address/", }, + { + title: "deleteCustomerAddressV2", + path: "/graphql/schema/customer/mutations/delete-address-v2/", + }, { title: "exchangeExternalCustomerToken", path: "/graphql/schema/customer/mutations/exchange-external-customer-token/", @@ -631,6 +635,10 @@ module.exports = [ title: "updateCustomerAddress", path: "/graphql/schema/customer/mutations/update-address/", }, + { + title: "updateCustomerAddressV2", + path: "/graphql/schema/customer/mutations/update-address-v2/", + }, { title: "updateCustomerEmail", path: "/graphql/schema/customer/mutations/update-email/", diff --git a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md new file mode 100644 index 000000000..dddaddd0c --- /dev/null +++ b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md @@ -0,0 +1,79 @@ +--- +title: deleteCustomerAddressV2 mutation +--- + +# deleteCustomerAddressV2 mutation + +Use the `deleteCustomerAddressV2` mutation to delete the specified customer address. It returns a Boolean value that indicates whether the operation was successful. + +We recommend you use a customer token in the header of your call to delete a customer. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). + +## Syntax + +```graphql +mutation { + deleteCustomerAddressV2( + uid: ID! + ) { + Boolean + } +} +``` + +## Reference + +The `deleteCustomerAddressV2` reference provides detailed information about the types and fields defined in this mutation. + +## Example usage + +The following call deletes a customer's address. + +**Request:** + +```graphql +mutation { + deleteCustomerAddressV2(uid: "ODU=") +} +``` + +**Response:** + +```json +{ + "data": { + "deleteCustomerAddressV2": true + } +} +``` + +## Input attributes + +The `deleteCustomerAddressV2` mutation requires the following input: + +Attribute | Data Type | Description +--- | --- | --- +`uid` | ID! | The unique ID for a `CustomerAddress` object. + +## Output attributes + +The `deleteCustomerAddressV2` mutation returns a Boolean value that indicates whether the operation was successful. + +## Errors + +Error | Description +--- | --- +`Address "uid" value must be specified` | The `uid` argument is null or empty. +`Could not find an address with ID "XXX"` | The customer address specified in the `uid` argument does not exist. +`Customer Address XXX is set as default billing address and cannot be deleted` | You cannot delete a default billing address. +`Customer Address XXX is set as default shipping address and cannot be deleted` | You cannot delete a default shipping address. +`Field "deleteCustomerAddressV2" argument "uid" requires type ID!, found "XXX".` | The specified `uid` argument value has the wrong type. +`Syntax Error: Expected Name, found )` | The `uid` argument was omitted or does not have a value. +`The current customer isn't authorized.` | The current customer is not currently logged in, or the customer's token does not exist in the `oauth_token` table. + +## Related topics + +* [customer query](../queries/customer.md) +* [createCustomer mutation](create.md) +* [updateCustomer mutation](update.md) +* [createCustomerAddress mutation](create-address.md) +* [updateCustomerAddress mutation](update-address.md) diff --git a/src/pages/graphql/schema/customer/mutations/index.md b/src/pages/graphql/schema/customer/mutations/index.md index b7bba4765..cd6f977c3 100644 --- a/src/pages/graphql/schema/customer/mutations/index.md +++ b/src/pages/graphql/schema/customer/mutations/index.md @@ -13,8 +13,10 @@ The customer mutations allow you to perform the following operations: * [`createCustomerAddress`](create-address.md) * [`createCustomerV2`](create-v2.md) * [`deleteCustomerAddress`](delete-address.md) + * [`deleteCustomerAddressV2`](delete-address-v2.md) * [`updateCustomer`](update.md) * [`updateCustomerAddress`](update-address.md) + * [`updateCustomerAddressV2`](update-address-v2.md) * [`updateCustomerEmail`](update-email.md) * [`updateCustomerV2`](update-v2.md) diff --git a/src/pages/graphql/schema/customer/mutations/update-address-v2.md b/src/pages/graphql/schema/customer/mutations/update-address-v2.md new file mode 100644 index 000000000..89a86eafd --- /dev/null +++ b/src/pages/graphql/schema/customer/mutations/update-address-v2.md @@ -0,0 +1,156 @@ +--- +title: updateCustomerAddressV2 mutation +--- + +# updateCustomerAddressV2 mutation + +Use the `updateCustomerAddressV2` mutation to update the customer's address. + +To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). + +## Syntax +```graphql +mutation { + updateCustomerAddressV2( + uid: ID!, + input: CustomerAddressInput + ) { + CustomerAddress + } +} +``` +## Reference + +The `updateCustomerAddressV2` reference provides detailed information about the types and fields defined in this mutation. + +## Example usage + +### Update a customer address + +The following call updates the customer's city and postcode. + +**Request:** + +```graphql +mutation { + updateCustomerAddressV2(uid:"ODU=", input: { + city: "New City" + postcode: "55555" + }) { + uid + city + postcode + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateCustomerAddressV2": { + "uid": "ODU=", + "city": "New City", + "postcode": 55555 + } + } +} +``` + +### Update a customer address with custom attributes + +The following call updates the customer's city, postcode, and custom attributes. The merchant has previously created the `station` and `services` attributes for customer addresses. + +**Request:** + +```graphql +mutation { + updateCustomerAddressV2(uid: "ODU=", input: { + city: "New City" + postcode: "55555" + custom_attributesV2: [ + { + attribute_code: "station", + value: "Times Sq - 42 St" + }, + { + attribute_code: "services" + value: "507" + selected_options: [ + { + uid: "NTA3" + value: "507" + } + ] + } + ] + }) { + uid + city + postcode + custom_attributesV2 { + code + ... on AttributeValue { + value + } + ... on AttributeSelectedOptions { + selected_options { + label + value + } + } + } + } +} +``` + +**Response:** + +```json +{ + "data": { + "updateCustomerAddressV2": { + "uid": "ODU=", + "city": "New City", + "postcode": 55555, + "custom_attributesV2": [ + { + "code": "station", + "value": "Times Sq - 42 St" + }, + { + "code": "services", + "selected_options": [ + { + "label": "hospital", + "value": "507" + } + ] + } + ] + } + } +} +``` + +## Errors + +Error | Description +--- | --- +`Address "uid" value should be specified` | The `uid` argument is null. +`Could not find a address with ID "XXX"` | The customer address specified in the `uid` argument does not exist. +`Current customer does not have permission to address with ID "XXX"` | The customer tries to update the address of another customer. +`Field "updateCustomerAddressV2" argument "uid" of type "ID!" is required but not provided.` | The `uid` argument was omitted. +`Field "updateCustomerAddressV2" argument "uid" requires type ID!, found "XXX".` | The specified `uid` argument value has the wrong type. +`"input" value must be specified` | The `input` argument was omitted or was specified but is empty. +`Syntax Error: Expected Name, found )` | The `uid` and `input` arguments are omitted. +`The current customer isn't authorized.` | The current customer is not currently logged in, or the customer's token does not exist in the `oauth_token` table. + +## Related topics + +* [customer query](../queries/customer.md) +* [createCustomer mutation](create.md) +* [updateCustomer mutation](update.md) +* [createCustomerAddress mutation](create-address.md) +* [deleteCustomerAddress mutation](delete-address.md) diff --git a/src/pages/graphql/schema/orders/queries/guest-order.md b/src/pages/graphql/schema/orders/queries/guest-order.md index 809242017..eebbeb7b3 100644 --- a/src/pages/graphql/schema/orders/queries/guest-order.md +++ b/src/pages/graphql/schema/orders/queries/guest-order.md @@ -4,11 +4,11 @@ title: guestOrder query # guestOrder query -Use the `guestOrder` query to retrieve details about an order placed by a guest or customer who is not logged in. To retrieve this information, the guest must supply the order number, email, and postal code used to create the order. +Use the `guestOrder` query to retrieve details about an order placed by a guest or customer who is not logged in. To retrieve this information, the guest must supply the order number, email, and lastname used to create the order. ## Syntax -`{guestOrder(input: OrderInformationInput!) {CustomerOrder!}}` +`{guestOrder(input: GuestOrderInformationInput!) {CustomerOrder!}}` ## Reference @@ -24,7 +24,7 @@ The `guestOrder` reference provides detailed information about the types and fie input: { number: "000000001", email: "test@example.com", - postcode: "12345-6789" + lastname: "User" } ) { status From 93f422372919f8ef7ec7d11fc4addacc36a68778 Mon Sep 17 00:00:00 2001 From: Deepak Date: Mon, 19 Jan 2026 17:50:01 +0530 Subject: [PATCH 02/10] LYNX-1029: Documentation for GraphQL API mutations --- .../graphql/schema/customer/mutations/delete-address-v2.md | 4 ---- .../graphql/schema/customer/mutations/update-address-v2.md | 7 ++----- src/pages/graphql/schema/orders/queries/guest-order.md | 4 ---- 3 files changed, 2 insertions(+), 13 deletions(-) diff --git a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md index dddaddd0c..ac432e989 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md @@ -20,10 +20,6 @@ mutation { } ``` -## Reference - -The `deleteCustomerAddressV2` reference provides detailed information about the types and fields defined in this mutation. - ## Example usage The following call deletes a customer's address. diff --git a/src/pages/graphql/schema/customer/mutations/update-address-v2.md b/src/pages/graphql/schema/customer/mutations/update-address-v2.md index 89a86eafd..48d1200f3 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/update-address-v2.md @@ -19,9 +19,6 @@ mutation { } } ``` -## Reference - -The `updateCustomerAddressV2` reference provides detailed information about the types and fields defined in this mutation. ## Example usage @@ -138,8 +135,8 @@ mutation { Error | Description --- | --- -`Address "uid" value should be specified` | The `uid` argument is null. -`Could not find a address with ID "XXX"` | The customer address specified in the `uid` argument does not exist. +`Address "uid" value must be specified` | The `uid` argument is null or empty. +`Could not find an address with ID "XXX"` | The customer address specified in the `uid` argument does not exist. `Current customer does not have permission to address with ID "XXX"` | The customer tries to update the address of another customer. `Field "updateCustomerAddressV2" argument "uid" of type "ID!" is required but not provided.` | The `uid` argument was omitted. `Field "updateCustomerAddressV2" argument "uid" requires type ID!, found "XXX".` | The specified `uid` argument value has the wrong type. diff --git a/src/pages/graphql/schema/orders/queries/guest-order.md b/src/pages/graphql/schema/orders/queries/guest-order.md index eebbeb7b3..7c72d3d62 100644 --- a/src/pages/graphql/schema/orders/queries/guest-order.md +++ b/src/pages/graphql/schema/orders/queries/guest-order.md @@ -10,10 +10,6 @@ Use the `guestOrder` query to retrieve details about an order placed by a guest `{guestOrder(input: GuestOrderInformationInput!) {CustomerOrder!}}` -## Reference - -The `guestOrder` reference provides detailed information about the types and fields defined in this query. - ## Example usage **Request:** From da59b328525b46ee5b3057d457009daa9c9acdaa Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Mon, 19 Jan 2026 09:59:15 -0600 Subject: [PATCH 03/10] linting error Added a note about session authentication for customer address updates. --- src/pages/graphql/schema/customer/mutations/update-address-v2.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/graphql/schema/customer/mutations/update-address-v2.md b/src/pages/graphql/schema/customer/mutations/update-address-v2.md index 48d1200f3..d9e15eb8f 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/update-address-v2.md @@ -9,6 +9,7 @@ Use the `updateCustomerAddressV2` mutation to update the customer's address. To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). ## Syntax + ```graphql mutation { updateCustomerAddressV2( From aba4105a2d7dd8e230add3250c08135ddc148f6b Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Mon, 19 Jan 2026 11:16:36 -0600 Subject: [PATCH 04/10] Add availability and deprecation notices --- .../graphql/schema/customer/mutations/delete-address-v2.md | 4 ++++ .../graphql/schema/customer/mutations/delete-address.md | 2 ++ .../graphql/schema/customer/mutations/update-address-v2.md | 5 +++++ .../graphql/schema/customer/mutations/update-address.md | 4 ++++ src/pages/graphql/schema/orders/queries/guest-order.md | 2 +- 5 files changed, 16 insertions(+), 1 deletion(-) diff --git a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md index ac432e989..f7572fea2 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md @@ -8,6 +8,10 @@ Use the `deleteCustomerAddressV2` mutation to delete the specified customer addr We recommend you use a customer token in the header of your call to delete a customer. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). + + +This mutation is part of the [Storefront Compatibility Package](https://experienceleague.adobe.com/developer/commerce/storefront/setup/configuration/storefront-compatibility/v248/). It will be added to Adobe Commerce 2.4.9. + ## Syntax ```graphql diff --git a/src/pages/graphql/schema/customer/mutations/delete-address.md b/src/pages/graphql/schema/customer/mutations/delete-address.md index c9afbb158..18ceee843 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address.md @@ -4,6 +4,8 @@ title: deleteCustomerAddress mutation # deleteCustomerAddress mutation +This mutation will be deprecated in Adobe Commerce 2.4.9. We recommend using the [deleteCustomerAddressV2 mutation](./delete-address-v2.md) instead. + Use the `deleteCustomerAddress` mutation to delete the specified customer address. It returns a Boolean value that indicates whether the operation was successful. We recommend you use a customer token in the header of your call to delete a customer. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). diff --git a/src/pages/graphql/schema/customer/mutations/update-address-v2.md b/src/pages/graphql/schema/customer/mutations/update-address-v2.md index 48d1200f3..5d690625a 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/update-address-v2.md @@ -8,7 +8,12 @@ Use the `updateCustomerAddressV2` mutation to update the customer's address. To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). + + +This mutation is part of the [Storefront Compatibility Package](https://experienceleague.adobe.com/developer/commerce/storefront/setup/configuration/storefront-compatibility/v248/). It will be added to Adobe Commerce 2.4.9. + ## Syntax + ```graphql mutation { updateCustomerAddressV2( diff --git a/src/pages/graphql/schema/customer/mutations/update-address.md b/src/pages/graphql/schema/customer/mutations/update-address.md index f16a757ee..8f3c36d52 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address.md +++ b/src/pages/graphql/schema/customer/mutations/update-address.md @@ -4,6 +4,10 @@ title: updateCustomerAddress mutation # updateCustomerAddress mutation + + +This mutation will be deprecated in Adobe Commerce 2.4.9. We recommend using the [updateCustomerAddressV2 mutation](./update-address-v2.md) instead. + Use the `updateCustomerAddress` mutation to update the customer's address. To return or modify information about a customer, we recommend you use customer tokens in the header of your GraphQL calls. However, you also can use [session authentication](https://developer.adobe.com/commerce/webapi/get-started/authentication/gs-authentication-session). diff --git a/src/pages/graphql/schema/orders/queries/guest-order.md b/src/pages/graphql/schema/orders/queries/guest-order.md index 7c72d3d62..b3745891c 100644 --- a/src/pages/graphql/schema/orders/queries/guest-order.md +++ b/src/pages/graphql/schema/orders/queries/guest-order.md @@ -4,7 +4,7 @@ title: guestOrder query # guestOrder query -Use the `guestOrder` query to retrieve details about an order placed by a guest or customer who is not logged in. To retrieve this information, the guest must supply the order number, email, and lastname used to create the order. +Use the `guestOrder` query to retrieve details about an order placed by a guest or customer who is not logged in. To retrieve this information, the guest must supply the order number, email, and last name that was used to create the order. ## Syntax From f7789b1fc557d70b596348778be0391c9974fe63 Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Mon, 19 Jan 2026 16:21:36 -0600 Subject: [PATCH 05/10] Revise deprecation notice for deleteCustomerAddress Updated deprecation notice for deleteCustomerAddress mutation. --- src/pages/graphql/schema/customer/mutations/delete-address.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/pages/graphql/schema/customer/mutations/delete-address.md b/src/pages/graphql/schema/customer/mutations/delete-address.md index 18ceee843..948be1ab3 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address.md @@ -4,7 +4,9 @@ title: deleteCustomerAddress mutation # deleteCustomerAddress mutation -This mutation will be deprecated in Adobe Commerce 2.4.9. We recommend using the [deleteCustomerAddressV2 mutation](./delete-address-v2.md) instead. + + +This mutation has been deprecated in Adobe Commerce as a Cloud Service and will be deprecated in Adobe Commerce 2.4.9. We recommend using the [deleteCustomerAddressV2 mutation](./delete-address-v2.md) instead. Use the `deleteCustomerAddress` mutation to delete the specified customer address. It returns a Boolean value that indicates whether the operation was successful. From 954a9647f2a6fe7e84b4b3305a6fe9c07d6b0268 Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Mon, 19 Jan 2026 16:22:44 -0600 Subject: [PATCH 06/10] Update deprecation notice in update-address.md Clarified deprecation notice for updateCustomerAddress mutation. --- src/pages/graphql/schema/customer/mutations/update-address.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/graphql/schema/customer/mutations/update-address.md b/src/pages/graphql/schema/customer/mutations/update-address.md index 8f3c36d52..ece0eb47d 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address.md +++ b/src/pages/graphql/schema/customer/mutations/update-address.md @@ -6,7 +6,7 @@ title: updateCustomerAddress mutation -This mutation will be deprecated in Adobe Commerce 2.4.9. We recommend using the [updateCustomerAddressV2 mutation](./update-address-v2.md) instead. +This mutation has been deprecated in Adobe Commerce as a Cloud Service and will be deprecated in Adobe Commerce 2.4.9. We recommend using the [updateCustomerAddressV2 mutation](./update-address-v2.md) instead. Use the `updateCustomerAddress` mutation to update the customer's address. From edb24e2eff28b8fdaead2ba12c88693b7978e2a4 Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Mon, 19 Jan 2026 20:03:59 -0600 Subject: [PATCH 07/10] Add reference sections --- .../graphql/schema/customer/mutations/delete-address-v2.md | 6 ++++++ .../graphql/schema/customer/mutations/update-address-v2.md | 6 ++++++ .../graphql/schema/orders/queries/guest-order-by-token.md | 2 +- src/pages/graphql/schema/orders/queries/guest-order.md | 4 ++++ 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md index f7572fea2..de93cfad1 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md @@ -24,6 +24,12 @@ mutation { } ``` + +## Reference + +The [`deleteCustomerAddressV2`](https://developer.adobe.com/commerce/webapi/graphql-api/saas/index.html#mutation-deleteCustomerAddressV2) reference provides detailed information about the types and fields defined in this mutation. +--> + ## Example usage The following call deletes a customer's address. diff --git a/src/pages/graphql/schema/customer/mutations/update-address-v2.md b/src/pages/graphql/schema/customer/mutations/update-address-v2.md index 5d690625a..0030d2d08 100644 --- a/src/pages/graphql/schema/customer/mutations/update-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/update-address-v2.md @@ -25,6 +25,12 @@ mutation { } ``` + +## Reference + +The [`updateCustomerAddressV2`](https://developer.adobe.com/commerce/webapi/graphql-api/saas/index.html#mutation-updateCustomerAddressV2) reference provides detailed information about the types and fields defined in this mutation. +--> + ## Example usage ### Update a customer address diff --git a/src/pages/graphql/schema/orders/queries/guest-order-by-token.md b/src/pages/graphql/schema/orders/queries/guest-order-by-token.md index 0d9400806..e3787a5a5 100644 --- a/src/pages/graphql/schema/orders/queries/guest-order-by-token.md +++ b/src/pages/graphql/schema/orders/queries/guest-order-by-token.md @@ -13,7 +13,7 @@ You can retrieve the token from the `CustomerOrder` object on the [`placeOrder` ## Reference -The `guestOrderByToken` reference provides detailed information about the types and fields defined in this query. +The [`guestOrderByToken`](https://developer.adobe.com/commerce/webapi/graphql-api/index.html#query-guestOrderByToken) reference provides detailed information about the types and fields defined in this query. ## Example usage diff --git a/src/pages/graphql/schema/orders/queries/guest-order.md b/src/pages/graphql/schema/orders/queries/guest-order.md index b3745891c..b2e5000f4 100644 --- a/src/pages/graphql/schema/orders/queries/guest-order.md +++ b/src/pages/graphql/schema/orders/queries/guest-order.md @@ -10,6 +10,10 @@ Use the `guestOrder` query to retrieve details about an order placed by a guest `{guestOrder(input: GuestOrderInformationInput!) {CustomerOrder!}}` +## Reference + +The [`guestOrder`](https://developer.adobe.com/commerce/webapi/graphql-api/index.html#query-guestOrder) reference provides detailed information about the types and fields defined in this query. + ## Example usage **Request:** From 8be0505627b5508ad87a2c62fe4c5b0fe0be734f Mon Sep 17 00:00:00 2001 From: Kevin Harper Date: Tue, 20 Jan 2026 10:48:54 -0600 Subject: [PATCH 08/10] Invalid comment markup --- .../graphql/schema/customer/mutations/delete-address-v2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md index de93cfad1..b24b72be9 100644 --- a/src/pages/graphql/schema/customer/mutations/delete-address-v2.md +++ b/src/pages/graphql/schema/customer/mutations/delete-address-v2.md @@ -24,7 +24,7 @@ mutation { } ``` - + +