From 0ec2436a49b7a3d654c2478945af3cbff1113429 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Wed, 20 Aug 2025 11:29:32 -0500 Subject: [PATCH 1/6] Update endpoint.js --- src/components/Graphiql/queries/endpoint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Graphiql/queries/endpoint.js b/src/components/Graphiql/queries/endpoint.js index fa871839c..d68e9bd88 100644 --- a/src/components/Graphiql/queries/endpoint.js +++ b/src/components/Graphiql/queries/endpoint.js @@ -2,7 +2,7 @@ export const ACCS_ENDPOINT = 'https://edge-graph.adobe.io/api/489c8449-21a0-4155-9f95-7608d36970d6/graphql'; export const ACO_ENDPOINT = - 'https://na1-qa.api.commerce.adobe.com/LnjXjuam6uWmo5d2JLEgbA/graphql'; + 'https://na1-sandbox.api.commerce.adobe.com/Fwus6kdpvYCmeEdcCX7PZg/graphql'; export const getEndpoint = (service) => { if (service === 'ACO') { From a7b9ce2c02825795017fe0e8ac27e2c69c441e44 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Wed, 20 Aug 2025 11:40:33 -0500 Subject: [PATCH 2/6] Update queryHeaders.js --- src/components/Graphiql/queries/queryHeaders.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/Graphiql/queries/queryHeaders.js b/src/components/Graphiql/queries/queryHeaders.js index 04161b20e..8efedf727 100644 --- a/src/components/Graphiql/queries/queryHeaders.js +++ b/src/components/Graphiql/queries/queryHeaders.js @@ -9,8 +9,7 @@ export const ACCS_QUERY_HEADERS = { export const ACO_QUERY_HEADERS = { "Content-Type": "application/json", - "AC-Environment-Id": "LnjXjuam6uWmo5d2JLEgbA", - "AC-Scope-Locale": "tx" + "AC-View-ID": "cde0ab4c-1f7b-4e12-91f6-9c7840ab6523" # View ID for the Global catalog } export const getQueryHeaders = (service) => { @@ -18,4 +17,4 @@ export const getQueryHeaders = (service) => { return ACO_QUERY_HEADERS; } return ACCS_QUERY_HEADERS; -} \ No newline at end of file +} From 2489b4fa754e7a84734f4522d0030022e3f6e3b5 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Wed, 20 Aug 2025 11:41:33 -0500 Subject: [PATCH 3/6] Update src/components/Graphiql/queries/endpoint.js --- src/components/Graphiql/queries/endpoint.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Graphiql/queries/endpoint.js b/src/components/Graphiql/queries/endpoint.js index d68e9bd88..6db7648f3 100644 --- a/src/components/Graphiql/queries/endpoint.js +++ b/src/components/Graphiql/queries/endpoint.js @@ -2,7 +2,7 @@ export const ACCS_ENDPOINT = 'https://edge-graph.adobe.io/api/489c8449-21a0-4155-9f95-7608d36970d6/graphql'; export const ACO_ENDPOINT = - 'https://na1-sandbox.api.commerce.adobe.com/Fwus6kdpvYCmeEdcCX7PZg/graphql'; + 'https://na1-sandbox.api.commerce.adobe.com/Fwus6kdpvYCmeEdcCX7PZg/graphql'; # Instructor instance in the Commerce Opt org export const getEndpoint = (service) => { if (service === 'ACO') { From b06ec4d5a51e85a9e544e553dfd8994a1529ec3f Mon Sep 17 00:00:00 2001 From: Bruce Denham Date: Thu, 21 Aug 2025 10:11:16 -0500 Subject: [PATCH 4/6] wip: playground query fixes --- src/components/Graphiql/queries/endpoint.js | 2 +- src/components/Graphiql/queries/queryHeaders.js | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/Graphiql/queries/endpoint.js b/src/components/Graphiql/queries/endpoint.js index fa871839c..d68e9bd88 100644 --- a/src/components/Graphiql/queries/endpoint.js +++ b/src/components/Graphiql/queries/endpoint.js @@ -2,7 +2,7 @@ export const ACCS_ENDPOINT = 'https://edge-graph.adobe.io/api/489c8449-21a0-4155-9f95-7608d36970d6/graphql'; export const ACO_ENDPOINT = - 'https://na1-qa.api.commerce.adobe.com/LnjXjuam6uWmo5d2JLEgbA/graphql'; + 'https://na1-sandbox.api.commerce.adobe.com/Fwus6kdpvYCmeEdcCX7PZg/graphql'; export const getEndpoint = (service) => { if (service === 'ACO') { diff --git a/src/components/Graphiql/queries/queryHeaders.js b/src/components/Graphiql/queries/queryHeaders.js index 04161b20e..37e9cae70 100644 --- a/src/components/Graphiql/queries/queryHeaders.js +++ b/src/components/Graphiql/queries/queryHeaders.js @@ -9,8 +9,7 @@ export const ACCS_QUERY_HEADERS = { export const ACO_QUERY_HEADERS = { "Content-Type": "application/json", - "AC-Environment-Id": "LnjXjuam6uWmo5d2JLEgbA", - "AC-Scope-Locale": "tx" + "AC-View-ID": "cde0ab4c-1f7b-4e12-91f6-9c7840ab6523" } export const getQueryHeaders = (service) => { From fa2ca64e5e663cc3e5e7d177025c185a5514a8fa Mon Sep 17 00:00:00 2001 From: Bruce Denham Date: Mon, 25 Aug 2025 16:06:01 -0500 Subject: [PATCH 5/6] fixed Cart query --- src/components/Graphiql/queries/queryVariables.js | 2 +- src/content/docs/setup/seo/metadata.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Graphiql/queries/queryVariables.js b/src/components/Graphiql/queries/queryVariables.js index 3b0b3795f..f7c013123 100644 --- a/src/components/Graphiql/queries/queryVariables.js +++ b/src/components/Graphiql/queries/queryVariables.js @@ -1,5 +1,5 @@ export const ACCS_VARIABLES = { - Cart: JSON.stringify({ cartId: 'xEd9DiX2zdJV7yo1K7AUb1q9CYw4jijj' }, null, 2), + Cart: JSON.stringify({ cartId: 'bpQs2a4fWcfABqRTHGOXPkfLSJmBkvzS' }, null, 2), Products: JSON.stringify({ sku: 'ADB256' }, null, 2), Recommendations: JSON.stringify( { diff --git a/src/content/docs/setup/seo/metadata.mdx b/src/content/docs/setup/seo/metadata.mdx index 93262fd56..03b34df8d 100644 --- a/src/content/docs/setup/seo/metadata.mdx +++ b/src/content/docs/setup/seo/metadata.mdx @@ -24,7 +24,7 @@ When importing pages, ensure that when a metadata block is present on a page, it JavaScript Object Notation for Linked Data (JSON-LD) is a structured data format that helps search engines understand the content of your web pages more explicitly. It is typically added as a script tag in the `` of your HTML document. -Adobe Commerce storefronts on Edge Delivery Services should include [schema.org](https://schema.org/) annotations to expose product data to search engines. This data should be included on all Commerce pages, especially PDPs and PLPs. +Adobe storefronts on Edge Delivery Services should include [schema.org](https://schema.org/) annotations to expose product data to search engines. This data should be included on all Commerce pages, especially PDPs and PLPs. You should compare the data available on the site before migrating to Edge Delivery Services to ensure that SKUs for all product variants are included. Use the [Rich Results Test](https://search.google.com/test/rich-results) to validate the schema.org annotations. The PDP drop-in component in the boilerplate contains an example for JSON-LD data. From cf9da78c2a7ed15ade13a9ff091f77bd98d04878 Mon Sep 17 00:00:00 2001 From: Bruce Denham Date: Thu, 4 Sep 2025 17:10:21 -0500 Subject: [PATCH 6/6] Update src/content/docs/setup/seo/metadata.mdx --- src/content/docs/setup/seo/metadata.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/setup/seo/metadata.mdx b/src/content/docs/setup/seo/metadata.mdx index 03b34df8d..93262fd56 100644 --- a/src/content/docs/setup/seo/metadata.mdx +++ b/src/content/docs/setup/seo/metadata.mdx @@ -24,7 +24,7 @@ When importing pages, ensure that when a metadata block is present on a page, it JavaScript Object Notation for Linked Data (JSON-LD) is a structured data format that helps search engines understand the content of your web pages more explicitly. It is typically added as a script tag in the `` of your HTML document. -Adobe storefronts on Edge Delivery Services should include [schema.org](https://schema.org/) annotations to expose product data to search engines. This data should be included on all Commerce pages, especially PDPs and PLPs. +Adobe Commerce storefronts on Edge Delivery Services should include [schema.org](https://schema.org/) annotations to expose product data to search engines. This data should be included on all Commerce pages, especially PDPs and PLPs. You should compare the data available on the site before migrating to Edge Delivery Services to ensure that SKUs for all product variants are included. Use the [Rich Results Test](https://search.google.com/test/rich-results) to validate the schema.org annotations. The PDP drop-in component in the boilerplate contains an example for JSON-LD data.