umami/queries/admin/website/getAllWebsites.js
2022-07-15 16:47:38 -07:00

25 lines
458 B
JavaScript

import { prisma, runQuery } from 'lib/db';
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 }));
}