Class: GraphQL::Language::Nodes::ScalarTypeExtension
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::ScalarTypeExtension
- Defined in:
- lib/graphql/language/nodes.rb
Instance Attribute Summary collapse
-
#directives ⇒ Object
(also: #children)
Returns the value of attribute directives.
-
#name ⇒ Object
Returns the value of attribute name.
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
#directives ⇒ Object Also known as: children
Returns the value of attribute directives
437 438 439 |
# File 'lib/graphql/language/nodes.rb', line 437 def directives @directives end |
#name ⇒ Object
Returns the value of attribute name
437 438 439 |
# File 'lib/graphql/language/nodes.rb', line 437 def name @name end |
Instance Method Details
#initialize_node(name:, directives: []) ⇒ Object
440 441 442 443 |
# File 'lib/graphql/language/nodes.rb', line 440 def initialize_node(name:, directives: []) @name = name @directives = directives end |