在新闻标题上查询 1 自动完成
def get_autocomplete(text):
query = """
start n = node(*) where n.name =~ '(?i)%s.*' return n.name,labels(n) limit 10;
"""
query = query % (text)
obj = []
for res in graph.cypher.execute(query):
# print res[0],res[1]
obj.append({'name':res[0],'entity_type':res[1]})
return res
这是一个示例 cypher 查询,用于获取具有以参数 text
开头的属性 name
的所有节点。