Is the function "EXISTS' is still valid as :help EXISTS says it is not found?
Are there any books on the Cypher language covering in particular details of the language and in particular the reading from CSV (more than just simple examples)
but within the browser running :help help provides the top root of the available :help options. Even if you look at :help cypher you will see not :help exists but you also dont see a :help size or a :help any etc.
3.7.5.1. Filter on patterns
Patterns are expressions in Cypher, expressions that return a list of paths. List expressions are also predicates — an empty list represents false, and a non-empty represents true.
Query:
MATCH (timothy { name: 'Timothy' }),(others)
WHERE others.name IN ['Andy', 'Peter'] AND (timothy)<--(others)
RETURN others.name, others.age