mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
7 lines
241 B
TypeScript
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;
|