LIKE clause in CYPHER Query

后端 未结 4 1446
悲哀的现实
悲哀的现实 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:46

    As of version 2.0, the preferred syntax uses MATCH.

    e.g.

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

提交回复
热议问题