Class: GraphQL::Language::Nodes::NameOnlyNode

Inherits:
AbstractNode
  • Object
show all
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

Enum, NullValue, TypeName, VariableIdentifier

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

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

#nameObject

Returns the value of attribute name.



101
102
103
# File 'lib/graphql/language/nodes.rb', line 101

def name
  @name
end

Instance Method Details

#childrenObject



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