mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 18:52:06 +00:00
12 lines
253 B
TypeScript
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;
|