From 7d1f2dfe017dead41cc07772b0c11dfd034161fb Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 14 Jun 2024 19:54:26 +0200 Subject: [PATCH] [Codegen] Fix gql schema url Was unintentionally merged --- gql_codegen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gql_codegen.ts b/gql_codegen.ts index 199aa0b9..0b924014 100644 --- a/gql_codegen.ts +++ b/gql_codegen.ts @@ -10,7 +10,7 @@ import type { CodegenConfig } from '@graphql-codegen/cli'; const config: CodegenConfig = { overwrite: true, - schema: 'http://localhost:45670/api/graphql', + schema: 'http://localhost:4567/api/graphql', documents: [ 'src/lib/graphql/queries/**', 'src/lib/graphql/mutations/**',