@@ -15,54 +15,55 @@ import { ProfileUpdateOneWithoutUserNestedInput } from '../profile/profile-updat
15
15
16
16
@InputType ( )
17
17
export class UserUpdateWithoutArticlesInput {
18
- @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable : true } )
19
- id ?: StringFieldUpdateOperationsInput ;
20
18
21
- @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable : true } )
22
- email ?: StringFieldUpdateOperationsInput ;
19
+ @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable :true } )
20
+ id ?: StringFieldUpdateOperationsInput ;
23
21
24
- @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable : true } )
25
- name ?: StringFieldUpdateOperationsInput ;
22
+ @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable :true } )
23
+ email ?: StringFieldUpdateOperationsInput ;
26
24
27
- @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable : true } )
28
- password ?: StringFieldUpdateOperationsInput ;
25
+ @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable :true } )
26
+ name ?: StringFieldUpdateOperationsInput ;
29
27
30
- @Field ( ( ) => NullableStringFieldUpdateOperationsInput , { nullable : true } )
31
- bio ?: NullableStringFieldUpdateOperationsInput ;
28
+ @Field ( ( ) => StringFieldUpdateOperationsInput , { nullable :true } )
29
+ password ?: StringFieldUpdateOperationsInput ;
32
30
33
- @Field ( ( ) => NullableStringFieldUpdateOperationsInput , { nullable : true } )
34
- image ?: NullableStringFieldUpdateOperationsInput ;
31
+ @Field ( ( ) => NullableStringFieldUpdateOperationsInput , { nullable :true } )
32
+ bio ?: NullableStringFieldUpdateOperationsInput ;
35
33
36
- @Field ( ( ) => NullableIntFieldUpdateOperationsInput , { nullable : true } )
37
- countComments ?: NullableIntFieldUpdateOperationsInput ;
34
+ @Field ( ( ) => NullableStringFieldUpdateOperationsInput , { nullable :true } )
35
+ image ?: NullableStringFieldUpdateOperationsInput ;
38
36
39
- @Field ( ( ) => NullableFloatFieldUpdateOperationsInput , { nullable : true } )
40
- rating ?: NullableFloatFieldUpdateOperationsInput ;
37
+ @Field ( ( ) => NullableIntFieldUpdateOperationsInput , { nullable :true } )
38
+ countComments ?: NullableIntFieldUpdateOperationsInput ;
41
39
42
- @Field ( ( ) => NullableDecimalFieldUpdateOperationsInput , { nullable : true } )
43
- @Type ( ( ) => NullableDecimalFieldUpdateOperationsInput )
44
- money ?: NullableDecimalFieldUpdateOperationsInput ;
40
+ @Field ( ( ) => NullableFloatFieldUpdateOperationsInput , { nullable :true } )
41
+ rating ?: NullableFloatFieldUpdateOperationsInput ;
45
42
46
- @Field ( ( ) => NullableEnumRoleFieldUpdateOperationsInput , { nullable : true } )
47
- role ?: NullableEnumRoleFieldUpdateOperationsInput ;
43
+ @Field ( ( ) => NullableDecimalFieldUpdateOperationsInput , { nullable :true } )
44
+ @Type ( ( ) => NullableDecimalFieldUpdateOperationsInput )
45
+ money ?: NullableDecimalFieldUpdateOperationsInput ;
48
46
49
- @Field ( ( ) => UserUpdateManyWithoutFollowersNestedInput , { nullable : true } )
50
- @Type ( ( ) => UserUpdateManyWithoutFollowersNestedInput )
51
- following ?: UserUpdateManyWithoutFollowersNestedInput ;
47
+ @Field ( ( ) => NullableEnumRoleFieldUpdateOperationsInput , { nullable :true } )
48
+ role ?: NullableEnumRoleFieldUpdateOperationsInput ;
52
49
53
- @Field ( ( ) => UserUpdateManyWithoutFollowingNestedInput , { nullable : true } )
54
- @Type ( ( ) => UserUpdateManyWithoutFollowingNestedInput )
55
- followers ?: UserUpdateManyWithoutFollowingNestedInput ;
50
+ @Field ( ( ) => UserUpdateManyWithoutFollowersNestedInput , { nullable :true } )
51
+ @Type ( ( ) => UserUpdateManyWithoutFollowersNestedInput )
52
+ following ?: UserUpdateManyWithoutFollowersNestedInput ;
56
53
57
- @Field ( ( ) => ArticleUpdateManyWithoutFavoritedByNestedInput , { nullable : true } )
58
- @Type ( ( ) => ArticleUpdateManyWithoutFavoritedByNestedInput )
59
- favoriteArticles ?: ArticleUpdateManyWithoutFavoritedByNestedInput ;
54
+ @Field ( ( ) => UserUpdateManyWithoutFollowingNestedInput , { nullable :true } )
55
+ @Type ( ( ) => UserUpdateManyWithoutFollowingNestedInput )
56
+ followers ?: UserUpdateManyWithoutFollowingNestedInput ;
60
57
61
- @Field ( ( ) => CommentUpdateManyWithoutAuthorNestedInput , { nullable : true } )
62
- @Type ( ( ) => CommentUpdateManyWithoutAuthorNestedInput )
63
- comments ?: CommentUpdateManyWithoutAuthorNestedInput ;
58
+ @Field ( ( ) => ArticleUpdateManyWithoutFavoritedByNestedInput , { nullable :true } )
59
+ @Type ( ( ) => ArticleUpdateManyWithoutFavoritedByNestedInput )
60
+ favoriteArticles ?: ArticleUpdateManyWithoutFavoritedByNestedInput ;
64
61
65
- @Field ( ( ) => ProfileUpdateOneWithoutUserNestedInput , { nullable : true } )
66
- @Type ( ( ) => ProfileUpdateOneWithoutUserNestedInput )
67
- profile ?: ProfileUpdateOneWithoutUserNestedInput ;
62
+ @Field ( ( ) => CommentUpdateManyWithoutAuthorNestedInput , { nullable :true } )
63
+ @Type ( ( ) => CommentUpdateManyWithoutAuthorNestedInput )
64
+ comments ?: CommentUpdateManyWithoutAuthorNestedInput ;
65
+
66
+ @Field ( ( ) => ProfileUpdateOneWithoutUserNestedInput , { nullable :true } )
67
+ @Type ( ( ) => ProfileUpdateOneWithoutUserNestedInput )
68
+ profile ?: ProfileUpdateOneWithoutUserNestedInput ;
68
69
}
0 commit comments