In fig1, I would like to retrieve all the 3rd level connections for person "A" using the query
match (p:Person {name: "A"})-[:FRIENDS_WITH*3]->(p2:Person) return p2
and the output returned is none, which is correct.
But, when I execute the same quer...