从MySQL迁移到Neo4j

I am trying to build a PHP application for migrating data from MySQL to Neo4j.

  1. What are the best possible ways to approach towards the above mentioned goal?

  2. Is there any way to acess Neo4j shell by PHP? Suppose I want to execute this command as mentioned by Bruggen in this blog to import csv files into neo4j, can I execute it in my PHP code?

Use the Neo4jPHP driver from Josh Adell, there are also sample projects listet on

http://neo4j.org/develop/php

I think there are no built-in ways to access the shell from Neo4jPHP but if you can use its http facilities, you can do something like I did here.