@@ -6,20 +6,20 @@ on complex application data models.
6
6
7
7
## Technical Preview Contents
8
8
9
- This technical preview contains a [ draft specification for GraphQL] ( https://github.com/facebook/graphql )
10
- and a reference implementation in JavaScript that implements that draft,
11
- GraphQL.js.
9
+ This technical preview contains a [ draft specification for GraphQL]
10
+ ( https://github.com/facebook/graphql ) and a reference implementation in
11
+ JavaScript that implements that draft, GraphQL.js.
12
12
13
- The reference implemention provides base libraries in javascript that would
13
+ The reference implementation provides base libraries in JavaScript that would
14
14
provide the basis for full GraphQL implementations and tools. It is not a fully
15
15
standalone GraphQL server that a client developer could use to start
16
16
manipulating and querying data. Most importantly it provides no mapping to a
17
17
functioning, production-ready backend. The only “backend” we have targeted for
18
18
this early preview are in-memory stubs in test cases.
19
19
20
- We are releasing this now because after GraphQL was first discussed publically ,
20
+ We are releasing this now because after GraphQL was first discussed publicly ,
21
21
many engineers used this information to implement the parts of the system that
22
- we discussed publically . We want to support those engineers by providing both a
22
+ we discussed publicly . We want to support those engineers by providing both a
23
23
formal specification and a reference implementation for the system as a whole.
24
24
25
25
To that end the target audience is not the client developer, but those who have
@@ -49,7 +49,7 @@ Install GraphQL.js from npm
49
49
npm install graphql
50
50
```
51
51
52
- GraphQL.js provides two important capabilites : building a type schema, and
52
+ GraphQL.js provides two important capabilities : building a type schema, and
53
53
serving queries against that type schema.
54
54
55
55
First, build a GraphQL type schema which maps to your code base.
0 commit comments