(projectPath: string)
| 100 | |
| 101 | /** Invalidate graph cache for a project (called by watcher on file changes) */ |
| 102 | export function invalidateGraphCache(projectPath: string): void { |
| 103 | graphCache.delete(path.resolve(projectPath)); |
| 104 | } |
| 105 | |
| 106 | /** Get a cached graph, or load from Qdrant, or build one */ |
| 107 | export async function getOrBuildGraph( |
no test coverage detected