@@ -141,16 +141,15 @@ input LinkUpdateManyWithoutPostedByInput {
141
141
connect : [LinkWhereUniqueInput ! ]
142
142
disconnect : [LinkWhereUniqueInput ! ]
143
143
delete : [LinkWhereUniqueInput ! ]
144
- update : [LinkUpdateWithoutPostedByInput ! ]
145
- upsert : [LinkUpsertWithoutPostedByInput ! ]
144
+ update : [LinkUpdateWithWhereUniqueWithoutPostedByInput ! ]
145
+ upsert : [LinkUpsertWithWhereUniqueWithoutPostedByInput ! ]
146
146
}
147
147
148
148
input LinkUpdateOneWithoutVotesInput {
149
149
create : LinkCreateWithoutVotesInput
150
150
connect : LinkWhereUniqueInput
151
- disconnect : LinkWhereUniqueInput
152
- delete : LinkWhereUniqueInput
153
- update : LinkUpdateWithoutVotesInput
151
+ delete : Boolean
152
+ update : LinkUpdateWithoutVotesDataInput
154
153
upsert : LinkUpsertWithoutVotesInput
155
154
}
156
155
@@ -160,34 +159,28 @@ input LinkUpdateWithoutPostedByDataInput {
160
159
votes : VoteUpdateManyWithoutLinkInput
161
160
}
162
161
163
- input LinkUpdateWithoutPostedByInput {
164
- where : LinkWhereUniqueInput !
165
- data : LinkUpdateWithoutPostedByDataInput !
166
- }
167
-
168
162
input LinkUpdateWithoutVotesDataInput {
169
163
description : String
170
164
url : String
171
165
postedBy : UserUpdateOneWithoutLinksInput
172
166
}
173
167
174
- input LinkUpdateWithoutVotesInput {
175
- where : LinkWhereUniqueInput !
176
- data : LinkUpdateWithoutVotesDataInput !
177
- }
178
-
179
- input LinkUpsertWithoutPostedByInput {
168
+ input LinkUpdateWithWhereUniqueWithoutPostedByInput {
180
169
where : LinkWhereUniqueInput !
181
- update : LinkUpdateWithoutPostedByDataInput !
182
- create : LinkCreateWithoutPostedByInput !
170
+ data : LinkUpdateWithoutPostedByDataInput !
183
171
}
184
172
185
173
input LinkUpsertWithoutVotesInput {
186
- where : LinkWhereUniqueInput !
187
174
update : LinkUpdateWithoutVotesDataInput !
188
175
create : LinkCreateWithoutVotesInput !
189
176
}
190
177
178
+ input LinkUpsertWithWhereUniqueWithoutPostedByInput {
179
+ where : LinkWhereUniqueInput !
180
+ update : LinkUpdateWithoutPostedByDataInput !
181
+ create : LinkCreateWithoutPostedByInput !
182
+ }
183
+
191
184
input LinkWhereInput {
192
185
AND : [LinkWhereInput ! ]
193
186
OR : [LinkWhereInput ! ]
@@ -403,18 +396,17 @@ input UserUpdateInput {
403
396
input UserUpdateOneWithoutLinksInput {
404
397
create : UserCreateWithoutLinksInput
405
398
connect : UserWhereUniqueInput
406
- disconnect : UserWhereUniqueInput
407
- delete : UserWhereUniqueInput
408
- update : UserUpdateWithoutLinksInput
399
+ disconnect : Boolean
400
+ delete : Boolean
401
+ update : UserUpdateWithoutLinksDataInput
409
402
upsert : UserUpsertWithoutLinksInput
410
403
}
411
404
412
405
input UserUpdateOneWithoutVotesInput {
413
406
create : UserCreateWithoutVotesInput
414
407
connect : UserWhereUniqueInput
415
- disconnect : UserWhereUniqueInput
416
- delete : UserWhereUniqueInput
417
- update : UserUpdateWithoutVotesInput
408
+ delete : Boolean
409
+ update : UserUpdateWithoutVotesDataInput
418
410
upsert : UserUpsertWithoutVotesInput
419
411
}
420
412
@@ -425,31 +417,19 @@ input UserUpdateWithoutLinksDataInput {
425
417
votes : VoteUpdateManyWithoutUserInput
426
418
}
427
419
428
- input UserUpdateWithoutLinksInput {
429
- where : UserWhereUniqueInput !
430
- data : UserUpdateWithoutLinksDataInput !
431
- }
432
-
433
420
input UserUpdateWithoutVotesDataInput {
434
421
name : String
435
422
email : String
436
423
password : String
437
424
links : LinkUpdateManyWithoutPostedByInput
438
425
}
439
426
440
- input UserUpdateWithoutVotesInput {
441
- where : UserWhereUniqueInput !
442
- data : UserUpdateWithoutVotesDataInput !
443
- }
444
-
445
427
input UserUpsertWithoutLinksInput {
446
- where : UserWhereUniqueInput !
447
428
update : UserUpdateWithoutLinksDataInput !
448
429
create : UserCreateWithoutLinksInput !
449
430
}
450
431
451
432
input UserUpsertWithoutVotesInput {
452
- where : UserWhereUniqueInput !
453
433
update : UserUpdateWithoutVotesDataInput !
454
434
create : UserCreateWithoutVotesInput !
455
435
}
@@ -600,44 +580,44 @@ input VoteUpdateManyWithoutLinkInput {
600
580
connect : [VoteWhereUniqueInput ! ]
601
581
disconnect : [VoteWhereUniqueInput ! ]
602
582
delete : [VoteWhereUniqueInput ! ]
603
- update : [VoteUpdateWithoutLinkInput ! ]
604
- upsert : [VoteUpsertWithoutLinkInput ! ]
583
+ update : [VoteUpdateWithWhereUniqueWithoutLinkInput ! ]
584
+ upsert : [VoteUpsertWithWhereUniqueWithoutLinkInput ! ]
605
585
}
606
586
607
587
input VoteUpdateManyWithoutUserInput {
608
588
create : [VoteCreateWithoutUserInput ! ]
609
589
connect : [VoteWhereUniqueInput ! ]
610
590
disconnect : [VoteWhereUniqueInput ! ]
611
591
delete : [VoteWhereUniqueInput ! ]
612
- update : [VoteUpdateWithoutUserInput ! ]
613
- upsert : [VoteUpsertWithoutUserInput ! ]
592
+ update : [VoteUpdateWithWhereUniqueWithoutUserInput ! ]
593
+ upsert : [VoteUpsertWithWhereUniqueWithoutUserInput ! ]
614
594
}
615
595
616
596
input VoteUpdateWithoutLinkDataInput {
617
597
user : UserUpdateOneWithoutVotesInput
618
598
}
619
599
620
- input VoteUpdateWithoutLinkInput {
621
- where : VoteWhereUniqueInput !
622
- data : VoteUpdateWithoutLinkDataInput !
623
- }
624
-
625
600
input VoteUpdateWithoutUserDataInput {
626
601
link : LinkUpdateOneWithoutVotesInput
627
602
}
628
603
629
- input VoteUpdateWithoutUserInput {
604
+ input VoteUpdateWithWhereUniqueWithoutLinkInput {
605
+ where : VoteWhereUniqueInput !
606
+ data : VoteUpdateWithoutLinkDataInput !
607
+ }
608
+
609
+ input VoteUpdateWithWhereUniqueWithoutUserInput {
630
610
where : VoteWhereUniqueInput !
631
611
data : VoteUpdateWithoutUserDataInput !
632
612
}
633
613
634
- input VoteUpsertWithoutLinkInput {
614
+ input VoteUpsertWithWhereUniqueWithoutLinkInput {
635
615
where : VoteWhereUniqueInput !
636
616
update : VoteUpdateWithoutLinkDataInput !
637
617
create : VoteCreateWithoutLinkInput !
638
618
}
639
619
640
- input VoteUpsertWithoutUserInput {
620
+ input VoteUpsertWithWhereUniqueWithoutUserInput {
641
621
where : VoteWhereUniqueInput !
642
622
update : VoteUpdateWithoutUserDataInput !
643
623
create : VoteCreateWithoutUserInput !
0 commit comments