interface CollectionGraphManipulation {
    clone(): CollectionReturnValue;
    copy(): CollectionReturnValue;
    move(location: {
        source?: string;
        target?: string;
    }): cytoscape.EdgeCollection;
    move(location: {
        parent: null | string;
    }): cytoscape.NodeCollection;
    remove(): CollectionReturnValue;
    restore(): CollectionReturnValue;
}

Hierarchy (view full)

Methods