Hi everyone,
I am trying to import big csv files to create my graph, because of that I am using the "neo4j-admin-import" tool. According to the oficial INFO the common command is like
bin/neo4j-admin import --database=neo4j
--nodes=Label1=import/Entity1_header.csv,import/Entity1.csv
--nodes=Label2=import/Entity2_header.csv,import/Entity2.csv
--relationships=import/RELA1_header.csv,import/rela1.csv
I do not understand why the command allows to invoke several "nodes=" attribute but only one "relationships=" attribute.
How can import different relationhisps with differents properties??.
Using one relationship header file, limit the properties of the relationships to that header file. but What happened if I have to import differrent relationships with different set of properties.?
Example: Relationship1 -> [trid:int] -> TYPE: TRANSACTION
Relationship2 -> [createdAt:date] -> TYPE: PAYMENT_METHOD
Thanks for all