-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce416bd
commit ff3882a
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
"apollo-client-devtools": minor | ||
--- | ||
|
||
Add support for inspecting multiple clients. When multiple clients connect to devtools, you can select which to inspect. When combined with Apollo Client [3.11](https://github.com/apollographql/apollo-client/releases/tag/v3.11.0), you can provide a custom name using the new `devtools` option. | ||
|
||
```js | ||
new ApolloClient({ | ||
devtools: { | ||
enabled: true, | ||
name: "My Custom Client", | ||
}, | ||
}); | ||
``` |