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 unwrap

def unwrap
  @of_type.unwrap
end