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

graphql-ruby plugin for caching parts of the response

Results 17 graphql-ruby-fragment_cache issues
Sort by recently updated
recently updated
newest added

Here is the problem with Rails 7.1 and this gem configuration. With Rails 7.1, in test environment, we always will see warning about cache format, because this gem creates cache...

This line of code in this gem, is producing a deprecation warning with Rails 7.1 https://github.com/DmitryTsepelev/graphql-ruby-fragment_cache/blob/1c08b1fe38508cc3388036d66153c45cd469d917/lib/graphql/fragment_cache/railtie.rb#L28 But only in the `test` environment. ``` DEPRECATION WARNING: Support for `config.active_support.cache_format_version = 6.1`...

Fixes #114 `Rail.application` was always evaluating to `nil` before as the code wasn't running in an initializer. I changed the approach slightly to be less intrusive: now we simply initialize...

I'm running into an issue that is kind of difficult to explain. I have a mutation that enters an infinite loop as outlined in the given stack-trace snippet. When I...

help wanted

Hey Dimitri, I'm looking for some guidance. Currently I'm implementing the fragment cache in a rather large codebase. It's working well for most of our not so complex queries, but...

Thank you for maintaining this gem! I have a nested object that I need it to invalidate the caching object when it is updated, and `touch: true` doesn't seem to...