feat(graph): add parent field to GraphNode TypeScript interface

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
openclaw 2026-03-24 08:58:39 +00:00
parent aa8d495a92
commit ca9f199d53

View File

@ -34,6 +34,7 @@ export interface GraphNode {
label: string
status: string
group_id: string
parent: string | null
}
export interface GraphEdge {