Get All Key-Values¶
Description¶
This operation returns all key-value pairs from a map.
Method¶
Backendless.Hive(hiveName).MapStore(keyName).get(): Promise<object>;
where:
Argument | Description |
---|---|
hiveName |
Name of a hive where the operation is performed. String value. |
keyName |
Key name identifying a map. String value. |
Return Value¶
An object containing key-value pairs retrieved from the map. If no items exist in the map, the returned object is empty.
Example¶
The example below returns all key-value pairs from the 'shoppingCart'
map.
await Backendless.Hive('marketplace').MapStore('shoppingCart').get()
where:
Argument | Description |
---|---|
'marketplace' |
Name of a hive where the operation is performed. |
'shoppingCart' |
Key name identifying a map. |
Response Example
{
"t-shirt": 10.99,
"shoes": 45.99
}
Codeless Reference¶
where:
Argument | Description |
---|---|
hive name |
Name of a hive where the operation is performed. |
key name |
Key name identifying a map. |
Returns an object containing key-value pairs retrieved from the map.
Consider the following Map storage:
The example below retrieves all key-value pairs from the "fruits"
map.
The logic produces the following output: