You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have hooks for fetching during render and fetching a single reference imperatively.
It might be nice to expose another hook that allows you to fetch an indefinite number. The returned value could take the form of a hash map, or an array, or whatever. Each item would be individually disposable.
This would ameliorate the need for mutating lists in response to mutations, since now we can hold an array (etc) of items in state.
Maybe the pagination hooks can be refactored to use this underlying hook
The text was updated successfully, but these errors were encountered:
We currently have hooks for fetching during render and fetching a single reference imperatively.
It might be nice to expose another hook that allows you to fetch an indefinite number. The returned value could take the form of a hash map, or an array, or whatever. Each item would be individually disposable.
This would ameliorate the need for mutating lists in response to mutations, since now we can hold an array (etc) of items in state.
Maybe the pagination hooks can be refactored to use this underlying hook
The text was updated successfully, but these errors were encountered: