From a05b631ad64d5f87a65ec0f8d5412039a6e0bb20 Mon Sep 17 00:00:00 2001 From: Nick Raienko Date: Thu, 2 Jul 2015 21:15:49 +0300 Subject: [PATCH 1/2] Update license identifier to conform with SPDX in order to eliminate NPM warning. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 46b9f52edb..1b39c7fcb6 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "Nicholas Schrock ", "Daniel Schafer " ], - "license": "BSD", + "license": "BSD-3-Clause", "homepage": "https://github.com/facebook/graphql", "bugs": { "url": "https://github.com/facebook/graphql/issues" From 80b8f2099b8898c3eb156787f3b2e791b1059dc1 Mon Sep 17 00:00:00 2001 From: Nick Raienko Date: Thu, 2 Jul 2015 21:23:35 +0300 Subject: [PATCH 2/2] Fix Misc Typos in README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3479485590..cb36bfa8b9 100644 --- a/README.md +++ b/README.md @@ -6,20 +6,20 @@ on complex application data models. ## Technical Preview Contents -This technical preview contains a [draft specification for GraphQL](https://github.com/facebook/graphql) -and a reference implementation in JavaScript that implements that draft, -GraphQL.js. +This technical preview contains a [draft specification for GraphQL] +(https://github.com/facebook/graphql) and a reference implementation in +JavaScript that implements that draft, GraphQL.js. -The reference implemention provides base libraries in javascript that would +The reference implementation provides base libraries in JavaScript that would provide the basis for full GraphQL implementations and tools. It is not a fully standalone GraphQL server that a client developer could use to start manipulating and querying data. Most importantly it provides no mapping to a functioning, production-ready backend. The only “backend” we have targeted for this early preview are in-memory stubs in test cases. -We are releasing this now because after GraphQL was first discussed publically, +We are releasing this now because after GraphQL was first discussed publicly, many engineers used this information to implement the parts of the system that -we discussed publically. We want to support those engineers by providing both a +we discussed publicly. We want to support those engineers by providing both a formal specification and a reference implementation for the system as a whole. To that end the target audience is not the client developer, but those who have @@ -49,7 +49,7 @@ Install GraphQL.js from npm npm install graphql ``` -GraphQL.js provides two important capabilites: building a type schema, and +GraphQL.js provides two important capabilities: building a type schema, and serving queries against that type schema. First, build a GraphQL type schema which maps to your code base.