✏️ Update Strawberry integration docs (#13155)

This commit is contained in:
Kinuax
2025-01-06 12:24:17 +01:00
committed by GitHub
parent 6e60d0a056
commit b0e70cb37e
2 changed files with 4 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import strawberry
from fastapi import FastAPI
from strawberry.asgi import GraphQL
from strawberry.fastapi import GraphQLRouter
@strawberry.type
@@ -19,8 +19,7 @@ class Query:
schema = strawberry.Schema(query=Query)
graphql_app = GraphQL(schema)
graphql_app = GraphQLRouter(schema)
app = FastAPI()
app.add_route("/graphql", graphql_app)
app.add_websocket_route("/graphql", graphql_app)
app.include_router(graphql_app, prefix="/graphql")