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

7 lines
241 B
TypeScript

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