* Delete a node by ID
(id: string)
| 623 | * Delete a node by ID |
| 624 | */ |
| 625 | deleteNode(id: string): void { |
| 626 | if (!this.stmts.deleteNode) { |
| 627 | this.stmts.deleteNode = this.db.prepare('DELETE FROM nodes WHERE id = ?'); |
| 628 | } |
| 629 | // Invalidate cache |
| 630 | this.nodeCache.delete(id); |
| 631 | this.stmts.deleteNode.run(id); |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Delete all nodes for a file |