From fada9a289aa74b854e999d4c636bbb78b2b50a48 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Fri, 6 Oct 2023 06:05:01 -0300 Subject: [PATCH] feat: right schema in schema.py --- services/schema.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/schema.py b/services/schema.py index 161935bc..5b8dcb44 100644 --- a/services/schema.py +++ b/services/schema.py @@ -14,7 +14,7 @@ query = QueryType() @query.field("_service") def resolve_service(*_): # Load the full SDL from your SDL file - with open("core.graphql", "r") as file: + with open("schemas/core.graphql", "r") as file: full_sdl = file.read() return {"sdl": full_sdl}