I\'m looking for something similar to the MySQL ( SHOW INDEXES ). I was able to get a list of indexes using py2neo in Python
graphDB = neo4j.GraphDatabaseS
Well, in Cypher you cannot do that but there's a REST API request, which works.
You can check it in Terminal.
All indexes in the database:
curl http://localhost:7474/db/data/schema/index/
Indexes on a specific label:
curl http://localhost:7474/db/data/schema/index/User