(_collection: &str, src: &str)
| 190 | } |
| 191 | |
| 192 | pub fn neighbors(_collection: &str, src: &str) -> PhysicalPlan { |
| 193 | PhysicalPlan::Graph(GraphOp::Neighbors { |
| 194 | node_id: src.into(), |
| 195 | edge_label: Some("REL".into()), |
| 196 | direction: nodedb::engine::graph::edge_store::Direction::Out, |
| 197 | rls_filters: Vec::new(), |
| 198 | }) |
| 199 | } |
| 200 | |
| 201 | pub fn kv_put(key: &[u8], value: &[u8]) -> PhysicalPlan { |
| 202 | PhysicalPlan::Kv(KvOp::Put { |
no outgoing calls
no test coverage detected