v3 prisma queries update

This commit is contained in:
Francis Cao
2025-10-27 11:48:35 -07:00
parent 61b667c587
commit 2ffde37f5b
21 changed files with 119 additions and 108 deletions

View File

@@ -20,8 +20,8 @@ async function relationalQuery(websiteId: string) {
const result = await rawQuery(
`
select
min(created_at) as startDate,
max(created_at) as endDate
min(created_at) as "startDate",
max(created_at) as "endDate"
from website_event
where website_id = {{websiteId::uuid}}
and created_at >= {{startDate}}