Following the docs here https://ariadnegraphql.org/docs/starlette-integration#mounting-asgi-application:
app.mount("/graphql/", GraphQL(schema, debug=True))
Means the app will respond on <app>/graphql/ but also anything starting with that prefix, such as <app>/graphql/v2.
The is probably not desirable.
Following the docs here https://ariadnegraphql.org/docs/starlette-integration#mounting-asgi-application:
Means the app will respond on
<app>/graphql/but also anything starting with that prefix, such as<app>/graphql/v2.The is probably not desirable.