Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 482 Bytes

0.8.1.md

File metadata and controls

24 lines (18 loc) · 482 Bytes

[0.8.1] - 2019-06-19

Fixed

  • 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",
        )
    )