Docs
Launch GraphOS Studio
You're viewing documentation for a previous version of this software. Switch to the latest stable version.

Integrating with React Native


You can use Apollo with React Native exactly as you would with React Web.

To introduce Apollo to your app, install React Apollo from npm and use them in your app as outlined in the

article:

npm install @apollo/react-hooks apollo-client graphql --save
import React from 'react';
import { AppRegistry } from 'react-native';
import { ApolloClient } from 'apollo-client';
import { ApolloProvider } from '@apollo/react-hooks';
// Create the client as outlined in the setup guide
const client = new ApolloClient();
const App = () => (
<ApolloProvider client={client}>
<MyRootComponent />
</ApolloProvider>
);
AppRegistry.registerComponent('MyApplication', () => App);

If you are new to using Apollo with React, you should probably read the

.

Apollo Dev Tools

supports the
Apollo Client Devtools
:

  1. Install React Native Debugger and open it.
  2. Enable "Debug JS Remotely" in your app.
  3. (Optional) If you do not see the Developer Tools panel or the Apollo tab is missing in them, toggle the Developer Tools by right clicking anywhere and selecting "Toggle Developer Tools".
Previous
View integrations
Next
Integrating with Meteor
Edit on GitHubEditForumsDiscord

© 2024 Apollo Graph Inc.

Privacy Policy

Company