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

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

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#eql?, #initialize, #position, #scalars, #to_query_string

Constructor Details

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

Instance Attribute Details

#descriptionObject

Returns the value of attribute description



550
551
552
# File 'lib/graphql/language/nodes.rb', line 550

def description
  @description
end

#directivesObject

Returns the value of attribute directives



550
551
552
# File 'lib/graphql/language/nodes.rb', line 550

def directives
  @directives
end

#nameObject

Returns the value of attribute name



550
551
552
# File 'lib/graphql/language/nodes.rb', line 550

def name
  @name
end

#typesObject

Returns the value of attribute types



550
551
552
# File 'lib/graphql/language/nodes.rb', line 550

def types
  @types
end

Instance Method Details

#childrenObject



559
560
561
# File 'lib/graphql/language/nodes.rb', line 559

def children
  types + directives
end

#initialize_node(name:, types:, directives: [], description: nil) ⇒ Object



552
553
554
555
556
557
# File 'lib/graphql/language/nodes.rb', line 552

def initialize_node(name:, types:, directives: [], description: nil)
  @name = name
  @types = types
  @directives = directives
  @description = description
end