Skip to content

Commit

Permalink
Merge pull request #27 from McBubble/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Dec 17, 2020
2 parents 78d93e8 + b91508d commit 2e81711
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/4-schema-design.md
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ mkdir GraphQL/Sessions
```csharp
services
.AddGraphQLServer()
.AddQueryType(d => d.Name("Mutation"))
.AddQueryType(d => d.Name("Query"))
.AddType<SpeakerQueries>()
.AddMutationType(d => d.Name("Mutation"))
.AddTypeExtension<SessionMutations>()
Expand Down Expand Up @@ -1240,7 +1240,7 @@ In this section, we will optimize our `Query` type by bringing in more fields to
```csharp
services
.AddGraphQLServer()
.AddQueryType(d => d.Name("Mutation"))
.AddQueryType(d => d.Name("Query"))
.AddType<SessionQueries>()
.AddType<SpeakerQueries>()
.AddMutationType(d => d.Name("Mutation"))
Expand Down Expand Up @@ -1313,7 +1313,7 @@ In this section, we will optimize our `Query` type by bringing in more fields to
```csharp
services
.AddGraphQLServer()
.AddQueryType(d => d.Name("Mutation"))
.AddQueryType(d => d.Name("Query"))
.AddType<SessionQueries>()
.AddType<SpeakerQueries>()
.AddType<TrackQueries>()
Expand Down

0 comments on commit 2e81711

Please sign in to comment.