@@ -23,7 +23,7 @@ or are actively interested in, building their own GraphQL implementations and
2323tools.
2424
2525In order to be broadly adopted, GraphQL will have to target a wide
26- variety of backends , frameworks, and languages, which will necessitate a
26+ variety of backend environments , frameworks, and languages, which will necessitate a
2727collaborative effort across projects and organizations. This specification serves as a point of coordination for this effort.
2828
2929Looking for help? Find resources [ from the community] ( https://graphql.org/community/ ) .
@@ -271,7 +271,6 @@ case, `Query`. As defined above, `Query` has a `hero` field that returns a
271271returns a ` String ` , so we query for that, completing our query. The result of
272272this query would then be:
273273
274-
275274``` json
276275{
277276 "hero" : {
@@ -397,7 +396,7 @@ which will give us the nested response
397396```
398397
399398The ` Query ` type above defined a way to fetch a human given their
400- ID. We can use it by hardcoding the ID in the query:
399+ ID. We can use it by hard-coding the ID in the query:
401400
402401``` graphql
403402query FetchLukeQuery {
@@ -608,7 +607,7 @@ on runtime checks.
608607
609608For our Star Wars example, the file
610609[ starWarsValidationTests.js] ( https://github.com/graphql/graphql-js/blob/main/src/__tests__/starWarsValidation-test.js )
611- contains a number of queries demonstrating various invalidities , and is a test
610+ contains a number of demonstrations of invalid operations , and is a test
612611file that can be run to exercise the reference implementation's validator.
613612
614613To start, let's take a complex valid query. This is the ` NestedQuery ` example
0 commit comments