class GraphQL::Schema::Wrapper

def ==(other)

def ==(other)
  self.class == other.class && of_type == other.of_type
end

def initialize(of_type)

def initialize(of_type)
  @of_type = of_type
end

def to_graphql

def to_graphql
  raise GraphQL::RequiredImplementationMissingError
end

def unwrap

def unwrap
  @of_type.unwrap
end