MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / deleteFile

Method deleteFile

src/db/queries.ts:1896–1904  ·  view source on GitHub ↗

* Delete a file record and its nodes

(filePath: string)

Source from the content-addressed store, hash-verified

1894 * Delete a file record and its nodes
1895 */
1896 deleteFile(filePath: string): void {
1897 this.db.transaction(() => {
1898 this.deleteNodesByFile(filePath);
1899 if (!this.stmts.deleteFile) {
1900 this.stmts.deleteFile = this.db.prepare('DELETE FROM files WHERE path = ?');
1901 }
1902 this.stmts.deleteFile.run(filePath);
1903 })();
1904 }
1905
1906 /**
1907 * 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