jexp / neo4j-shell-tools

A bunch of import/export tools for the neo4j-shell
288 stars 55 forks source link

export-graphml problem on property with array of string with : inside #85

Open robyinno opened 8 years ago

robyinno commented 8 years ago

Now we have another problem inside the file generated by export-graphml -t -r -o we have the node property options with this string: [piccolo:Piccolo, medio:Medio, grande:Grande, gigante:Giant] and on the .graphml file we have this: <data key="options">[Ljava.lang.String;@153dd4fd</data> So look like that a node propriety with a string like this [piccolo:Piccolo, medio:Medio, grande:Grande, gigante:Giant] generate a Java exception.

robyinno commented 8 years ago

The property "options" it's an array of string.

"options": [
                    "piccolo:Piccolo",
                    "medio:Medio",
                    "grande:Grande",
                    "gigante:Giant"
                  ]

Every string "piccolo:Piccolo" have character : inside ( useful for us)

yourpalal commented 8 years ago

Array properties are not currently supported in graphml export, see #44 for progress and discussion.

vipul1994 commented 6 years ago

Are array properties supported while exporting to csv using cypher-import?