I currently have this query that is taking too long to run on my personal computer. I am just using Neo4j Desktop.
call apoc.periodic.iterate('match(c:Channel)
with c
match(p:Pulse_interaction)
where p.pulse_interaction_id = c.pulse_interaction_id
se...