fix: #10603 https://www.loom.com/share/cebc8a19bd8e4ae684a5a215d0fd1f94?sid=cadaa395-285c-45c9-b3ce-2ae6d1330a3c --------- Co-authored-by: Félix Malfait <felix@twenty.com> Co-authored-by: Félix Malfait <felix.malfait@gmail.com>
15 lines
373 B
TypeScript
15 lines
373 B
TypeScript
export enum AGGREGATE_OPERATIONS {
|
|
min = 'MIN',
|
|
max = 'MAX',
|
|
avg = 'AVG',
|
|
sum = 'SUM',
|
|
count = 'COUNT',
|
|
countUniqueValues = 'COUNT_UNIQUE_VALUES',
|
|
countEmpty = 'COUNT_EMPTY',
|
|
countNotEmpty = 'COUNT_NOT_EMPTY',
|
|
countTrue = 'COUNT_TRUE',
|
|
countFalse = 'COUNT_FALSE',
|
|
percentageEmpty = 'PERCENTAGE_EMPTY',
|
|
percentageNotEmpty = 'PERCENTAGE_NOT_EMPTY',
|
|
}
|