Module: GraphQL::Testing::Helpers::SchemaHelpers

Includes:
GraphQL::Testing::Helpers
Defined in:
lib/graphql/testing/helpers.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.for(schema_class) ⇒ Object



145
146
147
148
149
150
# File 'lib/graphql/testing/helpers.rb', line 145

def self.for(schema_class)
  Module.new do
    include SchemaHelpers
    @@schema_class_for_helpers = schema_class
  end
end

Instance Method Details

#run_graphql_field(field_path, object, arguments: {}, context: {}) ⇒ Object



136
137
138
# File 'lib/graphql/testing/helpers.rb', line 136

def run_graphql_field(field_path, object, arguments: {}, context: {})
  super(@@schema_class_for_helpers, field_path, object, arguments: arguments, context: context)
end

#with_resolution_context(*args, **kwargs, &block) ⇒ Object



140
141
142
143
# File 'lib/graphql/testing/helpers.rb', line 140

def with_resolution_context(*args, **kwargs, &block)
  # schema will be added later
  super(nil, *args, **kwargs, &block)
end