The structure of the serialized DataflowGraph.

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

Properties

edgeInformation: [NodeId, [NodeId, DataflowGraphEdge][]][]
rootVertices: NodeId[]
sourced?: string[]
vertexInformation: [NodeId, DataflowGraphVertexInfo][]