MCPcopy Index your code
hub / github.com/tirth8205/code-review-graph / GraphNode

Interface GraphNode

code-review-graph-vscode/src/backend/sqlite.ts:54–69  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

52 | 'DEPENDS_ON';
53
54export interface GraphNode {
55 id: number;
56 kind: NodeKind;
57 name: string;
58 qualifiedName: string;
59 filePath: string;
60 lineStart: number | null;
61 lineEnd: number | null;
62 language: string | null;
63 parentName: string | null;
64 params: string | null;
65 returnType: string | null;
66 modifiers: string | null;
67 isTest: boolean;
68 fileHash: string | null;
69}
70
71export interface GraphEdge {
72 id: number;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected