I want to get all outbound links associated with an item. What is the way to achieve this in collaborative projects. In fact, I tried something like this, but it gives the result for both outgoing and incoming.
paper.findViewByModel(start).options.inbound=true;
alert(graph.getConnectedLinks(start));
source
share