I create a index on relationship
CREATE LOOKUP INDEX rel_type_lookup_index FOR ()-[r]-() ON EACH type(r)
But this can't hit the relationship index
explain match (p:Person)-[r]->(m:Movie) where type(r) ='Knows' return p ;
How should I create an inde...