In your examples, I believe this: ```ts return new DataLoader<string, Account>(keys => this.accountService.findByIds(keys) ) ``` Can be this: ```ts return new DataLoader<string, Account>(this.accountService.findByIds) ``` If it's helpful.
In your examples, I believe this:
Can be this:
If it's helpful.