useSuspenseQueries
Source URL: https://tanstack.com/query/latest/docs/framework/react/reference/useSuspenseQueries
useSuspenseQueries
Section titled “useSuspenseQueries”const result = useSuspenseQueries(options)Options
The same as for useQueries, except that each query can’t have:
suspensethrowOnErrorenabledplaceholderData
Returns
Same structure as useQueries, except that for each query:
datais guaranteed to be definedisPlaceholderDatais missingstatusis eithersuccessorerror- the derived flags are set accordingly.
Caveats
Keep in mind that the component will only re-mount after all queries have finished loading. Hence, if a query has gone stale in the time it took for all the queries to complete, it will be fetched again at re-mount. To avoid this, make sure to set a high enough staleTime.
Cancellation does not work.