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 05140b8 commit ec6ca05Copy full SHA for ec6ca05
apollo-ios/Sources/ApolloAPI/SelectionSet+Equatable.swift
@@ -15,7 +15,14 @@ public extension SelectionSet {
15
/// that are relevant to the `SelectionSet`. This ensures that equality checks for a fragment do not
16
/// consider fields that are not included in the fragment, even if they are present in the data.
17
static func ==(lhs: Self, rhs: Self) -> Bool {
18
- print("SelectionSet::== for \(String(describing: self))")
+ if String(describing: self) == "FriendsConnection" {
19
+ print("""
20
+ SelectionSet::==
21
+ lhs: \(lhs.fieldsForEquality())
22
+ rhs: \(rhs.fieldsForEquality())
23
+ """)
24
+ }
25
+
26
return Self.equatableCheck(
27
lhs.fieldsForEquality(),
28
rhs.fieldsForEquality()
0 commit comments