Skip to content

Get Hive Names

Description

This operation retrieves all hive names.

Method

Backendless.Hive.getNames(): Promise<string[]>;

Return Value

An array of hive names as string values. If there are no hives, then an empty array is returned.

Example

The example below returns all hive names stored in the system.

await Backendless.Hive.getNames()

Codeless Reference

management_api_get_hive_names

Returns a list containing hive names.

Consider the following list of hives:

management_api_example_get_hive_names_2

The example below retrieves all hive names:

management_api_example_get_hive_names

After running the Codeless Logic, the operation returns a list containing all existing hives:

hive_management_api_get_hive_names_3