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
I like being able to send graphql queries with rest client, but it doesn't seem to support queries with fragments.
Example here: https://www.apollographql.com/docs/react/data/fragments/
Relates to: #127
The text was updated successfully, but these errors were encountered:
is anyone working on it??
Sorry, something went wrong.
From what I tested, it already works. You just CANNOT have any empty lines between your query and fragments.
So this below should work...
POST https://api.github.com/graphql Content-Type: application/json Authorization: Bearer xxx X-REQUEST-TYPE: GraphQL query ($name: String!, $owner: String!) { repository(name: $name, owner: $owner) { ...RepoParts stargazers(first: 5) { totalCount nodes { login name } } watchers { totalCount } } } fragment RepoParts on repository { name fullName: nameWithOwner description diskUsage forkCount } { "name": "vscode-restclient", "owner": "Huachao" }
No branches or pull requests
I like being able to send graphql queries with rest client, but it doesn't seem to support queries with fragments.
Example here: https://www.apollographql.com/docs/react/data/fragments/
Relates to: #127
The text was updated successfully, but these errors were encountered: