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.

Minyall
Node Link
since ‎09-17-2019
‎06-01-2022

User Statistics

  • 7 Posts
  • 0 Solutions
  • 5 Kudos given
  • 0 Kudos received

User Activity

Main query Is it possible to either... a) Aggregate parallel relationships on an existing GDS graph projection after it has been created.b) Create a new graph projection using the content of an existing one? Why? I have a projected graph... CALL gds....
I'm trying to run this query, which is based on the sample code given on the docs for degree centrality CALL gds.alpha.degree.write({ nodeQuery: 'MATCH (n:USER)-[:COLLECTED_AT_STEP]->(:STEP {step_val:1}) RETURN id(n) as id', relationshipQuery:'MATC...
I've managed to solve my issue but in a way that seems not particularly efficient. 'CALL apoc.periodic.iterate('UNWIND $batch as row RETURN row', 'MATCH (s:STORY), (t:ISSUE) WHERE s.id = row.id AND t.id = row.cat_id CREATE (s)-[r:IS_TAGGED_WITH]->(t...