feat: Add Rollup column type

re #504

Signed-off-by: Pranav C <pranavxc@gmail.com>
This commit is contained in:
Pranav C
2021-08-29 18:43:37 +05:30
parent 32c055b16b
commit 5022340dc7
10 changed files with 524 additions and 33 deletions

View File

@@ -135,7 +135,7 @@ export default class GqlApi {
}
// add formula columns to query
str += this.meta.v.reduce((arr, v) => {
if (v.formula) {
if (v.formula || v.rollup) {
arr.push(v._cn)
}
return arr