We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Given an query
query HomeQuery { viewer { ...home_viewer id } } fragment home_viewer on Customer { id }
and a response
{ "data": { "viewer": { "id": "Q3VzdG9tZXI6MA==" } } }
An error is is encountered.
response_body = Err( reqwest::Error { kind: Decode, source: Error("missing field `id`", line: 1, column: 43), }, )
If id is added along side with the the fragment, i.e.
id
...home_viewer id
somehow it cannot decode it. If id is removed then everything is okay.
I can reproduce the same problem in the github example by adding a fragment to the query
query RepoView($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { ...home_viewer id ... } } fragment home_viewer on Repository { id }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given an query
and a response
An error is is encountered.
If
id
is added along side with the the fragment, i.e.somehow it cannot decode it. If
id
is removed then everything is okay.I can reproduce the same problem in the github example by adding a fragment to the query
The text was updated successfully, but these errors were encountered: