I want to import my GraphML data to Neo4j database (version 2.0.1). The question is, how can I specify Neo4j node label in GraphML?
I tried the following to no avail:
<!--This format is used when exporting Neo4j data to GraphML-->
<node id="1" labels=":PAGE">
<data key="labels">:PAGE</data>
</node>
So, how should I format my XML so Neo4j could recognize node labels?