What's the default expansion policy in the variable expand case when using Memgraph?
When I have a query MATCH (x {id: 587})-[edge_list:Type *dfs..10]-(y {id: 963}) RETURN *;
I'm using DFS
algorithm. I explicitly tell to use DFS
.
Which algorithm is used if I omit dsf
: MATCH (x {id: 587})-[edge_list:Type *..10]-(y {id: 963}) RETURN *;
? The result is the same. Does this mean that DFS
is the default?