rsnext/examples/with-reason-relay
Joe Haddad 7d038dfef1
Suggest npx over npm init (#13637)
This updates old examples to the more universal `npx` command.

Fixes https://github.com/vercel/next.js/discussions/12103
2020-06-01 17:36:57 +00:00
..
pages Fix formatting of older PR that passed tests 2020-05-22 14:36:01 +02:00
schema Fix formatting of older PR that passed tests 2020-05-22 14:36:01 +02:00
src With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
.babelrc With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
.env With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
.gitignore With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
.graphqlconfig With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
bsconfig.json With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
next.config.js Fix formatting of older PR that passed tests 2020-05-22 14:36:01 +02:00
package.json With reason relay example (#12080) 2020-05-22 12:13:44 +02:00
README.md Suggest npx over npm init (#13637) 2020-06-01 17:36:57 +00:00
relay.config.js With reason relay example (#12080) 2020-05-22 12:13:44 +02:00

Reason Relay Example

Reason Relay

This example relies on graph.cool for its GraphQL backend.

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Using create-next-app

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-reason-relay with-reason-relay
# or
yarn create next-app --example with-reason-relay with-reason-relay

Download manually

Download the example:

curl https://codeload.github.com/vercel/next.js/tar.gz/canary | tar -xz --strip=2 next.js-canary/examples/with-reason-relay
cd with-reason-relay

Install it:

npm install
# or
yarn

Download schema introspection data from configured Relay endpoint

npm run schema
# or
yarn schema

Run Relay ahead-of-time compilation (should be re-run after any edits to components that query data with Relay)

npm run relay
# or
yarn relay

Build the project

npm run build
# or
yarn build

Run the project

npm run dev
# or
yarn dev

Deploy it to the cloud with Vercel (Documentation).