| name | apollo-client |
| description | Guide for building React applications with Apollo Client 4.x. Use this skill when: (1) setting up Apollo Client in a React project, (2) writing GraphQL queries or mutations with hooks, (3) configuring caching or cache policies, (4) managing local state with reactive variables, (5) troubleshooting Apollo Client errors or performance issues.
|
| license | MIT |
| compatibility | React 18+, React 19 (Suspense/RSC). Works with Next.js, Vite, CRA, and other React frameworks. |
| metadata | {"author":"apollographql","version":"1.0"} |
| allowed-tools | Bash(npm:*) Bash(npx:*) Bash(node:*) Read Write Edit Glob Grep |
Apollo Client 4.x Guide
Apollo Client is a comprehensive state management library for JavaScript that enables you to manage both local and remote data with GraphQL. Version 4.x brings improved caching, better TypeScript support, and React 19 compatibility.
Framework-Specific Setup Guides
For modern React frameworks with SSR support, use these specialized setup guides:
These guides provide framework-specific integration packages and patterns optimized for SSR, streaming, and React Server Components.
Quick Start
Step 1: Install
npm install @apollo/client graphql rxjs
Step 1.5: Set up TypeScript Code Generation (optional but recommended)
For TypeScript type generation (recommended):
npm install -D @graphql-codegen/cli @graphql-codegen/typescript @graphql-codegen/typescript-operations @graphql-codegen/typed-document-node
import { CodegenConfig } from '@graphql-codegen/cli'
const config: CodegenConfig = {
overwrite: true,
schema: '<URL_OF_YOUR_GRAPHQL_API>',
documents: ['src/**/*.{ts,tsx}'],
ignoreNoDocuments: true,
generates: {
'./src/types/__generated__/graphql.ts': {
plugins: ['typescript', 'typescript-operations', 'typed-document-node'],
config: {
avoidOptionals: {
field: true,
inputValue: false,
},
defaultScalarType: 'unknown',
nonOptionalTypename: true,
skipTypeNameForRoot: true,
},
},
},
}
export default config
The typed-document-node plugin might have a bundle size tradeoff but can prevent inconsistencies and is best suited for usage with LLMs, so it is recommended for most applications.
See the GraphQL Code Generator documentation for other recommended configuration patterns if required.
Step 2: Create Client
import { ApolloClient, InMemoryCache, HttpLink } from '@apollo/client'
import { SetContextLink } from '@apollo/client/link/context'
const httpLink = new HttpLink({
uri: 'https://your-graphql-endpoint.com/graphql',
})
const authLink = new SetContextLink(({ headers }) => {
const token = localStorage.getItem('token')
return {
headers: {
...headers,
authorization: token ? `Bearer ${token}` : '',
},
}
})
const client = new ApolloClient({
link: authLink.concat(httpLink),
cache: new InMemoryCache(),
})
Step 3: Setup Provider
import { ApolloProvider } from '@apollo/client'
import App from './App'
function Root() {
return (
<ApolloProvider client={client}>
<App />
</ApolloProvider>
)
}
Step 4: Execute Query
import { gql } from '@apollo/client'
import { useQuery } from '@apollo/client/react'
const GET_USERS = gql`
query GetUsers {
users {
id
name
email
}
}
`
function UserList() {
const { loading, error, data } = useQuery(GET_USERS)
if (loading) return <p>Loading...</p>
if (error) return <p>Error: {error.message}</p>
return (
<ul>
{data.users.map(user => (
<li key={user.id}>{user.name}</li>
))}
</ul>
)
}
Basic Query Usage
Using Variables
const GET_USER = gql`
query GetUser($id: ID!) {
user(id: $id) {
id
name
email
}
}
`
function UserProfile({ userId }: { userId: string }) {
const { loading, error, data, dataState } = useQuery(GET_USER, {
variables: { id: userId },
})
if (loading) return <p>Loading...</p>
if (error) return <p>Error: {error.message}</p>
return <div>{data.user.name}</div>
}
Note for TypeScript users: Use dataState for more robust type safety and better type narrowing in Apollo Client 4.x.
TypeScript Integration
interface GetUserData {
user: {
id: string
name: string
email: string
}
}
interface GetUserVariables {
id: string
}
const GET_USER: TypedDocumentNode<GetUserData, GetUserVariables> = gql`
query GetUser($id: ID!) {
user(id: $id) {
id
name
email
}
}
`
const { data } = useQuery(GET_USER, {
variables: { id: userId },
})
Basic Mutation Usage
import { gql, TypedDocumentNode } from '@apollo/client'
import { useMutation } from '@apollo/client/react'
interface CreateUserMutation {
createUser: {
id: string
name: string
email: string
}
}
interface CreateUserMutationVariables {
input: {
name: string
email: string
}
}
const CREATE_USER: TypedDocumentNode<CreateUserMutation, CreateUserMutationVariables> = gql`
mutation CreateUser($input: CreateUserInput!) {
createUser(input: $input) {
id
name
email
}
}
`
function CreateUserForm() {
const [createUser, { loading, error }] = useMutation(CREATE_USER)
const handleSubmit = async (formData: FormData) => {
const { data } = await createUser({
variables: {
input: {
name: formData.get('name') as string,
email: formData.get('email') as string,
},
},
})
if (data) {
console.log('Created user:', data.createUser)
}
}
return (
<form
onSubmit={e => {
e.preventDefault()
handleSubmit(new FormData(e.currentTarget))
}}
>
<input name="name" placeholder="Name" />
<input name="email" placeholder="Email" />
<button type="submit" disabled={loading}>
{loading ? 'Creating...' : 'Create User'}
</button>
{error && <p>Error: {error.message}</p>}
</form>
)
}
Client Configuration Options
const client = new ApolloClient({
cache: new InMemoryCache({
typePolicies: {
Query: {
fields: {
},
},
},
}),
link: new HttpLink({ uri: '/graphql' }),
devtools: {
enabled: true,
},
clientAwareness: {
name: 'web-client',
version: '1.0.0',
},
})
Reference Files
Detailed documentation for specific topics:
- Queries - useQuery, useLazyQuery, polling, refetching
- Suspense Hooks - useSuspenseQuery, useBackgroundQuery, useReadQuery, useLoadableQuery
- Mutations - useMutation, optimistic UI, cache updates
- Caching - InMemoryCache, typePolicies, cache manipulation
- State Management - Reactive variables, local state
- Error Handling - Error policies, error links, retries
- Troubleshooting - Common issues and solutions
Key Rules
Query Best Practices
- Each page should generally only have one query, composed from colocated fragments. Use
useFragment or useSuspenseFragment in all non-page-components. Use @defer to allow slow fields below the fold to stream in later and avoid blocking the page load.
- Fragments are for colocation, not reuse. Each fragment should describe exactly the data needs of a specific component, not be shared across components for common fields. See Fragment Colocation.
- Always handle
loading and error states in UI when using non-suspenseful hooks (useQuery, useLazyQuery). When using Suspense hooks (useSuspenseQuery, useBackgroundQuery), React handles this through <Suspense> boundaries and error boundaries.
- Use
fetchPolicy to control cache behavior per query
- Use the TypeScript type server to look up documentation for functions and options (Apollo Client has extensive docblocks)
Mutation Best Practices
- If the schema permits, mutation return values should return everything necessary to update the cache. Neither manual updates nor refetching should be necessary.
- If the mutation response is insufficient, carefully weigh manual cache manipulation vs refetching. Manual updates risk missing server logic. Consider optimistic updates with a granular refetch if needed.
- Handle errors gracefully in the UI
- Use
refetchQueries sparingly (prefer letting the cache update automatically)
Caching Best Practices
- Configure
keyFields for types without id field
- Disable normalization by setting
keyFields: false for types that don't include an identifier and are meant to group related fields under the parent
- Use
typePolicies for pagination and computed fields
- Understand cache normalization to debug issues
- Enable data masking for all new applications - it prevents components from accessing fragment data they don't own, enforcing proper data boundaries and preventing over-rendering
Performance
- Avoid over-fetching with proper field selection
- Configure appropriate
fetchPolicy per use case
- Use
@defer for incremental delivery of deferred query parts, and @stream for streaming list fields (@stream available in Apollo Client 4.1+)
- Prefer Suspense hooks (
useSuspenseQuery, useBackgroundQuery) in modern applications for better loading state handling and code simplicity
Ground Rules
- ALWAYS use Apollo Client 4.x patterns (not v3 or earlier)
- ALWAYS wrap your app with
ApolloProvider
- ALWAYS handle loading and error states when using non-suspenseful hooks
- PREFER Suspense hooks (
useSuspenseQuery, useBackgroundQuery) in modern applications for better DX
- NEVER store Apollo Client in React state (use module-level or context)
- PREFER
cache-first for read-heavy data, network-only for real-time data
- USE TypeScript for better type safety with GraphQL
- IMPLEMENT proper cache updates instead of refetching entire queries
- ADVISE the human steering you to look into Apollo DevTools when collaboratively debugging Apollo Client issues