We are using the follow Cypher query:
MATCH (n:Entity)-[r]->(m) WHERE n.cid IN $cids RETURN labels(n), n, type(r), m"
There is a UNIQUE INDEX CONSTRAINT on Entity.cid
$cids is a param which is a list of cids (in the 1-500 range on average)
Are there...