cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

Why the Betweenness Centrality algorithm can't YIELD "score"?

Dear community,

I try to run Betweenness Centrality algorithm from doc below

CALL gds.alpha.betweenness.stream('myGraph')
YIELD nodeId, score
RETURN gds.util.asNode(nodeId).name AS name, score
ORDER BY name ASC

and get error

what may causing the error?

1 ACCEPTED SOLUTION

Can you try to upgrade your database to 4.1.1? You will have to upgrade GDS (1.3.2) and APOC (4.1.0.2) as well.

View solution in original post

4 REPLIES 4

Hello @yevheniy.derykot

Which version of Neo4j and APOC are you using?

Regards,
Cobra

Neo4j 4.0.4

APOC
4.0.0.11

gds.version
1 "1.2.1"

Can you try to upgrade your database to 4.1.1? You will have to upgrade GDS (1.3.2) and APOC (4.1.0.2) as well.

Everything works, thank you