getFormula
Usage
const formula = await data.widgetSource.getFormula({
column: 'column_name',
operation: 'count',
// + operationExp for custom operations
// + base options...
});Options
export interface FormulaRequestOptions extends BaseRequestOptions {
column: string | '*' | '';
operation: 'count' | 'avg' | 'min' | 'max' | 'sum' | 'custom' ;
operationExp?: string;
}Response

Last updated
Was this helpful?
