Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
10-08-2018 10:54 PM
Previously working Louvain queries no longer work on new graph algo version 3.4.7.0 (Using Neo4j version 3.4.0.1). Here is the error:
Neo.ClientError.Statement.SyntaxError: Unknown procedure output: community
(line 7, column 14 (offset: 257)) "YIELD nodeId,community"
Doesn't seem to understand how to yield 'community' anymore.....
10-09-2018 02:12 AM
You can check the signature of procedures and functions to see what variables can be yielded:
call dbms.procedures() yield name, signature
where name contains 'louvain'
return *
Looking at the signature for algo.louvain.stream(), it looks like 'communities' is the variable yielded.
10-09-2018 03:19 PM
Or just CALL algo.list('louvain')
10-09-2018 03:19 PM
This is a regression, the "community" field should still be there.
10-09-2018 06:16 PM
"algo.louvain.stream" "algo.louvain.stream(label = :: STRING?, relationship = :: STRING?, config = {} :: MAP?) :: (nodeId :: INTEGER?, communities :: LIST? OF INTEGER?)"
Actually, it now appears to be "communities" instead of previous "community"
10-10-2018 07:58 AM
We'll change it to be backwards compatible.
All the sessions of the conference are now available online