Bruno Galeotti
Bruno Galeotti
@alex-a-pereira 1. Can you share the events that are being triggered by `react-query`? ```javascript const client = new QueryClient(); client.getQueryCache().subscribe(console.log); ``` 2. What is the exact version of `react-query`?
@apatel369 could you try v4.0.0 and see if you are still seeing it?
In v4, as in https://codesandbox.io/s/github/tannerlinsley/react-query/tree/master/examples/simple, we are showing state from `query.state.status`. In v3 `status` [used to be](https://github.com/bgaleotti/react-query-native-devtools/blob/v3.0.1/packages/flipper-plugin-react-query-native-devtools/src/utils/index.ts#L29-L31) what you are expecting @apatel369. Maybe it is worth reintroducing v3 behaviour. @dmitrybirin...
@apatel369 can you try v4.1.0 from Flipper plugin?
@renchap I tried it and it worked without any change. Looks like the public API we use didn't change. ```javascript import * as React from 'react'; import { QueryClient, QueryClientProvider...
> Yes it seems to work, but the types are not working as the react-query package is replaced by @tanstack/react-query. Oh I see. > I am not sure how to...
I added a demo application using `@tanstack/react-query`. Everything is working fine, but as @renchap mentioned, types are wrong (peerDependency as well) and I had to [silence](https://github.com/bgaleotti/react-query-native-devtools/blob/main/apps/Time/App.tsx#L17) them. I still don't...
Hi @hkeithk! I just added a demo application https://github.com/bgaleotti/react-query-native-devtools/pull/96. Could you check if that works for you?
@efkan there's nothing wrong. * [react-query-native-devtools](https://www.npmjs.com/package/react-query-native-devtools) is the package you need to install in your project. * [flipper-plugin-react-query-native-devtools](https://www.npmjs.com/package/flipper-plugin-react-query-native-devtools) is the Flipper plugin that lets you see your query cache. You...
@williamneves are you using https://docs.expo.dev/development/create-development-builds/?