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.

adrian_oramus
Node Link
since ‎06-18-2019
‎12-06-2022

User Statistics

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

User Activity

Hi. Im new to neo. I am struggling with the logic using for each. I have two queries that I want two merge. First: CALL spatial.withinDistance('hikes',{lat:60.4274, lon:5.3397}, 10) yield node, distance return id(node), distance, node.gpx_name limit ...
The question is, how to place the hikes data saved in gpx file into neo4j using spatial functions. I can easily extract the data from gpx files, parse them but then... how do I model the data structure in neo ? I dont want to make a mess in the datab...
I am working on collaborative filtering which has implemented jaccard index in it. I have managed to get it working for user-user: MATCH (c1:user)-[r]->(u:user)<-[r]-(c2:user) WHERE c1 <> c2 AND c1.UserId = {UserId} ...
I want to trigger the AWS lambda when one of node properties in neo4j database changes. Do you have an idea how to approach this ?