Module: GraphQL::Schema::SubclassGetReferencesTo

Defined in:
lib/graphql/schema.rb

Instance Method Summary collapse

Instance Method Details

#get_references_to(type_name) ⇒ Object



1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
# File 'lib/graphql/schema.rb', line 1518

def get_references_to(type_name)
  own_refs = @own_references_to[type_name]
  inherited_refs = superclass.references_to(type_name)
  if inherited_refs&.any?
    if own_refs&.any?
      own_refs + inherited_refs
    else
      inherited_refs
    end
  else
    own_refs
  end
end