MCPcopy
hub / github.com/colbymchenry/codegraph / deleteFile

Method deleteFile

src/db/queries.ts:1486–1494  ·  view source on GitHub ↗

* Delete a file record and its nodes

(filePath: string)

Source from the content-addressed store, hash-verified

1484 * Delete a file record and its nodes
1485 */
1486 deleteFile(filePath: string): void {
1487 this.db.transaction(() => {
1488 this.deleteNodesByFile(filePath);
1489 if (!this.stmts.deleteFile) {
1490 this.stmts.deleteFile = this.db.prepare('DELETE FROM files WHERE path = ?');
1491 }
1492 this.stmts.deleteFile.run(filePath);
1493 })();
1494 }
1495
1496 /**
1497 * Get a file record by path

Callers 2

storeExtractionResultMethod · 0.80
syncMethod · 0.80

Calls 4

deleteNodesByFileMethod · 0.95
transactionMethod · 0.65
prepareMethod · 0.65
runMethod · 0.65

Tested by

no test coverage detected