Class: GraphQL::Language::Nodes::UnionTypeDefinition
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::UnionTypeDefinition
- Includes:
- Scalars::Name
- 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
#eql?, #initialize, #position, #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.
550 551 552 |
# File 'lib/graphql/language/nodes.rb', line 550 def description @description end |
#directives ⇒ Object
Returns the value of attribute directives.
550 551 552 |
# File 'lib/graphql/language/nodes.rb', line 550 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name.
550 551 552 |
# File 'lib/graphql/language/nodes.rb', line 550 def name @name end |
#types ⇒ Object
Returns the value of attribute types.
550 551 552 |
# File 'lib/graphql/language/nodes.rb', line 550 def types @types end |
Instance Method Details
#children ⇒ Object
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 |