having a defined hyperMorph method in my model and some polymorphic relationships in my Neo4j DB, I've tried these two lines for checking the existence of relationship but both return true , even when there is no a relation between the three nodes:
$e=$parent->function($related)->edge($hyper)->exists();
and
$e=$parent->function($related)->getEdge($hyper)->exists();
where is the problem with these two?