Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/migrating/apollo-client-4-migration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
Install Apollo Client 4 along with its peer dependencies with the following command:

```sh showLineNumbers=false
npm install @apollo/client graphql rxjs
npm install @apollo/client@latest graphql rxjs

Check warning on line 41 in docs/source/migrating/apollo-client-4-migration.mdx

View check run for this annotation

Apollo Librarian / AI Style Review

docs/source/migrating/apollo-client-4-migration.mdx#L41

To ensure this command works for future readers, pin the package to the major version of the migration guide instead of using `@latest`. The `@latest` tag will eventually point to a newer major version, which would be incorrect for this guide. ```suggestion npm install @apollo/client@4 graphql rxjs ```
```

<Note>
Expand Down
Loading