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.

a10554
Graph Buddy
since ‎05-16-2020
‎06-01-2022

User Statistics

  • 47 Posts
  • 2 Solutions
  • 5 Kudos given
  • 10 Kudos received

User Activity

Is Machine Learning (ML) a type of problem that can be treated 100% in a graph? In the book "Graph Algorithms" by Mark Needham, at chapter "Using Graph Algorithms to Enhance ML", data stored in neo4j is read to spark using the createDataFrame method ...
Hi, i need to find circular paths. I've started with this query thats gives me the 1st circular path and is working ok. MATCH (g1:Perception_Group)-[s1:SEQUENCE]-(g2:Perception_Group)-[s2:SEQUENCE]-(g3:Perception_Group)-[s3:SEQUENCE]-(g4:Perception_G...
Hi Guys, i have this query that outputs what is in the attached picture. I will connect the two "Generalization" nodes (green ones) but i want to add a "strenght" property to the new relationship with the number of connections between the "Perception...
Hello guys, i have several graphs with the same structure (one central node called Perception_Group and several peripheric nodes called Perception). I need to compare Perception_Groups (PGs) by measuring distance of values in their peripheric percept...
Hello again guys, with this query i get a list of nodes ordered by date. I need to create a relationship named "SEQUENCE" between each result, so the 1st is connected to the 2nd, the 2nd to the 3rd and so on. How can i do that just by using cypher ? ...