Re: [Neo4j] Traversal REST body language

2011-09-13 Thread Peter Neubauer
Done, https://github.com/neo4j/community/issues/20, should show up in http://docs.neo4j.org/chunked/snapshot/rest-api-traverse.html#rest-api-traversal-returning-nodes-below-a-certain-depth in some hours. Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone      

Re: [Neo4j] Using Data Graph and @NodeEntity, API methods not compatible

2011-09-13 Thread Michael Hunger
Hey, has your problem been solved? Thanks Michael Am 15.08.2011 um 20:37 schrieb etc1: I am using GraphDatabaseContext, sorry, I should have been clear on that. @Autowired private GraphDatabaseContext gds; Movie retrievedMovie = (Movie)gds.getNodeById(rainman.getNodeId());

Re: [Neo4j] Difficulty with spring data graph annotations...

2011-09-13 Thread Michael Hunger
Yep, will do that today. Just returned from vacation. Cheers Michael Am 18.08.2011 um 03:46 schrieb etc1: Mike, Are you saying the examples on github have to be updated, or, that I should download a newer version, namely, 1.1? -Original Message- From:

Re: [Neo4j] 5 Questions in 5 Minutes: We want your feedback

2011-09-13 Thread Peter Neubauer
Guys, I think the right link is https://www.surveymonkey.com/s/YLRVS6G - would be great if you can take the time, so we all can get a better picture of where to put in more effort going forward. Thanks! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone      

[Neo4j] sdg inheritance a la MappedSuperclass

2011-09-13 Thread Gonfi den Tschal
The inheritance model as described here http://forum.springsource.org/showthread.php?108657-Inheritance-in-spring-data-graph is nice when one wants to do polymorphic queries, when the types should be looked at together at once. For example Person with Customer and Employee and a general search is

Re: [Neo4j] sdg inheritance a la MappedSuperclass

2011-09-13 Thread Michael Hunger
Hey Gonfi, thanks for the feedback. The only issue with having @NodeEntity on the parent are the indexing queries. Otherwise there are no issues I know of. So what I'm thinking of is to add a level attribute to the @Indexed annotation, which can have the following values: * global - index

Re: [Neo4j] sdg inheritance a la MappedSuperclass

2011-09-13 Thread Gonfi den Tschal
yeah, this would be great. much better. On Tue, Sep 13, 2011 at 12:17 PM, Michael Hunger michael.hun...@neotechnology.com wrote: Hey Gonfi, thanks for the feedback. The only issue with having @NodeEntity on the parent are the indexing queries. Otherwise there are no issues I know of. So

[Neo4j] sdg: shorter __type__?

2011-09-13 Thread Gonfi den Tschal
(maybe this was discussed before, or I'm completely wrong, couldn't find anything about it) The __type__ string currently stores the fully qualified class name. This has 2 drawbacks for me: 1) it's looong. In my case, having millions of small objects, the __type__ attribute blows up the

Re: [Neo4j] Server Starting Error

2011-09-13 Thread Peter Neubauer
Reza, we are right now looking into Service install issues, will keep you posted, hopefully you can try a new SNAPSHOT build soon. Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter     

Re: [Neo4j] Server Starting Error

2011-09-13 Thread Reza Ameri
Hi Peter, It is great! thank you. On Tue, Sep 13, 2011 at 3:06 PM, Peter Neubauer peter.neuba...@neotechnology.com wrote: Reza, we are right now looking into Service install issues, will keep you posted, hopefully you can try a new SNAPSHOT build soon. Cheers, /peter neubauer GTalk:

Re: [Neo4j] Traversal REST body language

2011-09-13 Thread jadell
Thanks Peter. Great turnaround time on the answer, as always! -- Josh -- View this message in context: http://neo4j-community-discussions.438527.n3.nabble.com/Traversal-REST-body-language-tp3331584p3332322.html Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.

Re: [Neo4j] sdg: shorter __type__?

2011-09-13 Thread Michael Hunger
The index uses the class name. I agree on the issues with the refactorings. The problem is that you would have to keep a history of class names which is also annoying and can break. So you suggest that we introduce a facility that maps classes to other names. like. This could also be used for

[Neo4j] Berlin Graphdb Meetup on Mon Sept 19, 0700PM at c-base

2011-09-13 Thread Michael Hunger
Hey Graphistas in Germany, The next meetup is scheduled as I'm in Berlin on Monday. I would like to chat about our Spring Data Graph library (which I'm the project lead of). I would like to make a tour through the features of the Spring Data Graph library which provides object graph mapping

[Neo4j] Neo4j Öresund meetup next Tuesday

2011-09-13 Thread Peter Neubauer
Hi all, in case you are interested in Graphs, Beer and Pizza, I suggest you show up next Tuesday in Malmö for the first ever Neo4j Öresund meetup. http://www.meetup.com/Neo4j-Oresund/events/33340072/ See you there! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer

Re: [Neo4j] Traversal REST body language

2011-09-13 Thread Peter Neubauer
http://docs.neo4j.org/chunked/snapshot/rest-api-traverse.html#rest-api-traversal-using-a-return-filter HTH! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter     

Re: [Neo4j] Close with running transaction II

2011-09-13 Thread Peter Neubauer
Vaccaro, can you reliably reproduce this in a unit test? that would be very helpful in doing something about it! Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter     

[Neo4j] New Survey link

2011-09-13 Thread Allison Sparrow
Hi all, There were some issues with the survey link sent out, so for those of you had trouble, you can access it here: https://www.surveymonkey.com/s/YLRVS6G You don't need to have an account on Surveymonkey or sign in, for whatever issues feel free to email me. thanks *Allison Sparrow* *

[Neo4j] GremlinPlugin in REST

2011-09-13 Thread Javier de la Rosa
Hi, all, Today I have downloaded the last version of Neo4j, thus, 1.5.M01. I run some of my tests and some of them falied, what related to Gremlin plugin. If I run using Neo4j 1.4.1 I get the next: $ curl http://localhost:7474/db/data/ext/GremlinPlugin/graphdb/execute_script; { extends :

Re: [Neo4j] GremlinPlugin in REST

2011-09-13 Thread Peter Neubauer
Wohow, this is actually a bug introduced when we added Maps as parameter types. I added a test for it in the gremlin-plugin, and fixed it in server, https://github.com/neo4j/community/commit/ed42542e191de9966e1b5ada80bf8a6684bd6d1d As snapshots get out, you should be able to run it normally in

Re: [Neo4j] GremlinPlugin in REST

2011-09-13 Thread Javier de la Rosa
Thank you for the very quick response and fix. I'll try the new snapshot. Regards! On Tue, Sep 13, 2011 at 16:39, Peter Neubauer peter.neuba...@neotechnology.com wrote: Wohow, this is actually a bug introduced when we added Maps as parameter types. I added a test for it in the gremlin-plugin,