I create a relationship as the following in Neo4php
$src->relateTo($dst, 'FRIENDS')
->setProperty('duration', '5')
->save();
I want the relationship be undirected not directed. If I am not wrong we can do this in Cypher
create n-[:FRIENDS]-m
vs
create n-[:FRIENDS]->m
How about in Neo4jphp? Can we set "relateTo" to a bi-directional relationship?