Class: GraphQL::Query::FieldResolutionStrategy::EnumResolutionStrategy

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) ⇒ EnumResolutionStrategy

Returns a new instance of EnumResolutionStrategy.



62
63
64
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 62

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

Instance Attribute Details

#resultObject (readonly)

Returns the value of attribute result.



61
62
63
# File 'lib/graph_ql/query/field_resolution_strategy.rb', line 61

def result
  @result
end