feat: wildcard to resolvers , and find that load_resolvers are not added

This commit is contained in:
2023-10-06 03:04:10 -03:00
parent 10db0b45ef
commit 49a825274a
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ from services.schema import resolvers
from settings import DEV_SERVER_PID_FILE_NAME, SENTRY_DSN, MODE
import_module("resolvers")
schema = make_executable_schema(load_schema_from_path("inbox.graphql"), resolvers) # type: ignore
schema = make_executable_schema(load_schema_from_path("inbox.graphql"), *resolvers) # type: ignore
async def start_up():