Class: GraphQL::Language::Nodes::InputObject
- Inherits:
-
AbstractNode
- Object
- AbstractNode
- GraphQL::Language::Nodes::InputObject
- Defined in:
- lib/graphql/language/nodes.rb
Overview
A collection of key-value inputs which may be a field argument
Instance Attribute Summary collapse
-
#arguments ⇒ Array<Nodes::Argument>
A list of key-value pairs inside this input object.
Attributes inherited from AbstractNode
Instance Method Summary collapse
- #initialize_node(arguments: []) ⇒ Object
-
#to_h(options = {}) ⇒ Hash<String, Any>
Recursively turn this input object into a Ruby Hash.
Methods inherited from AbstractNode
child_attributes, #children, #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
#arguments ⇒ Array<Nodes::Argument>
Returns A list of key-value pairs inside this input object.
265 266 267 |
# File 'lib/graphql/language/nodes.rb', line 265 def arguments @arguments end |
Instance Method Details
#initialize_node(arguments: []) ⇒ Object
265 266 267 |
# File 'lib/graphql/language/nodes.rb', line 265 def initialize_node(arguments: []) @arguments = arguments end |
#to_h(options = {}) ⇒ Hash<String, Any>
Returns Recursively turn this input object into a Ruby Hash.
270 271 272 273 274 275 276 |
# File 'lib/graphql/language/nodes.rb', line 270 def to_h(={}) arguments.inject({}) do |memo, pair| v = pair.value memo[pair.name] = serialize_value_for_hash v memo end end |