import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; @InputType() export class DummyUpdatefriendsInput { @Field(() => [String], {nullable:true}) set?: Array; @Field(() => [String], {nullable:true}) push?: Array; }