Return array of records

This commit is contained in:
Francis Cao 2023-10-17 11:45:24 -07:00
parent fc1f2c9cd3
commit 6bdceabc65

View File

@ -24,10 +24,10 @@ async function relationalQuery(websiteId: string) {
);
}
async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {
async function clickhouseQuery(websiteId: string): Promise<{ x: number }[]> {
const { rawQuery } = clickhouse;
const result = rawQuery(
return rawQuery(
`
select
count(distinct session_id) x
@ -41,6 +41,4 @@ async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {
return { x: Number(a.x) };
});
});
return result[0] ?? null;
}