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.

IchsanALi
Node Link
since ‎07-30-2022
‎08-16-2022

User Statistics

  • 26 Posts
  • 0 Solutions
  • 1 Kudos given
  • 0 Kudos received

User Activity

I have data: upload data : load csv with headers from "file:///data_latihan.csv" as rowmerge(v:Character{name: row.source})merge(t:Character{name: row.target})with v, t, rowcall{with v, t, rowwith v, t, rowwhere row.Relasi = 'Mentions'merge(t)-[:MEN...
CALL gds.graph.list() YIELD nodeID, nodeCount, relationshipCount, density where nodeID = '3' RETURN nodeCount, relationshipCount, density   Neo.ClientError.Statement.SyntaxError Unknown procedure output: `nodeID` (line 2, column 7 (offset: 29)) "...
CALL gds.degree.stream('mysna') YIELD nodeId, score where row.source= 'aniesbaswedan' RETURN gds.util.asNode(nodeId).name AS name, score AS followers ORDER BY followers DESC, name DESC limit 100 Neo.ClientError.Statement.SyntaxError Variable `row...
How to make a graph according to Betweenness Centrality. color chart only for some of the highest Betweenness Centrality values? CREATE(alice:User {name: 'Alice'}),(bob:User {name: 'Bob'}),(carol:User {name: 'Carol'}),(dan:User {name: 'Dan'}),(eve:Us...
CALL gds.graph.project('mytesis1', 'Character', ['MENTIONS|TWEET|REPLIES_TO'])   Neo.ClientError.Procedure.ProcedureCallFailed Failed to invoke procedure `gds.graph.project`: Caused by: java.lang.IllegalArgumentException: Invalid relationship pro...
Kudos given to