From 9c70e3b9f0833cd87ac0ea26e81b0de45994e2ff Mon Sep 17 00:00:00 2001 From: TimMikeladze Date: Mon, 23 Jan 2023 15:25:16 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20context=20import=20in=20graphql?= =?UTF-8?q?=20codegen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit context import in graphql codegen **Intentions:** - 🐛 - Bugfix --- codegen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen.ts b/codegen.ts index 9ae1a31..44fd420 100644 --- a/codegen.ts +++ b/codegen.ts @@ -6,7 +6,7 @@ const config: CodegenConfig = { generates: { 'src/generated/graphql.ts': { config: { - contextType: `src/graph/server#Context`, + contextType: `@/graphql/server#Context`, }, plugins: [`typescript`, `typescript-resolvers`], },