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 86424d5 commit 68e6b1fCopy full SHA for 68e6b1f
src/GraphQL.Primitives/GraphQLRequest.cs
@@ -64,9 +64,7 @@ public override bool Equals(object? obj) {
64
public virtual bool Equals(GraphQLRequest? other) {
65
if (ReferenceEquals(null, other)) return false;
66
if (ReferenceEquals(this, other)) return true;
67
- return Query == other.Query
68
- && OperationName == other.OperationName
69
- && EqualityComparer<object>.Default.Equals(Variables, other.Variables);
+ return EqualityComparer<Dictionary<string,object>>.Default.Equals(this, other);
70
}
71
72
/// <summary>
0 commit comments