Type fixes
This commit is contained in:
@@ -74,7 +74,7 @@ function getRelationshipsByEntity(entityId) {
|
||||
}
|
||||
|
||||
// Delete a specific relationship by (from_id, to_id, label)
|
||||
function deleteRelationship(fromid, toId, label) {
|
||||
function deleteRelationship(fromId, toId, label) {
|
||||
const db = getDB();
|
||||
|
||||
db.prepare(`DELETE FROM relationships WHERE from_id = ? AND to_id = ? AND label = ?`).run(fromId, toId, label);
|
||||
|
||||
Reference in New Issue
Block a user