We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e88073 commit 3b16632Copy full SHA for 3b16632
bin/router/src/pipeline/query_plan.rs
@@ -9,6 +9,7 @@ use hive_router_query_planner::planner::plan_nodes::QueryPlan;
9
use hive_router_query_planner::planner::PlannerError;
10
use hive_router_query_planner::utils::cancellation::CancellationToken;
11
use ntex::web::HttpRequest;
12
+use tracing::debug;
13
use xxhash_rust::xxh3::Xxh3;
14
15
#[inline]
@@ -74,6 +75,7 @@ fn get_plan(
74
75
let is_pure_introspection = filtered_operation_for_plan.selection_set.is_empty()
76
&& normalized_operation.operation_for_introspection.is_some();
77
if is_pure_introspection {
78
+ debug!("No need for a plan, as the incoming query only involves introspection fields");
79
return Ok(QueryPlan {
80
kind: "QueryPlan".to_string(),
81
node: None,
0 commit comments