mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 00:27:11 +01:00
use uuid
This commit is contained in:
parent
b0bed5e73a
commit
c147742d7a
18 changed files with 84 additions and 52 deletions
|
|
@ -20,8 +20,10 @@ async function relationalQuery(websiteId, { startDate, endDate, field, filters =
|
|||
where x.session_id in (
|
||||
select pageview.session_id
|
||||
from pageview
|
||||
join website
|
||||
on pageview.website_id = website.website_id
|
||||
${joinSession}
|
||||
where pageview.website_id=$1
|
||||
where website.website_uuid='${websiteId}'
|
||||
and pageview.created_at between $2 and $3
|
||||
${pageviewQuery}
|
||||
${sessionQuery}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue