Code-first 생성 관계
TS class decorator가 SDL 계약과 GraphiQL 탐색 항목으로 변환됩니다.
Post class
@ObjectType()
id: number
title: string→
Decorator metadata
@Field(() => Int)
@Query(() => [Post])→
schema.gql
type Post
type Query| 코드 요소 | 생성 SDL | 검증 |
|---|---|---|
| @ObjectType | type Post | 객체 노출 |
| @Field nullable | String 또는 String! | optional과 맞춤 |
| @Query | type Query field | GraphiQL 목록 |