You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -220,7 +220,7 @@ if we proceed dispatching all data loaders the execution will continue to just r
220
220
221
221
### Usage
222
222
223
-
In order to enable batching by synchronous execution exhaustion, you need to configure your GraphQL instance with the `DataLoaderLevelDispatchedInstrumentation`.
223
+
In order to enable batching by synchronous execution exhaustion, you need to configure your GraphQL instance with the `DataLoaderSyncExecutionExhaustedInstrumentation`.
224
224
225
225
```kotlin
226
226
val graphQL = GraphQL.Builder()
@@ -230,11 +230,11 @@ val graphQL = GraphQL.Builder()
230
230
.build()
231
231
```
232
232
233
-
This data loader instrumentation relies on a global state object that should be stored in the GraphQL context map
233
+
This data loader instrumentation relies on a global state object that needs be stored in the GraphQLContext map
234
234
235
235
```kotlin
236
236
val graphQLContext = mapOf(
237
-
SyncExecutionExhaustedState::class to ExecutionLevelDispatchedState(
237
+
SyncExecutionExhaustedState::class to SyncExecutionExhaustedState(
0 commit comments