In neo4j, I need to find a route between A and every other node in my collection, where all routes have paths which are "twowheeler" (path type) and have property summer set to true.
How can I do that in neo4j database?
I tried something similar to answer from THIS thread, but it doesn't work for me.
START a=node(1)
MATCH p=(a)-[r:twowheeler*..]-()
WHERE has(r.summer) and r.summer='true'
RETURN p;