Suppose the data are the following
The green and red node are named as Upper and Lower, respectively and the edge named as "create" with property time that showed on edge.
The following is my query :
MATCH p=()-[r:create]->() where r.time<'08:30' RETURN p
The result :
However, there is one of which that the r.time is not <'08:30', but it show on result.
Question : How can I query so that <'08:30' would not return on result ? i.e., the following
Thanks.