Skip to content

Commit

Permalink
fix prisma query, column name
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscao633 committed Oct 13, 2023
1 parent 88aa341 commit 0e782f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/queries/analytics/getValues.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function relationalQuery(websiteId: string, column: string, startDate: Dat
inner join session
on session.session_id = website_event.session_id
where website_event.website_id = {{websiteId::uuid}}
and created_at between {{startDate}} and {{endDate}}
and website_event.created_at between {{startDate}} and {{endDate}}
`,
{
websiteId,
Expand Down

0 comments on commit 0e782f3

Please sign in to comment.