-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Case of GraphQL::Schema.rescue_from doesn't work #1598
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
How strange! Thanks for opening this issue and sharing your work-around. |
Any Updates here? both implementations are not working with me too. 😅 |
i noticed the same thing and (at least for us) it was related to graphql-preload. having |
@modosc I see the same problematic behaviour when using graphql-preload and including However, when I move thanks |
@jonathanheron Since it's been 4 months, I don't know if you solved your issue but I ended finding a solution that worked on my project here ConsultingMD/graphql-preload#17 (comment) |
I just added new error handling for the interpreter runtime here: #2458 I think it should work with any order of schema configuration, since it doesn't touch the If you give it a try and run into trouble, please open a new issue! |
Uh oh!
There was an error while loading. Please reload this page.
graphql-ruby version is v1.8.3.
rescue_from
doesn't work when there is aquery
ormutation
definition beforerescue_from
.Implement
NG
OK
Reason
rescue_from
is following code.And,
query
andmutation
are affected by@rescues
. (maybe)Please check 🙏
The text was updated successfully, but these errors were encountered: