post-merge
Some checks failed
deploy / deploy (push) Failing after 22s

This commit is contained in:
2023-10-16 18:21:05 +03:00
parent 51ad266b62
commit 562a919fca
4 changed files with 2 additions and 240 deletions

View File

@@ -77,9 +77,7 @@ app = Starlette(
middleware=middleware,
routes=routes,
)
app.mount("/", GraphQL(
schema
))
app.mount("/", GraphQL( schema ))
dev_app = Starlette(
debug=True,
@@ -88,7 +86,4 @@ dev_app = Starlette(
middleware=middleware,
routes=routes,
)
dev_app.mount(
"/",
GraphQL(schema, debug=True),
)
dev_app.mount("/", GraphQL(schema, debug=True))