Replicate Neo4j browser auto-complete function in a cypher statement

后端 未结 1 1557
萌比男神i
萌比男神i 2020-12-16 08:33

I am trying to replicate the \"auto-complete\" functionality of the neo4j browser interface using only a cypher query. A successful implementation would mean that if the que

1条回答
  •  时光取名叫无心
    2020-12-16 08:42

    the autocomplete feature makes another call to get the relationships between all the node ids it currently has

    match a-[r]-b where id(a) in [1,2...] and id(b) in [1,2,3...] return r
    

    0 讨论(0)
提交回复
热议问题