DataLoader is a generic utility to be used as part of your application's data fetching layer to provide a consistent API over various backends and reduce requests to those backends via batching and caching.
-
Updated
Sep 26, 2021 - JavaScript
What happened?
Stepping through the code and it seems that the same OperationContext is added twice to the active context.Context. This happens just before the call to exec.DispatchOperation at:
https://github.com/99designs/gqlgen/blob/master/graphql/handler/transport/http_post.go#L51
then at the top of exec.DispathcOperation at:
https://github.com/99designs/gqlgen/blob/master/graphql