Class: GraphQL::Schema::IntrospectionSystem::PerFieldProxyResolve
- Inherits:
-
Object
- Object
- GraphQL::Schema::IntrospectionSystem::PerFieldProxyResolve
- Defined in:
- lib/graphql/schema/introspection_system.rb
Instance Method Summary collapse
- #call(obj, args, ctx) ⇒ Object
-
#initialize(object_class:, inner_resolve:) ⇒ PerFieldProxyResolve
constructor
A new instance of PerFieldProxyResolve.
Constructor Details
#initialize(object_class:, inner_resolve:) ⇒ PerFieldProxyResolve
Returns a new instance of PerFieldProxyResolve.
149 150 151 152 |
# File 'lib/graphql/schema/introspection_system.rb', line 149 def initialize(object_class:, inner_resolve:) @object_class = object_class @inner_resolve = inner_resolve end |
Instance Method Details
#call(obj, args, ctx) ⇒ Object
154 155 156 157 158 159 160 161 162 |
# File 'lib/graphql/schema/introspection_system.rb', line 154 def call(obj, args, ctx) query_ctx = ctx.query.context # Remove the QueryType wrapper if obj.is_a?(GraphQL::Schema::Object) obj = obj.object end wrapped_object = @object_class.wrap(obj, query_ctx) @inner_resolve.call(wrapped_object, args, ctx) end |