forked from paljs/prisma-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexus-typegen.ts
3171 lines (3142 loc) · 162 KB
/
nexus-typegen.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* This file was generated by Nexus Schema
* Do not make changes to this file directly
*/
import type { Context } from "./src/server/context/index"
import type { core } from "nexus"
declare global {
interface NexusGenCustomInputMethods<TypeName extends string> {
/**
* Json custom scalar type
*/
json<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "Json";
/**
* Decimal custom scalar type
*/
decimal<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "Decimal";
/**
* BigInt custom scalar type
*/
bigint<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "BigInt";
/**
* Date custom scalar type
*/
date<FieldName extends string>(fieldName: FieldName, opts?: core.CommonInputFieldConfig<TypeName, FieldName>): void // "DateTime";
}
}
declare global {
interface NexusGenCustomOutputMethods<TypeName extends string> {
/**
* Json custom scalar type
*/
json<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "Json";
/**
* Decimal custom scalar type
*/
decimal<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "Decimal";
/**
* BigInt custom scalar type
*/
bigint<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "BigInt";
/**
* Date custom scalar type
*/
date<FieldName extends string>(fieldName: FieldName, ...opts: core.ScalarOutSpread<TypeName, FieldName>): void // "DateTime";
}
}
declare global {
interface NexusGen extends NexusGenTypes {}
}
export interface NexusGenInputs {
BoolFieldUpdateOperationsInput: { // input type
set?: boolean | null; // Boolean
}
BoolFilter: { // input type
equals?: boolean | null; // Boolean
not?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
}
BoolNullableListFilter: { // input type
equals?: Array<boolean | null> | null; // [Boolean]
has?: boolean | null; // Boolean
hasEvery?: Array<boolean | null> | null; // [Boolean]
hasSome?: Array<boolean | null> | null; // [Boolean]
isEmpty?: boolean | null; // Boolean
}
BoolWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
_min?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: boolean | null; // Boolean
max?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
min?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
not?: NexusGenInputs['NestedBoolWithAggregatesFilter'] | null; // NestedBoolWithAggregatesFilter
}
CommentCreateInput: { // input type
author?: NexusGenInputs['UserCreateNestedOneWithoutCommentsInput'] | null; // UserCreateNestedOneWithoutCommentsInput
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
post: NexusGenInputs['PostCreateNestedOneWithoutCommentsInput']; // PostCreateNestedOneWithoutCommentsInput!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentCreateManyAuthorInput: { // input type
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
postId: number; // Int!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentCreateManyAuthorInputEnvelope: { // input type
data: NexusGenInputs['CommentCreateManyAuthorInput']; // CommentCreateManyAuthorInput!
skipDuplicates?: boolean | null; // Boolean
}
CommentCreateManyInput: { // input type
authorId?: number | null; // Int
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
postId: number; // Int!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentCreateManyPostInput: { // input type
authorId?: number | null; // Int
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentCreateManyPostInputEnvelope: { // input type
data: NexusGenInputs['CommentCreateManyPostInput']; // CommentCreateManyPostInput!
skipDuplicates?: boolean | null; // Boolean
}
CommentCreateNestedManyWithoutAuthorInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutAuthorInput'] | null> | null; // [CommentCreateOrConnectWithoutAuthorInput]
create?: Array<NexusGenInputs['CommentCreateWithoutAuthorInput'] | null> | null; // [CommentCreateWithoutAuthorInput]
createMany?: NexusGenInputs['CommentCreateManyAuthorInputEnvelope'] | null; // CommentCreateManyAuthorInputEnvelope
}
CommentCreateNestedManyWithoutPostInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutPostInput'] | null> | null; // [CommentCreateOrConnectWithoutPostInput]
create?: Array<NexusGenInputs['CommentCreateWithoutPostInput'] | null> | null; // [CommentCreateWithoutPostInput]
createMany?: NexusGenInputs['CommentCreateManyPostInputEnvelope'] | null; // CommentCreateManyPostInputEnvelope
}
CommentCreateOrConnectWithoutAuthorInput: { // input type
create: NexusGenInputs['CommentUncheckedCreateWithoutAuthorInput']; // CommentUncheckedCreateWithoutAuthorInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentCreateOrConnectWithoutPostInput: { // input type
create: NexusGenInputs['CommentUncheckedCreateWithoutPostInput']; // CommentUncheckedCreateWithoutPostInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentCreateWithoutAuthorInput: { // input type
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
post: NexusGenInputs['PostCreateNestedOneWithoutCommentsInput']; // PostCreateNestedOneWithoutCommentsInput!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentCreateWithoutPostInput: { // input type
author?: NexusGenInputs['UserCreateNestedOneWithoutCommentsInput'] | null; // UserCreateNestedOneWithoutCommentsInput
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentListRelationFilter: { // input type
every?: NexusGenInputs['CommentWhereInput'] | null; // CommentWhereInput
none?: NexusGenInputs['CommentWhereInput'] | null; // CommentWhereInput
some?: NexusGenInputs['CommentWhereInput'] | null; // CommentWhereInput
}
CommentOrderByInput: { // input type
authorId?: NexusGenEnums['SortOrder'] | null; // SortOrder
contain?: NexusGenEnums['SortOrder'] | null; // SortOrder
createdAt?: NexusGenEnums['SortOrder'] | null; // SortOrder
id?: NexusGenEnums['SortOrder'] | null; // SortOrder
postId?: NexusGenEnums['SortOrder'] | null; // SortOrder
updatedAt?: NexusGenEnums['SortOrder'] | null; // SortOrder
}
CommentScalarWhereInput: { // input type
AND?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
NOT?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
OR?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
authorId?: NexusGenInputs['IntNullableFilter'] | null; // IntNullableFilter
contain?: NexusGenInputs['StringFilter'] | null; // StringFilter
createdAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
id?: NexusGenInputs['IntFilter'] | null; // IntFilter
postId?: NexusGenInputs['IntFilter'] | null; // IntFilter
updatedAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
}
CommentScalarWhereWithAggregatesInput: { // input type
AND?: Array<NexusGenInputs['CommentScalarWhereWithAggregatesInput'] | null> | null; // [CommentScalarWhereWithAggregatesInput]
NOT?: Array<NexusGenInputs['CommentScalarWhereWithAggregatesInput'] | null> | null; // [CommentScalarWhereWithAggregatesInput]
OR?: Array<NexusGenInputs['CommentScalarWhereWithAggregatesInput'] | null> | null; // [CommentScalarWhereWithAggregatesInput]
authorId?: NexusGenInputs['IntNullableWithAggregatesFilter'] | null; // IntNullableWithAggregatesFilter
contain?: NexusGenInputs['StringWithAggregatesFilter'] | null; // StringWithAggregatesFilter
createdAt?: NexusGenInputs['DateTimeWithAggregatesFilter'] | null; // DateTimeWithAggregatesFilter
id?: NexusGenInputs['IntWithAggregatesFilter'] | null; // IntWithAggregatesFilter
postId?: NexusGenInputs['IntWithAggregatesFilter'] | null; // IntWithAggregatesFilter
updatedAt?: NexusGenInputs['DateTimeWithAggregatesFilter'] | null; // DateTimeWithAggregatesFilter
}
CommentUncheckedCreateInput: { // input type
authorId?: number | null; // Int
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
postId: number; // Int!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentUncheckedCreateNestedManyWithoutAuthorInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutAuthorInput'] | null> | null; // [CommentCreateOrConnectWithoutAuthorInput]
create?: Array<NexusGenInputs['CommentCreateWithoutAuthorInput'] | null> | null; // [CommentCreateWithoutAuthorInput]
createMany?: NexusGenInputs['CommentCreateManyAuthorInputEnvelope'] | null; // CommentCreateManyAuthorInputEnvelope
}
CommentUncheckedCreateNestedManyWithoutPostInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutPostInput'] | null> | null; // [CommentCreateOrConnectWithoutPostInput]
create?: Array<NexusGenInputs['CommentCreateWithoutPostInput'] | null> | null; // [CommentCreateWithoutPostInput]
createMany?: NexusGenInputs['CommentCreateManyPostInputEnvelope'] | null; // CommentCreateManyPostInputEnvelope
}
CommentUncheckedCreateWithoutAuthorInput: { // input type
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
postId: number; // Int!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentUncheckedCreateWithoutPostInput: { // input type
authorId?: number | null; // Int
contain: string; // String!
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
CommentUncheckedUpdateInput: { // input type
authorId?: NexusGenInputs['NullableIntFieldUpdateOperationsInput'] | null; // NullableIntFieldUpdateOperationsInput
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
postId?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUncheckedUpdateManyInput: { // input type
authorId?: NexusGenInputs['NullableIntFieldUpdateOperationsInput'] | null; // NullableIntFieldUpdateOperationsInput
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
postId?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUncheckedUpdateManyWithoutAuthorInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutAuthorInput'] | null> | null; // [CommentCreateOrConnectWithoutAuthorInput]
create?: Array<NexusGenInputs['CommentCreateWithoutAuthorInput'] | null> | null; // [CommentCreateWithoutAuthorInput]
createMany?: NexusGenInputs['CommentCreateManyAuthorInputEnvelope'] | null; // CommentCreateManyAuthorInputEnvelope
delete?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
deleteMany?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
disconnect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
set?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
update?: Array<NexusGenInputs['CommentUpdateWithWhereUniqueWithoutAuthorInput'] | null> | null; // [CommentUpdateWithWhereUniqueWithoutAuthorInput]
updateMany?: Array<NexusGenInputs['CommentUpdateManyWithWhereWithoutAuthorInput'] | null> | null; // [CommentUpdateManyWithWhereWithoutAuthorInput]
upsert?: Array<NexusGenInputs['CommentUpsertWithWhereUniqueWithoutAuthorInput'] | null> | null; // [CommentUpsertWithWhereUniqueWithoutAuthorInput]
}
CommentUncheckedUpdateManyWithoutCommentsInput: { // input type
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
postId?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUncheckedUpdateManyWithoutPostInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutPostInput'] | null> | null; // [CommentCreateOrConnectWithoutPostInput]
create?: Array<NexusGenInputs['CommentCreateWithoutPostInput'] | null> | null; // [CommentCreateWithoutPostInput]
createMany?: NexusGenInputs['CommentCreateManyPostInputEnvelope'] | null; // CommentCreateManyPostInputEnvelope
delete?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
deleteMany?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
disconnect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
set?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
update?: Array<NexusGenInputs['CommentUpdateWithWhereUniqueWithoutPostInput'] | null> | null; // [CommentUpdateWithWhereUniqueWithoutPostInput]
updateMany?: Array<NexusGenInputs['CommentUpdateManyWithWhereWithoutPostInput'] | null> | null; // [CommentUpdateManyWithWhereWithoutPostInput]
upsert?: Array<NexusGenInputs['CommentUpsertWithWhereUniqueWithoutPostInput'] | null> | null; // [CommentUpsertWithWhereUniqueWithoutPostInput]
}
CommentUncheckedUpdateWithoutAuthorInput: { // input type
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
postId?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUncheckedUpdateWithoutPostInput: { // input type
authorId?: NexusGenInputs['NullableIntFieldUpdateOperationsInput'] | null; // NullableIntFieldUpdateOperationsInput
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUpdateInput: { // input type
author?: NexusGenInputs['UserUpdateOneWithoutCommentsInput'] | null; // UserUpdateOneWithoutCommentsInput
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
post?: NexusGenInputs['PostUpdateOneRequiredWithoutCommentsInput'] | null; // PostUpdateOneRequiredWithoutCommentsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUpdateManyMutationInput: { // input type
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUpdateManyWithWhereWithoutAuthorInput: { // input type
data: NexusGenInputs['CommentUncheckedUpdateManyWithoutCommentsInput']; // CommentUncheckedUpdateManyWithoutCommentsInput!
where: NexusGenInputs['CommentScalarWhereInput']; // CommentScalarWhereInput!
}
CommentUpdateManyWithWhereWithoutPostInput: { // input type
data: NexusGenInputs['CommentUncheckedUpdateManyWithoutCommentsInput']; // CommentUncheckedUpdateManyWithoutCommentsInput!
where: NexusGenInputs['CommentScalarWhereInput']; // CommentScalarWhereInput!
}
CommentUpdateManyWithoutAuthorInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutAuthorInput'] | null> | null; // [CommentCreateOrConnectWithoutAuthorInput]
create?: Array<NexusGenInputs['CommentCreateWithoutAuthorInput'] | null> | null; // [CommentCreateWithoutAuthorInput]
createMany?: NexusGenInputs['CommentCreateManyAuthorInputEnvelope'] | null; // CommentCreateManyAuthorInputEnvelope
delete?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
deleteMany?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
disconnect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
set?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
update?: Array<NexusGenInputs['CommentUpdateWithWhereUniqueWithoutAuthorInput'] | null> | null; // [CommentUpdateWithWhereUniqueWithoutAuthorInput]
updateMany?: Array<NexusGenInputs['CommentUpdateManyWithWhereWithoutAuthorInput'] | null> | null; // [CommentUpdateManyWithWhereWithoutAuthorInput]
upsert?: Array<NexusGenInputs['CommentUpsertWithWhereUniqueWithoutAuthorInput'] | null> | null; // [CommentUpsertWithWhereUniqueWithoutAuthorInput]
}
CommentUpdateManyWithoutPostInput: { // input type
connect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['CommentCreateOrConnectWithoutPostInput'] | null> | null; // [CommentCreateOrConnectWithoutPostInput]
create?: Array<NexusGenInputs['CommentCreateWithoutPostInput'] | null> | null; // [CommentCreateWithoutPostInput]
createMany?: NexusGenInputs['CommentCreateManyPostInputEnvelope'] | null; // CommentCreateManyPostInputEnvelope
delete?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
deleteMany?: Array<NexusGenInputs['CommentScalarWhereInput'] | null> | null; // [CommentScalarWhereInput]
disconnect?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
set?: Array<NexusGenInputs['CommentWhereUniqueInput'] | null> | null; // [CommentWhereUniqueInput]
update?: Array<NexusGenInputs['CommentUpdateWithWhereUniqueWithoutPostInput'] | null> | null; // [CommentUpdateWithWhereUniqueWithoutPostInput]
updateMany?: Array<NexusGenInputs['CommentUpdateManyWithWhereWithoutPostInput'] | null> | null; // [CommentUpdateManyWithWhereWithoutPostInput]
upsert?: Array<NexusGenInputs['CommentUpsertWithWhereUniqueWithoutPostInput'] | null> | null; // [CommentUpsertWithWhereUniqueWithoutPostInput]
}
CommentUpdateWithWhereUniqueWithoutAuthorInput: { // input type
data: NexusGenInputs['CommentUncheckedUpdateWithoutAuthorInput']; // CommentUncheckedUpdateWithoutAuthorInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentUpdateWithWhereUniqueWithoutPostInput: { // input type
data: NexusGenInputs['CommentUncheckedUpdateWithoutPostInput']; // CommentUncheckedUpdateWithoutPostInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentUpdateWithoutAuthorInput: { // input type
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
post?: NexusGenInputs['PostUpdateOneRequiredWithoutCommentsInput'] | null; // PostUpdateOneRequiredWithoutCommentsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUpdateWithoutPostInput: { // input type
author?: NexusGenInputs['UserUpdateOneWithoutCommentsInput'] | null; // UserUpdateOneWithoutCommentsInput
contain?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
CommentUpsertWithWhereUniqueWithoutAuthorInput: { // input type
create: NexusGenInputs['CommentUncheckedCreateWithoutAuthorInput']; // CommentUncheckedCreateWithoutAuthorInput!
update: NexusGenInputs['CommentUncheckedUpdateWithoutAuthorInput']; // CommentUncheckedUpdateWithoutAuthorInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentUpsertWithWhereUniqueWithoutPostInput: { // input type
create: NexusGenInputs['CommentUncheckedCreateWithoutPostInput']; // CommentUncheckedCreateWithoutPostInput!
update: NexusGenInputs['CommentUncheckedUpdateWithoutPostInput']; // CommentUncheckedUpdateWithoutPostInput!
where: NexusGenInputs['CommentWhereUniqueInput']; // CommentWhereUniqueInput!
}
CommentWhereInput: { // input type
AND?: Array<NexusGenInputs['CommentWhereInput'] | null> | null; // [CommentWhereInput]
NOT?: Array<NexusGenInputs['CommentWhereInput'] | null> | null; // [CommentWhereInput]
OR?: Array<NexusGenInputs['CommentWhereInput'] | null> | null; // [CommentWhereInput]
author?: NexusGenInputs['UserWhereInput'] | null; // UserWhereInput
authorId?: NexusGenInputs['IntNullableFilter'] | null; // IntNullableFilter
contain?: NexusGenInputs['StringFilter'] | null; // StringFilter
createdAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
id?: NexusGenInputs['IntFilter'] | null; // IntFilter
post?: NexusGenInputs['PostWhereInput'] | null; // PostWhereInput
postId?: NexusGenInputs['IntFilter'] | null; // IntFilter
updatedAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
}
CommentWhereUniqueInput: { // input type
id?: number | null; // Int
}
DateTimeFieldUpdateOperationsInput: { // input type
set?: NexusGenScalars['DateTime'] | null; // DateTime
}
DateTimeFilter: { // input type
equals?: NexusGenScalars['DateTime'] | null; // DateTime
gt?: NexusGenScalars['DateTime'] | null; // DateTime
gte?: NexusGenScalars['DateTime'] | null; // DateTime
in?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
lt?: NexusGenScalars['DateTime'] | null; // DateTime
lte?: NexusGenScalars['DateTime'] | null; // DateTime
not?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
notIn?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
}
DateTimeWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
_min?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: NexusGenScalars['DateTime'] | null; // DateTime
gt?: NexusGenScalars['DateTime'] | null; // DateTime
gte?: NexusGenScalars['DateTime'] | null; // DateTime
in?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
lt?: NexusGenScalars['DateTime'] | null; // DateTime
lte?: NexusGenScalars['DateTime'] | null; // DateTime
max?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
min?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
not?: NexusGenInputs['NestedDateTimeWithAggregatesFilter'] | null; // NestedDateTimeWithAggregatesFilter
notIn?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
}
EnumRolsNullableListFilter: { // input type
equals?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
has?: NexusGenEnums['Rols'] | null; // Rols
hasEvery?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
hasSome?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
isEmpty?: boolean | null; // Boolean
}
FloatNullableListFilter: { // input type
equals?: Array<number | null> | null; // [Float]
has?: number | null; // Float
hasEvery?: Array<number | null> | null; // [Float]
hasSome?: Array<number | null> | null; // [Float]
isEmpty?: boolean | null; // Boolean
}
GroupCreateInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
name: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
users?: NexusGenInputs['UserCreateNestedManyWithoutGroupInput'] | null; // UserCreateNestedManyWithoutGroupInput
}
GroupCreateManyInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
name: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
GroupCreateNestedOneWithoutUsersInput: { // input type
connect?: NexusGenInputs['GroupWhereUniqueInput'] | null; // GroupWhereUniqueInput
connectOrCreate?: NexusGenInputs['GroupCreateOrConnectWithoutUsersInput'] | null; // GroupCreateOrConnectWithoutUsersInput
create?: NexusGenInputs['GroupUncheckedCreateWithoutUsersInput'] | null; // GroupUncheckedCreateWithoutUsersInput
}
GroupCreateOrConnectWithoutUsersInput: { // input type
create: NexusGenInputs['GroupUncheckedCreateWithoutUsersInput']; // GroupUncheckedCreateWithoutUsersInput!
where: NexusGenInputs['GroupWhereUniqueInput']; // GroupWhereUniqueInput!
}
GroupCreateWithoutUsersInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
name: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
GroupOrderByInput: { // input type
createdAt?: NexusGenEnums['SortOrder'] | null; // SortOrder
id?: NexusGenEnums['SortOrder'] | null; // SortOrder
name?: NexusGenEnums['SortOrder'] | null; // SortOrder
updatedAt?: NexusGenEnums['SortOrder'] | null; // SortOrder
}
GroupRelationFilter: { // input type
is?: NexusGenInputs['GroupWhereInput'] | null; // GroupWhereInput
isNot?: NexusGenInputs['GroupWhereInput'] | null; // GroupWhereInput
}
GroupScalarWhereWithAggregatesInput: { // input type
AND?: Array<NexusGenInputs['GroupScalarWhereWithAggregatesInput'] | null> | null; // [GroupScalarWhereWithAggregatesInput]
NOT?: Array<NexusGenInputs['GroupScalarWhereWithAggregatesInput'] | null> | null; // [GroupScalarWhereWithAggregatesInput]
OR?: Array<NexusGenInputs['GroupScalarWhereWithAggregatesInput'] | null> | null; // [GroupScalarWhereWithAggregatesInput]
createdAt?: NexusGenInputs['DateTimeWithAggregatesFilter'] | null; // DateTimeWithAggregatesFilter
id?: NexusGenInputs['IntWithAggregatesFilter'] | null; // IntWithAggregatesFilter
name?: NexusGenInputs['StringWithAggregatesFilter'] | null; // StringWithAggregatesFilter
updatedAt?: NexusGenInputs['DateTimeWithAggregatesFilter'] | null; // DateTimeWithAggregatesFilter
}
GroupUncheckedCreateInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
name: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
users?: NexusGenInputs['UserUncheckedCreateNestedManyWithoutGroupInput'] | null; // UserUncheckedCreateNestedManyWithoutGroupInput
}
GroupUncheckedCreateWithoutUsersInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
name: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
GroupUncheckedUpdateInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
users?: NexusGenInputs['UserUncheckedUpdateManyWithoutGroupInput'] | null; // UserUncheckedUpdateManyWithoutGroupInput
}
GroupUncheckedUpdateManyInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
GroupUncheckedUpdateWithoutUsersInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
GroupUpdateInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
users?: NexusGenInputs['UserUpdateManyWithoutGroupInput'] | null; // UserUpdateManyWithoutGroupInput
}
GroupUpdateManyMutationInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
GroupUpdateOneWithoutUsersInput: { // input type
connect?: NexusGenInputs['GroupWhereUniqueInput'] | null; // GroupWhereUniqueInput
connectOrCreate?: NexusGenInputs['GroupCreateOrConnectWithoutUsersInput'] | null; // GroupCreateOrConnectWithoutUsersInput
create?: NexusGenInputs['GroupUncheckedCreateWithoutUsersInput'] | null; // GroupUncheckedCreateWithoutUsersInput
delete?: boolean | null; // Boolean
disconnect?: boolean | null; // Boolean
update?: NexusGenInputs['GroupUncheckedUpdateWithoutUsersInput'] | null; // GroupUncheckedUpdateWithoutUsersInput
upsert?: NexusGenInputs['GroupUpsertWithoutUsersInput'] | null; // GroupUpsertWithoutUsersInput
}
GroupUpdateWithoutUsersInput: { // input type
createdAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
name?: NexusGenInputs['StringFieldUpdateOperationsInput'] | null; // StringFieldUpdateOperationsInput
updatedAt?: NexusGenInputs['DateTimeFieldUpdateOperationsInput'] | null; // DateTimeFieldUpdateOperationsInput
}
GroupUpsertWithoutUsersInput: { // input type
create: NexusGenInputs['GroupUncheckedCreateWithoutUsersInput']; // GroupUncheckedCreateWithoutUsersInput!
update: NexusGenInputs['GroupUncheckedUpdateWithoutUsersInput']; // GroupUncheckedUpdateWithoutUsersInput!
}
GroupWhereInput: { // input type
AND?: Array<NexusGenInputs['GroupWhereInput'] | null> | null; // [GroupWhereInput]
NOT?: Array<NexusGenInputs['GroupWhereInput'] | null> | null; // [GroupWhereInput]
OR?: Array<NexusGenInputs['GroupWhereInput'] | null> | null; // [GroupWhereInput]
createdAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
id?: NexusGenInputs['IntFilter'] | null; // IntFilter
name?: NexusGenInputs['StringFilter'] | null; // StringFilter
updatedAt?: NexusGenInputs['DateTimeFilter'] | null; // DateTimeFilter
users?: NexusGenInputs['UserListRelationFilter'] | null; // UserListRelationFilter
}
GroupWhereUniqueInput: { // input type
id?: number | null; // Int
}
IntFieldUpdateOperationsInput: { // input type
decrement?: number | null; // Int
divide?: number | null; // Int
increment?: number | null; // Int
multiply?: number | null; // Int
set?: number | null; // Int
}
IntFilter: { // input type
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
not?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
notIn?: Array<number | null> | null; // [Int]
}
IntNullableFilter: { // input type
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
not?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
notIn?: Array<number | null> | null; // [Int]
}
IntNullableListFilter: { // input type
equals?: Array<number | null> | null; // [Int]
has?: number | null; // Int
hasEvery?: Array<number | null> | null; // [Int]
hasSome?: Array<number | null> | null; // [Int]
isEmpty?: boolean | null; // Boolean
}
IntNullableWithAggregatesFilter: { // input type
_avg?: NexusGenInputs['NestedFloatNullableFilter'] | null; // NestedFloatNullableFilter
_count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_max?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_min?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_sum?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
avg?: NexusGenInputs['NestedFloatNullableFilter'] | null; // NestedFloatNullableFilter
count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
max?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
min?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
not?: NexusGenInputs['NestedIntNullableWithAggregatesFilter'] | null; // NestedIntNullableWithAggregatesFilter
notIn?: Array<number | null> | null; // [Int]
sum?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
}
IntWithAggregatesFilter: { // input type
_avg?: NexusGenInputs['NestedFloatFilter'] | null; // NestedFloatFilter
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_min?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_sum?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
avg?: NexusGenInputs['NestedFloatFilter'] | null; // NestedFloatFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
max?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
min?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
not?: NexusGenInputs['NestedIntWithAggregatesFilter'] | null; // NestedIntWithAggregatesFilter
notIn?: Array<number | null> | null; // [Int]
sum?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
}
ListCreateInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListCreateManyInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
id?: number | null; // Int
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListCreateManybooleanInput: { // input type
set: boolean; // Boolean!
}
ListCreateManyenumsInput: { // input type
set: NexusGenEnums['Rols']; // Rols!
}
ListCreateManyfloatInput: { // input type
set: number; // Float!
}
ListCreateManyintegerInput: { // input type
set: number; // Int!
}
ListCreateManystringInput: { // input type
set: string; // String!
}
ListCreatebooleanInput: { // input type
set: boolean; // Boolean!
}
ListCreateenumsInput: { // input type
set: NexusGenEnums['Rols']; // Rols!
}
ListCreatefloatInput: { // input type
set: number; // Float!
}
ListCreateintegerInput: { // input type
set: number; // Int!
}
ListCreatestringInput: { // input type
set: string; // String!
}
ListOrderByInput: { // input type
boolean?: NexusGenEnums['SortOrder'] | null; // SortOrder
enums?: NexusGenEnums['SortOrder'] | null; // SortOrder
float?: NexusGenEnums['SortOrder'] | null; // SortOrder
id?: NexusGenEnums['SortOrder'] | null; // SortOrder
integer?: NexusGenEnums['SortOrder'] | null; // SortOrder
string?: NexusGenEnums['SortOrder'] | null; // SortOrder
}
ListScalarWhereWithAggregatesInput: { // input type
AND?: Array<NexusGenInputs['ListScalarWhereWithAggregatesInput'] | null> | null; // [ListScalarWhereWithAggregatesInput]
NOT?: Array<NexusGenInputs['ListScalarWhereWithAggregatesInput'] | null> | null; // [ListScalarWhereWithAggregatesInput]
OR?: Array<NexusGenInputs['ListScalarWhereWithAggregatesInput'] | null> | null; // [ListScalarWhereWithAggregatesInput]
boolean?: NexusGenInputs['BoolNullableListFilter'] | null; // BoolNullableListFilter
enums?: NexusGenInputs['EnumRolsNullableListFilter'] | null; // EnumRolsNullableListFilter
float?: NexusGenInputs['FloatNullableListFilter'] | null; // FloatNullableListFilter
id?: NexusGenInputs['IntWithAggregatesFilter'] | null; // IntWithAggregatesFilter
integer?: NexusGenInputs['IntNullableListFilter'] | null; // IntNullableListFilter
string?: NexusGenInputs['StringNullableListFilter'] | null; // StringNullableListFilter
}
ListUncheckedCreateInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
id?: number | null; // Int
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListUncheckedUpdateInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListUncheckedUpdateManyInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
id?: NexusGenInputs['IntFieldUpdateOperationsInput'] | null; // IntFieldUpdateOperationsInput
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListUpdateInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListUpdateManyMutationInput: { // input type
boolean?: Array<boolean | null> | null; // [Boolean]
enums?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
float?: Array<number | null> | null; // [Float]
integer?: Array<number | null> | null; // [Int]
string?: Array<string | null> | null; // [String]
}
ListUpdatebooleanInput: { // input type
push?: Array<boolean | null> | null; // [Boolean]
set?: Array<boolean | null> | null; // [Boolean]
}
ListUpdateenumsInput: { // input type
push?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
set?: Array<NexusGenEnums['Rols'] | null> | null; // [Rols]
}
ListUpdatefloatInput: { // input type
push?: Array<number | null> | null; // [Float]
set?: Array<number | null> | null; // [Float]
}
ListUpdateintegerInput: { // input type
push?: Array<number | null> | null; // [Int]
set?: Array<number | null> | null; // [Int]
}
ListUpdatestringInput: { // input type
push?: Array<string | null> | null; // [String]
set?: Array<string | null> | null; // [String]
}
ListWhereInput: { // input type
AND?: Array<NexusGenInputs['ListWhereInput'] | null> | null; // [ListWhereInput]
NOT?: Array<NexusGenInputs['ListWhereInput'] | null> | null; // [ListWhereInput]
OR?: Array<NexusGenInputs['ListWhereInput'] | null> | null; // [ListWhereInput]
boolean?: NexusGenInputs['BoolNullableListFilter'] | null; // BoolNullableListFilter
enums?: NexusGenInputs['EnumRolsNullableListFilter'] | null; // EnumRolsNullableListFilter
float?: NexusGenInputs['FloatNullableListFilter'] | null; // FloatNullableListFilter
id?: NexusGenInputs['IntFilter'] | null; // IntFilter
integer?: NexusGenInputs['IntNullableListFilter'] | null; // IntNullableListFilter
string?: NexusGenInputs['StringNullableListFilter'] | null; // StringNullableListFilter
}
ListWhereUniqueInput: { // input type
id?: number | null; // Int
}
NestedBoolFilter: { // input type
equals?: boolean | null; // Boolean
not?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
}
NestedBoolWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
_min?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: boolean | null; // Boolean
max?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
min?: NexusGenInputs['NestedBoolFilter'] | null; // NestedBoolFilter
not?: NexusGenInputs['NestedBoolWithAggregatesFilter'] | null; // NestedBoolWithAggregatesFilter
}
NestedDateTimeFilter: { // input type
equals?: NexusGenScalars['DateTime'] | null; // DateTime
gt?: NexusGenScalars['DateTime'] | null; // DateTime
gte?: NexusGenScalars['DateTime'] | null; // DateTime
in?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
lt?: NexusGenScalars['DateTime'] | null; // DateTime
lte?: NexusGenScalars['DateTime'] | null; // DateTime
not?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
notIn?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
}
NestedDateTimeWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
_min?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: NexusGenScalars['DateTime'] | null; // DateTime
gt?: NexusGenScalars['DateTime'] | null; // DateTime
gte?: NexusGenScalars['DateTime'] | null; // DateTime
in?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
lt?: NexusGenScalars['DateTime'] | null; // DateTime
lte?: NexusGenScalars['DateTime'] | null; // DateTime
max?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
min?: NexusGenInputs['NestedDateTimeFilter'] | null; // NestedDateTimeFilter
not?: NexusGenInputs['NestedDateTimeWithAggregatesFilter'] | null; // NestedDateTimeWithAggregatesFilter
notIn?: Array<NexusGenScalars['DateTime'] | null> | null; // [DateTime]
}
NestedFloatFilter: { // input type
equals?: number | null; // Float
gt?: number | null; // Float
gte?: number | null; // Float
in?: Array<number | null> | null; // [Float]
lt?: number | null; // Float
lte?: number | null; // Float
not?: NexusGenInputs['NestedFloatFilter'] | null; // NestedFloatFilter
notIn?: Array<number | null> | null; // [Float]
}
NestedFloatNullableFilter: { // input type
equals?: number | null; // Float
gt?: number | null; // Float
gte?: number | null; // Float
in?: Array<number | null> | null; // [Float]
lt?: number | null; // Float
lte?: number | null; // Float
not?: NexusGenInputs['NestedFloatNullableFilter'] | null; // NestedFloatNullableFilter
notIn?: Array<number | null> | null; // [Float]
}
NestedIntFilter: { // input type
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
not?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
notIn?: Array<number | null> | null; // [Int]
}
NestedIntNullableFilter: { // input type
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
not?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
notIn?: Array<number | null> | null; // [Int]
}
NestedIntNullableWithAggregatesFilter: { // input type
_avg?: NexusGenInputs['NestedFloatNullableFilter'] | null; // NestedFloatNullableFilter
_count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_max?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_min?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_sum?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
avg?: NexusGenInputs['NestedFloatNullableFilter'] | null; // NestedFloatNullableFilter
count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
max?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
min?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
not?: NexusGenInputs['NestedIntNullableWithAggregatesFilter'] | null; // NestedIntNullableWithAggregatesFilter
notIn?: Array<number | null> | null; // [Int]
sum?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
}
NestedIntWithAggregatesFilter: { // input type
_avg?: NexusGenInputs['NestedFloatFilter'] | null; // NestedFloatFilter
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_min?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_sum?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
avg?: NexusGenInputs['NestedFloatFilter'] | null; // NestedFloatFilter
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
equals?: number | null; // Int
gt?: number | null; // Int
gte?: number | null; // Int
in?: Array<number | null> | null; // [Int]
lt?: number | null; // Int
lte?: number | null; // Int
max?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
min?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
not?: NexusGenInputs['NestedIntWithAggregatesFilter'] | null; // NestedIntWithAggregatesFilter
notIn?: Array<number | null> | null; // [Int]
sum?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
}
NestedStringFilter: { // input type
contains?: string | null; // String
endsWith?: string | null; // String
equals?: string | null; // String
gt?: string | null; // String
gte?: string | null; // String
in?: Array<string | null> | null; // [String]
lt?: string | null; // String
lte?: string | null; // String
not?: NexusGenInputs['NestedStringFilter'] | null; // NestedStringFilter
notIn?: Array<string | null> | null; // [String]
startsWith?: string | null; // String
}
NestedStringNullableFilter: { // input type
contains?: string | null; // String
endsWith?: string | null; // String
equals?: string | null; // String
gt?: string | null; // String
gte?: string | null; // String
in?: Array<string | null> | null; // [String]
lt?: string | null; // String
lte?: string | null; // String
not?: NexusGenInputs['NestedStringNullableFilter'] | null; // NestedStringNullableFilter
notIn?: Array<string | null> | null; // [String]
startsWith?: string | null; // String
}
NestedStringNullableWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
_max?: NexusGenInputs['NestedStringNullableFilter'] | null; // NestedStringNullableFilter
_min?: NexusGenInputs['NestedStringNullableFilter'] | null; // NestedStringNullableFilter
contains?: string | null; // String
count?: NexusGenInputs['NestedIntNullableFilter'] | null; // NestedIntNullableFilter
endsWith?: string | null; // String
equals?: string | null; // String
gt?: string | null; // String
gte?: string | null; // String
in?: Array<string | null> | null; // [String]
lt?: string | null; // String
lte?: string | null; // String
max?: NexusGenInputs['NestedStringNullableFilter'] | null; // NestedStringNullableFilter
min?: NexusGenInputs['NestedStringNullableFilter'] | null; // NestedStringNullableFilter
not?: NexusGenInputs['NestedStringNullableWithAggregatesFilter'] | null; // NestedStringNullableWithAggregatesFilter
notIn?: Array<string | null> | null; // [String]
startsWith?: string | null; // String
}
NestedStringWithAggregatesFilter: { // input type
_count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
_max?: NexusGenInputs['NestedStringFilter'] | null; // NestedStringFilter
_min?: NexusGenInputs['NestedStringFilter'] | null; // NestedStringFilter
contains?: string | null; // String
count?: NexusGenInputs['NestedIntFilter'] | null; // NestedIntFilter
endsWith?: string | null; // String
equals?: string | null; // String
gt?: string | null; // String
gte?: string | null; // String
in?: Array<string | null> | null; // [String]
lt?: string | null; // String
lte?: string | null; // String
max?: NexusGenInputs['NestedStringFilter'] | null; // NestedStringFilter
min?: NexusGenInputs['NestedStringFilter'] | null; // NestedStringFilter
not?: NexusGenInputs['NestedStringWithAggregatesFilter'] | null; // NestedStringWithAggregatesFilter
notIn?: Array<string | null> | null; // [String]
startsWith?: string | null; // String
}
NullableIntFieldUpdateOperationsInput: { // input type
decrement?: number | null; // Int
divide?: number | null; // Int
increment?: number | null; // Int
multiply?: number | null; // Int
set?: number | null; // Int
}
NullableStringFieldUpdateOperationsInput: { // input type
set?: string | null; // String
}
PostCreateInput: { // input type
author?: NexusGenInputs['UserCreateNestedOneWithoutPostsInput'] | null; // UserCreateNestedOneWithoutPostsInput
comments?: NexusGenInputs['CommentCreateNestedManyWithoutPostInput'] | null; // CommentCreateNestedManyWithoutPostInput
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
published?: boolean | null; // Boolean
title: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
PostCreateManyAuthorInput: { // input type
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
published?: boolean | null; // Boolean
title: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
PostCreateManyAuthorInputEnvelope: { // input type
data: NexusGenInputs['PostCreateManyAuthorInput']; // PostCreateManyAuthorInput!
skipDuplicates?: boolean | null; // Boolean
}
PostCreateManyInput: { // input type
authorId?: number | null; // Int
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
id?: number | null; // Int
published?: boolean | null; // Boolean
title: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
PostCreateNestedManyWithoutAuthorInput: { // input type
connect?: Array<NexusGenInputs['PostWhereUniqueInput'] | null> | null; // [PostWhereUniqueInput]
connectOrCreate?: Array<NexusGenInputs['PostCreateOrConnectWithoutAuthorInput'] | null> | null; // [PostCreateOrConnectWithoutAuthorInput]
create?: Array<NexusGenInputs['PostCreateWithoutAuthorInput'] | null> | null; // [PostCreateWithoutAuthorInput]
createMany?: NexusGenInputs['PostCreateManyAuthorInputEnvelope'] | null; // PostCreateManyAuthorInputEnvelope
}
PostCreateNestedOneWithoutCommentsInput: { // input type
connect?: NexusGenInputs['PostWhereUniqueInput'] | null; // PostWhereUniqueInput
connectOrCreate?: NexusGenInputs['PostCreateOrConnectWithoutCommentsInput'] | null; // PostCreateOrConnectWithoutCommentsInput
create?: NexusGenInputs['PostUncheckedCreateWithoutCommentsInput'] | null; // PostUncheckedCreateWithoutCommentsInput
}
PostCreateOrConnectWithoutAuthorInput: { // input type
create: NexusGenInputs['PostUncheckedCreateWithoutAuthorInput']; // PostUncheckedCreateWithoutAuthorInput!
where: NexusGenInputs['PostWhereUniqueInput']; // PostWhereUniqueInput!
}
PostCreateOrConnectWithoutCommentsInput: { // input type
create: NexusGenInputs['PostUncheckedCreateWithoutCommentsInput']; // PostUncheckedCreateWithoutCommentsInput!
where: NexusGenInputs['PostWhereUniqueInput']; // PostWhereUniqueInput!
}
PostCreateWithoutAuthorInput: { // input type
comments?: NexusGenInputs['CommentCreateNestedManyWithoutPostInput'] | null; // CommentCreateNestedManyWithoutPostInput
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
published?: boolean | null; // Boolean
title: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
PostCreateWithoutCommentsInput: { // input type
author?: NexusGenInputs['UserCreateNestedOneWithoutPostsInput'] | null; // UserCreateNestedOneWithoutPostsInput
createdAt?: NexusGenScalars['DateTime'] | null; // DateTime
published?: boolean | null; // Boolean
title: string; // String!
updatedAt?: NexusGenScalars['DateTime'] | null; // DateTime
}
PostListRelationFilter: { // input type
every?: NexusGenInputs['PostWhereInput'] | null; // PostWhereInput