Exception: GraphQL::Schema::UnresolvedLateBoundTypeError
- Defined in:
 - lib/graphql/schema.rb
 
Instance Attribute Summary collapse
- 
  
    
      #type  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
Returns the value of attribute type.
 
Instance Method Summary collapse
- 
  
    
      #initialize(type:)  ⇒ UnresolvedLateBoundTypeError 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UnresolvedLateBoundTypeError.
 
Constructor Details
#initialize(type:) ⇒ UnresolvedLateBoundTypeError
Returns a new instance of UnresolvedLateBoundTypeError.
      89 90 91 92  | 
    
      # File 'lib/graphql/schema.rb', line 89 def initialize(type:) @type = type super("Late bound type was never found: #{type.inspect}") end  | 
  
Instance Attribute Details
#type ⇒ Object (readonly)
Returns the value of attribute type.
      88 89 90  | 
    
      # File 'lib/graphql/schema.rb', line 88 def type @type end  |