Capítulo 70 de 80
The Suspense variant of useInfiniteQuery, with the same option removals and guarantees as useSuspenseQuery (no throwOnError/enabled/placeholderData; data always defined; cancellation doesn't work) layered on top of the infinite-query shape.
useInfiniteQuery minus throwOnError, enabled, placeholderData.useInfiniteQuery (data.pages/data.pageParams, fetchNextPage/fetchPreviousPage, hasNextPage/hasPreviousPage, etc.) except data is guaranteed defined, isPlaceholderData doesn't exist, and status only reports 'success' | 'error'.useSuspenseQueries (not multiple standalone Suspense hooks) whenever more than one lives in the same component, to avoid the serial-fetch pitfall covered in Performance & Request Waterfalls.enabled, no placeholderData, no cancellation).