You can use the
neo4j-shell utility (under windows is
Neo4jShell.bat), it's included in every neo4j installation.
Use livecode to create a series of commands, then puts all commands in a file, for example
mycommands.cql.
then you can use:
Code: Select all
put shell("neo4j-shell -file mycommands.cql") into myresult
Myresult variable will contain any output of the launched commands. Remember to indicate the correct path to neo4j-shell (example: /home/max/downloads/neo4j/bin/neo4j-shell -file mycommands.cql )
For more information:
http://neo4j.com/docs/2.1.6/shell-starting.html