Using version 1.9 of neo4j community, I have tried index querying with the small "Cineast" dataset and with the "Matrix" dataset. In the webadmin interface, the Cineasts set has an index called Actor.
START n=node:Actor("name:*") RETURN n;
This should return all actors' names, right? I get no error message, but zero rows.
I know there is an Actor named Paul Norell in there, so I try this but still get the same results.
START n=node:Actor(name="Paul Norell") RETURN n;
Any ideas on what I'm doing wrong? How do I check that the name key/value pair is indexed, or even which ones are in the index?