在新聞標題上查詢 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
的所有節點。