Neo v4.4
I have a stream of data that is rapidly inserting arrival relationships with the following query:
MATCH (s:station), (t:train) WHERE s.locationid=$arrLoc AND t.trainid=$trainID
MERGE (t)-[a:arrival { planneddeparturetime:$planDepTime }]->(s)...