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
Constant Summary
Constants inherited from AbstractNode
GraphQL::Language::Nodes::AbstractNode::NO_CHILDREN
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
#delete_child, #eql?, inherited, #initialize, #initialize_copy, #merge, #position, #replace_child, #scalars, #to_query_string, #visit_method
Constructor Details
This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode
Instance Attribute Details
#name ⇒ String
Returns the key for this argument
|
# File 'lib/graphql/language/nodes.rb', line 285
|
#value ⇒ String, ...
Returns The value passed for this key
291 292 293 |
# File 'lib/graphql/language/nodes.rb', line 291 def children @children ||= Array(value).flatten.select { |v| v.is_a?(AbstractNode) } end |
Instance Method Details
#children ⇒ Object
291 292 293 |
# File 'lib/graphql/language/nodes.rb', line 291 def children @children ||= Array(value).flatten.select { |v| v.is_a?(AbstractNode) } end |