We're seeing quite some "flickering" due to null being rendered when data is fetched. We are aware of the fact that, in general, this is a hint that queries are made to often, however sometimes we have quite complex queries to make where the "delay" incurred by fetching data is in fact noticeable. A solution could be to pass down the isFetching state to the component being rendered in order to display a loading state or similar. Debouncing could still be done downstream if necessary.
We would be willing to contribute this as a PR here.
We're seeing quite some "flickering" due to
nullbeing rendered when data is fetched. We are aware of the fact that, in general, this is a hint that queries are made to often, however sometimes we have quite complex queries to make where the "delay" incurred by fetching data is in fact noticeable. A solution could be to pass down theisFetchingstate to the component being rendered in order to display a loading state or similar. Debouncing could still be done downstream if necessary.We would be willing to contribute this as a PR here.