Data / Map
data/map_get
Map Get
Retrieves a value from a Map by key.
Note: Returns null and found=false if the key does not exist. Use Is Null to handle missing values safely.
Inputs
| Name | Type | Optional | Description |
|---|---|---|---|
map |
any | The Map to read from. | |
key |
string | ✓ | The key to look up. |
Outputs
| Name | Type | Description |
|---|---|---|
value |
any | The value at the key (null if absent). |
found |
boolean | True if the key exists in the map. |
Properties
| Key | Type | Default | Description |
|---|---|---|---|
key |
string | "" |
Key (fallback) |