Type Alias GraphSpecBeta

GraphSpec: {
    edges: EdgeSpec[];
    nodes: Entity[];
    workspace_item?: Entity;
}

Type representing the specification of a graph.

Type declaration

  • Betaedges: EdgeSpec[]

    The edges connecting the nodes in the graph.

  • Betanodes: Entity[]

    The nodes (entities) in the graph.

  • Optional Betaworkspace_item?: Entity

    Optional workspace item associated with the graph.