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



120
121
122
123
124
125
# File 'lib/graphql/testing/helpers.rb', line 120

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



111
112
113
# File 'lib/graphql/testing/helpers.rb', line 111

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



115
116
117
118
# File 'lib/graphql/testing/helpers.rb', line 115

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