graphql-client
graphql-client copied to clipboard
A Ruby library for declaring, composing and executing GraphQL queries
fixes #277 Hi 👋 Thanks for the great gem! 0.17.0 breaks as_json/to_json on graphql response because now `ObjectClass` class has `definer` variable that has circular references and ActiveSupport(`as_json`) tries to...
Fixes #279. Added a check for availability of `Regexp.match?` and use `=~` if method isn't available.
Hello, First wanted to say thank you for building this library, it is very useful. I've been encountering a bug when using fragments where the ObjectType class is returning a...
This relates to #146, specifically the point raised by a commenter at the end of the thread. Perhaps there's a cleaner way to do this, but we have a case...
I am trying to make a request from an endpoint for which I do not have the schema available. Additionally, the endpoint is configured not to respond to introspection requests....
We are using GraphQL client in our projects to fetch/query Github issues under specific repository, we can get response for the query with info includes: Github Issue title, body, labels...
- Added newer Ruby, graphql-ruby library & Rails version into CI matrix. - Bumped development dependency. Refer to the recent changes performed at [`rubocop-github`](https://github.com/github/rubocop-github/commit/3ff2f044eab246613b4a1c0c681be18d89cc387a).
It would be great if there was an option to keep the current query variables/json input string instead of needing to re-input every time I make a change in the...
I need to dynamically change the request headers. How to accomplish this?
Hello, I'm using the gem in a situation where a GraphQL API is exposed for a single application, and I'd like to be only exposed required the data. I'm thinking...