mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Fix UTM query, move filters to proper place
This commit is contained in:
parent
c3d6467b99
commit
7d1f8ea77b
@ -19,18 +19,18 @@ export function getPageviewParams(
|
||||
|
||||
return rawQuery(
|
||||
`select * from (
|
||||
select
|
||||
url, split_part(split_part(url, concat($1, '='), 2), '&', 1) param
|
||||
from
|
||||
pageview
|
||||
${joinSession}
|
||||
${pageviewQuery}
|
||||
${joinSession && sessionQuery}
|
||||
${eventQuery}
|
||||
where
|
||||
${table}.website_id=$2 and ${table}.created_at between $3 and $4
|
||||
group by 1, 2
|
||||
order by 2 desc
|
||||
select
|
||||
url, split_part(split_part(url, concat($1, '='), 2), '&', 1) param
|
||||
from
|
||||
pageview
|
||||
${joinSession}
|
||||
where
|
||||
${table}.website_id=$2 and ${table}.created_at between $3 and $4
|
||||
${pageviewQuery}
|
||||
${joinSession && sessionQuery}
|
||||
${eventQuery}
|
||||
group by 1, 2
|
||||
order by 2 desc
|
||||
) q
|
||||
where q.param <> ''`,
|
||||
params,
|
||||
|
Loading…
Reference in New Issue
Block a user