9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
import { CreateArticleInput } from './create-article.input';
|
|
import { InputType, Field, PartialType } from '@nestjs/graphql';
|
|
|
|
@InputType()
|
|
export class UpdateArticleInput extends PartialType(CreateArticleInput) {
|
|
@Field(() => String)
|
|
id: string;
|
|
}
|