Skip to content

Commit

Permalink
Merge pull request #18 from Linq2GraphQL/add-favicon
Browse files Browse the repository at this point in the history
fixed test
  • Loading branch information
joadan committed Oct 25, 2023
2 parents 7c64961 + d4c9809 commit 5856e6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/Linq2GraphQL.Tests/QueryIncludeTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public async Task IncludePrimitives_MultipleLevels()
var query = sampleClient
.Query
.Orders(first: 1)
//.Include(e => e.Nodes.Select(e => e.Customer)) //TODO Should this be loaded automatically because it is chained in orders?
.Include(e => e.Nodes.Select(e => e.Customer)) //TODO Should this be loaded automatically because it is chained in orders?
.Include(e => e.Nodes.Select(e => e.Customer.Orders))
.Select(e => e.Nodes);

Expand Down

0 comments on commit 5856e6d

Please sign in to comment.