From ef9cdb12ddbe6c4131e55519309943f8b75488bf Mon Sep 17 00:00:00 2001
From: Yury Smolski <140245+ysmolski@users.noreply.github.com>
Date: Wed, 30 Jul 2025 12:18:49 +0300
Subject: [PATCH] chore: update docs for enable_subgraph_fetch_operation_name
---
docs/router/configuration.mdx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/router/configuration.mdx b/docs/router/configuration.mdx
index 89437326..90b877ad 100644
--- a/docs/router/configuration.mdx
+++ b/docs/router/configuration.mdx
@@ -1638,7 +1638,7 @@ Configure the GraphQL Execution Engine of the Router.
| ENGINE_ENABLE_VALIDATION_CACHE | enable_validation_cache | | Enable the validation cache. The validation cache is used to cache results of validating GraphQL Operations. | true |
| ENGINE_VALIDATION_CACHE_SIZE | validation_cache_size | | The size of the validation cache. | 1024 |
| ENGINE_DISABLE_EXPOSING_VARIABLES_CONTENT_ON_VALIDATION_ERROR | disable_exposing_variables_content_on_validation_error | | Disables exposing the variables content in the error response. This is useful to avoid leaking sensitive information in the error response. | false |
-| ENGINE_ENABLE_SUBGRAPH_FETCH_OPERATION_NAME | enable_subgraph_fetch_operation_name | | Enable appending the operation name to subgraph fetches. This will ensure that the operation name will be included in the corresponding subgraph requests using the following format: $operationName\_\_$subgraphName_\_\$sequenceID. | true |
+| ENGINE_ENABLE_SUBGRAPH_FETCH_OPERATION_NAME | enable_subgraph_fetch_operation_name | | Enable appending the operation name to subgraph fetches. This will ensure that the operation name will be included in the corresponding subgraph requests using the following format: `$OperationName__$SubgraphName__$FetchID`. | false |
| ENGINE_SUBSCRIPTION_FETCH_TIMEOUT | subscription_fetch_timeout | | The maximum time a subscription fetch can take before it is considered timed out. | 30s |
### Example YAML config: