How to purge the dB on Aura?

I tried to use the command
MATCH (n)
DETACH DELETE n
but there are still nodes and relations there ...

@alexandr.snajdar

After running

match (n) detach delete n;

if you then run

match (n) return n limit 5;

do you then get results?

Hi,

As @dana_canzano suggested, do you get any result from the

?

If you still see information on your Neo4J desktop it may be related with indexes still on your db.

Bennu