umami/queries/admin/website/getAllWebsites.js

25 lines
469 B
JavaScript
Raw Normal View History

2022-08-26 07:04:32 +02:00
import { prisma, runQuery } from 'lib/db/relational';
2022-07-12 23:14:36 +02:00
export async function getAllWebsites() {
let data = await runQuery(
prisma.website.findMany({
orderBy: [
{
user_id: 'asc',
},
{
name: 'asc',
},
],
include: {
account: {
select: {
username: true,
},
},
},
}),
);
return data.map(i => ({ ...i, account: i.account.username }));
}