Hi.
I'm a beginner,
I'd like to add some entries to an edge collection I created with ArangoDB Web Interface.
the .csv file is something like:
"_from", "_to", "_key"
00001,00002, 0.1
00002,00003, 0.2
where "_from" and "_to" are strings IDs.. and _key is a percentage.
I can't import this, it gives me an "illegal document handle":
So I tried to make a document collection named "Tracks" with all the IDs, and then I created a .csv like this.."
_from", "_to", "_key"
Tracks/00001,Tracks/00002, 0.1
Tracks/00002,Tracks/00003, 0.2
but it's the same..
I want only to create a simple graph..
I have a nodes file (a list of ids) and an edge file, with two IDs per row and a percentage.
How can I do?
Thanks.