I am having 2 node types lets say of type 'Student' and 'Teacher'
Student have {id, name}.
Teacher have {id, name}.
Student can have optional relationship with Class node as 'TEACHES'.
(t:Teacher)-[r:TEACHES]->(c:Student).
[r:TEACHES] - Optional relationship. (present or may not present)
I want to find "Student" nodes who don't have teacher. i.e There is no any incoming relationship "TEACHES"
Please help.