Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/plan/#32-health-query/checklist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# GraphQL _health 쿼리 검증 체크리스트

## 필수 항목
- [x] 아키텍처 원칙 준수 (docs/architecture.md 기준)
- [x] 레이어 의존성 규칙 위반 없음
- [x] 모든 테스트 통과
- [x] 기존 테스트 깨지지 않음

## 선택 항목
- [ ] API 엔드포인트 동작 확인
8 changes: 8 additions & 0 deletions docs/plan/#32-health-query/plan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# GraphQL _health 쿼리 DataFetcher 구현

> Issue: #32

## 단계

- [x] 1단계: health BC 패키지 및 DataFetcher 생성
- [x] 2단계: 테스트 통과 및 검증
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package kr.io.team.loop.health.presentation.datafetcher

import com.netflix.graphql.dgs.DgsComponent
import com.netflix.graphql.dgs.DgsQuery

@DgsComponent
class HealthDataFetcher {
@DgsQuery(field = "_health")
fun health(): Boolean = true
}