Class: GraphQL::Query::Arguments

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/graphql/query/arguments.rb

Overview

Read-only access to values, normalizing all keys to strings

Arguments recursively wraps the input in Arguments instances.

Instance Method Summary collapse

Constructor Details

#initialize(values) ⇒ Arguments

Returns a new instance of Arguments.



9
10
11
12
13
14
15
# File 'lib/graphql/query/arguments.rb', line 9

def initialize(values)
  @original_values = values
  @argument_values = values.inject({}) do |memo, (inner_key, inner_value)|
    memo[inner_key.to_s] = wrap_value(inner_value)
    memo
  end
end

Instance Method Details

#[](key) ⇒ Object

Returns the argument at that key.

Parameters:

  • key (String, Symbol)

    name or index of value to access

Returns:

  • (Object)

    the argument at that key



19
20
21
# File 'lib/graphql/query/arguments.rb', line 19

def [](key)
  @argument_values[key.to_s]
end

#to_hHash

Get the original Ruby hash

Returns:

  • (Hash)

    the original values hash



25
26
27
# File 'lib/graphql/query/arguments.rb', line 25

def to_h
  @unwrapped_values ||= unwrap_value(@original_values)
end