We have turned on auto indexing for both nodes and relationship. By default NEO4J will create an index named "node_auto_index" for nodes and "relationship_auto_index" for relationships. But the MATCH queries seem to be under performing (comparing to a similar data set in Elasticsearch). Looks like they are not using the indexes.
Is there a way to make the MATCH clause use the auto_index ?
We also tried looking at the schema index. Looks like it can only create node indexes. Our queries use some properties on relationships and hence even after using the schema index the queries are unacceptable in performance. Is there a way to create schema relationship indexes ?