GraphQL authorization logic in non-GraphQL contexts
6Authorization code written for GraphQL contexts often cannot be reused in background jobs or HTML endpoints, because Dataloaders (the common solution to N+1 problems) are GraphQL-specific. This forces developers to implement separate authorization logic for different execution contexts.
architectureGraphQLDataloader