Hi. Right now, it seems the way that isLoading is handled for reactive and non-reactive data is different.
For reactive data, isLoading: true for initial load. If I change the filter, isLoading: true again while data is refetched.
For non-reactive, isLoading: true for initial load. If I refetch, isLoading: false even when data is being refetched.
Is this intended, or should isLoading be set to true while non-react data is refetching? I think I see where in the code this is handled, so I'd be happy to submit a pull request implementing this.
Hi. Right now, it seems the way that
isLoading
is handled for reactive and non-reactive data is different.For reactive data,
isLoading: true
for initial load. If I change the filter,isLoading: true
again while data is refetched.For non-reactive,
isLoading: true
for initial load. If I refetch,isLoading: false
even when data is being refetched.Is this intended, or should
isLoading
be set totrue
while non-react data is refetching? I think I see where in the code this is handled, so I'd be happy to submit a pull request implementing this.