I have been testing neo4j using M01 to M06. I was able to copy the graph.db directory each time when I download a new version into the data directory, and it always seem to run ok. But I just download the GA release of neo4j 2.0. And when I try to run a simple query
"Match (n:Flight) return n limit 25" it return 0 records. As a matter of fact. All the Match (n:Label) return n limit 25 always return 0 records.
But the other query seems to be ok (for example if I do "match (n:Flight) where n.fltno=1234 return n limit 25" then it runs fine. Does any one know why this happen?