LevelOps Tables
Invoked with levelops.tables(
)
.
1. query(tableName, [ filters, [ filteringMode ] ]) : Object[]
Parameters:
filteringMode
possible values:exact_match(default)
, contains,starts_with
Returns: Array of JSON objects representing a table row (a map of column keys to values)
Example:
2. distinct(tableName, columnName, [ filters, [ filteringMode, [ splitCommaLists ] ] ]]) : String[]
Returns: Array of distinct values from the column provided, for rows matching the filters (if specified).
Example:
3. getColumnNameToKeyMappings(tableName) : Object
Returns: Map of column display names to column keys.
4. updateColumn(tableName, columnName, rowId, value)
Example:
Last updated