umami/queries/analytics/event/getEvents.js

19 lines
335 B
JavaScript
Raw Normal View History

2022-07-16 01:47:38 +02:00
import { prisma, runQuery } from 'lib/db';
2022-07-12 23:14:36 +02:00
export async function getEvents(websites, start_at) {
return runQuery(
prisma.event.findMany({
where: {
website: {
website_id: {
in: websites,
},
},
created_at: {
gte: start_at,
},
},
}),
);
}