I have a csv file that I want to import into a graph in ArangoDB. I'm using ArangoDB3-3.1.24 community version.
Here are the first three rows of the csv file
id,_from,_to,score
1,568703.1,568703.2,282
2,568703.1,568703.31,183
3,568703.1,568703.91,238
And here is what I tried
arangoimp --file "C:\Users\M\Desktop\file.csv" --server.username root --type csv --collection "Col_edge_L"
I think I'm missing something.