Hacker News new | ask | show | jobs
by eurasiantiger 1185 days ago
N+1 issues do not exist when using a graph datastore which supports GraphQL.
2 comments

This statement is false. N+1 issues may exist even in that case. It may vary what caused it and what are the options to solve it.
Sure, they will exist if someone intentionally codes them in. But not when fetching data is done in one pass.
Many/most people don’t though. Dataloader libraries exist for a reason.