1
Fork 0
mirror of https://github.com/Steffo99/unimore-bda-5.git synced 2025-02-16 16:23:56 +00:00
bda-5-steffo/scripts/1-page-rank.cypher

12 lines
182 B
Text
Raw Normal View History

2023-05-09 04:51:31 +02:00
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