SDK
SDK Javascript v6.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

mDelete #

Deletes multiple indexes.


Copied to clipboard!
mDelete(indexes, [options]);

Arguments Type Description
indexes
string[]
List of index names to delete
options
object
Query options

options #

Additional query options

Property Type
(default)
Description
queuable
boolean

(true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolves #

Resolves to an array of Successfully deleted indexes.

Usage #

Copied to clipboard!
try {
  const indexes = await kuzzle.index.mDelete(['nyc-open-data', 'mtp-open-data']);
  console.log(indexes);
  /*
    [ 'nyc-open-data', 'mtp-open-data' ]
  */
  console.log(`Successfully deleted ${indexes.length} indexes`);
} catch (error) {
  console.error(error.message);
}