0

I am trying to run four statements in one query to the database. It gives me an error message saying only one statement per query is possible.

Is this possible with Drivine using Neo4j? If it is a setting, where can I find it and what value does it need?

Nils
  • 520
  • 7
  • 15

1 Answers1

1

The database client, in this case Drivine, is not really relevant here because this is a limitation of Neo4j and its drivers.

To run multiple statements in just one query there are two options that come to my mind:

zirkelc
  • 1,451
  • 1
  • 23
  • 49
  • Ah, I figured they would have it supported considering the "allow running multiple queries" option has been in the neo4j browser for many years. Thank you for your answer – Nils Jul 14 '22 at 11:07