Type Alias TaskGraph

{
* edges: [
* {
* attrs: {
* "depth": 1
* },
* source: "22222222-2222-2222-2222-222222222222",
* target: "11111111-1111-1111-1111-111111111111"
* }
* ],
* taskId: "11111111-1111-1111-1111-111111111111",
* vertices: [
* {
* attrs: {
* "depth": 0,
* "isChild": false,
* "isParent": true
* },
* taskId: "11111111-1111-1111-1111-111111111111"
* },
* {
* attrs: {
* "depth": 1,
* "isChild": true,
* "isParent": false
* },
* taskId: "22222222-2222-2222-2222-222222222222"
* }
* ]
* }
type TaskGraph = {
    edges?: TaskGraphEdge[];
    taskId?: string;
    vertices?: TaskGraphVertex[];
}
Index

Properties

edges?: TaskGraphEdge[]
taskId?: string
vertices?: TaskGraphVertex[]