Create Hive¶
Description¶
This operation creates a new hive.
Method¶
Backendless.Hive(hiveName).create(): Promise<void>;
where:
Argument | Description |
---|---|
hiveName |
A name to assign to a newly created Hive. String value. |
Return Value¶
None.
Example¶
The example below creates a new hive and names it 'groceryStore'
.
await Backendless.Hive('groceryStore').create()
where:
Argument | Description |
---|---|
'groceryStore' |
The name of the new hive to create in the system. |
Codeless Reference¶
where:
Argument | Description |
---|---|
name |
Name for the new hive. |
The example below creates a new hive with a name "groceryStore"
: