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

Ruby implementation of GraphQL

Results 180 graphql-ruby issues
Sort by recently updated
recently updated
newest added

**Why & What** Datadog GraphQL integration is deprecating `analytics_enabled`, `analytics_sample_rate`. Hence, marking it with comment, and removing it from documentation to prevent it more usage https://github.com/DataDog/dd-trace-rb/pull/2214

**Is your feature request related to a problem? Please describe.** Currently I can't pass custom headers to the sync `sendPayload` HTTP call. **Describe the solution you'd like** It'd be great...

**Describe the bug** I have a query like this: ```graphql query { posts { # posts returns multiple posts. context[:form_owner] is set in the post object. form { question {...

**Describe the bug** It is possible to craft a 30kB query that takes a disproportionate amount of time and memory to parse and analyse, regardless of the schema. This could...

After a list has been scoped, don't re-run authorization on the objects it permitted. Fixes #3893 TODO: - [x] consider the breaking-ness of this change. Make it opt-in instead of...

Firstly, thank you so much for your work on this project! Love the library, and how helpful you are in responding to issues. **Is your feature request related to a...

As requested in https://github.com/rmosolgo/graphql-ruby/issues/4003 here is the diff for the spike I made for Fiber#transfer support. I was mistaken in the issue to say that async dataloader specs were passing...

I'm hoping to get `Dataloader` working with the `async` gem, but it seems to work a bit differently than the others. I tried using `Fiber.schedule { ... }`, but since...

There are two circular dependencies in the code generated from `rails generate graphql:install`. Whenever running Rails with `eager_load` of `true` (e.g., in production), you will encounter a bug, complaining that...

The auto-complete experience on the DSL methods (such as in RubyMine) is quite poor, because a lot of them just accept `*args, **kwargs, &block`. I suggest we add type hints...