I am trying to optimize the query performance in my Neo4j. I have created the Unique indexes and the query is performing pretty good. But the query performance figure shown in the Neo4j web console shows as "0 estimated rows" and "0 db hits".
But in real, I am getting the result with one relationship.
My query:
Match (a:Person{id:"1234"})-[r:Employed_by]->(b:Organization(id:"abcd")) RETURN r
This query returns me a relationship.
But when I am checking the same query with Profile, it is showing like "0 estimated rows" and "0 db hits".
What does this mean? Please elaborate the result.
