Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BE] 리뷰 모아보기 응답 API를 구현한다. #793

Closed
nayonsoso opened this issue Oct 8, 2024 · 0 comments · Fixed by #806
Closed

[BE] 리뷰 모아보기 응답 API를 구현한다. #793

nayonsoso opened this issue Oct 8, 2024 · 0 comments · Fixed by #806

Comments

@nayonsoso
Copy link
Contributor

🔍 설명

  • 리뷰 모아보기 요청에 대한 응답 API를 구현한다.

🔥 할 일

  • 아래와 같이 응답하는 API 를 구현합니다.
{
  "reviews" : [ {
    "question" : {
      "name" : "서술형 질문",
      "type" : "TEXT"
    },
    "answers" : [ {
      "content" : "산초의 답변"
    }, {
      "content" : "삼촌의 답변"
    } ],
    "votes" : null
  }, {
    "question" : {
      "name" : "선택형 질문",
      "type" : "CHECKBOX"
    },
    "answers" : null,
    "votes" : [ {
      "content" : "짜장",
      "count" : 3
    }, {
      "content" : "짬뽕",
      "count" : 5
    } ]
  } ]
}

⏰ 예상 시간

  • 5시간

🐴 할 말

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

2 participants