-
our schema configuration looks like this:
we noticed that the ruby-graphql has to call the graphql gem that i am using is very old |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi! There's an internal wrapper called RawValue which GraphQL-Ruby inserts without modification into the response whenever it's found: graphql-ruby/lib/graphql/execution/interpreter/runtime.rb Lines 546 to 549 in 24f797a You could try using that if you don't need any more GraphQL resolution. (But you have to handle _subfields, too, if there are any.) That's all I can think of! To dig in further, please open an issue with some profiling data, for example: https://graphql-ruby.org/testing/profiling.html |
Beta Was this translation helpful? Give feedback.
Hi! There's an internal wrapper called RawValue which GraphQL-Ruby inserts without modification into the response whenever it's found:
graphql-ruby/lib/graphql/execution/interpreter/runtime.rb
Lines 546 to 549 in 24f797a
You could try using that if you don't need any more GraphQL resolution. (But you have to handle _subfields, too, if there are any.) That's all I can think of!
To dig in further, please open an issue with some profiling data, for example: h…