Per discussion in Reactiflux:
- imo, It would be cool to have a dashboard like react-query: https://react-query.tanstack.com/devtools
- Generally, you have the redux devtools. But of course something else could be "prettier".
- query tool are bit more focus on the cache state and config provided.
- It would be super cool if you could add this as an add-in to the Redux Devtools, but I don't know how complicated that would be
- the current Redux devtools already have the full state, so you essentially already ahve all the info there, you'd just have to display them in a different format
- i'd love to split the view here in the dev tools so the standard redux stuff was isolated, and the query aspect were just reformatted to so you could see something like
(query|mutation.[method]): endpoint.urlon the left
My thoughts:
@zalmoxisus), but he finally went silent a year or so ago. However, he did hand the publishing rights over to Tim Dorr, and the separate packages are now a monorepo under the reduxjs org.methuselah96 who's been quietly doing maintenance work on it. I have no idea who that person actually is :)As a bit of reference, here's the PRs I made when I added the "action stack trace" feature:
and the original issue for that:
The new combined monorepo is at https://github.com/reduxjs/redux-devtools
A couple of things that would be nice to see:
I'd like the primary view to lists queries currently stored, presenting the following infos:
{ pollingInterval: 600000 }.asc - desc button groupDropdown options:
A button that triggers a refetch of a query.
A filter query by key input[type="text"] field.
Just a quick addition; Methuselah96 mentioned that this could be done by creating a new monitor.
So if anyone is planning on giving this a go, that would be the way to go.
I don't know nearly enough about the DevTools to actually give any guidance, except for this.
@StefanBRas @markerikson As I said on discord I'd like to implement this feature.
Yesterday I've setup up the project and I'd like to submit a PR to reduxjs/redux-devtools once I've got something stable.
The general integration steps are the following:
packages/redux-devtools-rtk-query-inspector-monitor.rtk-query-inspector-monitor to packages/redux-devtools-app/src/utils/getMonitor.tsx Presumably it would have to have some way of scanning the store state for what looks like an RTQK cache slice and provide an alternate view of that state
A breadth first search with a configurable max-depth (default 2(?)) that looks for plain objects with shape api state should suffice.
I'm developing here the devtools and I plan to submit a PR this weekend to redux-devtools.

fulfilledTimeStampquery keyquery statusendpointapi reducerPathfulfilledTimeStampquery keyquery statusendpointapi reducerPathEdit:
Added link to demo site
PR is live 馃殌 https://github.com/reduxjs/redux-devtools/pull/750
I've added few extra features and I have updated the demo: https://rtk-query-monitor-demo.netlify.app/
This is really going places :) Soo cool!
Most helpful comment
An update
I'm developing here the devtools and I plan to submit a PR this weekend to redux-devtools.
Demo
A preview
Current Features
fulfilledTimeStampquery keyquery statusendpointapi reducerPathfulfilledTimeStampquery keyquery statusendpointapi reducerPathTO DO
Edit:
Added link to demo site