Skip to content

Commit b985cda

Browse files
authored
Merge pull request graphql#264 from laidan6000/patch-1
Minor copy edits
2 parents 318da50 + af7341c commit b985cda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/learn/Introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ next: /learn/queries/
1111
1212
GraphQL is a query language for your API, and a server-side runtime for executing queries by using a type system you define for your data. GraphQL isn't tied to any specific database or storage engine and is instead backed by your existing code and data.
1313

14-
A GraphQL service is created by defining types and fields on those types, then providing functions for each field on each type. For example, a GraphQL service that tells us who the logged in user is (`me`) as well as that User's name might look something like this:
14+
A GraphQL service is created by defining types and fields on those types, then providing functions for each field on each type. For example, a GraphQL service that tells us who the logged in user is (`me`) as well as that user's name might look something like this:
1515

1616
```graphql
1717
type Query {
@@ -58,4 +58,4 @@ Could produce the JSON result:
5858
}
5959
```
6060

61-
Learn more about GraphQL: the query language, type system, how the GraphQL service works, and as well as best practices for using GraphQL to solve common problems in the articles written in this section.
61+
Learn more about GraphQL—the query language, type system, how the GraphQL service works, as well as best practices for using GraphQL to solve common problems—in the articles written in this section.

0 commit comments

Comments
 (0)