Re: [Neo4j] export-graphml

2015-03-09 Thread Koen Kleingeld
hi michael, thanks ! The following worked for me : export-graphml -o "c:/neo4jdata/test.graphml" -r so indeed no url format, forward slashed and the -r option was required also reg koen 2015-03-09 19:09 GMT+01:00 Michael Hunger : > I think the difference is that import-graphml can read from

Re: [Neo4j] export-graphml

2015-03-09 Thread Michael Hunger
I think the difference is that import-graphml can read from an URL but as you can't write to an URL the export only supports normal path syntax. ie. "c:\neo4jdata\test.graphml" Michael > Am 09.03.2015 um 16:46 schrieb koen : > > Hi, when i perform an import-graphml it works fine but with expor

[Neo4j] export-graphml

2015-03-09 Thread koen
Hi, when i perform an import-graphml it works fine but with export-graphml i keep getting an error on the filename (w7) - neo4j-sh (?)$ import-graphml -i "file:///c:/neo4jdata/test.graphml" - ==> GraphML-Import file file:///c:/neo4jdata/test.graphml rel-type RELATED_TO batch-size 4 us

Re: [Neo4j] export-graphml

2015-02-19 Thread Michael Hunger
The browser goes an extra miles and does fetch all rels between the nodes returned in a second call Von meinem iPhone gesendet > Am 19.02.2015 um 17:57 schrieb Philip Garnett : > > Awesome thanks! I knew it would be something easy. > >> On Thursday, 19 February 2015 16:55:03 UTC, Benoît Simard

Re: [Neo4j] export-graphml

2015-02-19 Thread Philip Garnett
Awesome thanks! I knew it would be something easy. On Thursday, 19 February 2015 16:55:03 UTC, Benoît Simard wrote: > > Hi, > > You have to named your relationship and return it like this > MATCH (a)-[r:`MentionedWith`]->(b) RETURN a,r,b > > Cheers > > Le 19 février 2015 17:48:14 UTC+01:00, Philip

Re: [Neo4j] export-graphml

2015-02-19 Thread Perso
Hi, You have to named your relationship and return it like this MATCH (a)-[r:`MentionedWith`]->(b) RETURN a,r,b Cheers Le 19 février 2015 17:48:14 UTC+01:00, Philip Garnett a écrit : >I am trying to export a cypher query to a graphml file with the >following >command. > >export-graphml -t -o

[Neo4j] export-graphml

2015-02-19 Thread Philip Garnett
I am trying to export a cypher query to a graphml file with the following command. export-graphml -t -o output.graphml MATCH (a)-[:`MentionedWith`]->(b) RETURN a,b The command executes but I only get nodes... no edges/relationships. The same query in the browser works as expected. I must be m