module GraphQL::BaseType::ModifiesAnotherType
Public Instance Methods
==(other)
click to toggle source
# File lib/graphql/base_type.rb, line 100 def ==(other) other.is_a?(ModifiesAnotherType) && other.of_type == of_type end
unwrap()
click to toggle source
# File lib/graphql/base_type.rb, line 96 def unwrap self.of_type.unwrap end