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.
| 99 100 101 102 | # File 'lib/graphql/schema.rb', line 99 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.
| 98 99 100 | # File 'lib/graphql/schema.rb', line 98 def type @type end |