From de34d6981558bb09796e10c788246c3afeccca72 Mon Sep 17 00:00:00 2001 From: Erik Beuschau Date: Fri, 20 Feb 2026 11:29:20 +0100 Subject: [PATCH] Move again --- src/graphql.test.ts | 2 +- src/graphql.ts | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/graphql.test.ts b/src/graphql.test.ts index 2fe3748..2ccde2c 100644 --- a/src/graphql.test.ts +++ b/src/graphql.test.ts @@ -6,7 +6,7 @@ import { yoga } from './graphql' const executor = buildHTTPExecutor({ fetch: yoga.fetch, - endpoint: 'http://yoga/', + endpoint: 'http://yoga/countries', }) const ListFilteredCountriesQuery = parse(/* GraphQL */ ` diff --git a/src/graphql.ts b/src/graphql.ts index f98d083..df5752f 100644 --- a/src/graphql.ts +++ b/src/graphql.ts @@ -5,7 +5,8 @@ import { schema } from './schema' export const yoga = createYoga({ schema, batching: true, - graphqlEndpoint: '/', + graphqlEndpoint: '/countries', + landingPage: false, }) export default {