Releases: Shopify/graphql-batch
Releases · Shopify/graphql-batch
v0.3.7
- Allow custom executors #68
class CustomExecutor < GraphQL::Batch::Executor
# ...
end
schema = GraphQL::Schema.define do
# ...
use GraphQL::Batch, executor_class: CustomExecutor
end
v0.3.2
- #51 - Make GraphQL::Batch a plugin by adding
use
- #48 - Add
NoExecutorError