-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support GraphlQL Ruby 2.0, Field extensions, Rails 7, and Ruby 3 #38
base: master
Are you sure you want to change the base?
Conversation
Features/1.10 ready
Previously the `field.preload_scope` returned nil when using the field extensions, since field instruments are deprecated. This commit fixes that by checking for the preload scope in the options hash passed to the extension object.
Fixes/handle scope
Add support for Field Extensions
@thiagofelix I know you mentioned previously on #32 that it was a big change. Can we do a version bump and release this? Otherwise, this gem can't be used at all with GraphQL 2.0 or the latest Ruby/Rails. It's been quite a few years since this gem's seen an update, I'd be more than happy to take over the project, or even collaborate with @Envek if they are still interested in taking over as well! |
@joeyparis - I would love to see this get merged or ported to a new gem. |
Remove old CI stuff and add new stuff to support releasing a gem. I disabled tests that ensure it works with GraphQL v2, as the tests currently fail. If we want to support v2 then we should look into this fork: ConsultingMD#38
Remove old CI stuff and add new stuff to support releasing a gem. I disabled tests that ensure it works with GraphQL v2, as the tests currently fail. If we want to support v2 then we should look into this fork: ConsultingMD#38
Remove old CI stuff and add new stuff to support releasing a gem. I disabled tests that ensure it works with GraphQL v2, as the tests currently fail. If we want to support v2 then we should look into this fork: ConsultingMD#38
Remove old CI stuff and add new stuff to support releasing a gem. I disabled tests that ensure it works with GraphQL v2, as the tests currently fail. If we want to support v2 then we should look into this fork: ConsultingMD#38
Remove old CI stuff and add new stuff to support releasing a gem. I disabled tests that ensure it works with GraphQL v2, as the tests currently fail. If we want to support v2 then we should look into this fork: ConsultingMD#38
Adds support for
graphql-ruby
2.0, Field extensions, Rails 7, and Ruby 3. Also adds a series of tests written by rkorzeniec.