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
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
Ads