MCPcopy
hub / github.com/giancarloerra/SocratiCode / isGraphBuildInProgress

Function isGraphBuildInProgress

src/services/code-graph.ts:77–79  ·  view source on GitHub ↗
(projectPath: string)

Source from the content-addressed store, hash-verified

75
76/** Check if a graph build is currently in progress for a project */
77export function isGraphBuildInProgress(projectPath: string): boolean {
78 return graphBuildInProgress.has(path.resolve(projectPath));
79}
80
81/** Get progress details for a graph build currently in progress */
82export function getGraphBuildProgress(projectPath: string): GraphBuildProgress | null {

Callers 3

handleGraphToolFunction · 0.85
handleIndexToolFunction · 0.85

Calls 1

hasMethod · 0.80

Tested by

no test coverage detected