Skip to content

Delete Hive

Description

This operation deletes a hive.

Method

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

where:

Argument                Description
hiveName Name of the hive to delete. String value.

Return Value

None.

Example

The example below deletes a hive named 'groceryStore'.

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 a hive named "groceryStore":

management_api_example_delete_hive