HI,
Confusing one here, really not sure whats happening.
As you can see below, i am only creating a from entry and a to entry in the object.
var edgesToLoad = [];
for (var j = 0; j < dataArr.length; j++) {
edge = {
from: dataArr[j][1],
to: dataArr[j][0]
}
edgesToLoad.push(edge);
}
print(edgesToLoad);
However on the output there is an ID with some random hash looking value?
Does anyone know why this is happening? or is there a way i can prevent this from happening?
EDIT Doesnt effect my how it works, still curious about why this happens?
Thanks
Peachman.