인프런 커뮤니티 질문&답변

BBB AAA님의 프로필 이미지
BBB AAA

작성한 질문수

[리뉴얼] React로 NodeBird SNS 만들기

시퀄라이즈 order에 대해

해결된 질문

작성

·

351

1

const post = await Post.findOne({
      where: { id: parseInt(req.query.postId) },
      order: [
        [{ model: Comment }, "createdAt", "ASC"],
        [{ model: Nested_Comment }, "createdAt", "ASC"],
      ],
      include: [
        { model: Image, attributes: ["id", "src"] },
        {
          model: User,
          attributes: ["id", "nickname", "profile_img"],
        },
        {
          model: Comment,
          include: [
            {
              model: User,
              attributes: ["id", "nickname", "profile_img"],
            },
            {
              model: Nested_Comment,
              include: [
                {
                  model: User,
                  attributes: ["id", "nickname", "profile_img"],
                },
              ],
            },
          ],
        },
        {
          model: User,
          as: "Likers",
        },
        { model: Image },
      ],
    });

강좌를 듣고 게시판을 하나 만들고 있는 중인데요

Comment를 createdAt 기준으로 ASC 정렬,

Nested_Comment를 createdAt 기준으로 ASC정렬 하고 싶은데

Comment 까지는 정렬이 되지만 아무리 고쳐봐도 Nested_Comment는 적용이 안되네요.

공식문서도 자세하게 나오지는 않고..

도저히 안되겠어서 질문드립니다. Nested_Comment까지 정렬하고 싶으면

어떻게 order 속성을 작성해야 하나요?

 

 

답변 1

0

제로초(조현영)님의 프로필 이미지
제로초(조현영)
지식공유자

https://stackoverflow.com/a/45936923

이런 식으로 Comment와 Nested_Comment를 둘 다 넣으세요.

BBB AAA님의 프로필 이미지
BBB AAA
질문자

감사합니다. 바로 해결됐네요;;

BBB AAA님의 프로필 이미지
BBB AAA

작성한 질문수

질문하기