Skip to main content

zoho@0.3.1

The following functions are exported from the common adaptor:

alterState()
dataPath()
dataValue()
each()
field()
fields()
fn()
lastReferenceValue()
merge()
sourceValue()

addRow

addRow(db, table, rowData) ⇒ Operation

To add a row data to a database table

ParamTypeDescription
dbstringDatabase
tablestringDatabase table
rowDataobjectrow data to be added into the database

Example

addRow(
'testing_openfn',
'Customers',
fields(field('Subject', dataValue('formId')), field('Status', 'Closed'))
);