[prisma] _count

찐새·2022년 5월 26일
1

next.js

목록 보기
12/41
post-thumbnail

_count

릴레이션을 맺은 데이터의 개수를 세기 위해 사용한다.

// Backend
const usersWithCount = await prisma.user.findMany({
  include: {
    _count: {
      select: { posts: true },
    },
  },
})

// Frontend
{data.map((item)=>(
  <Board key={item.id} postCnt={item._count.posts} />
))}

참고
노마드 코더 - 캐럿마켓 클론코딩
Prisma - count-relations

profile
프론트엔드 개발자가 되고 싶다

0개의 댓글