본문 바로가기

카테고리 없음

08.29 TIL

코멘트 및 카드에서 정보를 불러올 대 해당 user나 card의 모든 데이터를 불러오는 문제.

const commentsWithUser = findComments.map((comment) => ({
      id: comment.id,
      reply_id: comment.reply_id,
      comment: comment.comment,
      created_at: comment.created_at,
      updated_at: comment.updated_at,
      user: {
        id: comment.user.id,
        name: comment.user.name,
      },
      card: {
        // 카드 관련 데이터도 필요에 따라 추출
        id: comment.card.id,
        // 다른 카드 관련 데이터도 필요에 따라 추가할 수 있습니다.
      },
    }));

코드를 전체적으로 수정해서 원하는 정보만 가져오도록 수정