Check if a node has a property with the expected value.
(_edge_store: &EdgeStore, _node_id: &str, _field: &str, _expected: &str)
| 94 | |
| 95 | /// Check if a node has a property with the expected value. |
| 96 | fn 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. |
| 104 | pub(super) fn project_columns(rows: &[BindingRow], columns: &[ReturnColumn]) -> Vec<BindingRow> { |