Re: [Neo4j] Confirming existence of relationship between two nodes

2011-11-15 Thread Gulshan Singh
> > What version of Neo4j are you using? This query is valid syntax for 1.4.x >> and 1.5.M01. >> >> I'm using version 1.4.1 > > >> Later you would want to use: >> >> > start a=node:nodeIndex(identifier='0') return a >> >> I tried that and got the error: > > org.neo4j.cypher.SyntaxException: `<' ex

Re: [Neo4j] Confirming existence of relationship between two nodes

2011-11-13 Thread Gulshan Singh
Thanks, Cypher is pretty much what I was looking for. I'm a new user with neo4j, so I'm a little confused on how to integrate it with my application. I need to get a user from an index. This is how I've tried to do it, Query query = parser.parse("start a=(nodeIndex, identifier, '0') return a"); E