|
1 | 1 | import * as NestJsGraphQL from "@nestjs/graphql"; |
2 | 2 | import { StringFilter, StringNullableFilter, DateTimeFilter, StringWithAggregatesFilter, StringNullableWithAggregatesFilter, DateTimeWithAggregatesFilter, BoolFilter, BoolWithAggregatesFilter, StringFieldUpdateOperationsInput, NullableStringFieldUpdateOperationsInput, DateTimeFieldUpdateOperationsInput, BoolFieldUpdateOperationsInput, NestedStringFilter, NestedStringNullableFilter, NestedDateTimeFilter, NestedStringWithAggregatesFilter, NestedIntFilter, NestedStringNullableWithAggregatesFilter, NestedIntNullableFilter, NestedDateTimeWithAggregatesFilter, NestedBoolFilter, NestedBoolWithAggregatesFilter } from "../common/inputs"; |
3 | | -import { PostWhereInput, PostOrderByWithRelationInput, PostWhereUniqueInput, PostOrderByWithAggregationInput, PostScalarWhereWithAggregatesInput, PostCreateInput, PostUpdateInput, PostCreateManyInput, PostUpdateManyMutationInput, PostListRelationFilter, PostOrderByRelationAggregateInput, PostCountOrderByAggregateInput, PostMaxOrderByAggregateInput, PostMinOrderByAggregateInput, PostCreateNestedManyWithoutAuthorInput, PostUpdateManyWithoutAuthorInput, PostCreateWithoutAuthorInput, PostCreateOrConnectWithoutAuthorInput, PostCreateManyAuthorInputEnvelope, PostUpsertWithWhereUniqueWithoutAuthorInput, PostUpdateWithWhereUniqueWithoutAuthorInput, PostUpdateManyWithWhereWithoutAuthorInput, PostScalarWhereInput, PostCreateManyAuthorInput, PostUpdateWithoutAuthorInput } from "../post/post.input"; |
| 3 | +import { PostWhereInput, PostOrderByWithRelationInput, PostWhereUniqueInput, PostOrderByWithAggregationInput, PostScalarWhereWithAggregatesInput, PostCreateInput, PostUpdateInput, PostCreateManyInput, PostUpdateManyMutationInput, PostListRelationFilter, PostOrderByRelationAggregateInput, PostCountOrderByAggregateInput, PostMaxOrderByAggregateInput, PostMinOrderByAggregateInput, PostCreateNestedManyWithoutAuthorInput, PostUpdateManyWithoutAuthorNestedInput, PostCreateWithoutAuthorInput, PostCreateOrConnectWithoutAuthorInput, PostCreateManyAuthorInputEnvelope, PostUpsertWithWhereUniqueWithoutAuthorInput, PostUpdateWithWhereUniqueWithoutAuthorInput, PostUpdateManyWithWhereWithoutAuthorInput, PostScalarWhereInput, PostCreateManyAuthorInput, PostUpdateWithoutAuthorInput } from "../post/post.input"; |
4 | 4 | import { SortOrder, QueryMode } from "../common/enums"; |
5 | 5 |
|
6 | 6 | @NestJsGraphQL.InputType('UsersWhereInput', { isAbstract: true }) |
@@ -191,8 +191,8 @@ export class UsersUpdateInput { |
191 | 191 | @NestJsGraphQL.Field(() => DateTimeFieldUpdateOperationsInput, { nullable: true }) |
192 | 192 | updated_at?: DateTimeFieldUpdateOperationsInput | undefined; |
193 | 193 |
|
194 | | - @NestJsGraphQL.Field(() => PostUpdateManyWithoutAuthorInput, { nullable: true }) |
195 | | - posts?: PostUpdateManyWithoutAuthorInput | undefined; |
| 194 | + @NestJsGraphQL.Field(() => PostUpdateManyWithoutAuthorNestedInput, { nullable: true }) |
| 195 | + posts?: PostUpdateManyWithoutAuthorNestedInput | undefined; |
196 | 196 | } |
197 | 197 |
|
198 | 198 | @NestJsGraphQL.InputType('UsersCreateManyInput', { isAbstract: true }) |
@@ -336,8 +336,8 @@ export class UsersCreateNestedOneWithoutPostsInput { |
336 | 336 | connect?: UsersWhereUniqueInput | undefined; |
337 | 337 | } |
338 | 338 |
|
339 | | -@NestJsGraphQL.InputType('UsersUpdateOneWithoutPostsInput', { isAbstract: true }) |
340 | | -export class UsersUpdateOneWithoutPostsInput { |
| 339 | +@NestJsGraphQL.InputType('UsersUpdateOneWithoutPostsNestedInput', { isAbstract: true }) |
| 340 | +export class UsersUpdateOneWithoutPostsNestedInput { |
341 | 341 | @NestJsGraphQL.Field(() => UsersCreateWithoutPostsInput, { nullable: true }) |
342 | 342 | create?: UsersCreateWithoutPostsInput | undefined; |
343 | 343 |
|
|
0 commit comments