MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / check_property

Function check_property

nodedb/src/engine/graph/pattern/executor/predicates.rs:96–101  ·  view source on GitHub ↗

Check if a node has a property with the expected value.

(_edge_store: &EdgeStore, _node_id: &str, _field: &str, _expected: &str)

Source from the content-addressed store, hash-verified

94
95/// Check if a node has a property with the expected value.
96fn check_property(_edge_store: &EdgeStore, _node_id: &str, _field: &str, _expected: &str) -> bool {
97 // Property lookups require the sparse engine (document store).
98 // For MATCH patterns, primary filtering is structural (edge traversal).
99 // Property predicates will be pushed down when sparse engine is wired.
100 true
101}
102
103/// Project RETURN columns from rows.
104pub(super) fn project_columns(rows: &[BindingRow], columns: &[ReturnColumn]) -> Vec<BindingRow> {

Callers 1

apply_predicateFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected