Jiyun Park
Jiyun Park
### Description Closes #1644 Closes TAS-267 Closes TAS-268 problem 필드에 존재하는 exposeTime, isVisible 필드에서 isVisible 필드를 제거하고 exposeTime 필드만을 살립니다. - 기존에는 exposeTime, isVisible 필드가 모두 존재해서 이로 인해 발생하는...
### Describe the bug problem 필드에서 원래는 isVisible, exposeTime 필드 둘 다 있어 problem의 exposeTime이 지나도 isVisible 상태가 False 면 화면에서 보이지 않았습니다. 두개 필드가 의미적으로 충돌하는 것 같아 exposeTime...
### Describe the problem and solution 추후 testcase output 자동 생성 등을 위해 예시 정답코드 field를 추가합니다. ### Validations - [X] Follow our [Code of Conduct](https://github.com/skkuding/next/blob/main/CODE_OF_CONDUCT.md) - [X] Read the...
### Describe the problem and solution 현재 Nestjs API docs에서는 자신이 test한 API 결과를 동일하게 reproduce할 수 있도록하는 pre-script가 작성되어 있지 않는 경우가 많습니다. 부족한 pre-script들을 작성하고, 실제로 db에 test할...
### Describe the problem and solution admin 서버 내의 `problem.service.ts` 및 `problem.resolver.ts` 중 ResolveField 및 prisma include로 인한 DB 중복호출 건을 수정합니다. ### Validations - [X] Follow our [Code of...
### Describe the problem and solution Nestjs Admin GraphQL에서 ResolveField를 활용했을 때, N+1 문제가 발생합니다. 만약 총 5개의 문제를 getProblems에서 가져온다고 할 때, 이때 각각의 tag들을 불러온다면 전체 problem을 조회하는...