Re: [Neo] Relation properties

2010-02-01 Thread Anton Popov
. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Anton Popov Sent: Friday, January 29, 2010 9:31 AM To: Neo user discussions Subject: Re: [Neo] Relation properties And as far as I can see there is no way to set my own id'es for Relations

Re: [Neo] Relation properties

2010-02-01 Thread Mattias Persson
: Friday, January 29, 2010 9:31 AM To: Neo user discussions Subject: Re: [Neo] Relation properties And as far as I can see there is no way to set my own id'es for Relations? Only Nodes has such functionality - am I right? -- Forwarded message -- From: Anton Popov popov.ua.w

Re: [Neo] Relation properties

2010-01-29 Thread Anton Popov
Hello everybody, A related question is can I index both Nodes Relations? As I can see LuceneIndexBatchInserter.index( long node, String key, Object value ) applies for Nodes only. 2010/1/28 Mattias Persson matt...@neotechnology.com Not at all, you're not the first one to overlook that

Re: [Neo] Relation properties

2010-01-29 Thread Mattias Persson
Unfortunately you cannot index Relationships, but it's a (frquently requested) feature we're planning to add. 2010/1/29 Anton Popov popov.ua.w...@gmail.com: Hello everybody, A related question is can I index both Nodes Relations? As I can see LuceneIndexBatchInserter.index( long node, String

Re: [Neo] Relation properties

2010-01-29 Thread Anton Popov
Hello Mattias, Got it. Thanks. Is there any RoadMap available? 2010/1/29 Mattias Persson matt...@neotechnology.com Unfortunately you cannot index Relationships, but it's a (frquently requested) feature we're planning to add. 2010/1/29 Anton Popov popov.ua.w...@gmail.com: Hello everybody,

Re: [Neo] Relation properties

2010-01-29 Thread Mattias Persson
if you asked! -- Forwarded message -- From: Anton Popov popov.ua.w...@gmail.com Date: 2010/1/29 Subject: Re: [Neo] Relation properties To: Neo user discussions user@lists.neo4j.org Hello Mattias, Got it. Thanks. Is there any RoadMap available? 2010/1/29 Mattias Persson

Re: [Neo] Relation properties

2010-01-29 Thread Rick Bullotta
. -Original Message- From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On Behalf Of Anton Popov Sent: Friday, January 29, 2010 9:31 AM To: Neo user discussions Subject: Re: [Neo] Relation properties And as far as I can see there is no way to set my own id'es

Re: [Neo] Relation properties

2010-01-28 Thread Mattias Persson
Relationship has all the property methods, just like Node... they're actually on PropertyContainer (a common super interface to Node and Relationship) see http://api.neo4j.org/current/org/neo4j/graphdb/Relationship.html and http://api.neo4j.org/current/org/neo4j/graphdb/PropertyContainer.html for

Re: [Neo] Relation properties

2010-01-28 Thread Anton Popov
Thanks for a quick answer, Mattias. Sorry for a stupid questions, just haven't noticed the inheritance of Relationship interface. On 28 January 2010 19:43, Mattias Persson matt...@neotechnology.com wrote: Relationship has all the property methods, just like Node... they're actually on