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
Load more / infinite loading: react-query#useInfiniteQuery
Caches an array of queries
Exposes fetchMore function, and canFetchMore/isFetchingMore status booleans
requires user to define getFetchMore which provides additional arguments which are passed to the fetcher based on the previous query
Individually fetches each page in parallel if it becomes stale
The text was updated successfully, but these errors were encountered:
The library should support two forms of pagination (similar to
react-query
):react-query#usePaginatedQuery
does not reinitialize data so you can keep viewing the previous page https://github.com/tannerlinsley/react-query#paginated-queries-with-usepaginatedquery. This could be achieved usingdontReinitialize
flag, so documentation could be added for this use case.react-query#useInfiniteQuery
fetchMore
function, andcanFetchMore
/isFetchingMore
status booleansrequires user to define
getFetchMore
which provides additional arguments which are passed to the fetcher based on the previous queryThe text was updated successfully, but these errors were encountered: