It appears that LIKE is not supported in Cypher queries.
Is there any other construct that would perform the same task?
For instance:
start n =
As of version 2.0, the preferred syntax uses MATCH.
MATCH
e.g.
MATCH (n) where n.Name =~ '.*SUBSTRING.*' return n.Name, n;