Skip to content

Commit

Permalink
Use SortedDictionary for consistent order of persisted queries when w…
Browse files Browse the repository at this point in the history
…riting relay format (#7078)

Co-authored-by: Michael Staib <michael@chillicream.com>
  • Loading branch information
DanielZuerrer and michaelstaib authored May 1, 2024
1 parent 909212a commit 4f56e59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private static async Task WritePersistedQueriesAsync(
{
if (relayFormat)
{
var map = new Dictionary<string, string>();
var map = new SortedDictionary<string, string>();

foreach (var doc in result.Documents)
{
Expand Down

0 comments on commit 4f56e59

Please sign in to comment.