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}