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