mirror of
https://github.com/umami-software/umami.git
synced 2026-02-10 07:37:11 +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
|
|
@ -31,7 +31,7 @@ async function relationalQuery(websiteId: string, filters: QueryFilters & { fiel
|
|||
${filterQuery}
|
||||
group by event_key, data_type, string_value
|
||||
order by 3 desc, 2 desc, 1 asc
|
||||
limit 100
|
||||
limit 500
|
||||
`,
|
||||
params,
|
||||
);
|
||||
|
|
@ -59,7 +59,7 @@ async function clickhouseQuery(
|
|||
${filterQuery}
|
||||
group by event_key, data_type, string_value
|
||||
order by 3 desc, 2 desc, 1 asc
|
||||
limit 100
|
||||
limit 500
|
||||
`,
|
||||
params,
|
||||
).then(a => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue