Class: GraphQL::Query::Arguments::ArgumentValue
- Inherits:
 - 
      Object
      
        
- Object
 - GraphQL::Query::Arguments::ArgumentValue
 
 
- Defined in:
 - lib/graphql/query/arguments.rb
 
Instance Attribute Summary collapse
- 
  
    
      #default_used  ⇒ Object 
    
    
  
  
  
  
    
    
      writeonly
    
  
  
  
  
  
  
    
Sets the attribute default_used.
 - 
  
    
      #definition  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute definition.
 - 
  
    
      #key  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute key.
 - 
  
    
      #value  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute value.
 
Instance Method Summary collapse
- 
  
    
      #default_used?  ⇒ Boolean 
    
    
  
  
  
  
  
  
  
  
  
    
True if the argument default was passed as the argument value to the resolver.
 - 
  
    
      #initialize(key, value, definition, default_used)  ⇒ ArgumentValue 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ArgumentValue.
 
Constructor Details
#initialize(key, value, definition, default_used) ⇒ ArgumentValue
Returns a new instance of ArgumentValue
      127 128 129 130 131 132  | 
    
      # File 'lib/graphql/query/arguments.rb', line 127 def initialize(key, value, definition, default_used) @key = key @value = value @definition = definition @default_used = default_used end  | 
  
Instance Attribute Details
#default_used=(value) ⇒ Object (writeonly)
Sets the attribute default_used
      125 126 127  | 
    
      # File 'lib/graphql/query/arguments.rb', line 125 def default_used=(value) @default_used = value end  | 
  
#definition ⇒ Object (readonly)
Returns the value of attribute definition
      124 125 126  | 
    
      # File 'lib/graphql/query/arguments.rb', line 124 def definition @definition end  | 
  
#key ⇒ Object (readonly)
Returns the value of attribute key
      124 125 126  | 
    
      # File 'lib/graphql/query/arguments.rb', line 124 def key @key end  | 
  
#value ⇒ Object (readonly)
Returns the value of attribute value
      124 125 126  | 
    
      # File 'lib/graphql/query/arguments.rb', line 124 def value @value end  | 
  
Instance Method Details
#default_used? ⇒ Boolean
Returns true if the argument default was passed as the argument value to the resolver
      135 136 137  | 
    
      # File 'lib/graphql/query/arguments.rb', line 135 def default_used? @default_used end  |