You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following the example subscription app provided here: https://github.com/mirumee/ariadne-graphql-chat-example
It appears that the object being yielded back is returning data as null.
The query goes through the resolver as expected and logging the content before it yields contains the correct data.
I am using local memory for communication, and the Broadcast package.
app = Starlette(
debug=True,
on_startup=[broadcast.connect],
on_shutdown=[broadcast.disconnect],
)
# Mount app to handle GET and POST methods
app.mount("/graphql/", graphql)
# Mount app to handle websocket connections
app.add_websocket_route("/graphql/", graphql)
Is this a GraphiQL issue? Or perhaps an issue with using local memory as opposed to something like redis?
The text was updated successfully, but these errors were encountered:
Following the example subscription app provided here: https://github.com/mirumee/ariadne-graphql-chat-example
It appears that the object being yielded back is returning data as null.
The query goes through the resolver as expected and logging the content before it yields contains the correct data.
I am using local memory for communication, and the Broadcast package.
Is this a GraphiQL issue? Or perhaps an issue with using local memory as opposed to something like redis?
The text was updated successfully, but these errors were encountered: