From 51457f06c99af2c89457dc637d25da8ec9c8078b Mon Sep 17 00:00:00 2001 From: rlindskog Date: Fri, 21 Aug 2020 10:02:48 -0700 Subject: [PATCH 1/4] upgrade to v2 --- .gitignore | 2 ++ README.md | 10 +++++++--- api/index.js | 3 +++ package.json | 2 +- vercel.json | 3 +++ 5 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 api/index.js create mode 100644 vercel.json diff --git a/.gitignore b/.gitignore index 0ca39c0..ef22a18 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ node_modules dist .DS_Store + +.vercel \ No newline at end of file diff --git a/README.md b/README.md index 28ea6d4..6022f2e 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ query { } ``` -> Try this query [here](https://graphql-pokemon.now.sh/?query=%7B%0A%20%20pokemon(name%3A%20%22Pikachu%22)%20%7B%0A%20%20%20%20id%0A%20%20%20%20number%0A%20%20%20%20name%0A%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20special%20%7B%0A%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20evolutions%20%7B%0A%20%20%20%20%20%20id%0A%20%20%20%20%20%20number%0A%20%20%20%20%20%20name%0A%20%20%20%20%20%20weight%20%7B%0A%20%20%20%20%20%20%20%20minimum%0A%20%20%20%20%20%20%20%20maximum%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20%20%20fast%20%7B%0A%20%20%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D)! +> Try this query [here]()! > Check out the [React Relay Pokémon Project](https://github.com/lucasbento/react-relay-pokemon) and [Live Demo](https://react-relay-pokemon.now.sh/) too! @@ -55,7 +55,7 @@ query { ```sh yarn -yarn run build +yarn run build-app yarn start ``` @@ -64,6 +64,10 @@ yarn start ```sh yarn yarn run watch # Using nodemon for auto-reloading + +or + +vercel dev # npm i -g @now/cli ``` ## Disclaimer @@ -72,4 +76,4 @@ This was built as part of a talk on Relay & GraphQL at [@ReactSP](https://meetup ## Related Projects -* [Pokemon Gopher](https://github.com/racerxdl/pokemon-gopher) - Fetch information about pokémons with #graphql and #go 🙂 +- [Pokemon Gopher](https://github.com/racerxdl/pokemon-gopher) - Fetch information about pokémons with #graphql and #go 🙂 diff --git a/api/index.js b/api/index.js new file mode 100644 index 0000000..4993bdb --- /dev/null +++ b/api/index.js @@ -0,0 +1,3 @@ +import app from "../src/app"; + +export default app; diff --git a/package.json b/package.json index e63d4fa..9d5525e 100644 --- a/package.json +++ b/package.json @@ -41,7 +41,7 @@ "repository": "https://github.com/lucasbento/graphql-pokemon", "scripts": { "eslint": "eslint src/*", - "build": "rm -rf dist/* && babel src --out-dir dist --copy-files", + "build-app": "rm -rf dist/* && babel src --out-dir dist --copy-files", "build-schema": "babel-node ./scripts/buildSchema.js", "start": "node dist/index.js", "watch": "nodemon src/index.js --exec babel-node --copy-files" diff --git a/vercel.json b/vercel.json new file mode 100644 index 0000000..ca8bd25 --- /dev/null +++ b/vercel.json @@ -0,0 +1,3 @@ +{ + "routes": [{ "src": "/", "dest": "api/index.js" }] +} From 22d78e0c9e7b79af426bff2bb4aad1106e7b057d Mon Sep 17 00:00:00 2001 From: Ryan Lindskog Date: Fri, 21 Aug 2020 10:27:45 -0700 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6022f2e..04eaedb 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ query { } ``` -> Try this query [here]()! +> Try this query [here]( Check out the [React Relay Pokémon Project](https://github.com/lucasbento/react-relay-pokemon) and [Live Demo](https://react-relay-pokemon.now.sh/) too! From 32ce59b60aa37e1932d45a2ef2e009a0054d5780 Mon Sep 17 00:00:00 2001 From: Ryan Lindskog Date: Fri, 21 Aug 2020 10:29:08 -0700 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 04eaedb..1bf4904 100644 --- a/README.md +++ b/README.md @@ -76,4 +76,4 @@ This was built as part of a talk on Relay & GraphQL at [@ReactSP](https://meetup ## Related Projects -- [Pokemon Gopher](https://github.com/racerxdl/pokemon-gopher) - Fetch information about pokémons with #graphql and #go 🙂 +* [Pokemon Gopher](https://github.com/racerxdl/pokemon-gopher) - Fetch information about pokémons with #graphql and #go 🙂 From 4e2fb8174aa9fb720a33e6912c5240d519486f58 Mon Sep 17 00:00:00 2001 From: Ryan Lindskog Date: Fri, 21 Aug 2020 10:29:39 -0700 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1bf4904..45ada53 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ query { } ``` -> Try this query [here]( Try this query [here](https://graphql-pokemon.now.sh/?query=%7B%0A%20%20pokemon(name%3A%20%22Pikachu%22)%20%7B%0A%20%20%20%20id%0A%20%20%20%20number%0A%20%20%20%20name%0A%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20special%20%7B%0A%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20evolutions%20%7B%0A%20%20%20%20%20%20id%0A%20%20%20%20%20%20number%0A%20%20%20%20%20%20name%0A%20%20%20%20%20%20weight%20%7B%0A%20%20%20%20%20%20%20%20minimum%0A%20%20%20%20%20%20%20%20maximum%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20attacks%20%7B%0A%20%20%20%20%20%20%20%20fast%20%7B%0A%20%20%20%20%20%20%20%20%20%20name%0A%20%20%20%20%20%20%20%20%20%20type%0A%20%20%20%20%20%20%20%20%20%20damage%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D)! > Check out the [React Relay Pokémon Project](https://github.com/lucasbento/react-relay-pokemon) and [Live Demo](https://react-relay-pokemon.now.sh/) too!