interface DataflowGraphJson {
    edgeInformation: [NodeId, [NodeId, DataflowGraphEdge][]][];
    rootVertices: NodeId[];
    vertexInformation: [NodeId, DataflowGraphVertexInfo][];
}

Properties

edgeInformation: [NodeId, [NodeId, DataflowGraphEdge][]][]
rootVertices: NodeId[]
vertexInformation: [NodeId, DataflowGraphVertexInfo][]