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.

racket8484
Node Clone
since ‎03-09-2019
‎06-01-2022

User Statistics

  • 14 Posts
  • 0 Solutions
  • 12 Kudos given
  • 3 Kudos received

User Activity

Hello again! I have a relatively simple problem I can't figure out. I'm trying to "merge" relationships over from one node to another node with relationships of its own; Ideally, if the below worked I'd be in the clear but I get "variable r2 already ...
Hi I've been struggling for awhile trying to upload transactions to Neo4j. I have 1 list of "from" addresses, another list of "to" addresses, and a third list of "values". I want to draw a single relationship from an index in the "from" list to the ...
Hello! Is there a way to create lots of nodes at once using a loop? For example, making calls from the JavaScript driver (code is reduced): let session = driver.session() for (i=0; i<100; i++){ create_node(i) } function create_node(counter){ ...
Hi again! I was having issues trying to return multiple variables with the JS driver (returning both a & b in a single statement) const drug = await session.run('MATCH (a:thing1 {id: $id}) MATCH (b:thing2 {id: $id}) CREATE (a)-[r:$rel {weight: $weig...
Kinda related to my last post, but when I try this call: MATCH (m:Drug {id: 'A'})-[:CONTAINS*2..2]-(neighbors) return neighbors.id, collect(r1.weight) as weight order by weight desc I get this error: Neo.ClientError.Statement.SyntaxError: Type mism...