LIKE clause in CYPHER Query

后端 未结 4 1494
悲哀的现实
悲哀的现实 2021-01-30 20:19

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 =          


        
4条回答
  •  不要未来只要你来
    2021-01-30 20:50

    using regular expressions: http://neo4j.com/docs/developer-manual/current/#query-where-regex

    start n = node(*) where n.Name =~ '.*SUBSTRING.*' return n.Name, n;
    

提交回复
热议问题