5 ms·
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 cac
by alexgrover 4y 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.
- eurasiantiger 4y agoN+1 issues do not exist when using a graph datastore which supports GraphQL.
- alexgrover 4y agoMany/most people don’t though. Dataloader libraries exist for a reason.
- zihotki 4y agoThis 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.
- eurasiantiger 4y agoSure, they will exist if someone intentionally codes them in. But not when fetching data is done in one pass.