class GraphQL::Schema::UnresolvedLateBoundTypeError
Attributes
type[R]
Public Class Methods
new(type:)
click to toggle source
Calls superclass method
# File lib/graphql/schema.rb, line 88 def initialize(type:) @type = type super("Late bound type was never found: #{type.inspect}") end