Method: GraphQL::Schema::UnresolvedLateBoundTypeError#initialize
- Defined in:
- lib/graphql/schema.rb
#initialize(type:) ⇒ UnresolvedLateBoundTypeError
Returns a new instance of UnresolvedLateBoundTypeError.
92 93 94 95 |
# File 'lib/graphql/schema.rb', line 92 def initialize(type:) @type = type super("Late bound type was never found: #{type.inspect}") end |