Skip to content

Commit 7d74a5e

Browse files
committed
2 parents c2d3d49 + 7ffc868 commit 7d74a5e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

doco/configuration.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,6 @@ public class DerivedEntity : InheritedEntity
795795
<a id='snippet-InterfaceGraph.cs'/></a>
796796
```cs
797797
using GraphQL.EntityFramework;
798-
using GraphQL.Types.Relay;
799798

800799
public class InterfaceGraph :
801800
EfInterfaceGraphType<IntegrationDbContext, InheritedEntity>
@@ -811,7 +810,7 @@ public class InterfaceGraph :
811810
}
812811
}
813812
```
814-
<sup><a href='/src/Tests/IntegrationTests/Graphs/Inheritance/InterfaceGraph.cs#L1-L16' title='File snippet `InterfaceGraph.cs` was extracted from'>snippet source</a> | <a href='#snippet-InterfaceGraph.cs' title='Navigate to start of snippet `InterfaceGraph.cs`'>anchor</a></sup>
813+
<sup><a href='/src/Tests/IntegrationTests/Graphs/Inheritance/InterfaceGraph.cs#L1-L15' title='File snippet `InterfaceGraph.cs` was extracted from'>snippet source</a> | <a href='#snippet-InterfaceGraph.cs' title='Navigate to start of snippet `InterfaceGraph.cs`'>anchor</a></sup>
815814
<!-- endsnippet -->
816815

817816
<!-- snippet: DerivedGraph.cs -->
@@ -825,7 +824,7 @@ public class DerivedGraph :
825824
public DerivedGraph(IEfGraphQLService<IntegrationDbContext> graphQlService) :
826825
base(graphQlService)
827826
{
828-
AddNavigationConnectionField<DerivedChildEntity>(
827+
AddNavigationConnectionField(
829828
name: "childrenFromInterface",
830829
e => e.Source.ChildrenFromBase);
831830
AutoMap();

0 commit comments

Comments
 (0)