2022-07-13 00:14:27 +02:00
|
|
|
import { runQuery } from 'lib/queries';
|
2022-07-12 23:14:36 +02:00
|
|
|
import prisma 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 }));
|
|
|
|
}
|