I have a cypher query
match (n)-[r]->(m) where n.value in L return n.id, m.id
and L is a list with size 10K. It took forever for the query to finish. How Neo4j process this query? Would it run the query in parallel? If I manually partition L to several lists and run several sub-queries with each sub-list, then merge the results from sub-queries, will that help?
n.valueand include aUSING INDEXstatement right after thematchand before thewhere. - Adrian Keister