Hi there,
I am trying to import a large dataset consists of 8 CSV files using admin import but I am facing difficulty on how to create relationships among them.
Here is the explanation of the CSV files.
Addresses.csv. consists of two columns
addID, address
users.csv addID, userID.
Transaction.csv
txID, blockID,n_inputs, n_outputs
Incoiming Transaction.csv
txID, addID, value.
Outcoming Transaction.csv
txId, addID, value.
Hash Transaction.csv
txID, hash
Transaction Time.
txID, unixtim
Balances.csv
addID, balance
I want to create relationships among them based on the addID and txID exist in each file.
Note that, I create a header of each file in a separate CSV file. I was able to successfully create the addresses and users relationship using:
Sorry for late reply, Thank you for replying me
I have already successfully loaded the files into neo4j by assigning the files that contain the primary keys in the node and the files contain foreign keys in the relationship.
I first match the files that have only addID and txID with the files that have primary keys in the node using Emeditor, then i used the following codes to process the data.