import { Field } from '@nestjs/graphql'; import { InputType } from '@nestjs/graphql'; import { UserCreateWithoutFollowersInput } from './user-create-without-followers.input'; import { Type } from 'class-transformer'; import { UserCreateOrConnectWithoutFollowersInput } from './user-create-or-connect-without-followers.input'; import { UserUpsertWithWhereUniqueWithoutFollowersInput } from './user-upsert-with-where-unique-without-followers.input'; import { UserWhereUniqueInput } from './user-where-unique.input'; import { UserUpdateWithWhereUniqueWithoutFollowersInput } from './user-update-with-where-unique-without-followers.input'; import { UserUpdateManyWithWhereWithoutFollowersInput } from './user-update-many-with-where-without-followers.input'; import { UserScalarWhereInput } from './user-scalar-where.input'; @InputType() export class UserUpdateManyWithoutFollowersNestedInput { @Field(() => [UserCreateWithoutFollowersInput], {nullable:true}) @Type(() => UserCreateWithoutFollowersInput) create?: Array; @Field(() => [UserCreateOrConnectWithoutFollowersInput], {nullable:true}) @Type(() => UserCreateOrConnectWithoutFollowersInput) connectOrCreate?: Array; @Field(() => [UserUpsertWithWhereUniqueWithoutFollowersInput], {nullable:true}) @Type(() => UserUpsertWithWhereUniqueWithoutFollowersInput) upsert?: Array; @Field(() => [UserWhereUniqueInput], {nullable:true}) @Type(() => UserWhereUniqueInput) set?: Array; @Field(() => [UserWhereUniqueInput], {nullable:true}) @Type(() => UserWhereUniqueInput) disconnect?: Array; @Field(() => [UserWhereUniqueInput], {nullable:true}) @Type(() => UserWhereUniqueInput) delete?: Array; @Field(() => [UserWhereUniqueInput], {nullable:true}) @Type(() => UserWhereUniqueInput) connect?: Array; @Field(() => [UserUpdateWithWhereUniqueWithoutFollowersInput], {nullable:true}) @Type(() => UserUpdateWithWhereUniqueWithoutFollowersInput) update?: Array; @Field(() => [UserUpdateManyWithWhereWithoutFollowersInput], {nullable:true}) @Type(() => UserUpdateManyWithWhereWithoutFollowersInput) updateMany?: Array; @Field(() => [UserScalarWhereInput], {nullable:true}) @Type(() => UserScalarWhereInput) deleteMany?: Array; }