Replies: 1 comment
-
I am facing this same issue in Django 😭 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am upgrading my app to the latest version using the FastApi example.
Previously I mounted the subscriptions handler like this:
app.mount("/ws", GraphQL(subscription_schema, debug=True))
And if I pointed a browser to localhost/ws the graphiql interface let me test out and experiment with the subscriptions. This was very useful to debug and document the subscriptions.
In the new documentation example I am mounting my subscriptions like this:
However when I try to test a subscription through graphiql I get an error:
Is there a good way to enable testing subscriptions through graphiql that anyone can recommend? Is this something I need to configure in the client code?
Thanks for the help!
Beta Was this translation helpful? Give feedback.
All reactions