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¶
where:
Argument | Description |
---|---|
name |
Name of a hive to delete. |
The example below deletes a hive named "groceryStore"
: