Files
the-biergarten-app/services/BeerPostLike/getBeerPostLikeCount.ts
Aaron William Po d8a8dad37f Refactor beer by id page
Extracted services to separate files.
2023-03-27 19:02:45 -04:00

12 lines
256 B
TypeScript

import DBClient from '@/prisma/DBClient';
const getBeerPostLikeCount = async (beerPostId: string) => {
const count = await DBClient.instance.beerPostLike.count({
where: { beerPostId },
});
return count;
};
export default getBeerPostLikeCount;