I am trying to load nodes and its relations from csv file using neo4j bulk importer my script like this
neo4j-admin import \
--id-type=string \
--nodes:AGENT="nodes_AGENT_C_20190610.csv" \
--nodes:CUSTOMER="nodes_CUSTOMER_C_20190610.csv" \
--relationships:CASHOUT="relcashoutTest-header.csv,relcashoutTest.csv"
and my csv file like this for relationship files
:TYPE,:START_ID(CUSTOMER),:END_ID(AGENT),TXNID:string,TIMESTAMP:datetime,AMOUNT:int,CHANNEL
Here TYPE indicates the column named RELATIONSHIP and my relational csv file look like this
CASHOUT,abc,xyz,6C19MX7DXL,2019-03-01T11:02:55,40,charge
CASHOUT,pqr,jkl,6C19MX7E2V,2019-03-01T11:02:57,10,charge
after running my import.sh script I am getting bellow error unexpected error: Group 'CUSTOMER' not found. Available groups are: []
I have gone through the document but didn't figure it out my mistakes. Any help will be appreciated neo4j version is 3.5.8