Class: GraphQL::Query::Arguments
- Inherits:
- 
      Object
      
        - Object
- GraphQL::Query::Arguments
 
- Extended by:
- Forwardable
- Includes:
- Dig
- Defined in:
- lib/graphql/query/arguments.rb
Overview
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
- 
  
    
      .argument_definitions  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute argument_definitions. 
Instance Attribute Summary collapse
- 
  
    
      #argument_values  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute argument_values. 
Class Method Summary collapse
Instance Method Summary collapse
- 
  
    
      #[](key)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    The argument at that key. 
- 
  
    
      #default_used?(key)  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    True if the argument default was passed as the argument value to the resolver. 
- 
  
    
      #each_value {|argument_value| ... } ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Access each key, value and type for the arguments in this set. 
- 
  
    
      #initialize(values, context:, defaults_used:)  ⇒ Arguments 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Arguments. 
- 
  
    
      #key?(key)  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    True if the argument was present in this field. 
- 
  
    
      #to_h  ⇒ Hash 
    
    
  
  
  
  
  
  
  
  
  
    Get the hash of all values, with stringified keys. 
- 
  
    
      #to_kwargs  ⇒ {Symbol=>Object} 
    
    
  
  
  
  
  
  
  
  
  
    Convert this instance into valid Ruby keyword arguments. 
Methods included from Dig
Constructor Details
#initialize(values, context:, defaults_used:) ⇒ Arguments
Returns a new instance of Arguments
| 41 42 43 44 45 46 47 48 49 50 51 | # File 'lib/graphql/query/arguments.rb', line 41 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_definitions ⇒ Object
Returns the value of attribute argument_definitions
| 99 100 101 | # File 'lib/graphql/query/arguments.rb', line 99 def argument_definitions @argument_definitions end | 
Instance Attribute Details
#argument_values ⇒ Object (readonly)
Returns the value of attribute argument_values
| 39 40 41 | # File 'lib/graphql/query/arguments.rb', line 39 def argument_values @argument_values end | 
Class Method Details
.construct_arguments_class(argument_owner) ⇒ Object
| 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 37 | # File 'lib/graphql/query/arguments.rb', line 11 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
| 55 56 57 58 | # File 'lib/graphql/query/arguments.rb', line 55 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
| 69 70 71 72 | # File 'lib/graphql/query/arguments.rb', line 69 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.
| 92 93 94 95 96 | # File 'lib/graphql/query/arguments.rb', line 92 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
| 62 63 64 65 | # File 'lib/graphql/query/arguments.rb', line 62 def key?(key) key_s = key.is_a?(String) ? key : key.to_s @argument_values.key?(key_s) end | 
#to_h ⇒ Hash
Get the hash of all values, with stringified keys
| 76 77 78 79 80 81 82 83 84 85 | # File 'lib/graphql/query/arguments.rb', line 76 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
| 110 111 112 113 114 115 116 117 118 | # File 'lib/graphql/query/arguments.rb', line 110 def to_kwargs ruby_kwargs = {} keys.each do |key| ruby_kwargs[Schema::Member::BuildType.underscore(key).to_sym] = self[key] end ruby_kwargs end |