I used obsolete indexes (aka Lucene) to run queries like the ones below in Neo4j Cypher to traverse millions of real-time simulators and find similar objects:
START file = node:File("simhash:THE_SIMHASH_HERE~0.8")
RETURN file.name
Since Lucene indexes are now deprecated, I wonder if there is a way to run similar queries for modern Label-based indexes.
source
share