Files
the-biergarten-app/src/services/BeerComment/getBeerCommentCount.ts
2023-04-11 23:32:06 -04:00

12 lines
253 B
TypeScript

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