Class: GraphQL::Language::Nodes::WrapperType
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::WrapperType
- Defined in:
- lib/graphql/language/nodes.rb
Overview
Base class for non-null type names and list type names
Direct Known Subclasses
Instance Attribute Summary collapse
-
#of_type ⇒ Object
Returns the value of attribute of_type.
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
#of_type ⇒ Object
Returns the value of attribute of_type.
87 88 89 |
# File 'lib/graphql/language/nodes.rb', line 87 def of_type @of_type end |
Instance Method Details
#children ⇒ Object
94 95 96 |
# File 'lib/graphql/language/nodes.rb', line 94 def children [].freeze end |
#initialize_node(of_type: nil) ⇒ Object
90 91 92 |
# File 'lib/graphql/language/nodes.rb', line 90 def initialize_node(of_type: nil) @of_type = of_type end |