umami/queries/admin/website/getAllWebsites.js
2022-08-25 22:20:30 -07:00

25 lines
466 B
JavaScript

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