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.
Integration Guides
Choose the integration guide that matches your application setup:
- Client-Side Apps - For client-side React applications without SSR (Vite, Create React App, etc.)
- Next.js App Router - For Next.js applications using the App Router with React Server Components
- React Router Framework Mode - For React Router 7 applications with streaming SSR
- TanStack Start - For TanStack Start applications with modern routing
Each guide includes installation steps, configuration, and framework-specific patterns optimized for that environment.
Quick Reference
Basic Query
import { gql } from "@apollo/client";
import { useQuery } from "@apollo/client/react";
const GET_USER = gql`
query GetUser($id: ID!) {
user(id: $id) {
id
name
}
}
`;
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>;
// TypeScript note: for stricter type narrowing, you can also check `dataState === "complete"` before accessing data
return <div>{data?.user.name}</div>;
}
Basic Mutation
import { gql } from "@apollo/client";
import { useMutation } from "@apollo/client/react";
const CREATE_USER = gql`
mutation CreateUser($input: CreateUserInput!) {
createUser(input: $input) {
id
name
}
}
`;
function CreateUserForm() {
const [createUser, { loading, error }] = useMutation(CREATE_USER);
const handleSubmit = async (name: string) => {
await createUser({ variables: { input: { name } } });
};
return <button => handleSubmit("John")}>Create User</button>;
}
Suspense Query
import { Suspense } from "react";
import { useSuspenseQuery } from "@apollo/client/react";
function UserProfile({ userId }: { userId: string }) {
const { data } = useSuspenseQuery(GET_USER, {
variables: { id: userId },
});
return <div>{data.user.name}</div>;
}
function App() {
return (
<Suspense fallback={<p>Loading user...</p>}>
<UserProfile userId="1" />
</Suspense>
);
}
Reference Files
Detailed documentation for specific topics:
- TypeScript Code Generation - GraphQL Code Generator setup for type-safe operations
- Queries - useQuery, useLazyQuery, polling, refetching
- Suspense Hooks - useSuspenseQuery, useBackgroundQuery, useReadQuery, useLoadableQuery
- Mutations - useMutation, optimistic UI, cache updates
- Fragments - Fragment colocation, useFragment, useSuspenseFragment, data masking
- 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 Fragments reference for details on fragment colocation and data masking.
- 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
1---2name: apollo-client3description: 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.4license: MIT5---6
7# Apollo Client 4.x Guide
8
9Apollo 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.
10
11## Integration Guides
12
13Choose the integration guide that matches your application setup:
14
15- **[Client-Side Apps](references/integration-client.md)** - For client-side React applications without SSR (Vite, Create React App, etc.)
16- **[Next.js App Router](references/integration-nextjs.md)** - For Next.js applications using the App Router with React Server Components
17- **[React Router Framework Mode](references/integration-react-router.md)** - For React Router 7 applications with streaming SSR
18- **[TanStack Start](references/integration-tanstack-start.md)** - For TanStack Start applications with modern routing
19
20Each guide includes installation steps, configuration, and framework-specific patterns optimized for that environment.
21
22## Quick Reference
23
24### Basic Query
25
26```tsx
27import { gql } from "@apollo/client";
28import { useQuery } from "@apollo/client/react";
29
30const GET_USER = gql`
31 query GetUser($id: ID!) {
32 user(id: $id) {
33 id
34 name
35 }
36 }
37`;
38
39function UserProfile({ userId }: { userId: string }) {
40 const { loading, error, data, dataState } = useQuery(GET_USER, {
41 variables: { id: userId },
42 });
43
44 if (loading) return <p>Loading...</p>;
45 if (error) return <p>Error: {error.message}</p>;
46
47 // TypeScript note: for stricter type narrowing, you can also check `dataState === "complete"` before accessing data
48 return <div>{data?.user.name}</div>;
49}
50```
51
52### Basic Mutation
53
54```tsx
55import { gql } from "@apollo/client";
56import { useMutation } from "@apollo/client/react";
57
58const CREATE_USER = gql`
59 mutation CreateUser($input: CreateUserInput!) {
60 createUser(input: $input) {
61 id
62 name
63 }
64 }
65`;
66
67function CreateUserForm() {
68 const [createUser, { loading, error }] = useMutation(CREATE_USER);
69
70 const handleSubmit = async (name: string) => {
71 await createUser({ variables: { input: { name } } });
72 };
73
74 return <button onClick={() => handleSubmit("John")}>Create User</button>;
75}
76```
77
78### Suspense Query
79
80```tsx
81import { Suspense } from "react";
82import { useSuspenseQuery } from "@apollo/client/react";
83
84function UserProfile({ userId }: { userId: string }) {
85 const { data } = useSuspenseQuery(GET_USER, {
86 variables: { id: userId },
87 });
88
89 return <div>{data.user.name}</div>;
90}
91
92function App() {
93 return (
94 <Suspense fallback={<p>Loading user...</p>}>
95 <UserProfile userId="1" />
96 </Suspense>
97 );
98}
99```
100
101## Reference Files
102
103Detailed documentation for specific topics:
104
105- [TypeScript Code Generation](references/typescript-codegen.md) - GraphQL Code Generator setup for type-safe operations
106- [Queries](references/queries.md) - useQuery, useLazyQuery, polling, refetching
107- [Suspense Hooks](references/suspense-hooks.md) - useSuspenseQuery, useBackgroundQuery, useReadQuery, useLoadableQuery
108- [Mutations](references/mutations.md) - useMutation, optimistic UI, cache updates
109- [Fragments](references/fragments.md) - Fragment colocation, useFragment, useSuspenseFragment, data masking
110- [Caching](references/caching.md) - InMemoryCache, typePolicies, cache manipulation
111- [State Management](references/state-management.md) - Reactive variables, local state
112- [Error Handling](references/error-handling.md) - Error policies, error links, retries
113- [Troubleshooting](references/troubleshooting.md) - Common issues and solutions
114
115## Key Rules
116
117### Query Best Practices
118
119- **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.
120- **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 [Fragments reference](references/fragments.md) for details on fragment colocation and data masking.
121- 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.
122- Use `fetchPolicy` to control cache behavior per query
123- Use the TypeScript type server to look up documentation for functions and options (Apollo Client has extensive docblocks)
124
125### Mutation Best Practices
126
127- **If the schema permits, mutation return values should return everything necessary to update the cache.** Neither manual updates nor refetching should be necessary.
128- 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.
129- Handle errors gracefully in the UI
130- Use `refetchQueries` sparingly (prefer letting the cache update automatically)
131
132### Caching Best Practices
133
134- Configure `keyFields` for types without `id` field
135- Disable normalization by setting `keyFields: false` for types that don't include an identifier and are meant to group related fields under the parent
136- Use `typePolicies` for pagination and computed fields
137- Understand cache normalization to debug issues
138- **Enable [data masking](references/fragments.md#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
139
140### Performance
141
142- Avoid over-fetching with proper field selection
143- Configure appropriate `fetchPolicy` per use case
144- Use `@defer` for incremental delivery of deferred query parts, and `@stream` for streaming list fields (`@stream` available in Apollo Client 4.1+)
145- **Prefer Suspense hooks (`useSuspenseQuery`, `useBackgroundQuery`) in modern applications** for better loading state handling and code simplicity
146
147## Ground Rules
148
149- ALWAYS use Apollo Client 4.x patterns (not v3 or earlier)
150- ALWAYS wrap your app with `ApolloProvider`
151- ALWAYS handle loading and error states when using non-suspenseful hooks
152- PREFER Suspense hooks (`useSuspenseQuery`, `useBackgroundQuery`) in modern applications for better DX
153- NEVER store Apollo Client in React state (use module-level or context)
154- PREFER `cache-first` for read-heavy data, `network-only` for real-time data
155- USE TypeScript for better type safety with GraphQL
156- IMPLEMENT proper cache updates instead of refetching entire queries
157- ADVISE the human steering you to look into Apollo DevTools when collaboratively debugging Apollo Client issues