Re: [Neo4j] Trouble with Exclude and Continue in Traversal

2011-04-08 Thread Tobias Ivarsson
That stack trace looks unrelated. >From the looks of that stack trace you are trying to connect to a closed port, i.e. the server isn't running. Cheers, Tobias On Fri, Apr 8, 2011 at 5:41 PM, Brendan Cheng wrote: > Hi, > > I wrote a Traversal Description which runs quite well but not after > a

[Neo4j] Trouble with Exclude and Continue in Traversal

2011-04-08 Thread Brendan Cheng
Hi, I wrote a Traversal Description which runs quite well but not after adding a timestamp check to filter the older nodes. It crashed. I used a Exclude and Continue in the evaluator as follow: Traversal.description().order(Traversal.postorderBreadthFirst()).evaluator( new Evalu

Re: [Neo4j] newbie: graph visualization

2011-04-08 Thread Michael Hunger
Hi Nacho, you use an index for that Index index = graphDb.index().forNodes("indexName"); index.add(node, "name", "Morpheus"); // "Morpheus" or just node.getProperty("name") then later you get the same index and do Node node = index.get("name","Morpheus").getSingle(); Node node2 = index.get("na

Re: [Neo4j] newbie: graph visualization

2011-04-08 Thread Nacho Caballero
Thanks guys. I'm still trying to get my bearings. I also have another question (tell me if I should create a new thread for this). I parsed a text file and created a series of nodes. Now I want to parse another related file and add the relationships between the nodes I created from the previous fi

Re: [Neo4j] newbie: graph visualization

2011-04-08 Thread Jim Webber
Hi Nacho, I use Neoclipse on OSX 10.6 all the time, works fine. Jim On 8 Apr 2011, at 15:40, Michael Hunger wrote: > Neoclipse is a standalone application. The name is only a reminder that it is > build with eclipse RCP technologies. > > Have fun > > Michael > > > Am 08.04.2011 um 16:25 sc

Re: [Neo4j] newbie: graph visualization

2011-04-08 Thread Michael Hunger
Neoclipse is a standalone application. The name is only a reminder that it is build with eclipse RCP technologies. Have fun Michael Am 08.04.2011 um 16:25 schrieb Nacho Caballero: > Hi, > I just started with neo4j with Java and I was looking for an easy way > to visualize my local EmbeddedGra

[Neo4j] newbie: graph visualization

2011-04-08 Thread Nacho Caballero
Hi, I just started with neo4j with Java and I was looking for an easy way to visualize my local EmbeddedGraphDatabase. I'm developing on OSX 10.6 using Intellij IDEA, so I don't think I can use Neoclipse. Any easy recommendations? Thanks, Nacho ___ Neo4j