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
/// Enables/disables request deduplication to subgraphs.
51
+
///
52
+
/// When requests exactly matches the hashing mechanism (e.g., subgraph name, URL, headers, query, variables), and are executed at the same time, they will
53
+
/// be deduplicated by sharing the response of other in-flight requests.
54
+
pubdedupe_enabled:Option<bool>,
55
+
56
+
/// Optional timeout configuration for requests to subgraphs.
57
+
///
58
+
/// Example with a fixed duration:
59
+
/// ```yaml
60
+
/// timeout:
61
+
/// duration: 5s
62
+
/// ```
63
+
///
64
+
/// Or with a VRL expression that can return a duration based on the operation kind:
0 commit comments