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.

billxu
Node
since ‎02-04-2023
‎02-06-2023

User Statistics

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

User Activity

Hello I am using cypher below to find name of nodes from A to B, and attach the id of path to them. MATCH p = (n1:A)-[*]->(n2:B) WHERE not(exists((n2)-[]->(:B))) UNWIND nodes(p) AS n3 RETURN n1.name, n3.name, reduce(x = '0', y IN nodes(p) | x + '_' +...