graphql-client icon indicating copy to clipboard operation
graphql-client copied to clipboard

A Ruby library for declaring, composing and executing GraphQL queries

Results 84 graphql-client issues
Sort by recently updated
recently updated
newest added

When I try to call `addProjectNextItem` mutation to create a card into the board (beta) that has a reference to an issue or PR from another organization, the api return...

@josh Is their a way to configure Session open_timeout, read_timeout values?

If an API adds an enum, and that enum appears in the response, this client will throw an `unexpected enum value` until the schema is updated. Clients who don't control...

I'm trying to create a module where I can dynamically set the headers, so that I can toggle between admin/root level query authorization, and user bearer token based authorization. In...

running this code to see if everything working: ```ruby require "graphql/client" require "graphql/client/http" HTTP = GraphQL::Client::HTTP.new("https://x.x.x.x:3100/graphql") Schema = GraphQL::Client.load_schema(HTTP) Client = GraphQL::Client.new(schema: Schema, execute: HTTP) ``` I get this error:...

This removes unused local variable. There is another used local variable defined below (L413).

Use built-in datetime/date types of graphql-ruby in specs.

My team is (unfortunately) using Ruby 2.3.5. When using the library with this version, you get the following exception ``` undefined method `match?' for /\A[A-Z]/:Regexp ``` This is due to...

Hi everyone! I'm trying to pass a variable from a query to a fragment as GraphQL documentation reports here: ![image](https://user-images.githubusercontent.com/89908674/143572568-05ce3a6b-ac67-4197-87f1-14a17f9487e6.png) But doing the same thing using the graphql-client I'm receiving...

It seems like 0.17.0 introduces a SystemStackError when to_json or as_json is done on the graphql response see below for stacktrace: ``` res.data.to_json Traceback (most recent call last): 16: from...