Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
08-04-2020 11:11 AM
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?
08-13-2020 03:50 AM
Can you post the result of "CALL apoc.meta.graph" ?
08-17-2020 02:51 AM
Also can you show the code that you used to create myGraph1
?
All the sessions of the conference are now available online