Class: GraphQL::Language::Nodes::Argument
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::Argument
- Defined in:
- lib/graphql/language/nodes.rb
Overview
A key-value pair for a field’s inputs
Instance Attribute Summary collapse
-
#name ⇒ String
The key for this argument.
-
#value ⇒ String, ...
The value passed for this key.
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 ⇒ String
Returns the key for this argument.
118 119 120 |
# File 'lib/graphql/language/nodes.rb', line 118 def name @name end |
#value ⇒ String, ...
Returns The value passed for this key.
124 125 126 |
# File 'lib/graphql/language/nodes.rb', line 124 def value @value end |
Instance Method Details
#children ⇒ Object
129 130 131 |
# File 'lib/graphql/language/nodes.rb', line 129 def children [value].flatten.select { |v| v.is_a?(AbstractNode) } end |
#initialize_node(name: nil, value: nil) ⇒ Object
124 125 126 127 |
# File 'lib/graphql/language/nodes.rb', line 124 def initialize_node(name: nil, value: nil) @name = name @value = value end |