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

Method setMetadata

src/db/queries.ts:2865–2869  ·  view source on GitHub ↗

* Set a metadata key-value pair (upsert)

(key: string, value: string)

Source from the content-addressed store, hash-verified

2863 * Set a metadata key-value pair (upsert)
2864 */
2865 setMetadata(key: string, value: string): void {
2866 this.db.prepare(
2867 'INSERT INTO project_metadata (key, value, updated_at) VALUES (?, ?, ?) ON CONFLICT(key) DO UPDATE SET value = excluded.value, updated_at = excluded.updated_at'
2868 ).run(key, value, Date.now());
2869 }
2870
2871 /**
2872 * Get all metadata as a key-value record

Callers 4

indexAllMethod · 0.80
syncMethod · 0.80
upgrade.test.tsFile · 0.80
sync.test.tsFile · 0.80

Calls 2

runMethod · 0.65
prepareMethod · 0.65

Tested by

no test coverage detected