From 2f7457fe838fc21f82aefb08b66c51af35db404a Mon Sep 17 00:00:00 2001 From: Tane Morgan <464864+tanem@users.noreply.github.com> Date: Sun, 27 Sep 2020 08:28:27 +1300 Subject: [PATCH 1/2] Add package.json description --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5c889572..fd733e38 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hackernews-node", "version": "1.0.0", - "description": "", + "description": "A GraphQL API for a Hacker News clone.", "license": "MIT", "repository": "github:tanem/hackernews-node", "author": "Tane Morgan (https://github.com/tanem)", From 9146301e28c270aef738fb88e2ef167675f70461 Mon Sep 17 00:00:00 2001 From: Tane Morgan <464864+tanem@users.noreply.github.com> Date: Sun, 27 Sep 2020 08:41:59 +1300 Subject: [PATCH 2/2] Update docs --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 09da7288..35b23992 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,11 @@ ## Background -This project was created so I could become more familiar with [GraphQL](https://graphql.org/). It's based off [the code](https://github.com/howtographql/graphql-js) for [How to GraphQL](https://www.howtographql.com/)'s [GraphQL.js tutorial](https://www.howtographql.com/graphql-js/0-introduction/). +This project was created so I could become more familiar with [GraphQL](https://graphql.org/). It was originally based off [the code](https://github.com/howtographql/graphql-js) for [How to GraphQL](https://www.howtographql.com/)'s [GraphQL.js tutorial](https://www.howtographql.com/graphql-js/0-introduction/), and evolved as follows: + +- Integration tests added to facilitate refactoring. +- Conversion to TypeScript. +- Switched to constructing the GraphQL schema with [Nexus Schema](https://github.com/graphql-nexus/schema). ## Getting Started