mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
fixed relational query to get reset_at
This commit is contained in:
parent
cb79d806e8
commit
fbe35f4c97
6 changed files with 12 additions and 6 deletions
|
|
@ -3,6 +3,7 @@ import clickhouse from 'lib/clickhouse';
|
|||
import { runQuery, CLICKHOUSE, PRISMA } from 'lib/db';
|
||||
import cache from 'lib/cache';
|
||||
import { EVENT_TYPE } from 'lib/constants';
|
||||
import { getWebsite } from 'queries';
|
||||
|
||||
export async function getSessionMetrics(
|
||||
...args: [
|
||||
|
|
@ -20,7 +21,7 @@ async function relationalQuery(
|
|||
websiteId: string,
|
||||
data: { startDate: Date; endDate: Date; field: string; filters: object },
|
||||
) {
|
||||
const website = await cache.fetchWebsite(websiteId);
|
||||
const website = await getWebsite({ id: websiteId });
|
||||
const resetDate = website?.resetAt || website?.createdAt;
|
||||
const { startDate, endDate, field, filters = {} } = data;
|
||||
const { toUuid, parseFilters, rawQuery } = prisma;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue