remove unneccessary website join

This commit is contained in:
Francis Cao 2024-04-03 22:48:57 -07:00
parent ada332f174
commit 7e00be1662

View File

@ -43,10 +43,8 @@ async function relationalQuery(
min(website_event.created_at) as "min_time",
max(website_event.created_at) as "max_time"
from website_event
join website
on website_event.website_id = website.website_id
${joinSession}
where website.website_id = {{websiteId::uuid}}
where website_event.website_id = {{websiteId::uuid}}
and website_event.created_at between {{startDate}} and {{endDate}}
and event_type = {{eventType}}
${filterQuery}