neo4j-contrib / neo4j-graph-algorithms

Efficient Graph Algorithms for Neo4j
https://github.com/neo4j/graph-data-science/
GNU General Public License v3.0
769 stars 195 forks source link

Is it possible to see each relationship's weight value after running PageRank? #856

Open mading0817 opened 5 years ago

mading0817 commented 5 years ago

For example the sample on the neo4j official website: image https://neo4j.com/docs/graph-algorithms/current/algorithms/page-rank/

After the query CALL algo.pageRank('Page', 'LINKS', {iterations:20, dampingFactor:0.85, write: true,writeProperty:"pagerank"}) YIELD nodes, iterations, loadMillis, computeMillis, writeMillis, dampingFactor, write, writeProperty

I got the following result: image

Is there any ways to find out each LINKS's weight value?

Thanks