How to find list of all index in Neo4j?

Hi,

I have database in Neo4j and I want to find the list of all the indexes in it. How to get the list of all indexes in Neo4j database?

Thanks

View Answers

February 26, 2016 at 3:12 AM

Hi,

Login to Node4j admin panel at http://localhost:7474

and then you can run the following command:

:schema

This command will list all the indexes. Here is one example:

Indexes
  ON :Student(name)   ONLINE  
  ON :Student(pcId)   ONLINE  
  ON :Student(userId) ONLINE  

No constraints

Thanks









Related Tutorials/Questions & Answers:
Advertisements