-
-
Notifications
You must be signed in to change notification settings - Fork 12
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
__typename is not returned when queried #57
Comments
Right, that query above was a (poor) example. However, in the example you provided, I'd expect the response to be: "data": {
"Hero": {
"__typename": "Hero"
}
} I'm also not quite sure I understand what you mean by being unused. As I understand it, |
Please, ignore my silly remark regarding |
Got it, so if Wundergraph is implementing |
In a query like the following:
The expected response would contain a key like:
Instead, the
__typename
key is omitted from the response. I've done a bit of poking around in Juniper, and it seems that theconcrete_type_name
function is called to determine the value__typename
should resolve when queried. Wundergraph appears to define that function here, but to no effect. Any thoughts on what might be happening here? Thanks!The text was updated successfully, but these errors were encountered: