-
Notifications
You must be signed in to change notification settings - Fork 764
Async schema does not return observable #452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Are you using the django channels backend for subscriptions? If so what version of django channels are you using? |
@colanconnon yes I am, Django==2.1a1 |
I don't think it's channels related, I believe that the async await section raizes a non fatal error that graphene captures than return that as a result while the query continues to execute in the background |
I managed to hack my way around it .. its not ideal since i don't actually get back the fields I queried .. but at least i get a response back to the browser, which Im planning on pairing with a regular query that actually gets the fields I want .. |
@syrusakbary any ideas? |
@japrogramer, I'm going to close this down since you found a solution. I'd also turn you to #120. |
Here i am trying to run an async schema
Here is the schema
And here is the value of result
I know that despite the error in result the schema continues in the background because of the brake points I have set.
The text was updated successfully, but these errors were encountered: