Class: GraphQL::Language::Nodes::UnionTypeDefinition

Inherits:
AbstractNode
  • Object
show all
Defined in:
lib/graphql/language/nodes.rb

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

child_attributes, #children, #eql?, inherited, #initialize, #position, scalar_attributes, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#nameObject

Returns the value of attribute name.



299
300
301
# File 'lib/graphql/language/nodes.rb', line 299

def name
  @name
end

#typesObject

Returns the value of attribute types.



299
300
301
# File 'lib/graphql/language/nodes.rb', line 299

def types
  @types
end

Instance Method Details

#initialize_node(name:, types:) ⇒ Object



303
304
305
306
# File 'lib/graphql/language/nodes.rb', line 303

def initialize_node(name:, types:)
  @name = name
  @types = types
end