Hello,
I’m using Rust driver to connect to Memgraph instance and execute multiple MATCH / CREATE queries.
Is there any way I can execute multiple queries with method:
connection.execute_without_results ?
In other words - I dont want a sequence of queries like:
connection.execute_without_results(query1)
connection.execute_without_results(query2)
connection.execute_without_results(query3)
But rather:
connection.execute_without_results(query1;query2;query3)
I have also noticed it works for MERGE queries like:
MERGE (:Node) MERGE (:Node1) MERGE (:Node2) MERGE (:Node3)
But I also need other MATCH queries ( like create relations ).
Regards,
Matt