mirror of
https://github.com/Steffo99/unimore-bda-5.git
synced 2024-11-21 23:54:24 +00:00
14 lines
330 B
Text
14 lines
330 B
Text
CALL gds.degree.stream(
|
|
"deps",
|
|
{
|
|
// Di default l'algoritmo conteggia gli archi uscenti di ciascun nodo; con questo parametro, il comportamento si inverte
|
|
orientation: "REVERSE"
|
|
}
|
|
) YIELD
|
|
nodeId,
|
|
score
|
|
MATCH (n)
|
|
WHERE ID(n) = nodeId
|
|
RETURN n.name AS name, score, n.description AS description
|
|
ORDER BY score DESC
|
|
LIMIT 10
|