摘要:
一. 模糊查询 查询名字以“黄”开头的人物 match (n:person) where n.name starts with '黄' return n 查询名字以“河”结尾的人物 match (n:person) where n.name ends with '河' return n 查询含有“黄 阅读全文
摘要:
一、查询相关 在es查询中,must相当于sql语句中的and,should相当于or。当想要实现类似于"select * from table where a and (b or c or d)"的功能时可以借助于es中的bool。即RestHighLevelClient中的BoolQueryBu 阅读全文