MATCH (a:Artifact{gav:'org.slf4j:slf4j-api:1.7.21'})
WITH id(a) AS startNode
CALL gds.alpha.dfs.stream('myGraph1', {startNode: startNode})
YIELD path
UNWIND [ n in nodes(path) | n.gav ] AS tags
RETURN tags
ORDER BY tags
I run this cypher on my local db.
The result set should be huge, like near 1M.
But I only get 11 results back.
Why like this?