Skip to content

Commit

Permalink
Merge pull request #19 from Linq2GraphQL/fix-auto-add-primitives
Browse files Browse the repository at this point in the history
Update logo
  • Loading branch information
joadan committed Oct 26, 2023
2 parents 418b8b7 + 93d42cf commit c81071b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion Linq2GrapgQL_Logo.svg

This file was deleted.

2 changes: 1 addition & 1 deletion Logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions Logo_org.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 2 additions & 8 deletions test/Linq2GraphQL.Tests/QueryIncludeTests.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
using GreenDonut;
using Linq2GraphQL.TestClient;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Linq2GraphQL.TestClient;

namespace Linq2GraphQL.Tests
{
Expand Down Expand Up @@ -39,7 +33,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))
.Include(e => e.Nodes.Select(e => e.Customer.Orders))
.Select(e => e.Nodes);

Expand Down

0 comments on commit c81071b

Please sign in to comment.