Skip to content

Strawberry 0.12.0

Compare
Choose a tag to compare
@botberry botberry released this 25 Jun 17:39
· 3160 commits to main since this release

This releases adds support for ASGI 3.0

from strawberry.asgi import GraphQL
from starlette.applications import Starlette

graphql_app = GraphQL(schema_module.schema, debug=True)

app = Starlette(debug=True)
app.add_route("/graphql", graphql_app)
app.add_websocket_route("/graphql", graphql_app)