MATCH p = (:Account)-[:friend_of*1..4]-(:Account) WITH p AS p UNWIND(relationships(p)) AS e WITH p AS p, e AS e WHERE e.verified = true WITH p AS p, count(e) AS verified WHERE verified = length(p) RETURN p
Hi Roy.
Thank you.
Your query returned timeout after ~40 sec. After restarting the machine it did not return any result.
The database has very few records: ~3,000 nodes and twice the edges.
Why is it taking so long…
Can it be an infinite loop inside?
Thanks
Avi