I was trying to reproduce the shakespeare data set and queries in my local console. I created the nodes and relationships.
neo4j-sh (0)$ START theater=node:venues(theatre = 'Theatre Royal'), newcastle=node:cities(city = 'Newcastle'), bard=node:authors('firstname:William AND lastname:Shakespeare') MATCH (newcastle)<-[:IN*1..4]-(theater)<-[:VENUE]-(performance)-[:PERFORMED]->(play)<-[w:WROTE]-(bard) WHERE w.date > 1608 RETURN play;
==> MissingIndexException: Index `authors` does not exist
Did not recognized the authors,venues and cities indexes, so I went to add and remove indexes tab and created these indexes. This is the screen dump
neo4j-sh (0)$ index --indexes
==> Node indexes:
==> venues
==> cities
==> authors
==>
==> Relationship indexes:
But now, the same query has no error but returns nothing. What Am I doing wrong. The syntax to create index from the web console is not that clear. What am I doing wrong?