Description
In MySQL world, one can create an SQL file and execute it from the command line.
mysql -h hostname -u user database < path/to/sqlfile.sql
This is especially useful for test data.
I've checked the Arangodb documentation and the best I can see for putting in test data is this from the cookbook
https://docs.arangodb.com/3.2/Cookbook/AQL/CreatingTestData.html
Please is it possible to write an aql file and execute it in the command line like with MySQL?