Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
3.3.9, 3.4.4
-
None
Description
Edge is currently deserialized as:
new g.Edge( this.reader.read(value['id']), this.reader.read(value['outV']), value['label'], this.reader.read(value['inV']), this.reader.read(value['properties']) );
Expecting outV and inV as a nested element.
When the actual format is:
new Edge( this.reader.read(value['id']), new Vertex(this.reader.read(value['outV']), this.reader.read(value['outVLabel'])), value['label'], new Vertex(this.reader.read(value['inV']), this.reader.read(value['inVLabel'])), this.reader.read(value['properties']) );