We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fadbff commit ddc0268Copy full SHA for ddc0268
src/GraphQL.Primitives/GraphQLRequest.cs
@@ -87,7 +87,7 @@ public void GeneratePersistedQueryExtension()
87
Extensions[EXTENSIONS_PERSISTED_QUERY_KEY] = new Dictionary<string, object>
88
{
89
["version"] = APQ_SUPPORTED_VERSION,
90
- ["sha256Hash"] = _sha265Hash ?? Hash.Compute(Query),
+ ["sha256Hash"] = _sha265Hash ??= Hash.Compute(Query),
91
};
92
}
93
0 commit comments