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.



29
30
31
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 29

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.



28
29
30
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 28

def result
  @result
end