LIKE clause in CYPHER Query

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

    If you want to make it case insensitive

    MATCH (n) WHERE n.name =~ '(?i).*SUBSTRING.*' RETURN n;
    

提交回复
热议问题