Skip to content

Commit 5a9cc38

Browse files
ross-mougbbakerman
authored andcommitted
Amend getting started documentation (#22)
Making various sentences flow better in the getting started documentation.
1 parent 6dc48a7 commit 5a9cc38

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/tutorials/getting-started-with-spring-boot.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ We've barely scratched the surface of what's possible with GraphQL. Further info
8484
# GraphQL Java Overview
8585

8686
[GraphQL Java](https://www.graphql-java.com) is the Java (server) implementation for GraphQL.
87-
The are several repositories in the GraphQL Java Github org. The most important one is the [GraphQL Java Engine](https://github.com/graphql-java/graphql-java) which is basis for everything else.
87+
The are several repositories in the GraphQL Java Github org. The most important one is the [GraphQL Java Engine](https://github.com/graphql-java/graphql-java) which is the basis for everything else.
8888

8989
GraphQL Java Engine itself is only concerned with executing queries. It doesn't deal with any HTTP or JSON related topics. For these aspects, we will use the [GraphQL Java Spring Boot](https://github.com/graphql-java/graphql-java-spring) adapter which takes care of exposing our API via Spring Boot over HTTP.
9090

@@ -225,7 +225,7 @@ What we still need to do is to implement the `buildSchema` method which creates
225225

226226
`TypeDefinitionRegistry` is the parsed version of our schema file. `SchemaGenerator` combines the `TypeDefinitionRegistry` with `RuntimeWiring` to actually make the `GraphQLSchema`.
227227

228-
`buildRuntimeWiring` uses the `graphQLDataFetchers` bean to actually register two `DataFetcher`s:
228+
`buildWiring` uses the `graphQLDataFetchers` bean to actually register two `DataFetcher`s:
229229

230230
- One to retrieve a book with a specific ID
231231
- One to get the author for a specific book.
@@ -252,7 +252,7 @@ public interface DataFetcher<T> {
252252
{{< / highlight >}}
253253
<p/>
254254

255-
Important: **Every** field from the schema has a `DataFetcher` associated with. If you don't specify any `DataFetcher` for a specific field, then the default `PropertyDataFetcher` is used. We will discuss this later in more detail.
255+
Important: **Every** field from the schema has a `DataFetcher` associated with it. If you don't specify any `DataFetcher` for a specific field, then the default `PropertyDataFetcher` is used. We will discuss this later in more detail.
256256

257257
We are creating a new class `GraphQLDataFetchers` which contains a sample list of books and authors.
258258

0 commit comments

Comments
 (0)