using neo4j I'm trying to find max depth in this graph:
Using this query I find deph value 20 (because I have this bidirectional relationship):
MATCH p=(u:User)-[:Amico*]->(f:User)
RETURN p, length(p) order by length(p) desc limit 1
How can I have the true value of this depth?