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.

sebastien-ext
Node Clone
since ‎03-24-2021
‎06-01-2022

User Statistics

  • 12 Posts
  • 0 Solutions
  • 7 Kudos given
  • 0 Kudos received

User Activity

Hi everyone, I'm trying to get the result of the following query : match (n:Student)-[r:WORKS_WITH]->(m:Tutor) with collect(n.name) as studs,m return studs, collect(m.name) as tutors I have some students who works with some tutors. 1 or more student...
Hi ! I'm trying to combine the use of 2 apoc functions and I'm stuck with the use of simple/double quotes. Here is my query : CALL apoc.periodic.iterate('UNWIND $parameters as row WITH row WHERE row.RAF_ID =~ "[0-9]+" RETURN row', 'CALL apoc...
Hi ! I would like to use the apoc.periodic.iterate like this : CALL apoc.periodic.iterate('UNWIND $parameters as row WITH row WHERE row.RAF_ID =~ "[0-9]+" RETURN row', 'MERGE (c:Customer {raf_id: row.RAF_ID}) ON CREATE SET c.name = trim(ro...
Hi everyone, I'm facing difficulties with the cardinality as I try to improve my skills using Neo4j with more complex queries. Of course I already read this topic but I still don't realy understand how I can get what I want. MATCH (n:AP), (m:Custome...