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.

agafonovlelik
Node
since ‎01-26-2020
‎06-01-2022

User Statistics

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

User Activity

I need to assign values to a parameter in the path loop. Simplistically it's like this MATCH p=(start:PORTS {N_ID: "180992417"})-[r*1..10]-(end:PORTS {N_ID: "12645867"}) with p, "1" as agg foreach (rel In relationships(p) | SET agg=123) RETURN * LIMI...
I need to assign a value to a variable in the all predicate, how do I do this? I want approximately the following MATCH p=(start:PORTS {N_ID: "180992417"})-[r*1..10]-(end:PORTS {N_ID: "12645867"}) with p, null as AGG WHERE ALL(rel In r WHERE type(rel...
I need to build a short route with three different link conditions. For example, the first condition is the connection between nodes: (:n) - [:r] - (:n) is direct. The second condition is that the connection between nodes goes through an intermediate...