Julien,
this is probably a bug that is closed in 1.8. Could you try with that
and see if the error disappears?
Cheers,
/peter neubauer
G: neubauer.peter
S: peter.neubauer
P: +46 704 106975
L:
http://www.linkedin.com/in/neubauer
T: @peterneubauer
Wanna learn something new? Come to @graphconnect.
On Mon, Jul 16, 2012 at 12:00 PM, Julien Guepin <
julien...@gmail.com> wrote:
> Hi,
>
> I got the same error than Joe (Your pattern has at least one path between
> two bound elements, and these patterns are undefined for the time being.)
> when I performed the same type of query to find nodes that are not
> connected.
> I read this thread and changed my query following your advices. My query is
> now like that:
>
> START entity=node({id}) , n180=node(180)
> MATCH entity-[:SUBJECT]->cat
> WHERE not(entity-[:SUBJECT]->n180) and
> not(entity-[:SUBJECT]->()-[:BROADER]->n180)
> RETURN cat.uri, id(cat), entity.uri
>
> Now, I get "SyntaxException: Unclosed parenthesis" on the WHERE clause when
> I run this query. I don't see unclosed parenthesis, so I don't understand
> why this is not working...
> I am using neo4j 1.7.2. Could you help me?
>
> Thanks,
> Julien