Class: GraphQL::Query::SerialExecution::FieldResolution

Inherits:
Object
  • Object
show all
Defined in:
lib/graphql/query/serial_execution/field_resolution.rb

Defined Under Namespace

Modules: FieldResolveStep

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(irep_nodes, parent_type, target, query_ctx) ⇒ FieldResolution

Returns a new instance of FieldResolution.



7
8
9
10
11
12
13
14
15
16
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 7

def initialize(irep_nodes, parent_type, target, query_ctx)
  @irep_node = irep_nodes.first
  @irep_nodes = irep_nodes
  @parent_type = parent_type
  @target = target
  @field_ctx = query_ctx.spawn(path: query_ctx.path + [irep_node.name], irep_node: irep_node)
  @query = query_ctx.query
  @field = @query.get_field(parent_type, irep_node.definition_name)
  @arguments = @query.arguments_for(irep_node, @field)
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def arguments
  @arguments
end

#fieldObject (readonly)

Returns the value of attribute field.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def field
  @field
end

#irep_nodeObject (readonly)

Returns the value of attribute irep_node.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def irep_node
  @irep_node
end

#parent_typeObject (readonly)

Returns the value of attribute parent_type.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def parent_type
  @parent_type
end

#queryObject (readonly)

Returns the value of attribute query.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def query
  @query
end

#targetObject (readonly)

Returns the value of attribute target.



5
6
7
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 5

def target
  @target
end

Instance Method Details

#execution_contextObject

GraphQL::Batch depends on this



25
26
27
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 25

def execution_context
  @field_ctx
end

#resultObject



18
19
20
21
22
# File 'lib/graphql/query/serial_execution/field_resolution.rb', line 18

def result
  result_name = irep_node.name
  raw_value = get_raw_value
  { result_name => get_finished_value(raw_value) }
end