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

#descriptionObject

Returns the value of attribute description.



415
416
417
# File 'lib/graphql/language/nodes.rb', line 415

def description
  @description
end

#directivesObject

Returns the value of attribute directives.



415
416
417
# File 'lib/graphql/language/nodes.rb', line 415

def directives
  @directives
end

#nameObject

Returns the value of attribute name.



415
416
417
# File 'lib/graphql/language/nodes.rb', line 415

def name
  @name
end

#typesObject

Returns the value of attribute types.



415
416
417
# File 'lib/graphql/language/nodes.rb', line 415

def types
  @types
end

Instance Method Details

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



419
420
421
422
423
424
# File 'lib/graphql/language/nodes.rb', line 419

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