graphql icon indicating copy to clipboard operation
graphql copied to clipboard

Package graphql provides a GraphQL client implementation.

Results 63 graphql issues
Sort by recently updated
recently updated
newest added

Suppose I can create user like this ```GraphQL mutation($login: String!) { createUser(login: $login) { login } } variables { "login": "grihabor" } ``` Now I'd like to create multiple users...

as a user, I want to know status code directly instead of parsing error text, just incase error text got changed one day Signed-off-by: Leslie Qi Wang

From https://github.com/shurcooL/graphql/issues/45#issuecomment-527848376: > this package should do something better in this situation. Either the error message needs to be improved, or maybe it could unmarshal just the first book and...

API decision
NeedsInvestigation

Hello, I was wondering if its possible to use alternative HTTP clients or how much work it would be to support this. For example i'm looking to add retry &...

This PR allows customizing the requests sent for APIs that require additional headers. Replace #47, #48, #49, https://github.com/shurcooL/graphql/pull/64, #68. This is not the most beautiful solution but offers the highest...

Fixes https://github.com/shurcooL/graphql/issues/28. I saw various solutions in https://github.com/shurcooL/graphql/issues/28, especially this one: https://github.com/shurcooL/graphql/issues/28#issuecomment-485226864. I decided to take the variadic options approach because: 1) It's backwards compatible 2) Easy to build on...

This allows to make usages of some GitHub preview features. Signed-off-by: André Martins