Count the table rows of the specified table
Query parameter is an object that filters the data
// Retrieve the rows which have 'City' column equals to 'London'
const query = {
'City': 'London'
}
Id of the table
An optional object to filter data
Null if table not found, undefined if remote error, number of rows otherwise
Creates a single row within the specified table
Id of the table
A single row to be inserted
Deletes the specified row from the specified table
Id of the table
Id of the row to delete
Retrieves rows from the specified table
Query parameter is an object that filters the data
// Retrieve the rows which have 'City' column equals to 'London'
const query = {
'City': 'London'
}
Id of the table
An optional object to filter data
Null if table not found, undefined if remote error, table rows otherwise
Updates a single row within the specified table
Id of the table
Unique Id of the row to update
The new row
Storage service allows components and actions to interact with Zyllio tables
It provides methods to retrieve / update / create / delete data