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.

technerd
Node
since ‎03-09-2022
‎06-01-2022

User Statistics

  • 4 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

I have written the below query to retrieve movie title and corresponding rating : match (rvwr:Person)-[r:REVIEWED]->(m:Movie) where m.released > 2003 return m.title, avg(r.rating) as rating I understand that groupby is done implicitly fo...
I have written below three queries and trying to understand difference between all 3 of them. Query1: MATCH (person)-[r]->(otherPerson) Query2: MATCH (person)-->(otherPerson) Query3: MATCH (person)--(otherPerson) Please let me know if the...
I have written the below query to retrieve movie and corresponding rating: match (rvwr:Person)-[r:REVIEWED]->(m:Movie) where m.released > 2003 return m.title, sum(r.rating)/count(r) as rating I want to confirm if there is a need to use a...