interface GraphNode {
    id: string;
    label: string;
    project_ids?: number[];
    tags?: string[];
    type: string;
}

Properties

id: string
label: string
project_ids?: number[]
tags?: string[]
type: string