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.

Slawomir_Jaros
Node Link
since ‎10-05-2020
‎06-01-2022

User Statistics

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

User Activity

I have many long term requests like: MATCH (tx: Survey {uuid: {Id}}), (p: Person {personId: {personId}}), MATCH (d: Day {day: {day}}) MATCH (rs: Result {ResultId: {resultId}, isActual: true}) CREATE (ex: SurveyResult) CREATE (ex)-->(rs) CREATE (e...
HI, I need to reverse the relation on 10 million objects what the script should look like using apoc.periodic.iterate <MATCH (n:Reservation)-[rel:has]->(p:Person) CALL apoc.refactor.invert(rel) yield input, output RETURN input, output/> Important! I ...
Hi, I have a graph (attached picture), how to write an optimal and the best query that retrieves me all of graph with all nodes, assuming that the number of questions and answers may of course be different. Additional question, does it make sense t...