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

Method is_node_deleted

nodedb/src/data/executor/core_loop/graph_partition.rs:42–46  ·  view source on GitHub ↗
(&self, tid: u64, node_id: &str)

Source from the content-addressed store, hash-verified

40 /// caller's tenant.
41 #[inline]
42 pub(in crate::data::executor) fn is_node_deleted(&self, tid: u64, node_id: &str) -> bool {
43 self.deleted_nodes
44 .get(&TenantId::new(tid))
45 .is_some_and(|s| s.contains(node_id))
46 }
47}

Callers 2

execute_edge_putMethod · 0.80

Calls 2

getMethod · 0.45
containsMethod · 0.45

Tested by

no test coverage detected