I'm trying to limit my query to 5 results, but it's only returning 2. There are definitely more than 5 'Person' nodes in the database. Is there a particular reason why the LIMIT clause might not return the expected number of results?
MATCH (n:Person)
RETURN n
LIMIT 5;