Browser:
Bloom/NeoDash:
match (n:Tank {Name:'T0103'} )
match (m:Tank {Name:'T0805'} )
match path=allshortestpaths((n)-[r:CanTransfer*]->(m))
WHERE ALL(x in nodes(path) where x.Enabled = True )
return path
Why do I get a different result in NE4J browser for the same query, compared to Bloom and NeoDash?
Looks like direction is not taken in account and why do I see other relationships type the 'CanTransfer'
Node T0103Circ shouldn't be in the path.
Bloom shows it correctly but the browser not. ( in terms what I expect)