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

Method getNodeAndEdgeCount

src/db/queries.ts:2415–2419  ·  view source on GitHub ↗

* Lightweight (nodes, edges) count snapshot. Used around an index/sync * run to compute true additions across extraction + resolution + * synthesis — the per-phase counter in the orchestrator only sees * extraction's contribution, which is why the CLI summary under-reported * the edge co

()

Source from the content-addressed store, hash-verified

2413 * the edge count (resolution + synthesizer edges were invisible).
2414 */
2415 getNodeAndEdgeCount(): { nodes: number; edges: number } {
2416 return this.db
2417 .prepare('SELECT (SELECT COUNT(*) FROM nodes) AS nodes, (SELECT COUNT(*) FROM edges) AS edges')
2418 .get() as { nodes: number; edges: number };
2419 }
2420
2421 /**
2422 * Get graph statistics

Callers 4

indexAllMethod · 0.80
syncMethod · 0.80
synthesizeCallbackEdgesFunction · 0.80

Calls 2

getMethod · 0.65
prepareMethod · 0.65

Tested by

no test coverage detected