mirror of
https://github.com/Steffo99/unimore-bda-5.git
synced 2024-11-22 16:14:24 +00:00
15 lines
330 B
Text
15 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
|