The structure of the serialized DataflowGraph.

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

Properties

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