module GraphQL::BaseType::ModifiesAnotherType

Public Instance Methods

==(other) click to toggle source
# File lib/graphql/base_type.rb, line 106
def ==(other)
  other.is_a?(ModifiesAnotherType) && other.of_type == of_type
end
unwrap() click to toggle source
# File lib/graphql/base_type.rb, line 102
def unwrap
  self.of_type.unwrap
end