Class: GraphQL::Query::FieldResolutionStrategy::ScalarResolutionStrategy

Inherits:
Object
  • Object
show all
Defined in:
lib/graph_ql/query/field_resolution_strategy.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, field_type, target, parent_type, ast_field, operation_resolver) ⇒ ScalarResolutionStrategy

Returns a new instance of ScalarResolutionStrategy.



34
35
36
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 34

def initialize(value, field_type, target, parent_type, ast_field, operation_resolver)
  @result = field_type.coerce(value)
end

Instance Attribute Details

#resultObject (readonly)

Returns the value of attribute result.



33
34
35
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 33

def result
  @result
end