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
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