Hi there,I'm new with neo4j and looking for a way to find a list of shortest paths between 2 nodes.
(:Article { id: 1 })
(:Article { id: 2 })
(:Article { id: 3 })
(:Article { id: 4 })
(:Article { id: 5 })
MATCH(a:Article), (b:Article)
WHERE a.id =...