Better fix, usage.

This commit is contained in:
Brian Cao 2023-10-20 14:34:02 -05:00
parent ec0a3fa431
commit beac0350ac

View File

@ -8,7 +8,11 @@ export function getEventDataUsage(...args: [websiteIds: string[], startDate: Dat
}); });
} }
function clickhouseQuery(websiteIds: string[], startDate: Date, endDate: Date) { function clickhouseQuery(
websiteIds: string[],
startDate: Date,
endDate: Date,
): Promise<{ websiteId: string; count: number }[]> {
const { rawQuery } = clickhouse; const { rawQuery } = clickhouse;
return rawQuery( return rawQuery(
@ -26,5 +30,9 @@ function clickhouseQuery(websiteIds: string[], startDate: Date, endDate: Date) {
startDate, startDate,
endDate, endDate,
}, },
); ).then(a => {
return Object.values(a).map(a => {
return { websiteId: a.websiteId, count: Number(a.count) };
});
});
} }