mirror of
https://github.com/Steffo99/unimore-bda-5.git
synced 2024-11-22 16:14:24 +00:00
12 lines
182 B
Text
12 lines
182 B
Text
|
CALL gds.pageRank.stream(
|
||
|
"deps",
|
||
|
{}
|
||
|
) 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
|