Does GO statement has priority over edge types when traversing edges?

23 Views Asked by At

I'm writing a query statement like this:

GO 1 steps from "10.2.29.88" OVER edge_ref,edge_attack YIELD distinct properties(edge) as v limit [10000]

Will the 10,000 edges be consistently taken from edge_ref first, or is it completely random?

1

There are 1 best solutions below

0
AudioBubble On

the priority is basically random as NebulaGraph data is partitioned.