I am new to neo4j and have "0" coding background (although trying to learn some). I understand the basic functionalities and am also able to import nodes and relationships using LOAD CSV. However, I absolutely can not make the neo4j-admin import tool work.
I created a new database, included the simplest CSV file in the import folder and tried the following (I will have to explain in the most simple terms - so don't laugh :))
Name of the file is test.csv Content;
PropertyTest,:LABEL proptest,TEST
- I tried running the neo4j-import file by trying to open it. A black screen opens up and immediately disappears.
- I tried ---> bin/neo4j-admin import --id-type=STRING \ --nodes:TEST=test.csv \ --nodes="test.csv" \
Could someone please explain to me with the simplest terms what the steps would be to import this?
Thank you.
PropertyTest,:LABEL
and the second should beproptest,TEST
Also, you only need the --nodes switch once per CSV. Since you have the label in your file, this should be all you need to executebin/neo4j-admin import --nodes=test.csv
. Please let me know if that runs successfully – hoyskineo4j-admin import --nodes=..\test.csv
– hoyski