MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / execute_subquery

Method execute_subquery

graphlite/src/exec/executor.rs:1055–1061  ·  view source on GitHub ↗

Execute a subquery within the current execution context

(
        &self,
        query: &crate::ast::Query,
        context: &ExecutionContext,
    )

Source from the content-addressed store, hash-verified

1053
1054 /// Execute a subquery within the current execution context
1055 fn execute_subquery(
1056 &self,
1057 query: &crate::ast::Query,
1058 context: &ExecutionContext,
1059 ) -> Result<QueryResult, ExecutionError> {
1060 self.execute_subquery_with_context(query, context)
1061 }
1062
1063 /// Check if a subquery returns any results (optimized for EXISTS)
1064 /// Returns true as soon as the first result is found, without materializing all results

Callers 2

evaluate_expressionMethod · 0.80

Calls 1

Tested by

no test coverage detected