1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
import type { Prisma } from '@/generated/prisma/client';
import prisma from '@/lib/prisma';
import type { QueryFilters } from '@/lib/types';
export async function findLink(criteria: Prisma.LinkFindUniqueArgs) {
return prisma.client.link.findUnique(criteria);
}
export async function getLink(linkId: string) {
return findLink({
where: {
id: linkId,
},
});
}
export async function getLinks(criteria: Prisma.LinkFindManyArgs, filters: QueryFilters = {}) {
const { search } = filters;
const { getSearchParameters, pagedQuery } = prisma;
const where: Prisma.LinkWhereInput = {
...criteria.where,
...getSearchParameters(search, [
{ name: 'contains' },
{ url: 'contains' },
{ slug: 'contains' },
]),
};
return pagedQuery('link', { ...criteria, where }, filters);
}
export async function getUserLinks(userId: string, filters?: QueryFilters) {
return getLinks(
{
where: {
userId,
deletedAt: null,
},
},
filters,
);
}
export async function getTeamLinks(teamId: string, filters?: QueryFilters) {
return getLinks(
{
where: {
teamId,
},
},
filters,
);
}
export async function createLink(data: Prisma.LinkUncheckedCreateInput) {
return prisma.client.link.create({ data });
}
export async function updateLink(linkId: string, data: any) {
return prisma.client.link.update({ where: { id: linkId }, data });
}
export async function deleteLink(linkId: string) {
return prisma.client.link.delete({ where: { id: linkId } });
}
|