i have gml
file read java in eclipse , want know how store result of code below in neo4j
:
tinkergraph graph = new tinkergraph(); gmlreader gml= new gmlreader(graph); gml.inputgraph("/home/salma/desktop/celegansneural.gml");
you can import graphml , other formats neo4j shell of following: https://github.com/jexp/neo4j-shell-tools
then open shell , use command:
import-graphml -it /home/salma/desktop/celegansneural.gml
the -t option tells import node labels well.
Comments
Post a Comment