I have an array of 1000 cypher (neo4j) queries (in string form).
when I loop (for loop, individual values) through this array in session, all queries are going in sequence. Though I receive 1000 results back also, however, the result of order is changed.
how can I synchronize them so that I get a result in the order, as the queries in an array?
...............................................
for example a =[t1,t2,t3,t4...]
the result from cypher can be in any order say t2,t1,t4,t3
I want the result in same t1, t2, t3, t4 manner
Any suggestion, please?