Method: GraphQL::Schema::Field#resolver_method

Defined in:
lib/graphql/schema/field.rb

#resolver_methodSymbol

Returns The method on the type to look up.

Returns:

  • (Symbol)

    The method on the type to look up



36
37
38
39
40
41
42
# File 'lib/graphql/schema/field.rb', line 36

def resolver_method
  if @resolver_class
    @resolver_class.resolver_method
  else
    @resolver_method
  end
end