Class: GraphQL::Language::Nodes::UnionTypeDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::UnionTypeDefinition
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#description ⇒ Object
Returns the value of attribute description.
-
#directives ⇒ Object
Returns the value of attribute directives.
-
#name ⇒ Object
Returns the value of attribute name.
-
#types ⇒ Object
Returns the value of attribute types.
Attributes inherited from AbstractNode
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
#description ⇒ Object
Returns the value of attribute description.
435 436 437 |
# File 'lib/graphql/language/nodes.rb', line 435 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives.
435 436 437 |
# File 'lib/graphql/language/nodes.rb', line 435 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
435 436 437 |
# File 'lib/graphql/language/nodes.rb', line 435 def name @name end |
#types ⇒ Object
Returns the value of attribute types.
435 436 437 |
# File 'lib/graphql/language/nodes.rb', line 435 def types @types end |
Instance Method Details
#initialize_node(name:, types:, directives: [], description: nil) ⇒ Object
439 440 441 442 443 444 |
# File 'lib/graphql/language/nodes.rb', line 439 def initialize_node(name:, types:, directives: [], description: nil) @name = name @types = types @directives = directives @description = description end |