mirror of
https://github.com/umami-software/umami.git
synced 2026-02-11 08:07:12 +01:00
Bump query limit to 500.
This commit is contained in:
parent
bbf85cb110
commit
1955166bdf
6 changed files with 11 additions and 14 deletions
|
|
@ -22,7 +22,7 @@ async function relationalQuery(websiteId: string, column: string, startDate: Dat
|
|||
on session.session_id = website_event.session_id
|
||||
where website_event.website_id = {{websiteId::uuid}}
|
||||
and website_event.created_at between {{startDate}} and {{endDate}}
|
||||
limit 100
|
||||
limit 500
|
||||
`,
|
||||
{
|
||||
websiteId,
|
||||
|
|
@ -41,7 +41,7 @@ async function clickhouseQuery(websiteId: string, column: string, startDate: Dat
|
|||
from website_event
|
||||
where website_id = {websiteId:UUID}
|
||||
and created_at between {startDate:DateTime64} and {endDate:DateTime64}
|
||||
limit 100
|
||||
limit 500
|
||||
`,
|
||||
{
|
||||
websiteId,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue