Files
mostlymatter/api4
Agniva De Sarker fed5404166 GraphQL: Unlock goroutine throttle to match batch capacity (#20146)
We were throttling the amount of concurrent resolvers
at a given time. The idea behind this was to avoid overloading
the database with too many requests.

However, with the introduction of dataloaders, this limitation
actually becomes a bottleneck because all DB calls are actually
batched, so we are unnecessarily throttling the amount of
items that can be processed in a single batch.

The only caveat with this is that now all resolvers
need to backed by dataloaders, or otherwise not be queried
as part of a loop.

In a subsequent PR, we will be removing channel stats
from under channel to be a top-level object to be returned
for a given channel.

```release-note
NONE
```
2022-05-06 21:53:29 +05:30
..
2022-02-28 15:01:00 +05:30
2021-09-01 14:43:12 +02:00
2022-02-28 15:01:00 +05:30
2021-09-01 14:43:12 +02:00
2021-08-17 16:08:04 -04:00
2022-02-28 15:01:00 +05:30
2022-04-11 19:31:19 +05:30