Skip to content

Commit 4ae0f18

Browse files
fix: Correct GraphQL endpoint displayed on front-end (#7226) Thanks @peterklingelhofer !
1 parent 9983661 commit 4ae0f18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-playground/src/pages/FrontendIntegrations/FrontendIntegrationsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export function FrontendIntegrationsPage() {
1010
const apiUrl = 'http://localhost:4000/cubejs-api';
1111
const restUrl = `${apiUrl}/v1/load`;
1212
const wsUrl = "ws://localhost:4000/";
13-
const graphqlUrl = `${apiUrl}/v1/graphql`;
13+
const graphqlUrl = `${apiUrl}/graphql`;
1414

1515
const dataSource = [
1616
{

0 commit comments

Comments
 (0)