Files
the-biergarten-app/services/BeerPostLike/findBeerPostLikeById.ts
2023-02-13 13:08:05 -05:00

12 lines
259 B
TypeScript

import DBClient from '@/prisma/DBClient';
const findBeerPostLikeById = async (beerPostId: string, userId: string) =>
DBClient.instance.beerPostLike.findFirst({
where: {
beerPostId,
userId,
},
});
export default findBeerPostLikeById;