diff --git a/dictionary.txt b/dictionary.txt index d2ae6befe51..eb32caed457 100644 --- a/dictionary.txt +++ b/dictionary.txt @@ -206,3 +206,4 @@ websockets Wilhuff Wunder xunit +Expando diff --git a/src/CookieCrumble/src/CookieCrumble/Snapshot.cs b/src/CookieCrumble/src/CookieCrumble/Snapshot.cs index 0298280f0ee..049a2b29589 100644 --- a/src/CookieCrumble/src/CookieCrumble/Snapshot.cs +++ b/src/CookieCrumble/src/CookieCrumble/Snapshot.cs @@ -469,6 +469,12 @@ private void WriteMarkdownSegments(IBufferWriter writer) foreach (var segment in _segments) { i++; + + if (i > 1) + { + writer.AppendLine(); + } + writer.Append( string.IsNullOrEmpty(segment.Name) ? $"## Result {i}" @@ -499,8 +505,6 @@ private void WriteMarkdownSegments(IBufferWriter writer) default: throw new NotSupportedException(); } - - writer.AppendLine(); } } diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md index 14b1e38fe52..c99353863c6 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md @@ -150,4 +150,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Name).ThenBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET8_0.md index 06f954abb4e..8c07fc3d849 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET8_0.md @@ -150,4 +150,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Name", t0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Name).ThenBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md index 9d8a3d5ea4d..d56474e486b 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md @@ -150,4 +150,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Id" DESC ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderByDescending(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET8_0.md index 8226106a616..1e6a4f44a17 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET8_0.md @@ -150,4 +150,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Id" DESC ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderByDescending(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor.md index 03779024056..7939a51ca46 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor.md @@ -165,4 +165,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor_NET8_0.md index d0c923b24a6..d8adb61b5ab 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_With_Relative_Cursor_NET8_0.md @@ -165,4 +165,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md index 6aca9b3a700..9e6906bccd4 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md @@ -155,4 +155,3 @@ LIMIT @p } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET8_0.md index 48818646bd1..80b46e13fb5 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET8_0.md @@ -155,4 +155,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET9_0.md index 48818646bd1..80b46e13fb5 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET9_0.md @@ -155,4 +155,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md index 0f175695fd2..adba1b2b006 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md @@ -98,4 +98,3 @@ LIMIT @p } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET8_0.md index 04f7903b579..017f339abfd 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET8_0.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET9_0.md index 04f7903b579..017f339abfd 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET9_0.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md index 53776b7c1c0..50e11481562 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md @@ -98,4 +98,3 @@ LIMIT @p } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET8_0.md index ec12ab52cce..d3dc3984660 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET8_0.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET9_0.md index ec12ab52cce..d3dc3984660 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET9_0.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md index 7f43b5e11c7..b2a15f59bab 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md @@ -95,4 +95,3 @@ LIMIT @p } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET8_0.md index 5517147aaa8..e6b8a3260ea 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET8_0.md @@ -95,4 +95,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET9_0.md index 5517147aaa8..e6b8a3260ea 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET9_0.md @@ -95,4 +95,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md index b3fffb7d018..62fc929f0d1 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md @@ -97,4 +97,3 @@ LIMIT @p } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET8_0.md index 1be622e578b..5aacea4c020 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET8_0.md @@ -97,4 +97,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET9_0.md index 1be622e578b..5aacea4c020 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET9_0.md @@ -97,4 +97,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET10_0.md index 56d4e85ce83..3ba49c728ef 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET10_0.md @@ -2070,4 +2070,3 @@ ORDER BY b0."Name", b0."Id" } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET8_0.md index e5c1d935b20..41ac13088ad 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET8_0.md @@ -2070,4 +2070,3 @@ ORDER BY t."Name", t."Id" } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET9_0.md index 16ac1d3041e..e00eb0039b5 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_WithChildCollectionProjectionExpression_First_5_NET9_0.md @@ -2070,4 +2070,3 @@ ORDER BY b0."Name", b0."Id" } ] ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.Batch_Fetch_First_2_Items.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.Batch_Fetch_First_2_Items.md index 738d323a88c..14f41649d85 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.Batch_Fetch_First_2_Items.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.Batch_Fetch_First_2_Items.md @@ -122,4 +122,3 @@ ] } ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET10_0.md index 41ec78c327e..32c65869a69 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET10_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @p='3' -SELECT p0."Id", p0."Name", b."Id", b."AlwaysNull", b."DisplayName", b."Name", b."BrandDetails_Country_Name" -FROM ( - SELECT p."Id", p."BrandId", p."Name" - FROM "Products" AS p - ORDER BY p."Id" - LIMIT @p -) AS p0 -INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" +-- @p='3' +SELECT p0."Id", p0."Name", b."Id", b."AlwaysNull", b."DisplayName", b."Name", b."BrandDetails_Country_Name" +FROM ( + SELECT p."Id", p."BrandId", p."Name" + FROM "Products" AS p + ORDER BY p."Id" + LIMIT @p +) AS p0 +INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY p0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = root.Brand}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET8_0.md index dd675b286d5..1b8086d85e6 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET8_0.md @@ -20,4 +20,3 @@ ORDER BY t."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = root.Brand}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET9_0.md index 8bb0bafcb5a..9c43ab10ac5 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_NET9_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @__p_0='3' -SELECT p0."Id", p0."Name", b."Id", b."AlwaysNull", b."DisplayName", b."Name", b."BrandDetails_Country_Name" -FROM ( - SELECT p."Id", p."BrandId", p."Name" - FROM "Products" AS p - ORDER BY p."Id" - LIMIT @__p_0 -) AS p0 -INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" +-- @__p_0='3' +SELECT p0."Id", p0."Name", b."Id", b."AlwaysNull", b."DisplayName", b."Name", b."BrandDetails_Country_Name" +FROM ( + SELECT p."Id", p."BrandId", p."Name" + FROM "Products" AS p + ORDER BY p."Id" + LIMIT @__p_0 +) AS p0 +INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY p0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = root.Brand}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET10_0.md index 03c104135ea..3ed254557d5 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET10_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @p='3' -SELECT p0."Id", p0."Name", b."Name" -FROM ( - SELECT p."Id", p."BrandId", p."Name" - FROM "Products" AS p - ORDER BY p."Id" - LIMIT @p -) AS p0 -INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" +-- @p='3' +SELECT p0."Id", p0."Name", b."Name" +FROM ( + SELECT p."Id", p."BrandId", p."Name" + FROM "Products" AS p + ORDER BY p."Id" + LIMIT @p +) AS p0 +INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY p0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = new Brand() {Name = root.Brand.Name}}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET8_0.md index a1843944be1..34838d7ab17 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET8_0.md @@ -20,4 +20,3 @@ ORDER BY t."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = new Brand() {Name = root.Brand.Name}}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET9_0.md index 907ebbf82a1..cd1654f6c1b 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Brand_Name_NET9_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @__p_0='3' -SELECT p0."Id", p0."Name", b."Name" -FROM ( - SELECT p."Id", p."BrandId", p."Name" - FROM "Products" AS p - ORDER BY p."Id" - LIMIT @__p_0 -) AS p0 -INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" +-- @__p_0='3' +SELECT p0."Id", p0."Name", b."Name" +FROM ( + SELECT p."Id", p."BrandId", p."Name" + FROM "Products" AS p + ORDER BY p."Id" + LIMIT @__p_0 +) AS p0 +INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY p0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Product() {Id = root.Id, Name = root.Name, Brand = new Brand() {Name = root.Brand.Name}}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET10_0.md index 29698430833..419a6434d33 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET10_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @p='3' -SELECT b0."Id", b0."Name", p."Id", p."Name" -FROM ( - SELECT b."Id", b."Name" - FROM "Brands" AS b - ORDER BY b."Id" - LIMIT @p -) AS b0 -LEFT JOIN "Products" AS p ON b0."Id" = p."BrandId" +-- @p='3' +SELECT b0."Id", b0."Name", p."Id", p."Name" +FROM ( + SELECT b."Id", b."Name" + FROM "Brands" AS b + ORDER BY b."Id" + LIMIT @p +) AS b0 +LEFT JOIN "Products" AS p ON b0."Id" = p."BrandId" ORDER BY b0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY b0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Brand() {Id = root.Id, Name = root.Name, Products = root.Products.Select(p => new Product() {Id = p.Id, Name = p.Name}).ToList()}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET8_0.md index c58244765e0..b90d0818303 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET8_0.md @@ -20,4 +20,3 @@ ORDER BY t."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Brand() {Id = root.Id, Name = root.Name, Products = root.Products.Select(p => new Product() {Id = p.Id, Name = p.Name}).ToList()}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET9_0.md index d3894f10c93..82b0de4d0a8 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_Include_Product_List_NET9_0.md @@ -3,15 +3,15 @@ ## SQL 0 ```sql --- @__p_0='3' -SELECT b0."Id", b0."Name", p."Id", p."Name" -FROM ( - SELECT b."Id", b."Name" - FROM "Brands" AS b - ORDER BY b."Id" - LIMIT @__p_0 -) AS b0 -LEFT JOIN "Products" AS p ON b0."Id" = p."BrandId" +-- @__p_0='3' +SELECT b0."Id", b0."Name", p."Id", p."Name" +FROM ( + SELECT b."Id", b."Name" + FROM "Brands" AS b + ORDER BY b."Id" + LIMIT @__p_0 +) AS b0 +LEFT JOIN "Products" AS p ON b0."Id" = p."BrandId" ORDER BY b0."Id" ``` @@ -20,4 +20,3 @@ ORDER BY b0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(root => new Brand() {Id = root.Id, Name = root.Name, Products = root.Products.Select(p => new Product() {Id = p.Id, Name = p.Name}).ToList()}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET10_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET10_0.md index 6ebb1573a9b..60ae7931664 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET10_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET10_0.md @@ -15,4 +15,3 @@ LIMIT @p ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(t => new Product() {Id = t.Id, Name = t.Name}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET8_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET8_0.md index 6ecf4d83fa2..4d3f80a54eb 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET8_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET8_0.md @@ -15,4 +15,3 @@ LIMIT @__p_0 ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(t => new Product() {Id = t.Id, Name = t.Name}).Take(3) ``` - diff --git a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET9_0.md b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET9_0.md index d9934bb18dc..4d3f80a54eb 100644 --- a/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET9_0.md +++ b/src/GreenDonut/test/GreenDonut.Data.EntityFramework.Tests/__snapshots__/PagingHelperTests.QueryContext_Simple_Selector_NET9_0.md @@ -3,10 +3,10 @@ ## SQL 0 ```sql --- @__p_0='3' -SELECT p."Id", p."Name" -FROM "Products" AS p -ORDER BY p."Id" +-- @__p_0='3' +SELECT p."Id", p."Name" +FROM "Products" AS p +ORDER BY p."Id" LIMIT @__p_0 ``` @@ -15,4 +15,3 @@ LIMIT @__p_0 ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].OrderBy(t => t.Id).Select(t => new Product() {Id = t.Id, Name = t.Name}).Take(3) ``` - diff --git a/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs b/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs index ef97baec7f6..ff4046cf9a6 100644 --- a/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs +++ b/src/HotChocolate/Adapters/src/Adapters.Mcp.Core/Extensions/ServiceCollectionExtensions.cs @@ -30,11 +30,7 @@ public static void AddMcpServices(this IServiceCollection services, string schem static (sp, name) => new McpRequestExecutorProxy( sp.GetRequiredService(), sp.GetRequiredService(), -#if NET10_0_OR_GREATER - (string)name)) -#else (string)name!)) -#endif .AddKeyedSingleton( schemaName, static (sp, name) => new StreamableHttpHandlerProxy( diff --git a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithAuthSuccess_ReturnsExpectedResult.md b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithAuthSuccess_ReturnsExpectedResult.md index fedeb454e10..c258187bda7 100644 --- a/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithAuthSuccess_ReturnsExpectedResult.md +++ b/src/HotChocolate/Adapters/test/Adapters.Mcp.Tests/__snapshots__/IntegrationTestBase.CallTool_GetWithAuthSuccess_ReturnsExpectedResult.md @@ -3,20 +3,19 @@ ## Result 1 ```json -{ - "data": { - "withAuth": "Test" - } +{ + "data": { + "withAuth": "Test" + } } ``` ## Result 2 ```json -{ - "data": { - "withAuth": "Test" - } +{ + "data": { + "withAuth": "Test" + } } ``` - diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSchemaToFile_When_OutputOptionIsSpecified.md b/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSchemaToFile_When_OutputOptionIsSpecified.md index f0a19ebb617..0b654140e70 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSchemaToFile_When_OutputOptionIsSpecified.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.CommandLine.Tests/__snapshots__/SchemaExportCommandTests.App_Should_WriteSchemaToFile_When_OutputOptionIsSpecified.md @@ -26,4 +26,3 @@ type Query { } ``` - diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.OperationBatch.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.OperationBatch.md index 2939a0d579d..2f1b92444b4 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.OperationBatch.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.OperationBatch.md @@ -25,4 +25,3 @@ } } ``` - diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.VariableBatch.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.VariableBatch.md index 59b899cfa22..9b44bc58b46 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.VariableBatch.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/GraphQLOverHttpSpecTests.VariableBatch.md @@ -25,4 +25,3 @@ } } ``` - diff --git a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/PersistedOperationTests.Ensure_Pooled_Objects_Are_Cleared.md b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/PersistedOperationTests.Ensure_Pooled_Objects_Are_Cleared.md index a5484f775f7..5496dbdd08d 100644 --- a/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/PersistedOperationTests.Ensure_Pooled_Objects_Are_Cleared.md +++ b/src/HotChocolate/AspNetCore/test/AspNetCore.Tests/__snapshots__/PersistedOperationTests.Ensure_Pooled_Objects_Are_Cleared.md @@ -50,4 +50,3 @@ "Extensions": null } ``` - diff --git a/src/HotChocolate/AspNetCore/test/Transport.Http.Tests/__snapshots__/GraphQLHttpClientTests.Get_Subscription_Over_SSE_With_Errors.md b/src/HotChocolate/AspNetCore/test/Transport.Http.Tests/__snapshots__/GraphQLHttpClientTests.Get_Subscription_Over_SSE_With_Errors.md index bff46cc2629..d5fa756974d 100644 --- a/src/HotChocolate/AspNetCore/test/Transport.Http.Tests/__snapshots__/GraphQLHttpClientTests.Get_Subscription_Over_SSE_With_Errors.md +++ b/src/HotChocolate/AspNetCore/test/Transport.Http.Tests/__snapshots__/GraphQLHttpClientTests.Get_Subscription_Over_SSE_With_Errors.md @@ -31,4 +31,3 @@ ] } ``` - diff --git a/src/HotChocolate/Core/src/Types.Analyzers/FileBuilders/TypeFileBuilderBase.cs b/src/HotChocolate/Core/src/Types.Analyzers/FileBuilders/TypeFileBuilderBase.cs index 5c17de7f8b1..8472f49bce2 100644 --- a/src/HotChocolate/Core/src/Types.Analyzers/FileBuilders/TypeFileBuilderBase.cs +++ b/src/HotChocolate/Core/src/Types.Analyzers/FileBuilders/TypeFileBuilderBase.cs @@ -969,7 +969,7 @@ private void WriteResolverArguments(Resolver resolver, IMethodSymbol resolverMet if (resolver.Kind is ResolverKind.NodeResolver && parameter.Kind is ResolverParameterKind.Argument or ResolverParameterKind.Unknown - && (parameter.Name == "id" || parameter.Key == "id")) + && IsNodeResolverIdParameter(resolver, parameter, i)) { Writer.WriteIndentedLine( "var args{0} = context.GetLocalState<{1}>(" @@ -1324,6 +1324,30 @@ private void WriteResolverArguments(Resolver resolver, IMethodSymbol resolverMet } } + private static bool IsNodeResolverIdParameter( + Resolver resolver, + ResolverParameter parameter, + int parameterIndex) + { + if (parameter.Name == "id" || parameter.Key == "id") + { + return true; + } + + if (parameterIndex != 0) + { + return false; + } + + if (resolver.Parameters.Any(p => p.Name == "id" || p.Key == "id")) + { + return false; + } + + return parameter.Name.EndsWith("Id", StringComparison.Ordinal) + || (parameter.Key?.EndsWith("Id", StringComparison.Ordinal) ?? false); + } + private void WriteAssignTypeRef( SchemaTypeReference typeReference, string propertyName, diff --git a/src/HotChocolate/Core/src/Types.Analyzers/Inspectors/ObjectTypeInspector.cs b/src/HotChocolate/Core/src/Types.Analyzers/Inspectors/ObjectTypeInspector.cs index 459dfa78994..e331d7b8963 100644 --- a/src/HotChocolate/Core/src/Types.Analyzers/Inspectors/ObjectTypeInspector.cs +++ b/src/HotChocolate/Core/src/Types.Analyzers/Inspectors/ObjectTypeInspector.cs @@ -303,6 +303,7 @@ private static Resolver CreateNodeResolver( var parameters = resolverMethod.Parameters; var buffer = new ResolverParameter[parameters.Length]; var resolverParameters = ImmutableCollectionsMarshal.AsImmutableArray(buffer); + var hasNamedIdParameter = HasNamedNodeIdParameter(compilation, parameters); for (var i = 0; i < parameters.Length; i++) { @@ -319,7 +320,7 @@ private static Resolver CreateNodeResolver( if (resolverParameter.Kind == ResolverParameterKind.Argument) { - if (resolverParameter.Name != "id" && resolverParameter.Key != "id") + if (!IsNodeIdParameter(resolverParameter, i, hasNamedIdParameter)) { var location = parameter.Locations[0]; @@ -331,7 +332,7 @@ private static Resolver CreateNodeResolver( } if (resolverParameter.Kind is ResolverParameterKind.Unknown - && (resolverParameter.Name == "id" || resolverParameter.Key == "id")) + && IsNodeIdParameter(resolverParameter, i, hasNamedIdParameter)) { resolverParameter = new ResolverParameter( parameter, @@ -367,6 +368,43 @@ private static Resolver CreateNodeResolver( kind: ResolverKind.NodeResolver); } + private static bool HasNamedNodeIdParameter( + Compilation compilation, + ImmutableArray parameters) + { + foreach (var parameter in parameters) + { + var kind = compilation.GetParameterKind(parameter, out var key); + + if (kind is ResolverParameterKind.Argument or ResolverParameterKind.Unknown + && (parameter.Name == "id" || key == "id")) + { + return true; + } + } + + return false; + } + + private static bool IsNodeIdParameter( + ResolverParameter parameter, + int parameterIndex, + bool hasNamedIdParameter) + { + if (parameter.Name == "id" || parameter.Key == "id") + { + return true; + } + + if (parameterIndex != 0 || hasNamedIdParameter) + { + return false; + } + + return parameter.Name.EndsWith("Id", Ordinal) + || (parameter.Key?.EndsWith("Id", Ordinal) ?? false); + } + public static ImmutableArray GetMemberBindings(ISymbol member) => member.GetMemberBindings(); } diff --git a/src/HotChocolate/Core/src/Types.Analyzers/NodeResolverIdParameterAnalyzer.cs b/src/HotChocolate/Core/src/Types.Analyzers/NodeResolverIdParameterAnalyzer.cs index b4bbe04c86c..0646c69a9f2 100644 --- a/src/HotChocolate/Core/src/Types.Analyzers/NodeResolverIdParameterAnalyzer.cs +++ b/src/HotChocolate/Core/src/Types.Analyzers/NodeResolverIdParameterAnalyzer.cs @@ -70,13 +70,18 @@ private static void AnalyzeMethodDeclaration(SyntaxNodeAnalysisContext context) // Check if first parameter is named "id" var firstParameter = methodDeclaration.ParameterList.Parameters[0]; - if (firstParameter.Identifier.Text != "id") - { - var diagnostic = Diagnostic.Create( - Errors.NodeResolverIdParameter, - firstParameter.GetLocation()); + var firstParameterName = firstParameter.Identifier.Text; - context.ReportDiagnostic(diagnostic); + if (firstParameterName == "id" + || firstParameterName.EndsWith("Id", StringComparison.Ordinal)) + { + return; } + + var diagnostic = Diagnostic.Create( + Errors.NodeResolverIdParameter, + firstParameter.GetLocation()); + + context.ReportDiagnostic(diagnostic); } } diff --git a/src/HotChocolate/Core/src/Types/Execution/DependencyInjection/RequestExecutorBuilderExtensions.TypeConversion.cs b/src/HotChocolate/Core/src/Types/Execution/DependencyInjection/RequestExecutorBuilderExtensions.TypeConversion.cs index b1c3343209e..2e3b9dc16d4 100644 --- a/src/HotChocolate/Core/src/Types/Execution/DependencyInjection/RequestExecutorBuilderExtensions.TypeConversion.cs +++ b/src/HotChocolate/Core/src/Types/Execution/DependencyInjection/RequestExecutorBuilderExtensions.TypeConversion.cs @@ -27,7 +27,7 @@ public static partial class RequestExecutorBuilderExtensions public static IRequestExecutorBuilder AddJsonTypeConverter( this IRequestExecutorBuilder builder) { - builder.Services.AddSingleton(); + builder.Services.AddJsonTypeConverter(); return builder; } @@ -53,7 +53,7 @@ public static IRequestExecutorBuilder AddTypeConverter( this IRequestExecutorBuilder builder) where T : class, IChangeTypeProvider { - builder.Services.AddSingleton(); + builder.Services.AddTypeConverter(); return builder; } @@ -81,7 +81,7 @@ public static IRequestExecutorBuilder AddTypeConverter( Func factory) where T : class, IChangeTypeProvider { - builder.Services.AddSingleton(factory); + builder.Services.AddTypeConverter(factory); return builder; } @@ -117,8 +117,7 @@ public static IRequestExecutorBuilder AddTypeConverter( this IRequestExecutorBuilder builder, ChangeType changeType) { - builder.Services.AddSingleton( - new DelegateChangeTypeProvider(changeType)); + builder.Services.AddTypeConverter(changeType); return builder; } @@ -143,8 +142,7 @@ public static IRequestExecutorBuilder AddTypeConverter( this IRequestExecutorBuilder builder, ChangeTypeProvider changeType) { - builder.Services.AddSingleton( - new DelegateChangeTypeProvider(changeType)); + builder.Services.AddTypeConverter(changeType); return builder; } @@ -193,7 +191,9 @@ public static IServiceCollection AddTypeConverter( this IServiceCollection services) where T : class, IChangeTypeProvider { - return services.AddSingleton(); + return AddCustomTypeConverterProvider( + services, + ServiceDescriptor.Singleton()); } /// @@ -220,7 +220,10 @@ public static IServiceCollection AddTypeConverter( Func factory) where T : class, IChangeTypeProvider { - return services.AddSingleton(factory); + return AddCustomTypeConverterProvider( + services, + ServiceDescriptor.Singleton( + sp => factory(sp))); } /// @@ -255,8 +258,10 @@ public static IServiceCollection AddTypeConverter( this IServiceCollection services, ChangeType changeType) { - return services.AddSingleton( - new DelegateChangeTypeProvider(changeType)); + return AddCustomTypeConverterProvider( + services, + ServiceDescriptor.Singleton( + new DelegateChangeTypeProvider(changeType))); } /// @@ -280,8 +285,45 @@ public static IServiceCollection AddTypeConverter( this IServiceCollection services, ChangeTypeProvider changeType) { - return services.AddSingleton( - new DelegateChangeTypeProvider(changeType)); + return AddCustomTypeConverterProvider( + services, + ServiceDescriptor.Singleton( + new DelegateChangeTypeProvider(changeType))); + } + + private static IServiceCollection AddCustomTypeConverterProvider( + IServiceCollection services, + ServiceDescriptor descriptor) + { + var index = FindJsonTypeConverterProviderIndex(services); + + if (index >= 0) + { + services.Insert(index, descriptor); + } + else + { + services.Add(descriptor); + } + + return services; + } + + private static int FindJsonTypeConverterProviderIndex(IServiceCollection services) + { + for (var i = 0; i < services.Count; i++) + { + var descriptor = services[i]; + + if (descriptor.ServiceType == typeof(IChangeTypeProvider) + && (descriptor.ImplementationType == typeof(JsonElementTypeChangeProvider) + || descriptor.ImplementationInstance is JsonElementTypeChangeProvider)) + { + return i; + } + } + + return -1; } private sealed class DelegateChangeTypeProvider( diff --git a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader.md b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader.md index 709d1500878..74205f5a554 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader.md +++ b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader.md @@ -56,4 +56,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection.md b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection.md index 0110f1d7116..0fa72dc4fe7 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection.md +++ b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection.md @@ -52,4 +52,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection_Using_Factory.md b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection_Using_Factory.md index 5782eeba4de..4d249d77ecf 100644 --- a/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection_Using_Factory.md +++ b/src/HotChocolate/Core/test/Execution.Tests/Integration/DataLoader/__snapshots__/DataLoaderTests.ClassDataLoader_Resolve_From_DependencyInjection_Using_Factory.md @@ -52,4 +52,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/NodeResolverIdParameterAnalyzerTests.cs b/src/HotChocolate/Core/test/Types.Analyzers.Tests/NodeResolverIdParameterAnalyzerTests.cs index 14d54beacb1..5ffadd2eab9 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/NodeResolverIdParameterAnalyzerTests.cs +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/NodeResolverIdParameterAnalyzerTests.cs @@ -42,6 +42,46 @@ public class ProductService enableAnalyzers: true).MatchMarkdownAsync(); } + [Fact] + public async Task FirstParameter_EndsWithId_NoError() + { + await TestHelper.GetGeneratedSourceSnapshot( + [""" + using HotChocolate; + using HotChocolate.Types; + using HotChocolate.Types.Relay; + using GreenDonut.Data; + using System.Threading; + using System.Threading.Tasks; + + namespace TestNamespace; + + [ObjectType] + public static partial class ProductNode + { + [NodeResolver] + public static async Task GetProductAsync( + string userId, + ProductService productService, + QueryContext query, + CancellationToken cancellationToken) + => await productService.GetProductByIdAsync(userId, query, cancellationToken); + } + + public class Product + { + public int Id { get; set; } + public string Name { get; set; } + } + + public class ProductService + { + public Task GetProductByIdAsync(string id, QueryContext query, CancellationToken ct) => default!; + } + """], + enableAnalyzers: true).MatchMarkdownAsync(); + } + [Fact] public async Task IdParameter_NotInFirstPosition_RaisesError() { diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_MultipleErrors_RaisesMultipleErrors.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_MultipleErrors_RaisesMultipleErrors.md index bfcd0047ddf..624e6202e2c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_MultipleErrors_RaisesMultipleErrors.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_MultipleErrors_RaisesMultipleErrors.md @@ -259,4 +259,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_NonGenericObjectType_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_NonGenericObjectType_NoError.md index 5c179370031..57447293e2d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_NonGenericObjectType_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_NonGenericObjectType_NoError.md @@ -50,4 +50,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameofSimple_ValidMember_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameofSimple_ValidMember_NoError.md index 3f753243e75..dc5160cc553 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameofSimple_ValidMember_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameofSimple_ValidMember_NoError.md @@ -186,4 +186,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InheritedMember_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InheritedMember_NoError.md index 0502df4023c..1aa58fdc23a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InheritedMember_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InheritedMember_NoError.md @@ -157,4 +157,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InvalidMember_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InvalidMember_RaisesError.md index dd11eb91b37..1e9c44a4bc4 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InvalidMember_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_InvalidMember_RaisesError.md @@ -237,4 +237,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_ValidMember_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_ValidMember_NoError.md index 4f4a1c9c0da..7e7cd7dedc9 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_ValidMember_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_ValidMember_NoError.md @@ -157,4 +157,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_WrongType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_WrongType_RaisesError.md index e56912d1904..0cd291851c1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_WrongType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithNameof_WrongType_RaisesError.md @@ -175,4 +175,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InheritedMember_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InheritedMember_NoError.md index a2bf87a2c2e..377f413e6d4 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InheritedMember_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InheritedMember_NoError.md @@ -157,4 +157,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InvalidMember_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InvalidMember_RaisesError.md index 7a2997155bd..2869ade17c8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InvalidMember_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_InvalidMember_RaisesError.md @@ -175,4 +175,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_ValidMember_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_ValidMember_NoError.md index cdd44775efa..a872d3fa69e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_ValidMember_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/BindMemberAnalyzerTests.BindMember_WithString_ValidMember_NoError.md @@ -157,4 +157,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/CollectionInferenceTests.Infer_Dictionary_As_List_Of_KeyValuePair.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/CollectionInferenceTests.Infer_Dictionary_As_List_Of_KeyValuePair.md index fbeb86c09d1..80bbbb085be 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/CollectionInferenceTests.Infer_Dictionary_As_List_Of_KeyValuePair.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/CollectionInferenceTests.Infer_Dictionary_As_List_Of_KeyValuePair.md @@ -116,4 +116,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_AllAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_AllAttributes_NoError.md index 1b79004c175..a6bbe7ec467 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_AllAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_AllAttributes_NoError.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_SomeAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_SomeAttributes_NoError.md index d0552b0cd9e..cd73e2d3120 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_SomeAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_SomeAttributes_NoError.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_WithCustomAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_WithCustomAttributes_NoError.md index 3c0f6ed59c6..c1f2b8fb78d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_WithCustomAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.CorrectOrder_WithCustomAttributes_NoError.md @@ -156,4 +156,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_CompleteReverse_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_CompleteReverse_RaisesError.md index a77ef173384..0881977d852 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_CompleteReverse_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_CompleteReverse_RaisesError.md @@ -173,4 +173,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_ProjectionBeforePaging_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_ProjectionBeforePaging_RaisesError.md index 3c547e58feb..216c221208d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_ProjectionBeforePaging_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_ProjectionBeforePaging_RaisesError.md @@ -173,4 +173,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_SortingBeforeFiltering_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_SortingBeforeFiltering_RaisesError.md index cba9445c218..ad92fa2d9fd 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_SortingBeforeFiltering_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.IncorrectOrder_SortingBeforeFiltering_RaisesError.md @@ -172,4 +172,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.NoDataAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.NoDataAttributes_NoError.md index f2da19c91f5..11fb1ebdca0 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.NoDataAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.NoDataAttributes_NoError.md @@ -142,4 +142,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.SingleAttribute_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.SingleAttribute_NoError.md index 8105cb6311c..01f978806f2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.SingleAttribute_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataAttributeOrderAnalyzerTests.SingleAttribute_NoError.md @@ -153,4 +153,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.DataLoader_With_Optional_Lookup.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.DataLoader_With_Optional_Lookup.md index 6f3dfaea22b..84322754a54 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.DataLoader_With_Optional_Lookup.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.DataLoader_With_Optional_Lookup.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_IDictionary_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_IDictionary_MatchesSnapshot.md index 52452ce4488..b06db9cd9aa 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_IDictionary_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_IDictionary_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md index 2845c3871d6..a8e14413efb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Class_Instance_Result_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Class_Instance_Result_MatchesSnapshot.md index 86fc950d10f..18975267b2a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Class_Instance_Result_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Class_Instance_Result_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Object_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Object_MatchesSnapshot.md index 08889765f7e..cf028a19c9d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Object_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Object_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Result_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Result_MatchesSnapshot.md index 7a24d2fbe4c..d2f8f12e269 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Result_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_Nullable_Result_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_ReturnsNullableStruct_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_ReturnsNullableStruct_MatchesSnapshot.md index 1dd02d2b461..ea995f98ea6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_ReturnsNullableStruct_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_ReturnsNullableStruct_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_MatchesSnapshot.md index e646cb62f8b..7a29d65156a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_MatchesSnapshot.md @@ -155,4 +155,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Class_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Class_MatchesSnapshot.md index 21d32c657e2..ff3e8e62a95 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Class_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Class_MatchesSnapshot.md @@ -126,4 +126,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Method_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Method_MatchesSnapshot.md index 3b04427f548..c55f20532ae 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Method_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Group_Only_On_Method_MatchesSnapshot.md @@ -126,4 +126,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_From_OtherType_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_From_OtherType_MatchesSnapshot.md index f89dc836560..2e2c8a46bf1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_From_OtherType_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_From_OtherType_MatchesSnapshot.md @@ -101,4 +101,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_MatchesSnapshot.md index c8b3f2e28e2..b3fb56ab507 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Lookup_MatchesSnapshot.md @@ -101,4 +101,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Nullable_ValueType_Result_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Nullable_ValueType_Result_MatchesSnapshot.md index f66cda9715c..edba3c19270 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Nullable_ValueType_Result_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Nullable_ValueType_Result_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Optional_State_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Optional_State_MatchesSnapshot.md index 70b03e4a17b..0d587d0443f 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Optional_State_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Optional_State_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PagingArguments_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PagingArguments_MatchesSnapshot.md index e22153fd3ca..52846652644 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PagingArguments_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PagingArguments_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PredicateBuilder_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PredicateBuilder_MatchesSnapshot.md index 320e97ffded..5555856b7d2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PredicateBuilder_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_PredicateBuilder_MatchesSnapshot.md @@ -99,4 +99,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Required_State_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Required_State_MatchesSnapshot.md index 16c601147c0..fbc9866b578 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Required_State_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_Required_State_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_SelectorBuilder_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_SelectorBuilder_MatchesSnapshot.md index 4bda1fd67d0..7a762e58450 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_SelectorBuilder_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_SelectorBuilder_MatchesSnapshot.md @@ -99,4 +99,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_State_With_Default_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_State_With_Default_MatchesSnapshot.md index ad8c805e013..31f631c3e7f 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_State_With_Default_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_State_With_Default_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_ValueType_Result_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_ValueType_Result_MatchesSnapshot.md index 7d02f58668e..778b6590899 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_ValueType_Result_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_BatchDataLoader_With_ValueType_Result_MatchesSnapshot.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_MatchesSnapshot.md index 4fa9a5ac90a..ef6fb04902e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_MatchesSnapshot.md @@ -88,4 +88,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_Object_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_Object_MatchesSnapshot.md index 94cfd49722d..05ccc4dc189 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_Object_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_Object_MatchesSnapshot.md @@ -88,4 +88,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_ValueType_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_ValueType_MatchesSnapshot.md index d418d886511..86bfb4df928 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_ValueType_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_Nullable_ValueType_MatchesSnapshot.md @@ -88,4 +88,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_ValueType_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_ValueType_MatchesSnapshot.md index fe3ba4c1f5b..426f1d99e05 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_ValueType_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_CacheDataLoader_ValueType_MatchesSnapshot.md @@ -88,4 +88,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_MatchesSnapshot.md index a32f85057ba..30277f7b863 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_Object_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_Object_MatchesSnapshot.md index c41c2b420be..cc5d330cd64 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_Object_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_Object_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_ValueType_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_ValueType_MatchesSnapshot.md index bb75e507ed6..76e4503b35b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_ValueType_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_Nullable_ValueType_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ReturnsNullableStruct_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ReturnsNullableStruct_MatchesSnapshot.md index 7ae2af0e650..c3314852b6e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ReturnsNullableStruct_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ReturnsNullableStruct_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ValueType_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ValueType_MatchesSnapshot.md index 49ed13f469e..e25cda9ad10 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ValueType_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.GenerateSource_GroupedDataLoader_ValueType_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal.md index 2c8a11f829e..4dbc5ea53f3 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal.md index 22bc7723611..ce64407fca2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal.md @@ -97,4 +97,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal_With_Group.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal_With_Group.md index 9de88c5441e..3c06db1e7cb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal_With_Group.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_Module_As_Internal_Implementation_As_Internal_With_Group.md @@ -126,4 +126,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_NullableAnnotated_AnonymousType_AsKey_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_NullableAnnotated_AnonymousType_AsKey_MatchesSnapshot.md index 3c8f9289fd3..976108c992c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_NullableAnnotated_AnonymousType_AsKey_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_DataLoader_NullableAnnotated_AnonymousType_AsKey_MatchesSnapshot.md @@ -98,4 +98,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_QueryContext.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_QueryContext.md index 372afa3ddb8..4d6f7c272ce 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_QueryContext.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_QueryContext.md @@ -106,4 +106,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_SortDefinition.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_SortDefinition.md index 87f762e2bbc..0333fb7036e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_SortDefinition.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_With_SortDefinition.md @@ -99,4 +99,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_Without_Interface.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_Without_Interface.md index e180a1e4a96..9df4bf97de5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_Without_Interface.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/DataLoaderTests.Generate_Without_Interface.md @@ -93,4 +93,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_MultipleClasses_RaisesInfoForAll.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_MultipleClasses_RaisesInfoForAll.md index c79b4bc02cb..d3eb408aeb8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_MultipleClasses_RaisesInfoForAll.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_MultipleClasses_RaisesInfoForAll.md @@ -57,4 +57,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_WithGenericType_RaisesInfo.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_WithGenericType_RaisesInfo.md index 2985f43987d..056cbb559b9 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_WithGenericType_RaisesInfo.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ExtendObjectType_WithGenericType_RaisesInfo.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.MixedAttributes_OnlyRaisesInfoForExtendObjectType.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.MixedAttributes_OnlyRaisesInfoForExtendObjectType.md index 425f434ab20..4b8a1b1e6ac 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.MixedAttributes_OnlyRaisesInfoForExtendObjectType.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.MixedAttributes_OnlyRaisesInfoForExtendObjectType.md @@ -160,4 +160,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ObjectType_WithGenericType_NoInfo.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ObjectType_WithGenericType_NoInfo.md index ff7e48bfc79..30ae4c73fdc 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ObjectType_WithGenericType_NoInfo.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ExtendObjectTypeAnalyzerTests.ObjectType_WithGenericType_NoInfo.md @@ -141,4 +141,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttributePropertyTarget_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttributePropertyTarget_NoError.md index 956cc4c0ebb..b633c820f72 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttributePropertyTarget_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttributePropertyTarget_NoError.md @@ -67,4 +67,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttribute_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttribute_RaisesError.md index f528028de87..74471a6ac7b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttribute_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithGenericIdAttribute_RaisesError.md @@ -85,4 +85,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithIdAttributeOnParameter_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithIdAttributeOnParameter_RaisesError.md index 344291a4b90..2def349fe0c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithIdAttributeOnParameter_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithIdAttributeOnParameter_RaisesError.md @@ -85,4 +85,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMixedAttributes_OnlyParameterTargetedRaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMixedAttributes_OnlyParameterTargetedRaisesError.md index 3cb4b991016..42a0040ccae 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMixedAttributes_OnlyParameterTargetedRaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMixedAttributes_OnlyParameterTargetedRaisesError.md @@ -85,4 +85,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleAttributes_OnlyIdRaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleAttributes_OnlyIdRaisesError.md index f5f4e18d9d5..77f9df666f1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleAttributes_OnlyIdRaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleAttributes_OnlyIdRaisesError.md @@ -85,4 +85,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleIdParameters_RaisesMultipleErrors.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleIdParameters_RaisesMultipleErrors.md index faf7aa22df2..90adccbffea 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleIdParameters_RaisesMultipleErrors.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithMultipleIdParameters_RaisesMultipleErrors.md @@ -96,4 +96,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithPropertyTargetedIdAttribute_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithPropertyTargetedIdAttribute_NoError.md index 7c23644a563..1f5659c57ea 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithPropertyTargetedIdAttribute_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RecordWithPropertyTargetedIdAttribute_NoError.md @@ -67,4 +67,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RegularClass_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RegularClass_NoError.md index 495144ac953..3c77e953f12 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RegularClass_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/IdAttributeOnRecordParameterAnalyzerTests.RegularClass_NoError.md @@ -67,4 +67,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_BothIssues_RaisesMultipleErrors.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_BothIssues_RaisesMultipleErrors.md index 5ffdb178988..1266cea767b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_BothIssues_RaisesMultipleErrors.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_BothIssues_RaisesMultipleErrors.md @@ -96,4 +96,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonPublic_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonPublic_RaisesError.md index d5928e8a414..568f2e0f096 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonPublic_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonPublic_RaisesError.md @@ -103,4 +103,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonStatic_WithIdAttribute_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonStatic_WithIdAttribute_RaisesError.md index c0240cc1964..c9a22e469d5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonStatic_WithIdAttribute_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_NonStatic_WithIdAttribute_RaisesError.md @@ -79,4 +79,3 @@ } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Private_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Private_RaisesError.md index 9b2fa49a454..2ae0efccf87 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Private_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Private_RaisesError.md @@ -85,4 +85,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Public_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Public_NoError.md index 547e4f7080b..ed78258de1f 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Public_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_Public_NoError.md @@ -85,4 +85,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdAttribute_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdAttribute_RaisesError.md index 1086b4e144f..4371d75d1be 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdAttribute_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdAttribute_RaisesError.md @@ -103,4 +103,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdGenericAttribute_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdGenericAttribute_RaisesError.md index a2613ed87ab..c3a2453670f 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdGenericAttribute_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithIdGenericAttribute_RaisesError.md @@ -103,4 +103,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithoutIdAttribute_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithoutIdAttribute_NoError.md index be6a1df90a8..30af39f54ce 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithoutIdAttribute_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverAnalyzerTests.NodeResolver_WithoutIdAttribute_NoError.md @@ -85,4 +85,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_EndsWithId_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_EndsWithId_NoError.md new file mode 100644 index 00000000000..95d37a85e32 --- /dev/null +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_EndsWithId_NoError.md @@ -0,0 +1,110 @@ +# FirstParameter_EndsWithId_NoError + +## HotChocolateTypeModule.735550c.g.cs + +```csharp +// + +#nullable enable +#pragma warning disable + +using System; +using System.Runtime.CompilerServices; +using HotChocolate; +using HotChocolate.Types; +using HotChocolate.Execution.Configuration; + +namespace Microsoft.Extensions.DependencyInjection +{ + public static partial class TestsTypesRequestExecutorBuilderExtensions + { + public static IRequestExecutorBuilder AddTestsTypes(this IRequestExecutorBuilder builder) + { + builder.ConfigureDescriptorContext(ctx => ctx.TypeConfiguration.TryAdd( + "Tests::TestNamespace.ProductNode", + () => global::TestNamespace.ProductNode.Initialize)); + builder.AddType>(); + return builder; + } + } +} + +``` + +## ProductNode.WaAdMHmlGJHjtEI4nqY7WA.hc.g.cs + +```csharp +// + +#nullable enable +#pragma warning disable + +using System; +using System.Runtime.CompilerServices; +using HotChocolate; +using HotChocolate.Types; +using HotChocolate.Execution.Configuration; +using Microsoft.Extensions.DependencyInjection; +using HotChocolate.Internal; + +namespace TestNamespace +{ + public static partial class ProductNode + { + internal static void Initialize(global::HotChocolate.Types.IObjectTypeDescriptor descriptor) + { + var extension = descriptor.Extend(); + var configuration = extension.Configuration; + var thisType = typeof(global::TestNamespace.ProductNode); + var bindingResolver = extension.Context.ParameterBindingResolver; + var resolvers = new __Resolvers(bindingResolver); + + descriptor + .ImplementsNode() + .ResolveNode(resolvers.GetProductAsync().Resolver!); + + Configure(descriptor); + } + + static partial void Configure(global::HotChocolate.Types.IObjectTypeDescriptor descriptor); + + private sealed class __Resolvers + { + private readonly global::HotChocolate.Internal.IParameterBinding _binding_GetProductAsync_productService; + + public __Resolvers(global::HotChocolate.Resolvers.ParameterBindingResolver bindingResolver) + { + _binding_GetProductAsync_productService = bindingResolver.GetBinding(CreateParameterDescriptor_GetProductAsync_productService()); + } + + public global::HotChocolate.Internal.ParameterDescriptor CreateParameterDescriptor_GetProductAsync_productService() + => new HotChocolate.Internal.ParameterDescriptor( + "productService", + typeof(global::TestNamespace.ProductService), + isNullable: false, + []); + + public HotChocolate.Resolvers.FieldResolverDelegates GetProductAsync() + => new global::HotChocolate.Resolvers.FieldResolverDelegates(resolver: GetProductAsync); + + private async global::System.Threading.Tasks.ValueTask GetProductAsync(global::HotChocolate.Resolvers.IResolverContext context) + { + var args0 = context.GetLocalState(global::HotChocolate.WellKnownContextData.InternalId); + var args1 = _binding_GetProductAsync_productService.Execute(context); + var args2_selection = context.Selection; + var args2_filter = global::HotChocolate.Data.Filters.FilterContextResolverContextExtensions.GetFilterContext(context); + var args2_sorting = global::HotChocolate.Data.Sorting.SortingContextResolverContextExtensions.GetSortingContext(context); + var args2 = new global::GreenDonut.Data.QueryContext( + global::HotChocolate.Execution.Processing.HotChocolateExecutionSelectionExtensions.AsSelector(args2_selection, context.IncludeFlags), + args2_filter?.AsPredicate(), + args2_sorting?.AsSortDefinition()); + var args3 = context.RequestAborted; + var result = await global::TestNamespace.ProductNode.GetProductAsync(args0, args1, args2, args3); + return result; + } + } + } +} + + +``` diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_NoError.md index ad43bec8f35..8c0bcc6bda6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_NoError.md @@ -108,4 +108,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_WithString_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_WithString_NoError.md index 82abbc70f04..25bf549f9ae 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_WithString_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NamedId_WithString_NoError.md @@ -108,4 +108,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NotNamedId_NoFixableParameter_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NotNamedId_NoFixableParameter_RaisesError.md index cec4af85bcc..66ad8c3f7ef 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NotNamedId_NoFixableParameter_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.FirstParameter_NotNamedId_NoFixableParameter_RaisesError.md @@ -125,4 +125,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.GuidIdParameter_NotInFirstPosition_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.GuidIdParameter_NotInFirstPosition_RaisesError.md index 139c7bc8227..2abaf0b33b6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.GuidIdParameter_NotInFirstPosition_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.GuidIdParameter_NotInFirstPosition_RaisesError.md @@ -134,4 +134,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.IdParameter_NotInFirstPosition_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.IdParameter_NotInFirstPosition_RaisesError.md index 9d2b311c38b..71cca8a6cae 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.IdParameter_NotInFirstPosition_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.IdParameter_NotInFirstPosition_RaisesError.md @@ -126,4 +126,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.MethodWithoutNodeResolver_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.MethodWithoutNodeResolver_NoError.md index 4006b645056..bb9577e2899 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.MethodWithoutNodeResolver_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.MethodWithoutNodeResolver_NoError.md @@ -167,4 +167,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.ParameterEndingWithId_NotInFirstPosition_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.ParameterEndingWithId_NotInFirstPosition_RaisesError.md index ffcab2fc4fb..0301be0d707 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.ParameterEndingWithId_NotInFirstPosition_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.ParameterEndingWithId_NotInFirstPosition_RaisesError.md @@ -134,4 +134,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.StringIdParameter_NotInFirstPosition_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.StringIdParameter_NotInFirstPosition_RaisesError.md index 45d2c3dfc49..1c0f785bac6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.StringIdParameter_NotInFirstPosition_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/NodeResolverIdParameterAnalyzerTests.StringIdParameter_NotInFirstPosition_RaisesError.md @@ -134,4 +134,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Argument_With_DefaultValue.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Argument_With_DefaultValue.md index 95e00294405..fa70ed97bda 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Argument_With_DefaultValue.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Argument_With_DefaultValue.md @@ -154,4 +154,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.CustomAttribute_On_Parameter_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.CustomAttribute_On_Parameter_MatchesSnapshot.md index 15a0a96dd6b..2a771e6ae75 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.CustomAttribute_On_Parameter_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.CustomAttribute_On_Parameter_MatchesSnapshot.md @@ -163,4 +163,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Enum_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Enum_MatchesSnapshot.md index adccecbd551..740f6c3c858 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Enum_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Enum_MatchesSnapshot.md @@ -162,4 +162,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Int_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Int_MatchesSnapshot.md index 999e26b0291..5c2c589addd 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Int_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_Int_MatchesSnapshot.md @@ -162,4 +162,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_String_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_String_MatchesSnapshot.md index aa679e9c918..5d465fdfee0 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_String_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Arguments_With_DefaultValue_String_MatchesSnapshot.md @@ -162,4 +162,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_Enum_Arguments_Nullability_Is_Honored_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_Enum_Arguments_Nullability_Is_Honored_MatchesSnapshot.md index ee3d005c8b1..2ba471a59c7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_Enum_Arguments_Nullability_Is_Honored_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_Enum_Arguments_Nullability_Is_Honored_MatchesSnapshot.md @@ -162,4 +162,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_RefType_Arguments_Nullability_Is_Honored_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_RefType_Arguments_Nullability_Is_Honored_MatchesSnapshot.md index 8f04bdccd4e..1ac3286d734 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_RefType_Arguments_Nullability_Is_Honored_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Field_Nullable_RefType_Arguments_Nullability_Is_Honored_MatchesSnapshot.md @@ -160,4 +160,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md index 1357979e04d..a87d57eed6c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GenerateSource_BatchDataLoader_MatchesSnapshot.md @@ -127,4 +127,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_NonGeneric_On_Parameter_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_NonGeneric_On_Parameter_MatchesSnapshot.md index 10025a96bc7..f0331b015c9 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_NonGeneric_On_Parameter_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_NonGeneric_On_Parameter_MatchesSnapshot.md @@ -161,4 +161,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Parameter_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Parameter_MatchesSnapshot.md index 57e645795d2..6933235f1ff 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Parameter_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Parameter_MatchesSnapshot.md @@ -161,4 +161,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Resolver_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Resolver_MatchesSnapshot.md index b6df8113e2f..f50e3ac1769 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Resolver_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_On_Resolver_MatchesSnapshot.md @@ -161,4 +161,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_String_On_Parameter_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_String_On_Parameter_MatchesSnapshot.md index a840b721172..bfd5b6501a8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_String_On_Parameter_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.GraphQLType_String_On_Parameter_MatchesSnapshot.md @@ -1016,4 +1016,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.NullableValueTypeArgument_With_DefaultValue.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.NullableValueTypeArgument_With_DefaultValue.md index 234d7d47106..7fe71b0fe7d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.NullableValueTypeArgument_With_DefaultValue.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.NullableValueTypeArgument_With_DefaultValue.md @@ -922,4 +922,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class.md index 80de4a23857..c7c18e2c12b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class.md @@ -129,4 +129,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class_Scoped.md index 2cffbf91ee9..bfb60559f88 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Class_Scoped.md @@ -128,4 +128,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Field.md index e52f658a7c1..5a652e83931 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.Shareable_On_Field.md @@ -128,4 +128,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ComplexScenario.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ComplexScenario.md index 81bea678419..8ea588ef037 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ComplexScenario.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ComplexScenario.md @@ -183,4 +183,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocCref.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocCref.md index 54a70f6b4bf..10eddaa77cb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocCref.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocCref.md @@ -67,4 +67,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromBaseClass.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromBaseClass.md index 0d842b808a4..36d9860498e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromBaseClass.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromBaseClass.md @@ -67,4 +67,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromInterface.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromInterface.md index e477f9a2b9f..3a4e552ec29 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromInterface.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_InheritdocFromInterface.md @@ -67,4 +67,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_MultilineDescription.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_MultilineDescription.md index e4355c478df..26be8de7dcc 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_MultilineDescription.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_MultilineDescription.md @@ -117,4 +117,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ParameterDescription.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ParameterDescription.md index f5b471a5214..ecdfd64ac6d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ParameterDescription.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_ParameterDescription.md @@ -183,4 +183,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_SpecialCharacters.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_SpecialCharacters.md index 39e715024e4..7c3b8c07c1b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_SpecialCharacters.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeTests.XmlDocumentation_With_SpecialCharacters.md @@ -117,4 +117,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeXmlDocInferenceTests.XmlDocumentation_With_InheritdocCref_AllPossibleTargets.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeXmlDocInferenceTests.XmlDocumentation_With_InheritdocCref_AllPossibleTargets.md index 773e7c221b8..8e4c6757f9b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeXmlDocInferenceTests.XmlDocumentation_With_InheritdocCref_AllPossibleTargets.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ObjectTypeXmlDocInferenceTests.XmlDocumentation_With_InheritdocCref_AllPossibleTargets.md @@ -1,4 +1,4 @@ -# XmlDocumentation_With_InheritdocCref_AllPossibleTargets +# XmlDocumentation_With_InheritdocCref_AllPossibleTargets ## HotChocolateTypeModule.735550c.g.cs @@ -376,4 +376,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class.md index 22dbd1e8d7c..05bb6085292 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class.md @@ -156,4 +156,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class_Scoped.md index 554cc31b859..c719150e7a9 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Class_Scoped.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Field.md index 9228ef3b9e2..ebd55cf1090 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Inaccessible_On_Field.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Lookup_With_Generic_ID_Attribute.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Lookup_With_Generic_ID_Attribute.md index 18914162d0e..f408cb02526 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Lookup_With_Generic_ID_Attribute.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Lookup_With_Generic_ID_Attribute.md @@ -181,4 +181,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Partial_Static_QueryType.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Partial_Static_QueryType.md index 7bd4d03fa5b..2ab9562507d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Partial_Static_QueryType.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Partial_Static_QueryType.md @@ -153,4 +153,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Empty.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Empty.md index 86b71851db7..e3e7687173d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Empty.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Empty.md @@ -81,4 +81,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_NodeResolver.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_NodeResolver.md index f67d1eeece8..6a2c1599069 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_NodeResolver.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_NodeResolver.md @@ -153,4 +153,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Projection_Single_Entity.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Projection_Single_Entity.md index 06fbaef2ea8..614bb291a21 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Projection_Single_Entity.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Root_Projection_Single_Entity.md @@ -123,4 +123,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class.md index b6d47ea32fe..54feb4d4ba0 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class.md @@ -156,4 +156,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class_Scoped.md index 7aa025908bb..74b19b828e1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Class_Scoped.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Field.md index ddca7a3a724..abf483f8a73 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/OperationTests.Shareable_On_Field.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionFlags.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionFlags.md index 03f7b511245..7e207f817e2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionFlags.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionFlags.md @@ -451,4 +451,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionT_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionT_MatchesSnapshot.md index b7c0783e749..85a8a33ddb5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionT_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_ConnectionT_MatchesSnapshot.md @@ -149,4 +149,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_MatchesSnapshot.md index 4b97f2fee7f..9aed6db3349 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_MatchesSnapshot.md @@ -419,4 +419,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_No_Duplicates_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_No_Duplicates_MatchesSnapshot.md index e460aa54abe..85cbace87f1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_No_Duplicates_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_No_Duplicates_MatchesSnapshot.md @@ -597,4 +597,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_ConnectionName_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_ConnectionName_MatchesSnapshot.md index 76e3ea3604f..4c658412e44 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_ConnectionName_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_ConnectionName_MatchesSnapshot.md @@ -437,4 +437,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_IncludeTotalCount_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_IncludeTotalCount_MatchesSnapshot.md index 17781b93669..455ad32b079 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_IncludeTotalCount_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_CustomConnection_UseConnection_IncludeTotalCount_MatchesSnapshot.md @@ -437,4 +437,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_MatchesSnapshot.md index 5a27f8a0bcd..01357211e5f 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_MatchesSnapshot.md @@ -606,4 +606,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_WithConnectionName_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_WithConnectionName_MatchesSnapshot.md index 38789d12efa..b03e2071a4e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_WithConnectionName_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_GenericCustomConnection_WithConnectionName_MatchesSnapshot.md @@ -893,4 +893,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Inherit_PageEdge.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Inherit_PageEdge.md index 66071cea1df..4924720173e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Inherit_PageEdge.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Inherit_PageEdge.md @@ -450,4 +450,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge.md index cda694bd909..7f5cfdeb60d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge.md @@ -421,4 +421,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge_Generic.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge_Generic.md index 2bdfa6b38ec..5a6c5889c8d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge_Generic.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_ConnectionBase_Reuse_PageEdge_Generic.md @@ -428,4 +428,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_PageConnection.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_PageConnection.md index 53831b1e843..6cd7beca197 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_PageConnection.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.GenerateSource_Inherit_From_PageConnection.md @@ -456,4 +456,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class.md index 2f46072038d..14dacdc1f2d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class.md @@ -421,4 +421,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class_Scoped.md index 903fa15557c..ac5c2eb6c73 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Class_Scoped.md @@ -423,4 +423,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Field.md index 0488c180925..86a6d102186 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Connection_Field.md @@ -420,4 +420,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class.md index 1a3559cdec4..18dd6ec42c6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class.md @@ -421,4 +421,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class_Scoped.md index 27357a24e2b..030b10e605d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Class_Scoped.md @@ -421,4 +421,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Field.md index a9eb136bee7..396050729e1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_Edge_Field.md @@ -420,4 +420,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection.md index 1b3220e94ae..340e7dfe2cf 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection.md @@ -460,4 +460,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection_Scoped.md index 3788e3b874c..7007a6b2030 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Inaccessible_On_PageConnection_Scoped.md @@ -463,4 +463,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class.md index 7d94b0fdd3c..6d6cfd514c3 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class.md @@ -416,4 +416,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class_Scoped.md index c3a94e18c83..ad975f570d6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Class_Scoped.md @@ -423,4 +423,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Field.md index 52df138b136..07a9914b255 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Connection_Field.md @@ -420,4 +420,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class.md index a6005a6b729..c281ad185a1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class.md @@ -416,4 +416,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class_Scoped.md index 945dc5f1c6e..e41c109c83e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Class_Scoped.md @@ -421,4 +421,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Field.md index 1ee96874e12..c154ec5918a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_Edge_Field.md @@ -420,4 +420,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection.md index fef19f5c528..0a4c876600e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection.md @@ -450,4 +450,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection_Scoped.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection_Scoped.md index c75c380b495..b2ba274ce67 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection_Scoped.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/PagingTests.Shareable_On_PageConnection_Scoped.md @@ -463,4 +463,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_BaseClass_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_BaseClass_NoError.md index aaeccd88922..d4916118854 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_BaseClass_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_BaseClass_NoError.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_Interface_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_Interface_NoError.md index eb7ea608dfb..7fb61a31a63 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_Interface_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_Interface_NoError.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MatchingType_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MatchingType_NoError.md index b36bdb67d26..983ac935829 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MatchingType_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MatchingType_NoError.md @@ -159,4 +159,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MultipleParameters_OnlyParentChecked.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MultipleParameters_OnlyParentChecked.md index d5e301dbcfc..068bd5371b7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MultipleParameters_OnlyParentChecked.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_MultipleParameters_OnlyParentChecked.md @@ -204,4 +204,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_NoParentAttribute_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_NoParentAttribute_NoError.md index 923a61b8a07..f71769b7e2b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_NoParentAttribute_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_NoParentAttribute_NoError.md @@ -141,4 +141,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_TypeMismatch_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_TypeMismatch_RaisesError.md index 7b46ed872cf..a2dfe8fd018 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_TypeMismatch_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_TypeMismatch_RaisesError.md @@ -177,4 +177,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_WithRequires_TypeMismatch_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_WithRequires_TypeMismatch_RaisesError.md index 081f5e6e5e1..23cddc028f2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_WithRequires_TypeMismatch_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentAttributeAnalyzerTests.ParentAttribute_WithRequires_TypeMismatch_RaisesError.md @@ -178,4 +178,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_ExpressionBody_TypeMismatch_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_ExpressionBody_TypeMismatch_RaisesError.md index ab4c193c3a5..664cc62e126 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_ExpressionBody_TypeMismatch_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_ExpressionBody_TypeMismatch_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_MultipleCallsOneMismatch_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_MultipleCallsOneMismatch_RaisesError.md index ca74b668dd1..28d4cf6cb97 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_MultipleCallsOneMismatch_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_MultipleCallsOneMismatch_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_TypeMismatch_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_TypeMismatch_RaisesError.md index 8b728ed4316..c7bf9bd9eb6 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_TypeMismatch_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ParentMethodAnalyzerTests.ParentMethod_TypeMismatch_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_NoError.md index 7411cd19c2a..946e88f0048 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_NoError.md @@ -460,4 +460,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_WithConnection_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_WithConnection_NoError.md index 16e352f3f5c..130dccd6bdb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_WithConnection_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.CorrectGenericTypeMatch_WithConnection_NoError.md @@ -177,4 +177,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoConnectionReturnType_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoConnectionReturnType_NoError.md index 5d161cd1e32..7802f2db8d7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoConnectionReturnType_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoConnectionReturnType_NoError.md @@ -144,4 +144,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoQueryContextParameter_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoQueryContextParameter_NoError.md index 76e3a23f976..81a6c7a8bc8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoQueryContextParameter_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.NoQueryContextParameter_NoError.md @@ -453,4 +453,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithConnection_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithConnection_RaisesError.md index 56176c0ec32..56453c60c8e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithConnection_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithConnection_RaisesError.md @@ -195,4 +195,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithInterfaceType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithInterfaceType_RaisesError.md index f8c241add77..23c5c1f70d8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithInterfaceType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithInterfaceType_RaisesError.md @@ -195,4 +195,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithMutationType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithMutationType_RaisesError.md index 5e521c7ce31..5b19b90aea1 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithMutationType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithMutationType_RaisesError.md @@ -490,4 +490,3 @@ namespace HotChocolate.Types.Pagination } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithObjectType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithObjectType_RaisesError.md index baafb279918..5cd1ecc24e8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithObjectType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithObjectType_RaisesError.md @@ -478,4 +478,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithQueryType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithQueryType_RaisesError.md index 6f85410313a..6b3a96cc7b0 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithQueryType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithQueryType_RaisesError.md @@ -490,4 +490,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithSubscriptionType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithSubscriptionType_RaisesError.md index 4955e7a7d8a..8d9d459fd36 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithSubscriptionType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextConnectionAnalyzerTests.TypeMismatch_WithSubscriptionType_RaisesError.md @@ -490,4 +490,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.NoQueryContext_NoAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.NoQueryContext_NoAttributes_NoError.md index 2c5eb700b70..30c7f9e2829 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.NoQueryContext_NoAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.NoQueryContext_NoAttributes_NoError.md @@ -136,4 +136,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_MultipleAttributes_OnlyUseProjectionFlagged.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_MultipleAttributes_OnlyUseProjectionFlagged.md index 68afee3c0f2..e5c7057aca5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_MultipleAttributes_OnlyUseProjectionFlagged.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_MultipleAttributes_OnlyUseProjectionFlagged.md @@ -279,4 +279,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjection_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjection_RaisesError.md index 690abdf1b93..6d8e5613468 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjection_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjection_RaisesError.md @@ -279,4 +279,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjections_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjections_RaisesError.md index 728d03e07e0..73389a78b8e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjections_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithUseProjections_RaisesError.md @@ -363,4 +363,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithoutUseProjection_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithoutUseProjection_NoError.md index 68a4f7ca826..b418b28ebc8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithoutUseProjection_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.QueryContext_WithoutUseProjection_NoError.md @@ -267,4 +267,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.UseProjection_WithoutQueryContext_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.UseProjection_WithoutQueryContext_NoError.md index aa6436b085c..cfd60e40147 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.UseProjection_WithoutQueryContext_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/QueryContextProjectionAnalyzerTests.UseProjection_WithoutQueryContext_NoError.md @@ -155,4 +155,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node.md index 2c3b8220f41..a967b8e08f5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node.md @@ -215,4 +215,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node_With_Query_Node_Resolver.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node_With_Query_Node_Resolver.md index b254f1e3803..1bded254b86 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node_With_Query_Node_Resolver.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Ensure_Entity_Becomes_Node_With_Query_Node_Resolver.md @@ -260,4 +260,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateArgument_MatchesSnapshot.md index 666acea9c9b..5b06c87720c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateSetStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateSetStateArgument_MatchesSnapshot.md index 45935b4f766..8df26e52a9a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateSetStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithGlobalStateSetStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateArgument_MatchesSnapshot.md index daa27a609c2..dbdd42c7dee 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateSetStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateSetStateArgument_MatchesSnapshot.md index 1d972f060c3..bf0b1b0b51a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateSetStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithLocalStateSetStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateArgument_MatchesSnapshot.md index 9ee328c8487..62dc6064997 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateSetStateArgument_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateSetStateArgument_MatchesSnapshot.md index d4e1df3b87f..2443a19cc59 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateSetStateArgument_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.GenerateSource_ResolverWithScopedStateSetStateArgument_MatchesSnapshot.md @@ -105,4 +105,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Inject_QueryContext.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Inject_QueryContext.md index 566ee5ebcf0..3df73351bbb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Inject_QueryContext.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Inject_QueryContext.md @@ -110,4 +110,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Internal_NodeResolver_Should_Generate_Source.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Internal_NodeResolver_Should_Generate_Source.md index ebf60fbd152..ef370c4146e 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Internal_NodeResolver_Should_Generate_Source.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Internal_NodeResolver_Should_Generate_Source.md @@ -85,4 +85,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_One_Attribute.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_One_Attribute.md index a84971af416..cfa9c716a34 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_One_Attribute.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_One_Attribute.md @@ -152,4 +152,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_Two_Attribute.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_Two_Attribute.md index 95822b820a4..3c31d0e9b9d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_Two_Attribute.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_Parameter_With_Two_Attribute.md @@ -200,4 +200,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_From_Different_Namespace_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_From_Different_Namespace_MatchesSnapshot.md index 8448fcec222..4b552c84356 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_From_Different_Namespace_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_From_Different_Namespace_MatchesSnapshot.md @@ -249,4 +249,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_Parameter_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_Parameter_MatchesSnapshot.md index 5ae66a24bfc..bf06a30a5b8 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_Parameter_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Generated_DataLoader_Parameter_MatchesSnapshot.md @@ -249,4 +249,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Multiple_DataLoaders_Same_Name_Different_Namespaces_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Multiple_DataLoaders_Same_Name_Different_Namespaces_MatchesSnapshot.md index dfb42644a6e..883aacbc283 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Multiple_DataLoaders_Same_Name_Different_Namespaces_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ResolverTests.Resolver_With_Multiple_DataLoaders_Same_Name_Different_Namespaces_MatchesSnapshot.md @@ -305,4 +305,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithOtherAttributes_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithOtherAttributes_NoError.md index 62a7e6f219f..0f9e154578c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithOtherAttributes_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithOtherAttributes_NoError.md @@ -120,4 +120,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_MultipleAttributes_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_MultipleAttributes_RaisesError.md index fde35e22be7..41bb9f705f2 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_MultipleAttributes_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_MultipleAttributes_RaisesError.md @@ -138,4 +138,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_RaisesError.md index 58f5970180c..c47a67f0a1c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithShareable_RaisesError.md @@ -138,4 +138,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithoutShareable_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithoutShareable_NoError.md index 6edb1f3be1e..4da37873593 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithoutShareable_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.InterfaceType_WithoutShareable_NoError.md @@ -120,4 +120,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.ObjectType_WithShareable_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.ObjectType_WithShareable_NoError.md index 7a8947220ad..faa14787f6d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.ObjectType_WithShareable_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableInterfaceTypeAnalyzerTests.ObjectType_WithShareable_NoError.md @@ -128,4 +128,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Class_WithScopedTrue_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Class_WithScopedTrue_NoError.md index 87dea008109..324ea6e0061 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Class_WithScopedTrue_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Class_WithScopedTrue_NoError.md @@ -105,4 +105,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_NoShareableAttribute_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_NoShareableAttribute_NoError.md index 6908e9d40b9..86f8d8f09c5 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_NoShareableAttribute_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_NoShareableAttribute_NoError.md @@ -102,4 +102,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedFalse_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedFalse_RaisesError.md index 3caf02480ea..8d25b14afb7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedFalse_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedFalse_RaisesError.md @@ -121,4 +121,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedTrue_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedTrue_RaisesError.md index bad1e63aa60..1b9bb51ea1c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedTrue_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithScopedTrue_RaisesError.md @@ -121,4 +121,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithoutScoped_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithoutScoped_NoError.md index d8656e91f6c..2b92d99aaee 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithoutScoped_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Method_WithoutScoped_NoError.md @@ -103,4 +103,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithScopedTrue_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithScopedTrue_RaisesError.md index ed399212f98..dd06c53806a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithScopedTrue_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithScopedTrue_RaisesError.md @@ -121,4 +121,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithoutScoped_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithoutScoped_NoError.md index dda2d744bcd..048e6f1685b 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithoutScoped_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/ShareableScopedOnMemberAnalyzerTests.Property_WithoutScoped_NoError.md @@ -103,4 +103,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Lookup.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Lookup.md index 107f04f122e..090be3d5a87 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Lookup.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Lookup.md @@ -129,4 +129,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable.md index 8df2637e859..33cbda6f79c 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable.md @@ -117,4 +117,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable_On_Field.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable_On_Field.md index c7752ac0416..b691ad34ccd 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable_On_Field.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.DetectSourceSchemaDefaults_From_Shareable_On_Field.md @@ -116,4 +116,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.GenerateSource_TypeModuleOrdering_MatchesSnapshot.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.GenerateSource_TypeModuleOrdering_MatchesSnapshot.md index b767103ea02..444da405b85 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.GenerateSource_TypeModuleOrdering_MatchesSnapshot.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/TypeModuleSyntaxGeneratorTests.GenerateSource_TypeModuleOrdering_MatchesSnapshot.md @@ -239,4 +239,3 @@ namespace Microsoft.Extensions.DependencyInjection } ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AllowAnonymousAttribute_On_Resolver_Method_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AllowAnonymousAttribute_On_Resolver_Method_NoError.md index 8491f8ab225..ef3b3c6e14a 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AllowAnonymousAttribute_On_Resolver_Method_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AllowAnonymousAttribute_On_Resolver_Method_NoError.md @@ -118,4 +118,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Class_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Class_NoError.md index 6868c24bf6c..8b34e85c4c7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Class_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Class_NoError.md @@ -111,4 +111,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Method_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Method_NoError.md index ca0921e9afe..912b3a47147 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Method_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Method_NoError.md @@ -118,4 +118,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Property_NoError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Property_NoError.md index 2035ad5fc33..124a36c0311 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Property_NoError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.HotChocolate_AuthorizeAttribute_On_Resolver_Property_NoError.md @@ -118,4 +118,3 @@ namespace TestNamespace ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AllowAnonymousAttribute_On_Resolver_Method_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AllowAnonymousAttribute_On_Resolver_Method_RaisesError.md index 222de62ab20..58a6f569a4d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AllowAnonymousAttribute_On_Resolver_Method_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AllowAnonymousAttribute_On_Resolver_Method_RaisesError.md @@ -122,4 +122,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Class_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Class_RaisesError.md index 75a006974ce..fc8d4abfcf7 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Class_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Class_RaisesError.md @@ -122,4 +122,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Old_ObjectType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Old_ObjectType_RaisesError.md index 511691441e5..d3d67bc3ace 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Old_ObjectType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Old_ObjectType_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Record_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Record_RaisesError.md index ede910edab6..c94e79ea716 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Record_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Record_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Old_ObjectType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Old_ObjectType_RaisesError.md index 4d219c73af4..bffaaff0182 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Old_ObjectType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Old_ObjectType_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Record_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Record_RaisesError.md index 873f672b8f0..f0f6af5a72d 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Record_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_Record_RaisesError.md @@ -45,4 +45,3 @@ namespace Microsoft.Extensions.DependencyInjection } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_RootType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_RootType_RaisesError.md index ec5d558c55a..057a68988fb 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_RootType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_In_RootType_RaisesError.md @@ -134,4 +134,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_RaisesError.md index d634dfcb3a8..56a7dbf9288 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_Resolver_Method_RaisesError.md @@ -122,4 +122,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_RootType_RaisesError.md b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_RootType_RaisesError.md index 9c2a4d0a837..9ebe1dfe266 100644 --- a/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_RootType_RaisesError.md +++ b/src/HotChocolate/Core/test/Types.Analyzers.Tests/__snapshots__/WrongAuthorizationAttributeAnalyzerTests.Microsoft_AuthorizeAttribute_On_RootType_RaisesError.md @@ -134,4 +134,3 @@ namespace TestNamespace } ] ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Resolvers/__snapshots__/IsSelectedTests.IsSelected_Pattern_Is_Invalid.md b/src/HotChocolate/Core/test/Types.Tests/Resolvers/__snapshots__/IsSelectedTests.IsSelected_Pattern_Is_Invalid.md index e03e28a3a04..5f5a78831f9 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Resolvers/__snapshots__/IsSelectedTests.IsSelected_Pattern_Is_Invalid.md +++ b/src/HotChocolate/Core/test/Types.Tests/Resolvers/__snapshots__/IsSelectedTests.IsSelected_Pattern_Is_Invalid.md @@ -33,4 +33,3 @@ The specified pattern on field `BrokenQuery.user_2` is invalid: The type condition `String` of the inline fragment is not assignable from the parent field type `Category`. ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/DefaultNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/DefaultNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md index 502db336e35..33c2342364a 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/DefaultNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/DefaultNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md @@ -1420,4 +1420,3 @@ UUID:abc VXBsb2FkOmFiYw== Upload:abc ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/OptimizedNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/OptimizedNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md index 502db336e35..33c2342364a 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/OptimizedNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/Relay/__snapshots__/OptimizedNodeIdSerializerTests.Ensure_Lookup_Works_With_HashCollision.md @@ -1420,4 +1420,3 @@ UUID:abc VXBsb2FkOmFiYw== Upload:abc ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable.md index 59f1f47b611..fddb262c479 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable_Async.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable_Async.md index 5fa2caca031..7f15e9a1da1 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable_Async.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_AsyncEnumerable_Async.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable.md index 8f074ba6d2d..4f3c622faa6 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable_Async.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable_Async.md index 39764347a15..e3bc80cfa28 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable_Async.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Enumerable_Async.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable.md index 870f833f11d..3fd1216c11c 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable_Async.md b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable_Async.md index 55bc32af814..b50c682d3d6 100644 --- a/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable_Async.md +++ b/src/HotChocolate/Core/test/Types.Tests/Types/__snapshots__/SubscriptionTypeTests.Subscribe_With_Observable_Async.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md index df2a3b3f417..4c4fbd1a0e8 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Do_Not_Use_Default_Page_Size_When_Default_Is_Specified.md @@ -182,4 +182,3 @@ directive @cost("The `weight` argument defines what value to add to the overall "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Execute_On_Missing_Root_Type.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Execute_On_Missing_Root_Type.md index 9b84dba574e..2fd9b55c6fe 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Execute_On_Missing_Root_Type.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Execute_On_Missing_Root_Type.md @@ -32,4 +32,3 @@ subscription { ] } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Not_Used.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Not_Used.md index a41d781ccde..9649716fb57 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Not_Used.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Not_Used.md @@ -38,4 +38,3 @@ } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Expensive_Filter_Used.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Expensive_Filter_Used.md index bed8786b283..495847e6d7f 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Expensive_Filter_Used.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Expensive_Filter_Used.md @@ -38,4 +38,3 @@ } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Filter_Used.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Filter_Used.md index 9abe12cd5a4..5fd7800695c 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Filter_Used.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Specific_Filter_Used.md @@ -38,4 +38,3 @@ } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md index 85e5c914be8..2f18bbf6ebe 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Filtering_Variable.md @@ -17,27 +17,26 @@ query( ## Expected ```json -{ - "fieldCost": 10, - "typeCost": 12 +{ + "fieldCost": 10, + "typeCost": 12 } ``` ## Response ```json -{ - "data": { - "books": { - "nodes": [] - } - }, - "extensions": { - "operationCost": { - "fieldCost": 901, - "typeCost": 12 - } - } +{ + "data": { + "books": { + "nodes": [] + } + }, + "extensions": { + "operationCost": { + "fieldCost": 901, + "typeCost": 12 + } + } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_By_Default_With_Connections.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_By_Default_With_Connections.md index 6d967784aae..7884fca5e86 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_By_Default_With_Connections.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_By_Default_With_Connections.md @@ -35,4 +35,3 @@ ] } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Literal.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Literal.md index 6eb6d5fb9e8..534dc8f60a4 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Literal.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Literal.md @@ -29,4 +29,3 @@ } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md index 479673b84ce..91e4a3d7bca 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Single_Boundary_With_Variable.md @@ -17,18 +17,17 @@ query( ## Response ```json -{ - "data": { - "books": { - "nodes": [] - } - }, - "extensions": { - "operationCost": { - "fieldCost": 11, - "typeCost": 52 - } - } +{ + "data": { + "books": { + "nodes": [] + } + }, + "extensions": { + "operationCost": { + "fieldCost": 11, + "typeCost": 52 + } + } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md index c40ff569a4a..4f2fa3a1802 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_Mixed.md @@ -17,24 +17,23 @@ query( ## Response ```json -{ - "errors": [ - { - "message": "Exactly one slicing argument must be defined.", - "locations": [ - { - "line": 2, - "column": 5 - } - ], - "path": [ - "books" - ], - "extensions": { - "code": "HC0082" - } - } - ] +{ + "errors": [ + { + "message": "Exactly one slicing argument must be defined.", + "locations": [ + { + "line": 2, + "column": 5 + } + ], + "path": [ + "books" + ], + "extensions": { + "code": "HC0082" + } + } + ] } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md index 61c5140085b..c90af86bc75 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Boundaries_Two_Boundaries_With_Variable.md @@ -5,7 +5,7 @@ ```graphql query( $first: Int - $last: Int + $last: Int ) { books(first: $first, last: $last) { nodes { @@ -18,18 +18,17 @@ query( ## Response ```json -{ - "data": { - "books": { - "nodes": [] - } - }, - "extensions": { - "operationCost": { - "fieldCost": 11, - "typeCost": 52 - } - } +{ + "data": { + "books": { + "nodes": [] + } + }, + "extensions": { + "operationCost": { + "fieldCost": 11, + "typeCost": 52 + } + } } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Nested_Boundaries.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Nested_Boundaries.md index 3a26e4f111e..b0a5e3145a7 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Nested_Boundaries.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Require_Paging_Nested_Boundaries.md @@ -42,4 +42,3 @@ ] } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md index 40118d4dd7d..e4a442b4626 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/PagingTests.Use_Default_Page_Size_When_Default_Is_Specified.md @@ -182,4 +182,3 @@ directive @cost("The `weight` argument defines what value to add to the overall "The purpose of the `@listSize` directive is to either inform the static analysis about the size of returned lists (if that information is statically available), or to point the analysis to where to find that information." directive @listSize("The `assumedSize` argument can be used to statically define the maximum length of a list returned by a field." assumedSize: Int "The `slicingArguments` argument can be used to define which of the field's arguments with numeric type are slicing arguments, so that their value determines the size of the list returned by that field. It may specify a list of multiple slicing arguments." slicingArguments: [String!] "The `slicingArgumentDefaultValue` argument can be used to define a default value for a slicing argument, which is used if the argument is not present in a query." slicingArgumentDefaultValue: Int "The `sizedFields` argument can be used to define that the value of the `assumedSize` argument or of a slicing argument does not affect the size of a list returned by a field itself, but that of a list returned by one of its sub-fields." sizedFields: [String!] "The `requireOneSlicingArgument` argument can be used to inform the static analysis that it should expect that exactly one of the defined slicing arguments is present in a query. If that is not the case (i.e., if none or multiple slicing arguments are present), the static analysis may throw an error." requireOneSlicingArgument: Boolean = true) on FIELD_DEFINITION ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_0.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_0.md index c22264afe76..0897cbdbf3b 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_0.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_0.md @@ -44,4 +44,3 @@ type Query { users(max: Int): [User] @listSize(slicingArguments: ["max"]) } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_1.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_1.md index f38091dc847..98759a06e71 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_1.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_1.md @@ -40,4 +40,3 @@ type Query { input Filter { field: Boolean! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_2.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_2.md index bbaa808875c..fb3d8f899e6 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_2.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_2.md @@ -40,4 +40,3 @@ type Query { input Filter { field: Boolean! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_3.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_3.md index 2eb9eea173e..6985d9eb5a9 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_3.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_3.md @@ -43,4 +43,3 @@ type Query { input Approximate { field: Boolean! } type Product { field: Boolean! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_4.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_4.md index 39e4d7af9e3..1501bb6bb11 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_4.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_4.md @@ -43,4 +43,3 @@ type Query { input Approximate { field: Boolean! } type Product { field: Boolean! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_5.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_5.md index 59e69ebd071..bd13d74ece9 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_5.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_5.md @@ -44,4 +44,3 @@ type Query { input Approximate { field: Boolean! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_6.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_6.md index e40d3847783..38d1155cd4c 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_6.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/SpecificationExampleTests.Execute_SpecificationExample_ReturnsExpectedResult_6.md @@ -39,4 +39,3 @@ type Query { example: [String] @cost(weight: "5.0") } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ConnectionQuery_ReturnsExpectedResult_0.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ConnectionQuery_ReturnsExpectedResult_0.md index 25d2d4de50a..cc51a448c2a 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ConnectionQuery_ReturnsExpectedResult_0.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ConnectionQuery_ReturnsExpectedResult_0.md @@ -124,4 +124,3 @@ type PageInfo { endCursor: String } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_0.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_0.md index d2045d388c2..6af61dbc084 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_0.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_0.md @@ -44,4 +44,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_1.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_1.md index 75b04932383..0a9af7aa7d7 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_1.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_1.md @@ -44,4 +44,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_2.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_2.md index ae0030e7368..ac623450be2 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_2.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_2.md @@ -44,4 +44,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_3.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_3.md index 55b8c92c847..3b371a81ea5 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_3.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_3.md @@ -44,4 +44,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_4.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_4.md index 4d24a4b456e..91622115aa1 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_4.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_4.md @@ -44,4 +44,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_5.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_5.md index 772cd27f804..cee4d1e512c 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_5.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_5.md @@ -45,4 +45,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_6.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_6.md index 159e7c5ff3d..4131dbb32c1 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_6.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_6.md @@ -45,4 +45,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_7.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_7.md index 3ffe65c0657..ec5127c86c7 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_7.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_7.md @@ -45,4 +45,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_8.md b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_8.md index 43235d8d55f..7b4483827be 100644 --- a/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_8.md +++ b/src/HotChocolate/CostAnalysis/test/CostAnalysis.Tests/__snapshots__/StaticQueryAnalysisTests.Execute_ListQuery_ReturnsExpectedResult_8.md @@ -49,4 +49,3 @@ type Example { field2: Int! } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering.md index b50d5e8f149..9fbcd8f3d21 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering.md @@ -41,4 +41,3 @@ WHERE "p"."BrandId" IN ( } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering_NET10_0.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering_NET10_0.md index 28de5cbe3d5..ac5f75f4fc1 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Aliased_Filtering_NET10_0.md @@ -35,4 +35,3 @@ WHERE "p"."BrandId" = @keys1 AND "p"."Name" = @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression.md index 7c8fe6476d6..65c4769d8ba 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression.md @@ -24,4 +24,3 @@ WHERE "b"."Id" IN ( } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_NET10_0.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_NET10_0.md index 27612e15748..c13fb29208c 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_NET10_0.md @@ -3,22 +3,21 @@ ## SQL ```text -.param set @keys1 1 - -SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" -FROM "Brands" AS "b" +.param set @keys1 1 + +SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" +FROM "Brands" AS "b" WHERE "b"."Id" = @keys1 AND "b"."Name" LIKE 'Brand%' ``` ## Result ```json -{ - "data": { - "filterExpression": { - "name": "Brand0" - } - } +{ + "data": { + "filterExpression": { + "name": "Brand0" + } + } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null.md index 42e4487769c..1abde9f88ba 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null.md @@ -24,4 +24,3 @@ WHERE "b"."Id" IN ( } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null_NET10_0.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null_NET10_0.md index cb74141856f..e755e0ad0c9 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Expression_Null_NET10_0.md @@ -3,22 +3,21 @@ ## SQL ```text -.param set @keys1 1 - -SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" -FROM "Brands" AS "b" +.param set @keys1 1 + +SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" +FROM "Brands" AS "b" WHERE "b"."Id" = @keys1 ``` ## Result ```json -{ - "data": { - "brandByIdFilterNull": { - "name": "Brand0" - } - } +{ + "data": { + "brandByIdFilterNull": { + "name": "Brand0" + } + } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering.md index 6f50e2049d2..ca3fde604fb 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering.md @@ -27,4 +27,3 @@ WHERE "p"."BrandId" IN ( } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering_NET10_0.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering_NET10_0.md index 5a59394ff45..c12cd0441b4 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Filtering_NET10_0.md @@ -3,25 +3,24 @@ ## SQL ```text -.param set @keys1 1 -.param set @p_startswith 'Product%' - -SELECT "p"."Id", "p"."AvailableStock", "p"."BrandId", "p"."Description", "p"."ImageFileName", "p"."MaxStockThreshold", "p"."Name", "p"."OnReorder", "p"."Price", "p"."RestockThreshold", "p"."TypeId" -FROM "Products" AS "p" +.param set @keys1 1 +.param set @p_startswith 'Product%' + +SELECT "p"."Id", "p"."AvailableStock", "p"."BrandId", "p"."Description", "p"."ImageFileName", "p"."MaxStockThreshold", "p"."Name", "p"."OnReorder", "p"."Price", "p"."RestockThreshold", "p"."TypeId" +FROM "Products" AS "p" WHERE "p"."BrandId" = @keys1 AND "p"."Name" LIKE @p_startswith ESCAPE '\' ``` ## Result ```json -{ - "data": { - "filterContext": [ - { - "name": "Product 0-0" - } - ] - } +{ + "data": { + "filterContext": [ + { + "name": "Product 0-0" + } + ] + } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md index cb7b09fd484..1f1690457b3 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression.md @@ -24,4 +24,3 @@ WHERE "b"."Id" IN ( } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression_NET10_0.md b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression_NET10_0.md index 2b5ccfcbb65..06619e6f94c 100644 --- a/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Filters.SqlServer.Tests/__snapshots__/DataLoaderTests.Filter_With_Multi_Expression_NET10_0.md @@ -3,22 +3,21 @@ ## SQL ```text -.param set @keys1 1 - -SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" -FROM "Brands" AS "b" +.param set @keys1 1 + +SELECT "b"."Id", "b"."DisplayName", "b"."Name", "b"."Details_Country_Name" +FROM "Brands" AS "b" WHERE "b"."Id" = @keys1 AND "b"."Name" LIKE 'Brand%' AND "b"."Name" LIKE '%0' ``` ## Result ```json -{ - "data": { - "multiFilterExpression": { - "name": "Brand0" - } - } +{ + "data": { + "multiFilterExpression": { + "name": "Brand0" + } + } } ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET10_0.md index eae2bb6529a..3ff19837d04 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET10_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "id": "0" - }, - { - "id": "1" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "id": "0" + }, + { + "id": "1" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET8_0.md index eae2bb6529a..3ff19837d04 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET8_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "id": "0" - }, - { - "id": "1" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "id": "0" + }, + { + "id": "1" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET9_0.md index eae2bb6529a..3ff19837d04 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Ensure_That_Self_Requirement_Is_Honored_NET9_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "id": "0" - }, - { - "id": "1" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "id": "0" + }, + { + "id": "1" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET10_0.md index 677c570c934..85428680828 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET10_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "__typename": "SingleProperty" - }, - { - "__typename": "SingleProperty" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "__typename": "SingleProperty" + }, + { + "__typename": "SingleProperty" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET8_0.md index 677c570c934..85428680828 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET8_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "__typename": "SingleProperty" - }, - { - "__typename": "SingleProperty" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "__typename": "SingleProperty" + }, + { + "__typename": "SingleProperty" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET9_0.md index 677c570c934..85428680828 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Fallback_To_Runtime_Properties_When_No_Field_Is_Bindable_NET9_0.md @@ -3,24 +3,23 @@ ## Result ```json -{ - "data": { - "singleProperties": [ - { - "__typename": "SingleProperty" - }, - { - "__typename": "SingleProperty" - } - ] - } +{ + "data": { + "singleProperties": [ + { + "__typename": "SingleProperty" + }, + { + "__typename": "SingleProperty" + } + ] + } } ``` ## Query 1 ```sql -SELECT s."Id" +SELECT s."Id" FROM "SingleProperties" AS s ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET10_0.md index 8a04cec6260..e343514788e 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET10_0.md @@ -35,4 +35,3 @@ FROM ( INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Name" DESC, p0."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET8_0.md index 2740b885fd2..168f1d8f337 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET8_0.md @@ -35,4 +35,3 @@ FROM ( INNER JOIN "Brands" AS b ON t."BrandId" = b."Id" ORDER BY t."Name" DESC, t."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET9_0.md index f8b630022e0..a509abd7a74 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Project_Into_1to1_Relation_NET9_0.md @@ -35,4 +35,3 @@ FROM ( INNER JOIN "Brands" AS b ON p0."BrandId" = b."Id" ORDER BY p0."Name" DESC, p0."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET10_0.md index 33d30e22b57..2fc4c7f44d4 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET10_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET8_0.md index cf3e204fd97..eba2b9aeed9 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET8_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS t0 ON t."BrandId" = t0."BrandId" ORDER BY t."BrandId", t0."BrandId", t0."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET9_0.md index e57b1538f0a..9b6cf6bb14c 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_NET9_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET10_0.md index 5489445b5b7..c66f0ceae96 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET10_0.md @@ -96,4 +96,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET8_0.md index 7f267ab8b6c..a22ff9a08a8 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET8_0.md @@ -96,4 +96,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET9_0.md index f6790caa9f1..246b313555c 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_Brand_Name_NET9_0.md @@ -96,4 +96,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET10_0.md index f3811568c4c..75e96aa6e79 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET10_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Name" DESC, p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET8_0.md index c34d11ca2dd..478ae28e6ac 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET8_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS t0 ON t."BrandId" = t0."BrandId" ORDER BY t."BrandId", t0."BrandId", t0."Name" DESC, t0."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET9_0.md index 8060668d210..b920006561e 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_And_Products_First_2_Name_Desc_NET9_0.md @@ -77,4 +77,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Name" DESC, p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET10_0.md index 6af24ded56f..fa497451622 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET10_0.md @@ -30,4 +30,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @p ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET8_0.md index af4c27c8fce..44733b6d02d 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET8_0.md @@ -30,4 +30,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET9_0.md index af4c27c8fce..44733b6d02d 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_NET9_0.md @@ -30,4 +30,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET10_0.md index 4689855a5fc..3c2caee465a 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET10_0.md @@ -80,4 +80,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET8_0.md index 223778e6f45..cf104bf15f5 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET8_0.md @@ -80,4 +80,3 @@ LEFT JOIN ( ) AS t0 ON t."BrandId" = t0."BrandId" ORDER BY t."BrandId", t0."BrandId", t0."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET9_0.md index 9b0623acf48..89aa3e4ca99 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_First_2_Products_First_2_ForwardCursors_NET9_0.md @@ -80,4 +80,3 @@ LEFT JOIN ( ) AS p3 ON p1."BrandId" = p3."BrandId" ORDER BY p1."BrandId", p3."BrandId", p3."Id" ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET10_0.md index fb9b9e85c21..b13310f0794 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET10_0.md @@ -62,4 +62,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @p ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET8_0.md index 4b323c45d84..f24407fb81c 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET8_0.md @@ -62,4 +62,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET9_0.md index 4b323c45d84..f24407fb81c 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Brands_NET9_0.md @@ -62,4 +62,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET10_0.md index 41d3ab4d4d2..f1f1abc8f4f 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET10_0.md @@ -3,22 +3,21 @@ ## Result ```json -{ - "data": { - "brand": { - "id": "QnJhbmQ6MQ==", - "name": "Daybird" - } - } +{ + "data": { + "brand": { + "id": "QnJhbmQ6MQ==", + "name": "Daybird" + } + } } ``` ## Query 1 ```sql --- @ids={ '1' } (DbType = Object) -SELECT b."Id", b."Name" -FROM "Brands" AS b +-- @ids={ '1' } (DbType = Object) +SELECT b."Id", b."Name" +FROM "Brands" AS b WHERE b."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET8_0.md index 860adc31838..3c300eba1ee 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET8_0.md @@ -3,22 +3,21 @@ ## Result ```json -{ - "data": { - "brand": { - "id": "QnJhbmQ6MQ==", - "name": "Daybird" - } - } +{ + "data": { + "brand": { + "id": "QnJhbmQ6MQ==", + "name": "Daybird" + } + } } ``` ## Query 1 ```sql --- @__ids_0={ '1' } (DbType = Object) -SELECT b."Id", b."Name" -FROM "Brands" AS b +-- @__ids_0={ '1' } (DbType = Object) +SELECT b."Id", b."Name" +FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET9_0.md index 860adc31838..3c300eba1ee 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Brand_NET9_0.md @@ -3,22 +3,21 @@ ## Result ```json -{ - "data": { - "brand": { - "id": "QnJhbmQ6MQ==", - "name": "Daybird" - } - } +{ + "data": { + "brand": { + "id": "QnJhbmQ6MQ==", + "name": "Daybird" + } + } } ``` ## Query 1 ```sql --- @__ids_0={ '1' } (DbType = Object) -SELECT b."Id", b."Name" -FROM "Brands" AS b +-- @__ids_0={ '1' } (DbType = Object) +SELECT b."Id", b."Name" +FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET10_0.md index a24ba1032f3..823e38d210a 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET10_0.md @@ -21,4 +21,3 @@ SELECT p."Id", p."Name" FROM "Products" AS p WHERE p."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET8_0.md index 3bbe500d732..5f94ffcf937 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET8_0.md @@ -3,22 +3,21 @@ ## Result ```json -{ - "data": { - "product": { - "id": "UHJvZHVjdDox", - "name": "Wanderer Black Hiking Boots" - } - } +{ + "data": { + "product": { + "id": "UHJvZHVjdDox", + "name": "Wanderer Black Hiking Boots" + } + } } ``` ## Query 1 ```sql --- @__ids_0={ '1' } (DbType = Object) -SELECT p."Id", p."Name" -FROM "Products" AS p +-- @__ids_0={ '1' } (DbType = Object) +SELECT p."Id", p."Name" +FROM "Products" AS p WHERE p."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET9_0.md index 3bbe500d732..5f94ffcf937 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Node_Product_NET9_0.md @@ -3,22 +3,21 @@ ## Result ```json -{ - "data": { - "product": { - "id": "UHJvZHVjdDox", - "name": "Wanderer Black Hiking Boots" - } - } +{ + "data": { + "product": { + "id": "UHJvZHVjdDox", + "name": "Wanderer Black Hiking Boots" + } + } } ``` ## Query 1 ```sql --- @__ids_0={ '1' } (DbType = Object) -SELECT p."Id", p."Name" -FROM "Products" AS p +-- @__ids_0={ '1' } (DbType = Object) +SELECT p."Id", p."Name" +FROM "Products" AS p WHERE p."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET10_0.md index 9c42d2329c8..e0cd3baa8b9 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET10_0.md @@ -28,4 +28,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @p ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET8_0.md index 6433134103f..76e5fc5da00 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET8_0.md @@ -28,4 +28,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET9_0.md index 6433134103f..76e5fc5da00 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Exclude_TotalCount_NET9_0.md @@ -28,4 +28,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET10_0.md index 7d91fc8dfb5..a700ec51e47 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET10_0.md @@ -43,4 +43,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET8_0.md index 862e116ef22..dccfbcbc0b5 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET8_0.md @@ -43,4 +43,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET9_0.md index 862e116ef22..dccfbcbc0b5 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_And_Brand_NET9_0.md @@ -43,4 +43,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET10_0.md index 2b2fcb2c088..6bedec621c1 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET10_0.md @@ -51,4 +51,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET8_0.md index 52bfa73dc60..40f9d21941c 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET8_0.md @@ -50,4 +50,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET9_0.md index 4f8e8007d81..7cbdf798119 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_NET9_0.md @@ -51,4 +51,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET10_0.md index b45d58177db..2581e7896d0 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET10_0.md @@ -53,4 +53,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@ids) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET8_0.md index a13655bd25d..e3eccc3ae77 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET8_0.md @@ -53,4 +53,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET9_0.md index a13655bd25d..e3eccc3ae77 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_First_2_With_4_EndCursors_Skip_4_NET9_0.md @@ -53,4 +53,3 @@ SELECT b."Name", b."Id" FROM "Brands" AS b WHERE b."Id" = ANY (@__ids_0) ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET10_0.md index c4839e61d09..ba284c66fca 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET10_0.md @@ -31,4 +31,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @p ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET8_0.md index 7e9e4db14bc..df255251a24 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET8_0.md @@ -30,4 +30,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET9_0.md index 35e758ff870..28c638b1066 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Query_Products_Include_TotalCount_NET9_0.md @@ -31,4 +31,3 @@ FROM "Products" AS p ORDER BY p."Name" DESC, p."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET10_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET10_0.md index 796ac84d520..fba8f7c3c58 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET10_0.md @@ -29,4 +29,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @p ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET8_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET8_0.md index 3c6874e4ea9..eb7778f6850 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET8_0.md @@ -29,4 +29,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET9_0.md b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET9_0.md index 3c6874e4ea9..eb7778f6850 100644 --- a/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.PostgreSQL.Tests/__snapshots__/IntegrationTests.Verify_That_PageInfo_Flag_Is_Correctly_Inferred_NET9_0.md @@ -29,4 +29,3 @@ FROM "Brands" AS b ORDER BY b."Name" DESC, b."Id" LIMIT @__p_0 ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET10_0.md index 1e67951d758..a1a5d0ddcf0 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET10_0.md @@ -161,4 +161,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET8_0.md index 6d4d3bf7427..6f23a4c8fac 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET8_0.md @@ -161,4 +161,3 @@ ORDER BY t."OwnerId", t0."OwnerId", t0."Name", t0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET9_0.md index 696537b58fb..24663686839 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_NET9_0.md @@ -161,4 +161,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET10_0.md index ba99b34dd82..67c9af48955 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET10_0.md @@ -172,4 +172,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET8_0.md index 245a0524493..3d76b327742 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET8_0.md @@ -172,4 +172,3 @@ ORDER BY t."OwnerId", t0."OwnerId", t0."Name", t0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET9_0.md index 8206a9f2316..e39f6ca99ca 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_Fragments_NET9_0.md @@ -172,4 +172,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET10_0.md index 6d7576f0086..b5ae5dc52de 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET10_0.md @@ -184,4 +184,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET8_0.md index b446cc1bc3d..cb7c59978ee 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET8_0.md @@ -184,4 +184,3 @@ ORDER BY t."OwnerId", t0."OwnerId", t0."Name", t0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET9_0.md index e1c975188e5..140f65eb82b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Owner_Animals_With_TotalCount_NET9_0.md @@ -184,4 +184,3 @@ ORDER BY s."OwnerId", s1."OwnerId", s1."Name", s1."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets.md index a138ff6b1c6..a06c0f946d3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets.md @@ -68,4 +68,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets_NET10_0.md index 36067d96eb1..1a920c5800d 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/InterfaceIntegrationTests.Query_Pets_NET10_0.md @@ -68,4 +68,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md index 06f954abb4e..8c07fc3d849 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5.md @@ -150,4 +150,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Name", t0."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Name).ThenBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET9_0.md index 14b1e38fe52..c99353863c6 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_First_5_NET9_0.md @@ -150,4 +150,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderBy(p => p.Name).ThenBy(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md index 8226106a616..1e6a4f44a17 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5.md @@ -150,4 +150,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Id" DESC ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderByDescending(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET9_0.md index 9d8a3d5ea4d..d56474e486b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.BatchPaging_Last_5_NET9_0.md @@ -150,4 +150,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Id" DESC ```text [Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression].Where(t => (((t.BrandId == 1) OrElse (t.BrandId == 2)) OrElse (t.BrandId == 3))).GroupBy(k => k.BrandId).Select(g => new Group`2() {Key = g.Key, Items = g.OrderByDescending(p => p.Id).Take(3).ToList()}) ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET10_0.md index 514d54ebe19..603981faa0b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET10_0.md @@ -62,4 +62,3 @@ ORDER BY f0."Name", f0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET8_0.md index 8e45f8d6151..bacca1a9eaa 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET8_0.md @@ -62,4 +62,3 @@ ORDER BY t."Name", t."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET9_0.md index cddc506cd81..2e42f039e3f 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_2_NET9_0.md @@ -62,4 +62,3 @@ ORDER BY f0."Name", f0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET10_0.md index ef538b94a39..3cfe1da0074 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET10_0.md @@ -60,4 +60,3 @@ ORDER BY f0."Name", f0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET8_0.md index 753513db41e..5b7f7af8d79 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET8_0.md @@ -60,4 +60,3 @@ ORDER BY t."Name", t."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET9_0.md index 1c77be0f958..6faaaefaf25 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Ensure_Nullable_Connections_Dont_Throw_NET9_0.md @@ -60,4 +60,3 @@ ORDER BY f0."Name", f0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage.md index e297f5fa38b..4b983c226e5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage.md @@ -74,4 +74,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2.md index d315058f03e..1e93cb9ce7e 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2.md @@ -74,4 +74,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2_NET10_0.md index 50414c02d33..a01b7a90066 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage2_NET10_0.md @@ -74,4 +74,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_NET10_0.md index 110da5a2f8b..1d6876a0213 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_NET10_0.md @@ -74,4 +74,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep.md index c10274298a0..8d95e586fe6 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep.md @@ -166,4 +166,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_NET10_0.md index e5cd93e23dd..fd812bf165f 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_NET10_0.md @@ -166,4 +166,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md index 5177074afd6..9b2e6a0a1ea 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage.md @@ -65,4 +65,3 @@ LIMIT @__p_2 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage_NET10_0.md index e7f8f4399b3..55781a45184 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Deep_SecondPage_NET10_0.md @@ -65,4 +65,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable.md index caf9615c1b5..fba164327b3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable.md @@ -166,4 +166,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback.md index afda9894115..71c5d317dd3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback.md @@ -166,4 +166,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_NET10_0.md index c6dbc0f6a82..88d5e271a23 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_NET10_0.md @@ -166,4 +166,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage.md index adf6f0fb443..b8092b48bec 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage.md @@ -65,4 +65,3 @@ LIMIT @__p_2 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage_NET10_0.md index d4c015a9933..8340bf5fe79 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_Fallback_SecondPage_NET10_0.md @@ -65,4 +65,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_NET10_0.md index fe91a6a63cf..6bf59e96e87 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_NET10_0.md @@ -166,4 +166,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage.md index a6fa965501c..a74b0183df3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage.md @@ -65,4 +65,3 @@ LIMIT @__p_3 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage_NET10_0.md index 95dab89742c..4387aababf2 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetDefaultPage_With_Nullable_SecondPage_NET10_0.md @@ -65,4 +65,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md index 5b2cb0ddb0b..916311626ca 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items.md @@ -45,4 +45,3 @@ LIMIT @__p_2 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items_NET10_0.md index ec0d501de5a..80b865ca900 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.GetSecondPage_With_2_Items_NET10_0.md @@ -45,4 +45,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto.md index c0b492c7cbc..a9721d091b3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto.md @@ -44,4 +44,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2.md index 5f7c48614ed..faee62c0e17 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2.md @@ -44,4 +44,3 @@ LIMIT @__p_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2_NET10_0.md index 8c4b5c57320..1c559881590 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_2_NET10_0.md @@ -44,4 +44,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_NET10_0.md index 3eb365fb823..6ee57f482e3 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Map_Page_To_Connection_With_Dto_NET10_0.md @@ -44,4 +44,3 @@ LIMIT @p } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET10_0.md index 0ac9a80f9a6..be6d4a97bac 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET10_0.md @@ -101,4 +101,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET8_0.md index 665e255b1cc..12c789c337c 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET8_0.md @@ -101,4 +101,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Name", t0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET9_0.md index b1c183a796b..4adfcdd57ae 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_NET9_0.md @@ -101,4 +101,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET10_0.md index 0054b833968..06ec3af13af 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET10_0.md @@ -101,4 +101,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET8_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET8_0.md index 72bbe8876c6..3418aabfe02 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET8_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET8_0.md @@ -101,4 +101,3 @@ ORDER BY t."BrandId", t0."BrandId", t0."Name", t0."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET9_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET9_0.md index c2f46a23fa2..a4880cc0278 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET9_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Nested_Paging_First_2_With_Projections_NET9_0.md @@ -101,4 +101,3 @@ ORDER BY p1."BrandId", p3."BrandId", p3."Name", p3."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs.md index 48818646bd1..80b46e13fb5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs.md @@ -155,4 +155,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md index 6aca9b3a700..9e6906bccd4 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Empty_PagingArgs_NET10_0.md @@ -155,4 +155,3 @@ LIMIT @p } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5.md index 5517147aaa8..e6b8a3260ea 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5.md @@ -95,4 +95,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md index 04f7903b579..017f339abfd 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md index 0f175695fd2..adba1b2b006 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_After_Id_13_NET10_0.md @@ -98,4 +98,3 @@ LIMIT @p } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md index ec12ab52cce..d3dc3984660 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96.md @@ -98,4 +98,3 @@ LIMIT @__p_2 } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md index 53776b7c1c0..50e11481562 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_Before_Id_96_NET10_0.md @@ -98,4 +98,3 @@ LIMIT @p } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md index 7f43b5e11c7..b2a15f59bab 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_First_5_NET10_0.md @@ -95,4 +95,3 @@ LIMIT @p } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5.md index 054c533d926..4e213fec7ab 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5.md @@ -95,4 +95,3 @@ LIMIT @__p_0 } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md index aa1c23118a7..2a0121d131a 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/PagingHelperIntegrationTests.Paging_Last_5_NET10_0.md @@ -95,4 +95,3 @@ LIMIT @p } ] ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged.md index 9d4b4a26356..4cfe46313c4 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged.md @@ -30,4 +30,3 @@ WHERE p."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged_NET10_0.md index 7bfcf4a5b62..3c76e31c02d 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Branches_Are_Merged_NET10_0.md @@ -30,4 +30,3 @@ WHERE p."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name.md index 9b1cb01f651..f83d3d95dc5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name.md @@ -25,4 +25,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_NET10_0.md index c4326d174a6..4425bb1f30e 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_NET10_0.md @@ -25,4 +25,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver.md index 3d151e10c1c..b3497e762fa 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver.md @@ -25,4 +25,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver_NET10_0.md index ffd638ee050..28924240d6d 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Country_Name_With_Details_As_Custom_Resolver_NET10_0.md @@ -25,4 +25,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name.md index 63a17456a51..32373de62b0 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2.md index 238f99d2aee..34bf052f977 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2.md @@ -21,4 +21,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2_NET10_0.md index 82c8801dcfb..f76d32c4922 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_2_NET10_0.md @@ -21,4 +21,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_NET10_0.md index 688eaac1001..c5cec0ae46c 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type.md index 7e43b8fba6b..4b7c02c4c13 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_NET10_0.md index 38391a5aff7..6b0f30934d4 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic.md index c4ab2771644..8b8ff98474e 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic_NET10_0.md index fda93f9d44c..15ce404a231 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Details_Requires_Brand_Name_With_Proper_Type_With_Explicit_Generic_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName.md index 6fd95b5e531..c850b854fe1 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName_NET10_0.md index af50303a033..c5071ce88ab 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Only_TypeName_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName.md index 3dcb885c606..09888a85acb 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName_NET10_0.md index 09ea3555231..f0fe247617f 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_Products_TypeName_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node.md index a533e21fac4..572e5ea4264 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node_NET10_0.md index 08431d39fe1..e963bfdfa37 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Default_Field_Over_Node_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node.md index aba267d352a..90e65268ff6 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node.md @@ -21,4 +21,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node_NET10_0.md index 7c18c726ddb..3db4dbe81d1 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Id_And_Name_Over_Node_NET10_0.md @@ -21,4 +21,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name.md index 0b2e68f1a6c..8cf5e20c8c0 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_NET10_0.md index 89e118bec2a..fa008bad0e6 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node.md index b0130913f49..58096c0df46 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node_NET10_0.md index 9f34333725f..743084f1877 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Over_Node_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null.md index d984244c65f..731323f34bf 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null_NET10_0.md index 87d08e081a9..8a29f4882d5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Brand_With_Name_Selector_is_Null_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project.md index 095ea91c493..f8fb6311aaa 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project_NET10_0.md index 1d29e470be9..9c88a699ae5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Do_Not_Project_NET10_0.md @@ -20,4 +20,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch.md index 66fd6cd00c5..73ef66e8b69 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch.md @@ -35,4 +35,3 @@ WHERE p."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch_NET10_0.md index 8fc69ae52a4..c5720d539a0 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Force_A_Branch_NET10_0.md @@ -35,4 +35,3 @@ WHERE p."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand.md index df2749e215a..d8aae7c89ac 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand.md @@ -21,4 +21,3 @@ WHERE p."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand_NET10_0.md index a9e4f509611..03193d9ea18 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Manual_Include_Of_Brand_NET10_0.md @@ -21,4 +21,3 @@ WHERE p."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name.md index 0238cd46695..f1cd4bf80b5 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name.md @@ -24,4 +24,3 @@ WHERE p."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name_NET10_0.md index 92205067567..e019f618581 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Name_And_Brand_With_Name_NET10_0.md @@ -24,4 +24,3 @@ WHERE p."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null.md index 47a5a69d1f6..ef0092d04f6 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null.md @@ -21,4 +21,3 @@ WHERE p."Id" = @__id_0 } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null_NET10_0.md index 5faabe1dd41..3abb41d1149 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Product_With_Nullable_Reference_Property_Set_To_Null_NET10_0.md @@ -21,4 +21,3 @@ WHERE p."Id" = @id } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project.md index 5fb36f610a3..97c95835a02 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project.md @@ -27,4 +27,3 @@ WHERE b."Id" = ANY (@__keys_0) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project_NET10_0.md index dfa81c4fa2e..a32d4164d5a 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_And_Do_Not_Project_NET10_0.md @@ -27,4 +27,3 @@ WHERE b."Id" = ANY (@keys) } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration.md index 2406cb30ad4..a47c5da7c7b 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration.md @@ -629,4 +629,3 @@ ORDER BY b."Id" } } ``` - diff --git a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration_NET10_0.md b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration_NET10_0.md index d0f477bb9db..1eac099ff0c 100644 --- a/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration_NET10_0.md +++ b/src/HotChocolate/Data/test/Data.Tests/__snapshots__/ProjectableDataLoaderTests.Project_Key_To_Collection_Expression_Integration_NET10_0.md @@ -629,4 +629,3 @@ ORDER BY b."Id" } } ``` - diff --git a/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/ServerInstrumentationTests.cs b/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/ServerInstrumentationTests.cs index 2631a4e88bc..f5d49d69610 100644 --- a/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/ServerInstrumentationTests.cs +++ b/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/ServerInstrumentationTests.cs @@ -8,9 +8,9 @@ namespace HotChocolate.Fusion.Diagnostics; [Collection("Instrumentation")] public class ServerInstrumentationTests : FusionTestBase { - private static readonly Uri _url = new("http://localhost:5000/graphql"); + private static readonly Uri s_url = new("http://localhost:5000/graphql"); - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Single_Request_Default() { using (CaptureActivities(out var activities)) @@ -29,14 +29,14 @@ public async Task Http_Post_Single_Request_Default() var request = new OperationRequest("{ sayHello }"); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Single_Request() { using (CaptureActivities(out var activities)) @@ -56,14 +56,14 @@ public async Task Http_Post_Single_Request() var request = new OperationRequest("{ sayHello }"); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Get_Single_Request() { using (CaptureActivities(out var activities)) @@ -83,14 +83,14 @@ public async Task Http_Get_Single_Request() var request = new OperationRequest("{ sayHello }"); // act - using var result = await client.GetAsync(request, _url); + using var result = await client.GetAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Variables_Are_Not_Automatically_Added_To_Activities() { using (CaptureActivities(out var activities)) @@ -116,14 +116,14 @@ public async Task Http_Post_Variables_Are_Not_Automatically_Added_To_Activities( variables: new Dictionary { { "name", "World" } }); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Add_Variables_To_Http_Activity() { using (CaptureActivities(out var activities)) @@ -153,14 +153,14 @@ public async Task Http_Post_Add_Variables_To_Http_Activity() variables: new Dictionary { { "name", "World" } }); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Add_Query_To_Http_Activity() { using (CaptureActivities(out var activities)) @@ -190,14 +190,14 @@ public async Task Http_Post_Add_Query_To_Http_Activity() variables: new Dictionary { { "name", "World" } }); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_With_Extensions_Map() { using (CaptureActivities(out var activities)) @@ -224,14 +224,14 @@ public async Task Http_Post_With_Extensions_Map() extensions: new Dictionary { { "test", "abc" } }); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Get_SDL_Download() { using (CaptureActivities(out var activities)) @@ -281,14 +281,14 @@ public async Task Http_Post_Capture_Deferred_Response() """); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Http_Post_Parser_Error() { using (CaptureActivities(out var activities)) @@ -320,14 +320,14 @@ public async Task Http_Post_Parser_Error() """); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Parsing_Error_When_Rename_Root_Is_Activated() { using (CaptureActivities(out var activities)) @@ -352,14 +352,14 @@ public async Task Parsing_Error_When_Rename_Root_Is_Activated() var request = new OperationRequest("{ 1 }"); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); } } - [Fact] + [Fact(Skip = "This is flaky")] public async Task Validation_Error_When_Rename_Root_Is_Activated() { using (CaptureActivities(out var activities)) @@ -383,7 +383,7 @@ public async Task Validation_Error_When_Rename_Root_Is_Activated() var request = new OperationRequest("{ abc }"); // act - using var result = await client.PostAsync(request, _url); + using var result = await client.PostAsync(request, s_url); // assert activities.MatchSnapshot(); diff --git a/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_Single_Request.snap b/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_Single_Request.snap index 6badf966ba3..268c3ad7374 100644 --- a/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_Single_Request.snap +++ b/src/HotChocolate/Fusion-vnext/test/Fusion.Diagnostics.Tests/__snapshots__/ServerInstrumentationTests.Http_Post_Single_Request.snap @@ -2,9 +2,18 @@ "activities": [ { "OperationName": "ExecuteHttpRequest", - "DisplayName": "ExecuteHttpRequest", - "Status": "Unset", - "tags": [], + "DisplayName": "GraphQL HTTP POST", + "Status": "Ok", + "tags": [ + { + "Key": "graphql.schema.name", + "Value": "_Default" + }, + { + "Key": "graphql.http.request.type", + "Value": "single" + } + ], "event": [], "activities": [ { diff --git a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Execution_Error.md b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Execution_Error.md index 4335b92f807..ecfb87fcc59 100644 --- a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Execution_Error.md +++ b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Execution_Error.md @@ -159,4 +159,3 @@ "data": null } ``` - diff --git a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Request_With_ConnectionPayload.md b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Request_With_ConnectionPayload.md index 8174ba5c791..b7ada991498 100644 --- a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Request_With_ConnectionPayload.md +++ b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Request_With_ConnectionPayload.md @@ -99,4 +99,3 @@ } } ``` - diff --git a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Simple_Request.md b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Simple_Request.md index 3083559d158..a755eb2fc26 100644 --- a/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Simple_Request.md +++ b/src/StrawberryShake/Client/test/Transport.WebSocket.Tests/__snapshots__/IntegrationTests.Simple_Request.md @@ -99,4 +99,3 @@ } } ``` - diff --git a/website/package.json b/website/package.json index 9293102a656..d73050d6f36 100644 --- a/website/package.json +++ b/website/package.json @@ -83,7 +83,7 @@ }, "husky": { "hooks": { - "pre-commit": "pretty-quick --pattern \"./**/*\" --staged" + "pre-commit": "pretty-quick --pattern \"./website/**/*\" --staged" } }, "packageManager": "yarn@4.8.1"