Class: GraphQL::Language::Nodes::NameOnlyNode
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::NameOnlyNode
- Defined in:
- lib/graphql/language/nodes.rb
Overview
Base class for nodes whose only value is a name (no child nodes or other scalars)
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from AbstractNode
Instance Method Summary collapse
Methods inherited from AbstractNode
child_attributes, #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
#name ⇒ Object
Returns the value of attribute name.
101 102 103 |
# File 'lib/graphql/language/nodes.rb', line 101 def name @name end |
Instance Method Details
#children ⇒ Object
108 109 110 |
# File 'lib/graphql/language/nodes.rb', line 108 def children [].freeze end |
#initialize_node(name: nil) ⇒ Object
104 105 106 |
# File 'lib/graphql/language/nodes.rb', line 104 def initialize_node(name: nil) @name = name end |