Closed maletor closed 5 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
Hi @maletor,
Do you use graphql
gem versions >= 1.8.7?
batch-loader
version 1.3.0 should have no effect for resolvers which don't return BatchLoader::GraphQL
. With graphql
1.8.7+, batching was already broken because of the breaking changes in the graphql
gem.graphql
gem versions < 1.8.7, then resolvers with BatchLoader::GraphQL
and without should work fine. I.e. it is backward compatible.Here is the test schema which covers this case:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs.
This created a regression where resolvers that do not return a
BatchLoader::GraphQL
fail to callBatchLoader::GraphQL
calls that the resolver uses.Originally posted by @maletor in https://github.com/exAspArk/batch-loader/pull/32#issuecomment-464197355