module GraphQL::Execution::Execute::FieldResolveStep

A `.call`-able suitable to be the last step in a middleware chain

Public Class Methods

call(_parent_type, parent_object, field_definition, field_args, context, _next = nil) click to toggle source

Execute the field's resolve method

# File lib/graphql/execution/execute.rb, line 296
def self.call(_parent_type, parent_object, field_definition, field_args, context, _next = nil)
  field_definition.resolve(parent_object, field_args, context)
end