Hi, is there a way to avoid automatic schema dump/introspection query?
Graphql for ruby (v1.9.7 ++) have the ability to disable those for production and I couldn't find a way of disabling the automatic fetch locally.
This is the message I'm getting and trying to client.schema or any operation (which in the end hits https://github.com/rmosolgo/graphql-ruby/blob/master/lib/graphql/schema/loader.rb#L16 )
(byebug) client.schema
*** KeyError Exception: key not found: "data"
Any thoughts besides mocking the schema?
Hi, is there a way to avoid automatic schema dump/introspection query?
Graphql for ruby (v1.9.7 ++) have the ability to disable those for production and I couldn't find a way of disabling the automatic fetch locally.
This is the message I'm getting and trying to
client.schemaor any operation (which in the end hits https://github.com/rmosolgo/graphql-ruby/blob/master/lib/graphql/schema/loader.rb#L16 )Any thoughts besides mocking the schema?