Skip to content

Delete Hive

Description

This operation deletes a hive.

Method

Backendless.Hive(hiveName).delete(): Promise<number>;

where:

Argument                Description
hiveName The name of the hive to delete        . String value.

Return Value

The number of deleted store keys associated with the specified hive.

Example

The example below deletes the 'groceryStore' hive.

await Backendless.Hive('groceryStore').delete()

where:

Argument                Description
'groceryStore' Name of the hive to delete.

Codeless Reference

management_api_delete_hive

where:

Argument                Description
name Name of a hive to delete.

The example below deletes the "groceryStore" hive:

management_api_example_delete_hive