Module: GraphQL::Testing::Helpers::SchemaHelpers
- Includes:
- GraphQL::Testing::Helpers
- Defined in:
- lib/graphql/testing/helpers.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#run_graphql_field(field_path, object, arguments: {}, context: {}) ⇒ Object
-
#with_resolution_context(*args, **kwargs, &block) ⇒ Object
Class Method Details
.for(schema_class) ⇒ Object
146 147 148 149 150 151 |
# File 'lib/graphql/testing/helpers.rb', line 146 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
137 138 139 |
# File 'lib/graphql/testing/helpers.rb', line 137 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
141 142 143 144 |
# File 'lib/graphql/testing/helpers.rb', line 141 def with_resolution_context(*args, **kwargs, &block) # schema will be added later super(nil, *args, **kwargs, &block) end |