How to get no.of links at a given point(position)?

I have mouseEnter binding on edges to achieve that… For that, I am getting the edge location using “item.points.first()” and simulating the mouse enter behaviour by calling robot.mouseMove. But at some places I’ve links overlapping… Because of that mouseEnter event is getting triggered on same link always.

So is there a way to identify, how many links are there at a given point. So that I can go to next point and do robot.mouseMove

The Diagram.findPartsAt method will allow you to find a list of Parts at a given document point. You could then filter the list to just Links.