mirror of
https://github.com/Steffo99/unimore-bda-5.git
synced 2024-11-21 23:54:24 +00:00
11 lines
182 B
Text
11 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
|