interface NodeCollectionTraversing {
    connectedEdges(selector?: string): cytoscape.EdgeCollection;
    edgesTo(eles: string | CollectionArgument): cytoscape.EdgeCollection;
    edgesWith(eles: string | CollectionArgument): cytoscape.EdgeCollection;
    incomers(selector?: string): CollectionReturnValue;
    leaves(selector?: string): cytoscape.NodeCollection;
    outgoers(selector?: string): CollectionReturnValue;
    predecessors(selector?: string): CollectionReturnValue;
    roots(selector?: string): cytoscape.NodeCollection;
    successors(selector?: string): CollectionReturnValue;
}

Hierarchy (view full)

Methods