Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
0ec2436
Update endpoint.js
meker12 Aug 20, 2025
a7b9ce2
Update queryHeaders.js
meker12 Aug 20, 2025
2489b4f
Update src/components/Graphiql/queries/endpoint.js
meker12 Aug 20, 2025
b06ec4d
wip: playground query fixes
bdenham Aug 21, 2025
a699e02
Merge branch 'develop' into COMOPT-618-Fix-API-playground-in-storefro…
meker12 Aug 21, 2025
fa2ca64
fixed Cart query
bdenham Aug 25, 2025
cf9da78
Update src/content/docs/setup/seo/metadata.mdx
bdenham Sep 4, 2025
269a068
Merge branch 'develop' into fix-playgrounds
bdenham Sep 5, 2025
83925d3
Merge branch 'develop' into fix-playgrounds
bdenham Sep 11, 2025
fb17215
Merge branch 'develop' into fix-playgrounds
bdenham Sep 15, 2025
36b49cf
Merge branch 'develop' into COMOPT-618-Fix-API-playground-in-storefro…
bdenham Sep 15, 2025
438d3d5
Merge branch 'develop' into fix-playgrounds
bdenham Sep 15, 2025
0ad20f6
Merge branch 'develop' into fix-playgrounds
bdenham Sep 16, 2025
d39ee7a
Merge fix-playgrounds into combined-playground-fixes
bdenham Sep 18, 2025
f957956
Merge branch 'develop' into combined-playground-fixes
bdenham Sep 18, 2025
1cf64b6
Merge branch 'develop' into combined-playground-fixes
bdenham Sep 22, 2025
fed359d
Merge branch 'develop' into combined-playground-fixes
bdenham Sep 30, 2025
b7d1009
Merge branch 'develop' into combined-playground-fixes
bdenham Oct 4, 2025
7179551
Merge branch 'develop' into combined-playground-fixes
bdenham Oct 24, 2025
263ffd4
Merge branch 'develop' into combined-playground-fixes
bdenham Nov 11, 2025
7ec7da3
Merge branch 'develop' into combined-playground-fixes
bdenham Nov 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Graphiql/queries/endpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -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') {
Expand Down
5 changes: 2 additions & 3 deletions src/components/Graphiql/queries/queryHeaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,12 @@ 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) => {
if (service === 'ACO') {
return ACO_QUERY_HEADERS;
}
return ACCS_QUERY_HEADERS;
}
}