- Fixed the issue #25 thrown by @arjandepooter
It was impossible to execute subscription with this piece of code.
def run():
app = web.Application()
engine: Engine = create_engine(
...
)
web.run_app(
register_graphql_handlers(
app=app,
engine=engine,
subscription_ws_endpoint="/ws",
)
)