ok i am really new in neo4j. However, this simple thing it doesn't work for some reason!!
This statement return 0 rows!
Match (a:Movie) Return a limit 25
This statement return 0 rows!
Match (a:Person) Return a limit 25
However, if i do this line, i get results:
Match (a) Return a limit 25
I am using a fresh installed Neo4j 2.1.6 with a data set named "cineasts_12k_movies_50k_actors" taken from http://example-data.neo4j.org/files/cineasts_12k_movies_50k_actors.zip?_ga=1.201211559.867824426.1420106902 with allow_store_upgrade=true
So i am not sure if i am doing something wrong or there is a bug when i query using labels!