Module: GraphQL::Schema::ResolveTypeWithType

Defined in:
lib/graphql/schema.rb

Overview

rubocop:disable Lint/DuplicateMethods

Instance Method Summary collapse

Instance Method Details

#resolve_type(type, obj, ctx) ⇒ Object



1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
# File 'lib/graphql/schema.rb', line 1391

def resolve_type(type, obj, ctx)
  first_resolved_type = if type.is_a?(Module) && type.respond_to?(:resolve_type)
    type.resolve_type(obj, ctx)
  else
    super
  end

  after_lazy(first_resolved_type) do |resolved_type|
    if resolved_type.nil? || (resolved_type.is_a?(Module) && resolved_type.respond_to?(:kind)) || resolved_type.is_a?(GraphQL::BaseType)
      resolved_type
    else
      raise ".resolve_type should return a type definition, but got #{resolved_type.inspect} (#{resolved_type.class}) from `resolve_type(#{type}, #{obj}, #{ctx})`"
    end
  end
end