From 1ec54c634a4152c8c9ceead3d2b903659553b732 Mon Sep 17 00:00:00 2001 From: Michael Staib Date: Tue, 8 Nov 2022 21:28:19 +0100 Subject: [PATCH] Fixed Test Snapshots --- .../test/AspNetCore.Tests/HttpGetMiddlewareTests.cs | 12 ++++-------- ...ewareTests.Get_ActivePersistedQuery_AddQuery.snap | 2 +- ...et_ActivePersistedQuery_AddQuery_Unformatted.snap | 2 +- ...OperationCompilerTests.Defer_Inline_Fragment.snap | 6 +++++- ..._Field_Has_Different_Properties_Than_Defined.snap | 4 ++-- ...PlainValue_Type_Does_Not_Match_Variable_Type.snap | 4 ++-- ...When_Value_Type_Does_Not_Match_Variable_Type.snap | 4 ++-- .../InputParserTests.OneOf_A_and_B_Are_Set.snap | 4 ++-- ...tParserTests.OneOf_A_is_Null_and_B_has_Value.snap | 4 ++-- ...mentationTests.Allow_document_to_be_captured.snap | 10 +++++----- ...ionTests.Allow_document_to_be_captured__NET7.snap | 10 +++++----- ...resolver_error_that_deletes_the_whole_result.snap | 10 +++++----- ...er_error_that_deletes_the_whole_result__NET7.snap | 10 +++++----- ...s.Create_operation_display_name_with_1_field.snap | 10 +++++----- ...te_operation_display_name_with_1_field__NET7.snap | 10 +++++----- ...e_operation_display_name_with_1_field_and_op.snap | 10 +++++----- ...ation_display_name_with_1_field_and_op__NET7.snap | 10 +++++----- ...s.Create_operation_display_name_with_3_field.snap | 10 +++++----- ...te_operation_display_name_with_3_field__NET7.snap | 10 +++++----- ...s.Create_operation_display_name_with_4_field.snap | 10 +++++----- ...te_operation_display_name_with_4_field__NET7.snap | 10 +++++----- ...nsure_operation_name_is_used_as_request_name.snap | 10 +++++----- ...operation_name_is_used_as_request_name__NET7.snap | 10 +++++----- ..._the_validation_activity_has_an_error_status.snap | 8 ++++---- ...alidation_activity_has_an_error_status__NET7.snap | 8 ++++---- ...strumentationTests.MaxComplexity_Not_Reached.snap | 12 ++++++------ ...ntationTests.MaxComplexity_Not_Reached__NET7.snap | 12 ++++++------ ...ryInstrumentationTests.MaxComplexity_Reached.snap | 12 ++++++------ ...rumentationTests.MaxComplexity_Reached__NET7.snap | 12 ++++++------ ...nstrumentationTests.Track_data_loader_events.snap | 4 ++-- ...entationTests.Track_data_loader_events__NET7.snap | 4 ++-- ...tionTests.Track_data_loader_events_with_keys.snap | 4 ++-- ...sts.Track_data_loader_events_with_keys__NET7.snap | 4 ++-- ...Tests.Track_events_of_a_simple_query_default.snap | 4 ++-- ...Track_events_of_a_simple_query_default__NET7.snap | 4 ++-- ...ests.Track_events_of_a_simple_query_detailed.snap | 10 +++++----- ...rack_events_of_a_simple_query_detailed__NET7.snap | 10 +++++----- ...tionTests.Http_Get_SingleRequest_GetHeroName.snap | 8 ++++---- ...sts.Http_Get_SingleRequest_GetHeroName__NET7.snap | 8 ++++---- ...ionTests.Http_Post_SingleRequest_GetHeroName.snap | 10 +++++----- ....Http_Post_SingleRequest_GetHeroName_Default.snap | 10 +++++----- ...Post_SingleRequest_GetHeroName_Default__NET7.snap | 10 +++++----- ...ts.Http_Post_SingleRequest_GetHeroName__NET7.snap | 10 +++++----- ...onTests.Http_Post_add_query_to_http_activity.snap | 10 +++++----- ...s.Http_Post_add_query_to_http_activity__NET7.snap | 10 +++++----- ...sts.Http_Post_add_variables_to_http_activity.snap | 10 +++++----- ...tp_Post_add_variables_to_http_activity__NET7.snap | 10 +++++----- ...ionTests.Http_Post_capture_deferred_response.snap | 10 +++++----- ...ts.Http_Post_capture_deferred_response__NET7.snap | 10 +++++----- ...ttp_Post_ensure_list_path_is_correctly_built.snap | 10 +++++----- ...st_ensure_list_path_is_correctly_built__NET7.snap | 10 +++++----- ...es_are_not_automatically_added_to_activities.snap | 10 +++++----- ..._not_automatically_added_to_activities__NET7.snap | 10 +++++----- ...mentationTests.Http_Post_with_extensions_map.snap | 10 +++++----- ...ionTests.Http_Post_with_extensions_map__NET7.snap | 10 +++++----- ...lidation_error_when_rename_root_is_activated.snap | 8 ++++---- ...on_error_when_rename_root_is_activated__NET7.snap | 8 ++++---- 57 files changed, 241 insertions(+), 241 deletions(-) diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/HttpGetMiddlewareTests.cs b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/HttpGetMiddlewareTests.cs index 28618e963cc..2e98b49b947 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/HttpGetMiddlewareTests.cs +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/HttpGetMiddlewareTests.cs @@ -673,7 +673,7 @@ public async Task Get_ActivePersistedQuery_AddQuery() var document = Utf8GraphQLParser.Parse("{ __typename }"); - var hashProvider = new MD5DocumentHashProvider(); + var hashProvider = new MD5DocumentHashProvider(HashFormat.Hex); var hash = hashProvider.ComputeHash( Encoding.UTF8.GetBytes(document.ToString(false))); @@ -702,7 +702,7 @@ public async Task Get_ActivePersistedQuery_AddQuery_Unformatted() var query = "{__typename}"; - var hashProvider = new MD5DocumentHashProvider(); + var hashProvider = new MD5DocumentHashProvider(HashFormat.Hex); var hash = hashProvider.ComputeHash(Encoding.UTF8.GetBytes(query)); // act @@ -712,14 +712,10 @@ public async Task Get_ActivePersistedQuery_AddQuery_Unformatted() "md5Hash", hash); - var resultB = - await server.GetActivePersistedQueryAsync("md5Hash", hash); + var resultB = await server.GetActivePersistedQueryAsync("md5Hash", hash); // assert - new[] { - resultA, - resultB - }.MatchSnapshot(); + new[] { resultA, resultB }.MatchSnapshot(); } [Fact] diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery.snap index d95955a9d74..0154899599f 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery.snap @@ -8,7 +8,7 @@ "Errors": null, "Extensions": { "persistedQuery": { - "md5Hash": "71yeex4k3iYWQgg9TilDIg==", + "md5Hash": "ef5c9e7b1e24de261642083d4e294322", "persisted": true } } diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery_Unformatted.snap b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery_Unformatted.snap index d6f37fedb36..e18fd0c38c9 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery_Unformatted.snap +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/HttpGetMiddlewareTests.Get_ActivePersistedQuery_AddQuery_Unformatted.snap @@ -8,7 +8,7 @@ "Errors": null, "Extensions": { "persistedQuery": { - "md5Hash": "Bu4CtU8VR1RKncO9l/g6ag==", + "md5Hash": "06ee02b54f1547544a9dc3bd97f83a6a", "persisted": true } } diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Inline_Fragment.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Inline_Fragment.snap index 1fea8002ced..c8f184833e3 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Inline_Fragment.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/OperationCompilerTests.Defer_Inline_Fragment.snap @@ -18,7 +18,7 @@ } ... on Droid { name @__execute(id: 3, kind: PURE, type: LEAF) - ... Fragment_0 @defer + ... Fragment_1 @defer } } } @@ -27,3 +27,7 @@ fragment Fragment_0 on Human { id @__execute(id: 2, kind: PURE, type: LEAF) } + +fragment Fragment_1 on Droid { + id @__execute(id: 4, kind: PURE, type: LEAF) +} diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Input_Field_Has_Different_Properties_Than_Defined.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Input_Field_Has_Different_Properties_Than_Defined.snap index b9db707a7d8..1a9a97b4411 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Input_Field_Has_Different_Properties_Than_Defined.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Input_Field_Has_Different_Properties_Than_Defined.snap @@ -6,10 +6,10 @@ "Name": "abc", "Parent": { "Parent": null, - "Depth": -1, + "Length": -1, "IsRoot": true }, - "Depth": 0, + "Length": 0, "IsRoot": false }, "Locations": null, diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_PlainValue_Type_Does_Not_Match_Variable_Type.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_PlainValue_Type_Does_Not_Match_Variable_Type.snap index 17e7963cae9..e49d97d0126 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_PlainValue_Type_Does_Not_Match_Variable_Type.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_PlainValue_Type_Does_Not_Match_Variable_Type.snap @@ -6,10 +6,10 @@ "Name": "abc", "Parent": { "Parent": null, - "Depth": -1, + "Length": -1, "IsRoot": true }, - "Depth": 0, + "Length": 0, "IsRoot": false }, "Locations": null, diff --git a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Value_Type_Does_Not_Match_Variable_Type.snap b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Value_Type_Does_Not_Match_Variable_Type.snap index 71d1d46c50d..32888eeec43 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Value_Type_Does_Not_Match_Variable_Type.snap +++ b/src/HotChocolate/Core/test/Execution.Tests/Processing/__snapshots__/VariableCoercionHelperTests.Error_When_Value_Type_Does_Not_Match_Variable_Type.snap @@ -6,10 +6,10 @@ "Name": "abc", "Parent": { "Parent": null, - "Depth": -1, + "Length": -1, "IsRoot": true }, - "Depth": 0, + "Length": 0, "IsRoot": false }, "Locations": null, diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_and_B_Are_Set.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_and_B_Are_Set.snap index cd7a40c4bd2..446eb860a92 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_and_B_Are_Set.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_and_B_Are_Set.snap @@ -6,10 +6,10 @@ "Name": "root", "Parent": { "Parent": null, - "Depth": -1, + "Length": -1, "IsRoot": true }, - "Depth": 0, + "Length": 0, "IsRoot": false }, "Locations": null, diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_is_Null_and_B_has_Value.snap b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_is_Null_and_B_has_Value.snap index cd7a40c4bd2..446eb860a92 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_is_Null_and_B_has_Value.snap +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/InputParserTests.OneOf_A_is_Null_and_B_has_Value.snap @@ -6,10 +6,10 @@ "Name": "root", "Parent": { "Parent": null, - "Depth": -1, + "Length": -1, "IsRoot": true }, - "Depth": 0, + "Length": 0, "IsRoot": false }, "Locations": null, diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured.snap index bf36725b0a9..384dd537c8e 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.name", @@ -56,11 +56,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured__NET7.snap index 2cab4126ea8..c29c74df87d 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Allow_document_to_be_captured__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.name", @@ -56,11 +56,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result.snap index f836b1b7157..99f41c5865f 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.document.hash", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.operation.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.operation.name", @@ -60,11 +60,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.document.hash", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result__NET7.snap index ac933e1b6cf..de1568da464 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Cause_a_resolver_error_that_deletes_the_whole_result__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.document.hash", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.operation.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.operation.name", @@ -60,11 +60,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "graphql.document.hash", - "Value": "hR+3VNm6a1zFpV68vqJiHQ==" + "Value": "851fb754d9ba6b5cc5a55ebcbea2621d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field.snap index e42265245db..a56b9f0256e 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.document.hash", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.operation.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.document.hash", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field__NET7.snap index 92c82b2526a..2cfd7833ee0 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.document.hash", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.operation.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "graphql.document.hash", - "Value": "RS6oAsTRvyqBp0EbCzYdnw==" + "Value": "452ea802c4d1bf2a81a7411b0b361d9f" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op.snap index cac1efea630..3cc54f4bc16 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.document.hash", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.operation.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.operation.name", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.document.hash", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op__NET7.snap index 9f974d1a21b..dae2603aeec 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_1_field_and_op__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.document.hash", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.operation.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.operation.name", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "graphql.document.hash", - "Value": "zuDik57OctZQywMx9L5GaQ==" + "Value": "cee0e2939ece72d650cb0331f4be4669" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field.snap index c8734e167fe..efa114cbf82 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.document.hash", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.operation.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.document.hash", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field__NET7.snap index d289ea91c80..73ee6bc8565 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_3_field__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.document.hash", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.operation.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "graphql.document.hash", - "Value": "LlX74QqePd8mk1qPjRXsiQ==" + "Value": "2e55fbe10a9e3ddf26935a8f8d15ec89" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field.snap index 87f109ee132..ccb95e74da4 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.document.hash", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.operation.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.document.hash", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field__NET7.snap index 4009c0d4770..78704c8d655 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Create_operation_display_name_with_4_field__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.document.hash", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.operation.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "graphql.document.hash", - "Value": "pfkkuy9fhlEBTpLhzCQoxw==" + "Value": "a5f924bb2f5f8651014e92e1cc2428c7" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name.snap index 88ea8b178e5..3fbdb1fa1c2 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.name", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name__NET7.snap index d832d7b9a61..15554f70720 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_operation_name_is_used_as_request_name__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.operation.name", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "graphql.document.hash", - "Value": "avGGGK4gwmb2/8NSt4y2mw==" + "Value": "6af18618ae20c266f6ffc352b78cb69b" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status.snap index 83cc0db808a..b592ddf4b7c 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.hash", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.body", @@ -47,11 +47,11 @@ }, { "Key": "graphql.document.id", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.hash", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" } ], "event": [ diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status__NET7.snap index 9026709cf14..d08035787a7 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Ensure_that_the_validation_activity_has_an_error_status__NET7.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.hash", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.body", @@ -47,11 +47,11 @@ }, { "Key": "graphql.document.id", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" }, { "Key": "graphql.document.hash", - "Value": "ux0kZGU0Gpe9xyfWzY6tXA==" + "Value": "bb1d246465341a97bdc727d6cd8ead5c" } ], "event": [ diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached.snap index 60240a6d535..89c7e497608 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.operation.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.body", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached__NET7.snap index 30545542513..6b3391a1ee7 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Not_Reached__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.operation.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.body", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached.snap index b9be7afa051..d3202ee7774 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.operation.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.body", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached__NET7.snap index 8fa3eda5497..ea30a2acee8 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.MaxComplexity_Reached__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.operation.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.body", @@ -52,11 +52,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "graphql.document.hash", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "eezy4V+XsGooMNhzDkB8kQ==" + "Value": "79ecf2e15f97b06a2830d8730e407c91" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events.snap index ca96f255e8c..6f8513c22e4 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "graphql.document.hash", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events__NET7.snap index ca96f255e8c..6f8513c22e4 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events__NET7.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "graphql.document.hash", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys.snap index ca96f255e8c..6f8513c22e4 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "graphql.document.hash", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys__NET7.snap index ca96f255e8c..6f8513c22e4 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_data_loader_events_with_keys__NET7.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "graphql.document.hash", - "Value": "myB0UQjI3lr8zDXNVurZ/A==" + "Value": "9b20745108c8de5afccc35cd56ead9fc" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default.snap index 5a9581bb70d..31c920d0d93 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default__NET7.snap index 5a9581bb70d..31c920d0d93 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_default__NET7.snap @@ -7,11 +7,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed.snap index 8b136da0419..5db86e6415e 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.operation.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed__NET7.snap index 1876c00eda7..de749a6899a 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/QueryInstrumentationTests.Track_events_of_a_simple_query_detailed__NET7.snap @@ -7,15 +7,15 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.operation.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" } ], "event": [ @@ -48,11 +48,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "graphql.document.hash", - "Value": "9+mYn7tnr3+nR6mYMxPJ5Q==" + "Value": "f7e9989fbb67af7fa747a9983313c9e5" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName.snap index df0111be804..c52d193904c 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName.snap @@ -15,7 +15,7 @@ }, { "Key": "graphql.http.request.query.hash", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" } ], "event": [], @@ -39,11 +39,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" }, { "Key": "graphql.operation.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" } ], "event": [ @@ -64,7 +64,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName__NET7.snap index 344653efe02..b92202f6bad 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Get_SingleRequest_GetHeroName__NET7.snap @@ -15,7 +15,7 @@ }, { "Key": "graphql.http.request.query.hash", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" } ], "event": [], @@ -39,11 +39,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" }, { "Key": "graphql.operation.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" } ], "event": [ @@ -64,7 +64,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "Uwy0bKvDh1fHTAXMepa2Ng==" + "Value": "530cb46cabc38757c74c05cc7a96b636" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName.snap index 14aaa91e636..c02b9439cfb 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.http.request.query.hash", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.operation.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default.snap index 5768578200c..4e55ff1fb27 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default.snap @@ -15,19 +15,19 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.http.request.query.hash", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.operation.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [ @@ -60,7 +60,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default__NET7.snap index 54744627a3d..9b120d22a22 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName_Default__NET7.snap @@ -15,19 +15,19 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.http.request.query.hash", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.operation.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [ @@ -60,7 +60,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName__NET7.snap index f4fb64e6531..49265abe6bb 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_SingleRequest_GetHeroName__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.http.request.query.hash", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "graphql.operation.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "pXCmv/dItZFurfFTJh2cbQ==" + "Value": "a570a6bff748b5916eadf153261d9c6d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity.snap index 128b88f7d02..77a6d3d92c8 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.variables", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity__NET7.snap index 941b2c5ab3e..e8d9fe1f2af 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_query_to_http_activity__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.variables", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity.snap index 128b88f7d02..77a6d3d92c8 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.variables", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity__NET7.snap index 941b2c5ab3e..e8d9fe1f2af 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_add_variables_to_http_activity__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.variables", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response.snap index cb9f0925278..a013224ee71 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "graphql.http.request.query.hash", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "graphql.operation.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response__NET7.snap index 152db50c23e..2d4195c0981 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_capture_deferred_response__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "graphql.http.request.query.hash", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "graphql.operation.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "xWO156Pmih8lhHrHqwcBfA==" + "Value": "c563b5e7a3e68a1f25847ac7ab07017c" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built.snap index e6bcd2cbde9..18829e82522 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "graphql.http.request.query.hash", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "graphql.operation.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built__NET7.snap index 83c182bdc5b..c9586a09316 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_ensure_list_path_is_correctly_built__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "graphql.http.request.query.hash", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "graphql.operation.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "wFE7S28M90MPZN5Ko9zXxg==" + "Value": "c0513b4b6f0cf7430f64de4aa3dcd7c6" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities.snap index 12e12be4ad8..5235090bd1c 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities__NET7.snap index 9d96d15308f..fdfb8525f52 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_variables_are_not_automatically_added_to_activities__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [], @@ -43,11 +43,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -68,7 +68,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map.snap index 33e27edba10..32921294921 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.extensions", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map__NET7.snap index fdba1eff750..72cbd888d6a 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_with_extensions_map__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.query.hash", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.http.request.extensions", @@ -47,11 +47,11 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "graphql.operation.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" } ], "event": [ @@ -72,7 +72,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "HUvKTQ3/YwOQ3fSOkIVYnQ==" + "Value": "1d4bca4d0dff630390ddf48e9085589d" }, { "Key": "otel.status_code", diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated.snap index ac071ac6958..5a824009483 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" }, { "Key": "graphql.http.request.query.hash", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" } ], "event": [], @@ -43,7 +43,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" }, { "Key": "otel.status_code", @@ -63,7 +63,7 @@ }, { "Key": "graphql.document.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" } ], "event": [ diff --git a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated__NET7.snap b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated__NET7.snap index c80867cea49..2dcb421703c 100644 --- a/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated__NET7.snap +++ b/src/HotChocolate/Diagnostics/test/Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Validation_error_when_rename_root_is_activated__NET7.snap @@ -15,11 +15,11 @@ }, { "Key": "graphql.http.request.query.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" }, { "Key": "graphql.http.request.query.hash", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" } ], "event": [], @@ -43,7 +43,7 @@ "tags": [ { "Key": "graphql.document.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" }, { "Key": "otel.status_code", @@ -63,7 +63,7 @@ }, { "Key": "graphql.document.id", - "Value": "4rE8UzKvinDaFg/LlolOXA==" + "Value": "e2b13c5332af8a70da160fcb96894e5c" } ], "event": [