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.



489
490
491
# File 'lib/graphql/language/nodes.rb', line 489

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



489
490
491
# File 'lib/graphql/language/nodes.rb', line 489

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



489
490
491
# File 'lib/graphql/language/nodes.rb', line 489

def name
  @name
end

#typesObject

Returns the value of attribute types.



489
490
491
# File 'lib/graphql/language/nodes.rb', line 489

def types
  @types
end

Instance Method Details

#childrenObject



498
499
500
# File 'lib/graphql/language/nodes.rb', line 498

def children
  types + directives
end

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



491
492
493
494
495
496
# File 'lib/graphql/language/nodes.rb', line 491

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