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.

rgerster99
Node
since ‎09-27-2022
‎10-09-2022

User Statistics

  • 2 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hello, I am trying to modify the Java hello world example found here https://neo4j.com/developer/java/. I changed the query to a query such as the one below (I tested that it works): MATCH (me:User{id:'220'})-[r:RATED]-(m)WITH me, avg(r.rating) AS av...
Hey,I accessed the guide on https://guides.neo4j.com/sandbox/recommendations and found a way to get similair users to myself.The full query is: MATCH (p1:User {id:"220"})-[x:RATED]->(movie:Movie)WITH p1, gds.alpha.similarity.asVector(movie, x.rating)...