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.

igorgoldstein94
Node
since ‎12-17-2019
‎06-01-2022

User Statistics

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

User Activity

Hello, everyone! I want to know how many relationships does a query return when there are two MATCH patterns, and I couldn't figure out how to do it. For example: MATCH (a)-[r1]->(b), (c)-[r2]->(d) WHERE a.name <> d.name AND b.region = c.region AND a...
Hello! I have a problem when using count for a match pattern with two relationships. For example: MATCH (a)-[r1]->(b)-[r2]->(c) WHERE a.name = c.name AND a.name <> b.name RETURN DISTINCT a.name AS origin, b.name AS middle, c.name AS destination, ...