We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de143cb commit 022a890Copy full SHA for 022a890
src/fastcs/backends/graphQL/graphQL.py
@@ -40,8 +40,8 @@ def _create_app(self) -> FastAPI:
40
graphql_app: GraphQL = GraphQL(schema)
41
42
app = FastAPI()
43
- app.add_route("/graphql", graphql_app)
44
- app.add_websocket_route("/graphql", graphql_app)
+ app.add_route("/graphql", graphql_app) # type: ignore
+ app.add_websocket_route("/graphql", graphql_app) # type: ignore
45
46
return app
47
0 commit comments