Exception: GraphQL::Schema::Argument::InvalidDefaultValueError
- Inherits:
 - 
      Error
      
        
- Object
 - StandardError
 - Error
 - GraphQL::Schema::Argument::InvalidDefaultValueError
 
 
- Defined in:
 - lib/graphql/schema/argument.rb
 
Instance Method Summary collapse
- 
  
    
      #initialize(argument)  ⇒ InvalidDefaultValueError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InvalidDefaultValueError.
 
Constructor Details
#initialize(argument) ⇒ InvalidDefaultValueError
Returns a new instance of InvalidDefaultValueError.
      368 369 370 371  | 
    
      # File 'lib/graphql/schema/argument.rb', line 368 def initialize(argument) = "`#{argument.path}` has an invalid default value: `#{argument.default_value.inspect}` isn't accepted by `#{argument.type.to_type_signature}`; update the default value or the argument type." super() end  |