Cannot import an AuraDB backup to local Desktop 2.01 with name neo4j

Hello, I have an AuraDB instance (version 2025.06), made backup,
got an neo4j-2025-07-03T09-00-15-....backup file,
tried to import it in local DB (Desktop 2.01). functions well as Database name "neo4j-2025-07-03T09-00-15-.."
But for my application the Database name must be neo4j
Since db name is inferred from the backup name, it cannot be neo4j, no "overwrite possible"?
If I rename the backup file to neo4j.backup, I cannot import, says "already exists"

Please, indicate a parameter or config to overwrite neo4 as in former Desktop commands.

AFAIK - You can't do what you want on the community version.

You'll need to go to aura and run the stream command:

CALL apoc.export.cypher.all(null, {format: "cypher-shell", stream: true});

and then copy/paste the outputs.

@lupojohn

Was the neo4j database defined in Desktop prior to Import? If so can u run

drop database neo4j;

and then try import and report back upon success/failure?