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

Method soft_delete_edge

nodedb/src/engine/graph/edge_store/temporal/write.rs:135–137  ·  view source on GitHub ↗

Append a tombstone version at `system_from`.

(&self, edge: EdgeRef<'_>, system_from: i64)

Source from the content-addressed store, hash-verified

133
134 /// Append a tombstone version at `system_from`.
135 pub fn soft_delete_edge(&self, edge: EdgeRef<'_>, system_from: i64) -> crate::Result<()> {
136 self.write_sentinel(edge, system_from, TOMBSTONE_SENTINEL)
137 }
138
139 /// Append a GDPR-erasure version — distinct from a soft-delete so audits
140 /// can distinguish user-visible removal from regulatory erasure.

Calls 1

write_sentinelMethod · 0.80