Running a case-insensitive cypher query

前端 未结 4 905
生来不讨喜
生来不讨喜 2020-12-14 00:08

Is it possible to run a case-insensitive cypher query on neo4j?

Try that: http://console.neo4j.org/

When I type into this:

start n=node(*) 
m         


        
4条回答
  •  有刺的猬
    2020-12-14 00:26

    You can pass a parameter to the case insensitive regular expression like:

    WHERE m.name =~'(?i)({param})

提交回复
热议问题