I'm trying to import csv files using the neo4j-admin import according to the tutorial (Neo4j-admin import - Operations Manual) and it works until I import just the nodes. But when I add a table with relationships like this:
bin/neo4j-admin import  
  --nodes="import/headers-maintainers.csv,import/maintainers.csv" 
  --nodes="import/headers-organizations.csv,import/organizations.csv" 
  --nodes="import/headers-projects.csv,import/projects.csv" 
  --nodes="import/headers-buckets.csv,import/buckets.csv" 
  --nodes="import/headers-tables.csv,import/tables.csv" 
  --nodes="import/headers-configurations.csv,import/configurations.csv" 
  --relationships="import/headers-relations.csv,import/relations.csv"
It fails with Missing header of type START_ID, among entries [:START_ID;:END_ID;:TYPE] which sounds weird on itself. I tried to change the headers file to: start:START_ID;end:END_ID;:TYPE and even: START_ID;END_ID;:TYPE but it is still the same. What am I missing?
I use neo4j version 3.5.12.
 
         The error is in the
 The error is in the