-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step by step guide #2930
Step by step guide #2930
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
--- | ||
id: version-experimental-step-by-step | ||
title: A Step By Step Guide | ||
original_id: step-by-step | ||
--- | ||
|
||
[Relay](https://relay.dev/) is a framework for managing and declaratively fetching GraphQL data. It allows developers to declare *what* data each component needs via GraphQL, and then aggregate these dependencies and efficiently fetch the data in fewer round trips. In this guide we'll introduce the key concepts for using Relay in a React app one at a time. | ||
|
||
## Step 1: Create React App | ||
|
||
For this example we'll use start with a standard install of [Create React App](https://create-react-app.dev) ("CRA"). Create React App makes it easy to get a fully configured React app up and running and also supports configuring Relay. To get started, create a new app with: | ||
|
||
```bash | ||
# NPM | ||
npx create-react-app your-app-name | ||
|
||
# Yarn | ||
yarn create react-app your-app-name | ||
``` | ||
|
||
At this point we should be able to change to the app's directory and run it: | ||
|
||
```bash | ||
# NPM | ||
cd your-app-name | ||
npm start | ||
|
||
# Yarn | ||
cd your-app-name | ||
yarn start | ||
``` | ||
|
||
For troubleshooting and more setup options, see the [Create React App documentation](https://create-react-app.dev/docs/getting-started). | ||
|
||
## Step 2: Fetch GraphQL (without Relay) | ||
|
||
If you're exploring using GraphQL with Relay, we highly recommend starting with a basic approach and using as few libraries as possible. GraphQL servers can generally be accessed using plain-old HTTP requests, so we can use the [`fetch` API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) to request some data from our server. For this guide we'll use GitHub's GraphQL API as the server, but if you already have a GraphQL server feel free to use that instead. | ||
|
||
### 2.1: GitHub GraphQL Authentication | ||
|
||
To start we'll need an authentication token for the GitHub API (if you're using your own GraphQL endpoint, you can skip this step): | ||
|
||
* Open https://github.com/settings/tokens. | ||
* Ensure that at least the `repo` scope is selected. | ||
* Generate a token | ||
* Create a file `./your-app-name/.env.local` and add the following contents, replacing `<TOKEN>` with your authentication token: | ||
|
||
``` | ||
# your-app-name/.env.local | ||
REACT_APP_GITHUB_AUTH_TOKEN=<TOKEN> | ||
``` | ||
|
||
### 2.2: A fetchGraphQL Helper | ||
|
||
Next let's update the home screen of our app to show the name of the Relay repository. We'll start with a common approach to fetching data in React, calling our fetch function after the component mounts (note: later we'll see some limitations of this approach and a better alternative that works with React Concurrent Mode and Suspense). First we'll create a helper function to load data from the server. Again, this example will use the GitHub API, but feel free to replace it with the appropriate URL and authentication mechanism for your own GraphQL server: | ||
|
||
```javascript | ||
// your-app-name/src/fetchGraphQL.js | ||
async function fetchGraphQL(text, variables) { | ||
const REACT_APP_GITHUB_AUTH_TOKEN = process.env.REACT_APP_GITHUB_AUTH_TOKEN; | ||
|
||
// Fetch data from GitHub's GraphQL API: | ||
const response = await fetch('https://api.github.com/graphql', { | ||
method: 'POST', | ||
headers: { | ||
Authorization: `bearer ${REACT_APP_GITHUB_AUTH_TOKEN}`, | ||
'Content-Type': 'application/json', | ||
}, | ||
body: JSON.stringify({ | ||
query: text, | ||
variables, | ||
}), | ||
}); | ||
|
||
// Get the response as JSON | ||
return await response.json(); | ||
} | ||
|
||
export default fetchGraphQL; | ||
``` | ||
|
||
### 2.3: Fetching GraphQL From React | ||
|
||
Now we can use our `fetchGraphQL` function to fetch some data in our app. Open `src/App.js` and edit it as follows: | ||
|
||
```javascript | ||
// your-app-name/src/App.js | ||
import React from 'react'; | ||
import './App.css'; | ||
import fetchGraphQL from './fetchGraphQL'; | ||
|
||
const { useState, useEffect } = React; | ||
|
||
function App() { | ||
// We'll load the name of a repository, initially setting it to null | ||
const [name, setName] = useState(null); | ||
|
||
// When the component mounts we'll fetch a repository name | ||
useEffect(() => { | ||
let isMounted = true; | ||
fetchGraphQL(` | ||
query RepositoryNameQuery { | ||
# feel free to change owner/name here | ||
repository(owner: "facebook" name: "relay") { | ||
name | ||
} | ||
} | ||
`).then(response => { | ||
// Avoid updating state if the component unmounted before the fetch completes | ||
if (!isMounted) { | ||
return; | ||
} | ||
const data = response.data; | ||
setName(data.repository.name); | ||
}).catch(error => { | ||
console.error(error); | ||
}); | ||
|
||
return () => { | ||
isMounted = false; | ||
}; | ||
}, [fetchGraphQL]); | ||
|
||
// Render "Loading" until the query completes | ||
return ( | ||
<div className="App"> | ||
<header className="App-header"> | ||
<p> | ||
{name != null ? `Repository: ${name}` : "Loading"} | ||
</p> | ||
</header> | ||
</div> | ||
); | ||
} | ||
|
||
export default App; | ||
``` | ||
|
||
## Step 3: When To Use Relay | ||
|
||
At this point we can fetch data with GraphQL and render it with React. This is a reasonable solution that can be sufficient for many apps. However, this approach doesn't necessarily scale. As our app grows in size and complexity, or the number of people working on the app grows, a simple approach like this can become limiting. Relay provides a number of features designed to help keep applications fast and reliable even as they grow in size and complexity: colocating data dependencies in components with GraphQL fragments, data consistency, mutations, etc. Check out [Thinking in GraphQL](/docs/en/thinking-in-graphql.html) and [Thinking in Relay](/docs/en/thinking-in-relay.html) for an overview of how Relay makes it easier to work with GraphQL. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not a blocker, but might be good to expand on this section and possibly show people the limitations they'd run into with concrete examples |
||
|
||
|
||
## Step 4: Adding Relay To Our Project | ||
|
||
In this guide we'll demonstrate installing the *experimental* release of Relay Hooks, a new, hooks-based Relay API that supports React Concurrent Mode and Suspense. | ||
|
||
First we'll add the necessary packages. Note that Relay is comprised of three key pieces: a compiler (which is used at build time), a core runtime (that is React agnostic), and a React integration layer. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not sure if it's worth mentioning the core runtime, or if that will just confuse people |
||
|
||
```bash | ||
# NPM Users | ||
npm install --save relay-runtime react-relay@experimental | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. we don't explicitly need to install relay-runtime since it's a dependency of react-relay, right? might make this simpler There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 4.2 explicitly imports relay-runtime, though, so it's a little odd not to explicitly specify that as a dependency. if it's feasible from an OSS perspective, it might be reasonable API-wise to add a simple helper to set up a relay environment to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @taion that's exactly what we were thinking, having a |
||
npm install --save-dev relay-compiler graphql | ||
|
||
# Yarn Users | ||
yarn add relay-runtime react-relay@experimental | ||
yarn add --dev relay-compiler graphql babel-plugin-relay | ||
``` | ||
|
||
*Note*: You may get a notice asking you to choose which version of `relay-runtime` to use - if so, specify version 7.0.x (e.g. `7.0.0`). | ||
|
||
### 4.1 Configure Relay Compiler | ||
|
||
Next let's configure Relay compiler. We'll need a copy of the schema as a `.graphql` file. If you're using the GitHub GraphQL API, you can download a copy directly from the Relay example app: | ||
|
||
```bash | ||
cd your-app-name | ||
curl https://raw.githubusercontent.com/relayjs/relay-examples/master/issue-tracker/schema/schema.graphql > schema.graphql | ||
``` | ||
|
||
If you're using your own API we suggest using the [`get-graphql-schema`](https://www.npmjs.com/package/get-graphql-schema) utility to download your schema into a `.graphql` file. | ||
|
||
Now that we have a schema we can modify `package.json` to run the compiler first whenever we build or start our app: | ||
|
||
```json | ||
// your-app-name/package.json | ||
{ | ||
... | ||
"scripts": { | ||
... | ||
"start": "yarn run relay && react-scripts start", | ||
"build": "yarn run relay && react-scripts build", | ||
"relay": "yarn run relay-compiler --schema schema.graphql --src ./src/ --watchman false $@" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so we're explicitly not running watch mode here, right? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes bc people may not have watchman installed, i comment about it below |
||
... | ||
}, | ||
... | ||
} | ||
``` | ||
|
||
At this point, you should be able to run the following successfully: | ||
|
||
```bash | ||
cd your-app-name | ||
yarn start | ||
``` | ||
|
||
If it works, your app will open at [localhost:3000](http://localhost:3000). Now when we write GraphQL in our app, Relay will detect it and generate code to represent our queries in `your-app-name/src/__generated__/`. We recommend checking in these generated files to source control. | ||
|
||
### 4.2 Configure Relay Runtime | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would just say Relay here; I think what "runtime" means may not always be obvious for people, so it might help avoid confusion There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i mention the compiler above |
||
|
||
Now that the compiler is configured we can set up the runtime - we have to tell Relay how to connect to our GraphQL server. We'll reuse the `fetchGraphQL` utility we built above. Assuming you haven't modified it (or at least that it still takes `text` and `variables` as arguments), we can now define a Relay `Environment`. An `Environment` encapsulates how to talk to our server (a Relay `Network`) with a cache of data retrieved from that server. We'll create a new file, `src/RelayEnvironment.js` and add the following: | ||
|
||
```javascript | ||
// your-app-name/src/RelayEnvironment.js | ||
import { Environment, Network, RecordSource, Store } from 'relay-runtime'; | ||
import fetchGraphQL from './fetchGraphQL'; | ||
|
||
// Relay passes a "params" object with the query name and text. So we define a helper function | ||
// to call our fetchGraphQL utility with params.text. | ||
async function fetchRelay(params, variables) { | ||
console.log(`fetching query ${params.name} with ${JSON.stringify(variables)}`); | ||
return fetchGraphQL(params.text, variables); | ||
} | ||
|
||
// Export a singleton instance of Relay Environment configured with our network function: | ||
export default new Environment({ | ||
network: Network.create(fetchRelay), | ||
store: new Store(new RecordSource()), | ||
}); | ||
``` | ||
|
||
## Step 5: Fetching a Query With Relay | ||
|
||
Now that Relay is installed and configured we can change `App.js` to use it instead. We'll prepare our data as the app starts, and wait for it to be ready in `<App>`. Replace the contents of `src/App.js` with the following: | ||
|
||
```javascript | ||
import React from 'react'; | ||
import './App.css'; | ||
import fetchGraphQL from './fetchGraphQL'; | ||
import graphql from 'babel-plugin-relay/macro'; | ||
import { | ||
RelayEnvironmentProvider, | ||
preloadQuery, | ||
usePreloadedQuery, | ||
} from 'react-relay/hooks'; | ||
import RelayEnvironment from './RelayEnvironment'; | ||
|
||
const { Suspense } = React; | ||
|
||
// Define a query | ||
const RepositoryNameQuery = graphql` | ||
query AppRepositoryNameQuery { | ||
repository(owner: "facebook", name: "relay") { | ||
name | ||
} | ||
} | ||
`; | ||
|
||
// Immediately load the query as our app starts. For a real app, we'd move this | ||
// into our routing configuration, preloading data as we transition to new routes. | ||
const preloadedQuery = preloadQuery(RelayEnvironment, RepositoryNameQuery, { | ||
/* query variables */ | ||
}); | ||
|
||
// Inner component that reads the preloaded query results via `usePreloadedQuery()`. | ||
// This works as follows: | ||
// - If the query has completed, it returns the results of the query. | ||
// - If the query is still pending, it "suspends" (indicates to React is isn't | ||
// ready to render yet). This will show the nearest <Suspense> fallback. | ||
// - If the query failed, it throws the failure error. For simplicity we aren't | ||
// handling the failure case here. | ||
function App(props) { | ||
const data = usePreloadedQuery(RepositoryNameQuery, props.preloadedQuery); | ||
|
||
return ( | ||
<div className="App"> | ||
<header className="App-header"> | ||
<p>{data.repository.name}</p> | ||
</header> | ||
</div> | ||
); | ||
} | ||
|
||
// The above component needs to know how to access the Relay environment, and we | ||
// need to specify a fallback in case it suspends: | ||
// - <RelayEnvironmentProvider> tells child components how to talk to the current | ||
// Relay Environment instance | ||
// - <Suspense> specifies a fallback in case a child suspends. | ||
function AppRoot(props) { | ||
return ( | ||
<RelayEnvironmentProvider environment={RelayEnvironment}> | ||
<Suspense fallback={'Loading...'}> | ||
<App preloadedQuery={preloadedQuery} /> | ||
</Suspense> | ||
</RelayEnvironmentProvider> | ||
); | ||
} | ||
|
||
export default AppRoot; | ||
``` | ||
|
||
Note that you'll have to restart the app - `yarn start` - so that Relay compiler can see the new query and generate code for it. See the [Relay Compiler setup docs](/docs/en/installation-and-setup#set-up-relay-compiler) for how to run Relay Compiler in watch mode, to regenerate code as you modify queries. | ||
|
||
## Step 6: Explore! | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. might be worth having an example app with todos here, but definitely not a blocker There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, let's do that in follow-ups |
||
|
||
At this point we have an app configured to use Relay. We recommend checking out the following for information and ideas about where to go next: | ||
|
||
* The [Guided Tour](a-guided-tour-of-relay.html) describes how to implement many common use-cases. | ||
* The [API Reference](api-reference.html) has full details on the Relay Hooks APIs. | ||
* The [Example App](https://github.com/relayjs/relay-examples/tree/master/issue-tracker) is a more sophisticated version of what we've started building here. It includes routing integration and uses React Concurrent Mode and Suspense for smooth transitions between pages. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"version-experimental-docs": { | ||
"Relay Hooks": [ | ||
"version-experimental-step-by-step", | ||
"version-experimental-a-guided-tour-of-relay", | ||
"version-experimental-api-reference" | ||
] | ||
} | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add a link here to the limitations you're referring to?