Say I have have matched a start node and now have its id.
Next I want to find all the nodes along incoming paths to my start node that have a certain label. I don't know how "distant" nodes with that label are (but think they will be less than 20 nodes away). If there are any related nodes with that label, they will all be the same distance away.
At the moment I'm doing:
MATCH (l:`mylabel`)-[*1..20]->(start) where id(start) = 1016236 RETURN l
But I'm guessing this could potentially be wasteful and inefficient and slow.
I could do something like (in psuedo code):
for $i in (1..20) {
@ls = run_cypher("MATCH (l:`mylabel`)-[*1..$i]->(start) where id(start) = 1016236 RETURN l")
last if @ls
}
But that needs multiple separate queries and is still wasteful.
Is there a better solution?
If they're all going to be at the same depth you might do a query to find with a
LIMIT 1
and then query at that depth:and then you could use that depth to query like this:
I'd be curious to know if that performs better. Honestly since Neo4j is optimized for graph traversals it might not make a big difference, but it depends on your graph. How well is it performing now?