Data Stores
A Data Store is simply a key-value pair stored in the database that is available to all records in the system.
Usage
Example
Storing Strings
// Store the current log count
var log_count = bond.getData('log_count');
bond.setData('log_count', parseInt(log_count, 10) + 1)Storing Objects
Last updated
Was this helpful?
