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

Method setMetadata

src/db/queries.ts:2485–2489  ·  view source on GitHub ↗

* Set a metadata key-value pair (upsert)

(key: string, value: string)

Source from the content-addressed store, hash-verified

2483 * Set a metadata key-value pair (upsert)
2484 */
2485 setMetadata(key: string, value: string): void {
2486 this.db.prepare(
2487 'INSERT INTO project_metadata (key, value, updated_at) VALUES (?, ?, ?) ON CONFLICT(key) DO UPDATE SET value = excluded.value, updated_at = excluded.updated_at'
2488 ).run(key, value, Date.now());
2489 }
2490
2491 /**
2492 * Get all metadata as a key-value record

Callers 2

indexAllMethod · 0.80
upgrade.test.tsFile · 0.80

Calls 2

runMethod · 0.65
prepareMethod · 0.65

Tested by

no test coverage detected