Class: GraphQL::Language::Nodes::InputObject

Inherits:
AbstractNode show all
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

AbstractNode::NO_CHILDREN

Instance Attribute Summary collapse

Attributes inherited from AbstractNode

#col, #filename, #line

Instance Method Summary collapse

Methods inherited from AbstractNode

#==, #children, #children_method_name, #delete_child, inherited, #initialize, #initialize_copy, #merge, #position, #replace_child, #scalars, #to_query_string

Constructor Details

This class inherits a constructor from GraphQL::Language::Nodes::AbstractNode

Instance Attribute Details

#argumentsArray<Nodes::Argument>

Returns A list of key-value pairs inside this input object.

Returns:

  • (Array<Nodes::Argument>)

    A list of key-value pairs inside this input object



# File 'lib/graphql/language/nodes.rb', line 436

Instance Method Details

#to_h(options = {}) ⇒ Hash<String, Any>

Returns Recursively turn this input object into a Ruby Hash.

Returns:

  • (Hash<String, Any>)

    Recursively turn this input object into a Ruby Hash



440
441
442
443
444
445
446
# File 'lib/graphql/language/nodes.rb', line 440

def to_h(options={})
  arguments.inject({}) do |memo, pair|
    v = pair.value
    memo[pair.name] = serialize_value_for_hash v
    memo
  end
end