If we have the following graph:
And the following query:
MATCH (me)-[:KNOWS*1..2]-(remote_friend)
WHERE me.name = 'Filipa'
RETURN remote_friend.name
Is "Dilshad"
guaranteed to be returned before "Anders"
, in other words, is :KNOWS*1..2
guaranteed to be traversed in BFS manner?