diff --git a/Sources/ApolloAPI/GraphQLOperation.swift b/Sources/ApolloAPI/GraphQLOperation.swift index 068c118028..6d6e9b8894 100644 --- a/Sources/ApolloAPI/GraphQLOperation.swift +++ b/Sources/ApolloAPI/GraphQLOperation.swift @@ -121,6 +121,8 @@ public extension GraphQLOperation { } func hash(into hasher: inout Hasher) { + hasher.combine(Self.operationType) + hasher.combine(Self.operationName) hasher.combine(__variables?._jsonEncodableValue?._jsonValue) } }