mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
Fixed query.
This commit is contained in:
parent
7764f0ee26
commit
7ec84ae7ea
@ -151,7 +151,7 @@ async function rawQuery(sql: string, data: object): Promise<any> {
|
|||||||
return Promise.reject(new Error('Unknown database.'));
|
return Promise.reject(new Error('Unknown database.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
const query = sql?.replaceAll(/\{\{(\w+)(::\w+)?}}/g, (...args) => {
|
const query = sql?.replaceAll(/\{\{\s*(\w+)(::\w+)?\s*}}/g, (...args) => {
|
||||||
const [, name, type] = args;
|
const [, name, type] = args;
|
||||||
|
|
||||||
params.push(data[name]);
|
params.push(data[name]);
|
||||||
|
@ -60,7 +60,7 @@ async function relationalQuery(
|
|||||||
where website_event.website_id = {{websiteId::uuid}}
|
where website_event.website_id = {{websiteId::uuid}}
|
||||||
and website_event.created_at >= {{resetDate}}
|
and website_event.created_at >= {{resetDate}}
|
||||||
and website_event.created_at between {{startDate}} and {{endDate}}
|
and website_event.created_at between {{startDate}} and {{endDate}}
|
||||||
and event_type = {eventType:UInt32}
|
and event_type = {{eventType}}
|
||||||
${filterQuery}
|
${filterQuery}
|
||||||
group by 1
|
group by 1
|
||||||
`,
|
`,
|
||||||
|
Loading…
Reference in New Issue
Block a user