KonradK
Convex Community2y ago
1 reply
Konrad

Concurrency of useQuery calls

In a component with multiple
useQuery
hooks, do the web requests associated with each hook get executed in parallel? To exemplify, let's say we have a component with three
useQuery
hooks where each query takes 50ms to complete. Will the component wait 50ms or 150ms for the data from all three queries?
Was this page helpful?