From fc413b13b051af59cad386514e65256d4ca7ec28 Mon Sep 17 00:00:00 2001 From: Chris Thomson Date: Wed, 19 Jun 2024 14:27:19 -0400 Subject: [PATCH] Fix typo in data loader docs --- docs/data-loaders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/data-loaders.md b/docs/data-loaders.md index 493306fd..8ec41159 100644 --- a/docs/data-loaders.md +++ b/docs/data-loaders.md @@ -251,7 +251,7 @@ To handle this, we need to explicitly call dispatch on the second data loader (s ``` This is expected according to the documented behavior [here](https://github.com/graphql-java/java-dataloader#chaining-dataloader-calls). -However, this can result in suboptimal batching for `dataloaderB`, with a bacth size of 1. +However, this can result in suboptimal batching for `dataloaderB`, with a batch size of 1. The `v8.1.0` release introduces a new feature to [enable ticker mode](https://github.com/graphql-java/java-dataloader#scheduleddataloaderregistry-ticker-mode) available in the `java-dataloader` library This allows you to schedule the dispatch checks instead of manually calling dispatch in your data loaders.