We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e63b3 commit a3fa5e6Copy full SHA for a3fa5e6
apollo-ios/Sources/ApolloAPI/SelectionSet+Equatable.swift
@@ -42,9 +42,10 @@ public extension SelectionSet {
42
_ lhs: T,
43
_ rhs: any Hashable
44
) -> Bool {
45
- if String(describing: self) == "FriendsConnection" && (lhs != rhs as? T) {
+ if lhs != rhs as? T {
46
print("""
47
- equatableCheck failure:
+ equatableCheck failure on \(String(describing: self))
48
+ T: \(String(describing: T.self))
49
lhs: \(lhs)
50
rhs: \(rhs), as? T: \(rhs as? T)
51
""")
0 commit comments