Spaces:
Sleeping
Sleeping
File size: 263 Bytes
07eac76 | 1 2 3 4 5 6 7 8 9 10 | from fastapi.responses import RedirectResponse
from graph_ql import graphql_app
from rest import app
# Add Graph QL Application to the FastAPI RESTFul Application
app.add_route("/graphql", graphql_app)
app.add_websocket_route("/graphql", graphql_app)
|