n+1 over the network term
loop issuing one API call per item
API equivalent of N+1 queries — even worse because network latency dominates. Always provide a batch endpoint when you build a collection API.
loop issuing one API call per item
API equivalent of N+1 queries — even worse because network latency dominates. Always provide a batch endpoint when you build a collection API.