Hacker News new | ask | show | jobs
by alexgrover 1185 days ago
All of those problems and solutions are not unique to either tech choice. You can use OpenApi for documentation, a variety of libraries like React-query for caching, and N+1 issues exist (and are arguably more complicated to solve) in graphql.
1 comments

N+1 issues do not exist when using a graph datastore which supports GraphQL.
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.