The useQueries
hook can be used to fetch a variable number of queries:
const results = useQueries([ { queryKey: ['post', 1], queryFn: fetchPost }, { queryKey: ['post', 2], queryFn: fetchPost },])
Options
The useQueries
hook accepts an array with query option objects identical to the useQuery
hook.
Returns
The useQueries
hook returns an array with all the query results.
Fast track your learning and
take the offical React Query course ↗️
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.