ArcadeDB Version: 21.10.2-SNAPSHOT (build ae608bf/1633588344745/main)
OS: docker
For this query:
MATCH (m:Movie{title:'The Polar Express'})<-[e:ACTED_IN]-(v:Person) RETURN e, v
Expected behavior
The edge property 'roles' should be a properly formed array, as is shown here from Neo4J's view of the import:

Actual behavior
The quotes are missing, making the array unparsable:
"roles": "[Hero Boy, Father, Conductor, Hobo, Scrooge, Santa Claus]"
I've confirmed arrays can be created and returned successfully via parameterized inserts, so I suspect this is a bug in the import code. Could be wrong, though!
ArcadeDB Version: 21.10.2-SNAPSHOT (build ae608bf/1633588344745/main)
OS: docker
For this query:
MATCH (m:Movie{title:'The Polar Express'})<-[e:ACTED_IN]-(v:Person) RETURN e, vExpected behavior
The edge property 'roles' should be a properly formed array, as is shown here from Neo4J's view of the import:

Actual behavior
The quotes are missing, making the array unparsable:
"roles": "[Hero Boy, Father, Conductor, Hobo, Scrooge, Santa Claus]"I've confirmed arrays can be created and returned successfully via parameterized inserts, so I suspect this is a bug in the import code. Could be wrong, though!