Re: [Neo4j] How to get both nodes and relationship in one traverse?

2011-04-11 Thread Matěj Plch
You can traverse only relatioships and call getStartNode() getEndNode()... Dne 12.4.2011 03:37, Brendan napsal(a): Hi, I had setup one traversal description but it seems to me that each time of traverse can only get one of three outcome, nodes, relationships, or paths. How to get more

Re: [Neo4j] simple traverse of tree

2011-04-09 Thread Matěj Plch
(and as the javadoc says) you can have multiple evaluators in a traversal description. 2011/4/6 Michael Hungermichael.hun...@neotechnology.com: sure ... .evaluator(Evalutators.excludeStartPosition()) ... Cheers Michael Am 06.04.2011 um 20:15 schrieb Matěj Plch: I had there an error... My fault

Re: [Neo4j] simple traverse of tree

2011-04-09 Thread Matěj Plch
Sorry for the post. .uniqueness(Uniqueness.NONE) made the trick. Dne 9.4.2011 13:19, Matěj Plch napsal(a): And how it is possible to traverse parallel edges? I spent an hour trying how to do it... I have some node and this node can be connected with other node with more incoming edges. And I'm

Re: [Neo4j] simple traverse of tree

2011-04-06 Thread Matěj Plch
(){}); How big is your tree? Something like that should be in Graph-Algo perhaps as subgraph or tree. HTH Michael Am 26.03.2011 um 19:26 schrieb Matěj Plch: Thank you for so fast answer. I will look at it. I have milestone tomorrow so dont have a lot of time=) and have never worked

Re: [Neo4j] simple traverse of tree

2011-04-05 Thread Matěj Plch
id, you can use java.util.Collections.max(collection, new ComparatorNode(){}); How big is your tree? Something like that should be in Graph-Algo perhaps as subgraph or tree. HTH Michael Am 26.03.2011 um 19:26 schrieb Matěj Plch: Thank you for so fast answer. I will look at it. I have

[Neo4j] Glassfish problem

2011-03-27 Thread Matěj Plch
this? The database is opened or created from class with is Singleton. Can this be the problem? I googled this problem, but no solution found. Matěj Plch ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] simple traverse of tree

2011-03-26 Thread Matěj Plch
a method which gives me all nodes under that group node. Second question is if its possible ho to get from this group noe with the highest id (last added). Matěj Plch ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

Re: [Neo4j] simple traverse of tree

2011-03-26 Thread Matěj Plch
26.03.2011 um 19:26 schrieb Matěj Plch: Thank you for so fast answer. I will look at it. I have milestone tomorrow so dont have a lot of time=) and have never worked with Groovy. Well so there isnt any simple method how to do it in classic neo4j Java API? Dne 26.3.2011 19:16, Saikat Kanjilal

[Neo4j] Dynamic GEXF node attributes in neo4j database

2011-03-22 Thread Matěj Plch
Hi! Do you have any experience how to store changing attributes of node? It's like to build a table of changes for each changed node attribute. In SQL datastore quite simple, but in no-SQL? And one more question. Is it possible with some easy call though Java API how to get number of nodes and

Re: [Neo4j] neoclipse ubuntu 10.04 problem

2011-03-19 Thread Matěj Plch
. $ java -version java version 1.6.0_24 Java(TM) SE Runtime Environment (build 1.6.0_24-b07) Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode) Best regards Matěj Plch. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org

[Neo4j] neoclipse ubuntu 10.04 problem

2011-03-18 Thread Matěj Plch
mode) Best regards Matěj Plch. ___ Neo4j mailing list User@lists.neo4j.org https://lists.neo4j.org/mailman/listinfo/user

[Neo4j] java application server or neo4j server?

2011-03-10 Thread Matěj Plch
Hi! I'm new in neo4j (and also NonSQL databases). We are developing application which will fetch some information periodically, save it in nodes and edges in neo4j database and then import it to GEXF format to use our data in Gephi. My question is if it's possible to write this application like

Re: [Neo4j] java application server or neo4j server?

2011-03-10 Thread Matěj Plch
Thank you for your answer. So Neo4j server serves mainly for remote access to neo4j database but you don't recommend me to use it like application server, right? And plugins are just for extension funcionality of neo4j server's REST API. Dne 10.3.2011 13:38, Jim Webber napsal(a): Hi Matěj,