Re: [Neo4j] Named matched with depth gives error

2011-12-02 Thread Peter Neubauer
Great. Let us know if that is working for you. Cheers, /peter neubauer GTalk:      neubauer.peter Skype       peter.neubauer Phone       +46 704 106975 LinkedIn   http://www.linkedin.com/in/neubauer Twitter      http://twitter.com/peterneubauer brew install neo4j && neo4j start heroku addons:ad

Re: [Neo4j] Named matched with depth gives error

2011-12-01 Thread dnagir
Thank Michael, I didn't realise there's snapshot version available from the download page. I prefer downloading the whole package instead of one particular thing, as Jim suggested. But glad to know there's such an option. Cheers. On 02/12/2011, at 5:20 PM, Michael Hunger [via Neo4j Community

Re: [Neo4j] Named matched with depth gives error

2011-12-01 Thread Michael Hunger
download the 1.6 SNAPSHOT from neo4j.org/downloads mobile mail please excuse brevity and typos Am 02.12.2011 um 01:27 schrieb dnagir : >> I fixed this >> yesterday. >> > > Thanks a lot for that. > How can I g

Re: [Neo4j] Named matched with depth gives error

2011-12-01 Thread Jim Webber
Hi Dima, There's a nightly snapshot that you can grab if you're interested in being on the bleeding edge. It's in the Neo4j repo: http://m2.neo4j.org/ And so the latest Cypher build is here: http://m2.neo4j.org/org/neo4j/neo4j-cypher/1.6-SNAPSHOT/ You can just add a snapshot dependency to you

Re: [Neo4j] Named matched with depth gives error

2011-12-01 Thread dnagir
> I fixed this > yesterday. > Thanks a lot for that. How can I get the build that includes the fix? (Sorry for the question, but just starting with noe4j). > Sorry you ran into it... NP. Cheers. -- View thi

Re: [Neo4j] Named matched with depth gives error

2011-12-01 Thread Andres Taylor
On Wed, Nov 30, 2011 at 1:57 PM, dnagir wrote: > Hi, > > I am trying this query: > > *START u=node(5963) MATCH p = (u)<-[r:selling*1..99]-() WHERE > r.development=7867 RETURN p* > > But it gives the error: Error: *NoSuchElementException - key not found: r* > > When I remove the depth specificatio

[Neo4j] Named matched with depth gives error

2011-11-30 Thread dnagir
Hi, I am trying this query: *START u=node(5963) MATCH p = (u)<-[r:selling*1..99]-() WHERE r.development=7867 RETURN p* But it gives the error: Error: *NoSuchElementException - key not found: r* When I remove the depth specification (*1..99) from the MATCH, it works as expected. What's a deal w