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.

james_irvin
Node
since ‎10-04-2020
‎06-01-2022

User Statistics

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

User Activity

I am trying to populate the neo4j database from Kafka using a connector so the person node will constantly be created. I am trying to create a relationship between Person nodes if the timestamp is the same. MERGE (n:Person{age: event.age, gender:even...
I have the following code <"MERGE (a:Person{id: abc.id}) MERGE (b:Place{id:def.id}) MERGE (c:event{id:abcd.id}) MERGE (a)–[:was_at]->(b) MERGE (a)–[:is]->(c) MERGE (c)–[:took_place_at]->(b)"> I wish to create the node a only if the id does not alread...