I have a cypher query that looks like this
START user=node(8313)
MATCH user-->contact:X-->endpoint1:Y-[r1?]->another:Z
WHERE r1 IS null
RETURN user;
It seems to hang Neo4J 2.0.0-M05.
If i run the query without one the labels it seems to be working better
START user=node(8313)
MATCH user-->contact:X-->endpoint1-[r1?]->another:Z
WHERE r1 IS null
RETURN user;
Should i not use multiple labels in a match?
Also, it seems after i ran this queries for a while my nodes increased a lot? I started out on about 250 and now, without i can rembembering adding anything, have 16k nodes and 100k+ relationships.