umami/queries/admin/website/getAllWebsites.js
Brian Cao 78338205a3
Feat/um 62 prisma property names (#1562)
* checkpoint

* fix pg schema

* fix mysql schema

* change property names
2022-10-10 13:42:18 -07:00

24 lines
404 B
JavaScript

import prisma from 'lib/prisma';
export async function getAllWebsites() {
let data = await prisma.client.website.findMany({
orderBy: [
{
userId: 'asc',
},
{
name: 'asc',
},
],
include: {
account: {
select: {
username: true,
},
},
},
});
return data.map(i => ({ ...i, account: i.account.username }));
}