mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Return array of records
This commit is contained in:
parent
fc1f2c9cd3
commit
6bdceabc65
@ -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 { rawQuery } = clickhouse;
|
||||||
|
|
||||||
const result = rawQuery(
|
return rawQuery(
|
||||||
`
|
`
|
||||||
select
|
select
|
||||||
count(distinct session_id) x
|
count(distinct session_id) x
|
||||||
@ -41,6 +41,4 @@ async function clickhouseQuery(websiteId: string): Promise<{ x: number }> {
|
|||||||
return { x: Number(a.x) };
|
return { x: Number(a.x) };
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
return result[0] ?? null;
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user