是否可以在 neo4j 上运行不区分大小写的密码查询?
试试看:http ://console.neo4j.org/
当我输入这个:
start n=node(*)
match n-[]->m
where (m.name="Neo")
return m
它返回一行。但是当我输入这个时:
start n=node(*)
match n-[]->m
where (m.name="neo")
return m
它不返回任何东西;因为名称保存为“Neo”。有没有一种简单的方法来运行不区分大小写的查询?