cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

CALL db.resampleIndex did not find index

chribonn
Node Link

Hello,

On page How Queries Work in Neo4j - Cypher Query Tuning in Neo4j 4.x there is the example

CALL db.resampleIndex(':Person(name)')

When I typed this command I got 'No such index ':Person(name)''

To make it work, I did the following:

:schema
CALL db.resampleIndex('index_1d2d0abd')

Regards

2 REPLIES 2

Thanks @chribonn

The way indexes are named has changed since the course was written. We will need to correct the course so that one determines the names of the indexes by calling db.indexes() to find the names of the indexes and uses the correct name.

Elaine

chribonn
Node Link

Welcome @elaine.rosenberg

I used :schema list the the indices