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
Constant Summary
Constants inherited from AbstractNode
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
- 
  
    
      #children_method_name  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
 - 
  
    
      #to_h(options = {})  ⇒ Hash<String, Any> 
    
    
  
  
  
  
  
  
  
  
  
    
Recursively turn this input object into a Ruby Hash.
 
Methods inherited from AbstractNode
#children, #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
#arguments ⇒ Array<Nodes::Argument>
Returns A list of key-value pairs inside this input object
| 
       | 
    
      # File 'lib/graphql/language/nodes.rb', line 427
     | 
  
Instance Method Details
#children_method_name ⇒ Object
      439 440 441  | 
    
      # File 'lib/graphql/language/nodes.rb', line 439 def children_method_name :value end  | 
  
#to_h(options = {}) ⇒ Hash<String, Any>
Returns Recursively turn this input object into a Ruby Hash
      431 432 433 434 435 436 437  | 
    
      # File 'lib/graphql/language/nodes.rb', line 431 def to_h(={}) arguments.inject({}) do |memo, pair| v = pair.value memo[pair.name] = serialize_value_for_hash v memo end end  |