Skip to content

Instantly share code, notes, and snippets.

View emaadmanzoor's full-sized avatar

Emaad Manzoor emaadmanzoor

View GitHub Profile
MATCH (source:Place {id: "Amsterdam"}), (destination:Place {id: "London"})
CALL gds.shortestPath.dijkstra.stream({
nodeProjection: 'Place',
relationshipProjection: {
ROAD: {
type: 'EROAD',
properties: 'distance',
orientation: 'UNDIRECTED'
}
},