I'm currently trying to also select the child edges and child nodes, when selecting a node. I tried the following function:
cy.on('tap', 'node', function(event){
this.outgoers().select();
}
But it seems that i can't get it to work with 'tap'. I also tried with 'select' which does work, but all the child nodes until the leaves are selected (which was expected).
Is there a way to implement this with 'tap' or can the recursive calls from 'select' be limited somehow?
Thanks in advance