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.

Defined Under Namespace

Classes: ArgumentValue

Constant Summary

NoArguments =
Class.new(self) do
  self.argument_definitions = []
end
NO_ARGS =
NoArguments.new({}, context: nil, defaults_used: Set.new)

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(values, context:, defaults_used:) ⇒ Arguments

Returns a new instance of Arguments



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/graphql/query/arguments.rb', line 40

def initialize(values, context:, defaults_used:)
  @argument_values = values.inject({}) do |memo, (inner_key, inner_value)|
    arg_name = inner_key.to_s
    arg_defn = self.class.argument_definitions[arg_name]
    arg_default_used = defaults_used.include?(arg_name)
    arg_value = wrap_value(inner_value, arg_defn.type, context)
    string_key = arg_defn.expose_as
    memo[string_key] = ArgumentValue.new(string_key, arg_value, arg_defn, arg_default_used)
    memo
  end
end

Class Attribute Details

.argument_definitionsObject

Returns the value of attribute argument_definitions



98
99
100
# File 'lib/graphql/query/arguments.rb', line 98

def argument_definitions
  @argument_definitions
end

Instance Attribute Details

#argument_valuesObject (readonly)

Returns the value of attribute argument_values



38
39
40
# File 'lib/graphql/query/arguments.rb', line 38

def argument_values
  @argument_values
end

Class Method Details

.construct_arguments_class(argument_owner) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/graphql/query/arguments.rb', line 10

def self.construct_arguments_class(argument_owner)
  argument_definitions = argument_owner.arguments
  argument_owner.arguments_class = Class.new(self) do
    self.argument_definitions = argument_definitions

    argument_definitions.each do |_arg_name, arg_definition|
      expose_as = arg_definition.expose_as.to_s
      expose_as_underscored = GraphQL::Schema::Member::BuildType.underscore(expose_as)
      method_names = [expose_as, expose_as_underscored].uniq
      method_names.each do |method_name|
        # Don't define a helper method if it would override something.
        if instance_methods.include?(method_name)
          warn(
            "Unable to define a helper for argument with name '#{method_name}' "\
            "as this is a reserved name. If you're using an argument such as "\
            "`argument #{method_name}`, consider renaming this argument.`"
          )
        else
          define_method(method_name) do
            # Always use `expose_as` here, since #[] doesn't accept underscored names
            self[expose_as]
          end
        end
      end
    end
  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



54
55
56
57
# File 'lib/graphql/query/arguments.rb', line 54

def [](key)
  key_s = key.is_a?(String) ? key : key.to_s
  @argument_values.fetch(key_s, NULL_ARGUMENT_VALUE).value
end

#default_used?(key) ⇒ Boolean

Returns true if the argument default was passed as the argument value to the resolver

Parameters:

  • key (String, Symbol)

    name of value to access

Returns:

  • (Boolean)

    true if the argument default was passed as the argument value to the resolver



68
69
70
71
# File 'lib/graphql/query/arguments.rb', line 68

def default_used?(key)
  key_s = key.is_a?(String) ? key : key.to_s
  @argument_values.fetch(key_s, NULL_ARGUMENT_VALUE).default_used?
end

#each_value {|argument_value| ... } ⇒ Object

Access each key, value and type for the arguments in this set.

Yields:

Yield Parameters:



91
92
93
94
95
# File 'lib/graphql/query/arguments.rb', line 91

def each_value
  @argument_values.each_value do |argument_value|
    yield(argument_value)
  end
end

#key?(key) ⇒ Boolean

Returns true if the argument was present in this field

Parameters:

  • key (String, Symbol)

    name of value to access

Returns:

  • (Boolean)

    true if the argument was present in this field



61
62
63
64
# File 'lib/graphql/query/arguments.rb', line 61

def key?(key)
  key_s = key.is_a?(String) ? key : key.to_s
  @argument_values.key?(key_s)
end

#to_hHash

Get the hash of all values, with stringified keys

Returns:

  • (Hash)

    the stringified hash



75
76
77
78
79
80
81
82
83
84
# File 'lib/graphql/query/arguments.rb', line 75

def to_h
  @to_h ||= begin
    h = {}
    each_value do |arg_value|
      arg_key = arg_value.definition.expose_as
      h[arg_key] = unwrap_value(arg_value.value)
    end
    h
  end
end

#to_kwargs{Symbol=>Object}

Convert this instance into valid Ruby keyword arguments

Returns:

  • ({Symbol=>Object})


109
110
111
112
113
114
115
116
117
# File 'lib/graphql/query/arguments.rb', line 109

def to_kwargs
  ruby_kwargs = {}

  keys.each do |key|
    ruby_kwargs[Schema::Member::BuildType.underscore(key).to_sym] = self[key]
  end

  ruby_kwargs
end