graphql
graphql copied to clipboard
Package graphql provides a GraphQL client implementation.
See #80 for details
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
better error message or different behavior when expecting slice of structs, but have single struct
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...
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