@InputType()
- GraphQL에서 입력 객체를 정의할 때 사용
- 주로 mutation에서 사용되는 인자로, 여러 필드를 하나의 입력 객체로 그룹화하여 사용할 수 있다.
- 예를 들어, 사용자를 생성하는 mutation에서 여러 필드를 하나의 입력 타입으로 묶어 처리할 수 있다.
import { InputType, Field } from '@nestjs/graphql';
@InputType()
class CreateUserInput {
@Field()
username: string;
@Field()
password: string;
@Field()
email: string;
}
import { Resolver, Mutation, Args } from '@nestjs/graphql';
@Resolver()
class UserResolver {
@Mutation(() => User)
createUser(@Args('input') input: CreateUserInput): User {
// 사용자 생성 로직
}
}
@InputType({ isAbstract: true })
- isAbstract: true 옵션은 이 클래스가 실제로 사용되는 입력 타입이 아니라 다른 클래스에서 확장하여 사용되는 추상 타입임을 나타낸다.
- 따라서 이 클래스는 GraphQL 스키마에 직접 등록되지 않는다.
@ArgsType()
- GraphQL에서 인자(argument)를 정의할 때 사용
- 주로 query나 mutation에서 여러 개의 인자를 받을 때 사용
import { ArgsType, Field } from '@nestjs/graphql';
@ArgsType()
class GetUserArgs {
@Field()
id: string;
}
import { Resolver, Query, Args } from '@nestjs/graphql';
@Resolver()
class UserResolver {
@Query(() => User)
getUser(@Args() args: GetUserArgs): User {
const { id } = args;
// 사용자 조회 로직
}
}
@ObjectType()
- GraphQL 스키마에서 조회 가능한 객체를 정의하는 데 사용된다.
- 이 객체 유형은 주로 Query나 Mutation의 결과로 반환되는 객체를 나타낸다.
요약
- InputType 주로 mutation에서 복합적인 입력 객체를 정의할 때 사용
- ArgsType 주로 query나 mutation에서 여러 개의 인자를 받을 때 사용
- ObjectType 결과 조회
'Frontend > Nest.js' 카테고리의 다른 글
GraphQL 스키마를 정의할 때 매우 유용한 도구 MapperType (0) | 2024.07.29 |
---|---|
유저 프로필 수정 시 Mapped types 주의할 점 (0) | 2024.06.21 |
InputTypes and ArgumentTypes (0) | 2024.06.21 |
type-graphql의 isAbstract 옵션 (0) | 2024.06.21 |
@InputType과 @ObjectType을 동시에 데코레이터 사용 시 주의할 점 (0) | 2024.06.21 |