File tree Expand file tree Collapse file tree
docs/plan/#32-health-query
src/main/kotlin/kr/io/team/loop/health/presentation/datafetcher Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # GraphQL _ health 쿼리 검증 체크리스트
2+
3+ ## 필수 항목
4+ - [x] 아키텍처 원칙 준수 (docs/architecture.md 기준)
5+ - [x] 레이어 의존성 규칙 위반 없음
6+ - [x] 모든 테스트 통과
7+ - [x] 기존 테스트 깨지지 않음
8+
9+ ## 선택 항목
10+ - [ ] API 엔드포인트 동작 확인
Original file line number Diff line number Diff line change 1+ # GraphQL _ health 쿼리 DataFetcher 구현
2+
3+ > Issue: #32
4+
5+ ## 단계
6+
7+ - [x] 1단계: health BC 패키지 및 DataFetcher 생성
8+ - [x] 2단계: 테스트 통과 및 검증
Original file line number Diff line number Diff line change 1+ package kr.io.team.loop.health.presentation.datafetcher
2+
3+ import com.netflix.graphql.dgs.DgsComponent
4+ import com.netflix.graphql.dgs.DgsQuery
5+
6+ @DgsComponent
7+ class HealthDataFetcher {
8+ @DgsQuery(field = " _health" )
9+ fun health (): Boolean = true
10+ }
You can’t perform that action at this time.
0 commit comments