Get All Values
Get All Values
Retrieves every value stored in the robot's internal database. Useful for batch-processing all the persisted data without querying each key individually.
Options
Database name
Name of the database to query. When not given, the current robot's default database is used. Optional field.
Returns
Javascript code
js
actions["action-id"].values // list with every value in the database (List)
actions["action-id"].size // number of values (Number)
Field selection
- values — list with every value in the database (List)
- size — number of values (Number)
Rules and Conditions
- Every field is optional.
- Returns an empty list when the database has no records.