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.
| 91 92 93 94 | # File 'lib/graphql/schema.rb', line 91 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.
| 90 91 92 | # File 'lib/graphql/schema.rb', line 90 def type @type end |