-
Notifications
You must be signed in to change notification settings - Fork 0
/
generated-schema.graphql
8604 lines (7679 loc) · 239 KB
/
generated-schema.graphql
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 TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
type AffectedRowsOutput {
count: Int!
}
type AggregateClub {
_avg: ClubAvgAggregate
_count: ClubCountAggregate
_max: ClubMaxAggregate
_min: ClubMinAggregate
_sum: ClubSumAggregate
}
type AggregateClubCoordinator {
_avg: ClubCoordinatorAvgAggregate
_count: ClubCoordinatorCountAggregate
_max: ClubCoordinatorMaxAggregate
_min: ClubCoordinatorMinAggregate
_sum: ClubCoordinatorSumAggregate
}
type AggregateClubEvent {
_avg: ClubEventAvgAggregate
_count: ClubEventCountAggregate
_max: ClubEventMaxAggregate
_min: ClubEventMinAggregate
_sum: ClubEventSumAggregate
}
type AggregateClubMember {
_avg: ClubMemberAvgAggregate
_count: ClubMemberCountAggregate
_max: ClubMemberMaxAggregate
_min: ClubMemberMinAggregate
_sum: ClubMemberSumAggregate
}
type AggregateClubNotification {
_avg: ClubNotificationAvgAggregate
_count: ClubNotificationCountAggregate
_max: ClubNotificationMaxAggregate
_min: ClubNotificationMinAggregate
_sum: ClubNotificationSumAggregate
}
type AggregateClubRank {
_avg: ClubRankAvgAggregate
_count: ClubRankCountAggregate
_max: ClubRankMaxAggregate
_min: ClubRankMinAggregate
_sum: ClubRankSumAggregate
}
type AggregateClubTag {
_avg: ClubTagAvgAggregate
_count: ClubTagCountAggregate
_max: ClubTagMaxAggregate
_min: ClubTagMinAggregate
_sum: ClubTagSumAggregate
}
type AggregateEvent {
_avg: EventAvgAggregate
_count: EventCountAggregate
_max: EventMaxAggregate
_min: EventMinAggregate
_sum: EventSumAggregate
}
type AggregateNotification {
_avg: NotificationAvgAggregate
_count: NotificationCountAggregate
_max: NotificationMaxAggregate
_min: NotificationMinAggregate
_sum: NotificationSumAggregate
}
type AggregateOTP {
_avg: OTPAvgAggregate
_count: OTPCountAggregate
_max: OTPMaxAggregate
_min: OTPMinAggregate
_sum: OTPSumAggregate
}
type AggregatePosition {
_avg: PositionAvgAggregate
_count: PositionCountAggregate
_max: PositionMaxAggregate
_min: PositionMinAggregate
_sum: PositionSumAggregate
}
type AggregateRSVPEvent {
_avg: RSVPEventAvgAggregate
_count: RSVPEventCountAggregate
_max: RSVPEventMaxAggregate
_min: RSVPEventMinAggregate
_sum: RSVPEventSumAggregate
}
type AggregateStudentRank {
_avg: StudentRankAvgAggregate
_count: StudentRankCountAggregate
_max: StudentRankMaxAggregate
_min: StudentRankMinAggregate
_sum: StudentRankSumAggregate
}
type AggregateSubscription {
_avg: SubscriptionAvgAggregate
_count: SubscriptionCountAggregate
_max: SubscriptionMaxAggregate
_min: SubscriptionMinAggregate
_sum: SubscriptionSumAggregate
}
type AggregateTag {
_avg: TagAvgAggregate
_count: TagCountAggregate
_max: TagMaxAggregate
_min: TagMinAggregate
_sum: TagSumAggregate
}
type AggregateUser {
_avg: UserAvgAggregate
_count: UserCountAggregate
_max: UserMaxAggregate
_min: UserMinAggregate
_sum: UserSumAggregate
}
type AggregateUserNotification {
_avg: UserNotificationAvgAggregate
_count: UserNotificationCountAggregate
_max: UserNotificationMaxAggregate
_min: UserNotificationMinAggregate
_sum: UserNotificationSumAggregate
}
type AggregateUserTag {
_avg: UserTagAvgAggregate
_count: UserTagCountAggregate
_max: UserTagMaxAggregate
_min: UserTagMinAggregate
_sum: UserTagSumAggregate
}
type AggregateVote {
_avg: VoteAvgAggregate
_count: VoteCountAggregate
_max: VoteMaxAggregate
_min: VoteMinAggregate
_sum: VoteSumAggregate
}
type Auth {
token: String!
user: User!
}
input BoolFieldUpdateOperationsInput {
set: Boolean
}
input BoolFilter {
equals: Boolean
not: NestedBoolFilter
}
input BoolWithAggregatesFilter {
_count: NestedIntFilter
_max: NestedBoolFilter
_min: NestedBoolFilter
equals: Boolean
not: NestedBoolWithAggregatesFilter
}
type Club {
_count: ClubCount
clubCoordinator(cursor: ClubCoordinatorWhereUniqueInput, distinct: [ClubCoordinatorScalarFieldEnum!], orderBy: [ClubCoordinatorOrderByWithRelationInput!], skip: Int, take: Int, where: ClubCoordinatorWhereInput): [ClubCoordinator!]!
clubEvents(cursor: ClubEventWhereUniqueInput, distinct: [ClubEventScalarFieldEnum!], orderBy: [ClubEventOrderByWithRelationInput!], skip: Int, take: Int, where: ClubEventWhereInput): [ClubEvent!]!
clubMember(cursor: ClubMemberWhereUniqueInput, distinct: [ClubMemberScalarFieldEnum!], orderBy: [ClubMemberOrderByWithRelationInput!], skip: Int, take: Int, where: ClubMemberWhereInput): [ClubMember!]!
clubNotifications(cursor: ClubNotificationWhereUniqueInput, distinct: [ClubNotificationScalarFieldEnum!], orderBy: [ClubNotificationOrderByWithRelationInput!], skip: Int, take: Int, where: ClubNotificationWhereInput): [ClubNotification!]!
clubRank: ClubRank
clubtags(cursor: ClubTagWhereUniqueInput, distinct: [ClubTagScalarFieldEnum!], orderBy: [ClubTagOrderByWithRelationInput!], skip: Int, take: Int, where: ClubTagWhereInput): [ClubTag!]!
createdAt: DateTime!
deletedAt: DateTime
description: String!
id: Int!
image: String!
links: String!
name: String!
otp: OTP
subscription(cursor: SubscriptionWhereUniqueInput, distinct: [SubscriptionScalarFieldEnum!], orderBy: [SubscriptionOrderByWithRelationInput!], skip: Int, take: Int, where: SubscriptionWhereInput): [Subscription!]!
updatedAt: DateTime!
}
type ClubAvgAggregate {
id: Float
}
input ClubAvgOrderByAggregateInput {
id: SortOrder
}
type ClubCoordinator {
club: Club!
clubId: Int!
createdAt: DateTime!
deletedAt: DateTime
id: Int!
updatedAt: DateTime!
user: User!
userId: Int!
}
type ClubCoordinatorAvgAggregate {
clubId: Float
id: Float
userId: Float
}
input ClubCoordinatorAvgOrderByAggregateInput {
clubId: SortOrder
id: SortOrder
userId: SortOrder
}
input ClubCoordinatorClubIdUserIdCompoundUniqueInput {
clubId: Int!
userId: Int!
}
type ClubCoordinatorCountAggregate {
_all: Int!
clubId: Int!
createdAt: Int!
deletedAt: Int!
id: Int!
updatedAt: Int!
userId: Int!
}
input ClubCoordinatorCountOrderByAggregateInput {
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
id: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input ClubCoordinatorCreateInput {
club: ClubCreateNestedOneWithoutClubCoordinatorInput!
createdAt: DateTime
deletedAt: DateTime
updatedAt: DateTime
user: UserCreateNestedOneWithoutClubCoordinatorInput!
}
input ClubCoordinatorCreateManyClubInput {
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
userId: Int!
}
input ClubCoordinatorCreateManyClubInputEnvelope {
data: [ClubCoordinatorCreateManyClubInput!]!
skipDuplicates: Boolean
}
input ClubCoordinatorCreateManyInput {
clubId: Int!
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
userId: Int!
}
input ClubCoordinatorCreateManyUserInput {
clubId: Int!
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
}
input ClubCoordinatorCreateManyUserInputEnvelope {
data: [ClubCoordinatorCreateManyUserInput!]!
skipDuplicates: Boolean
}
input ClubCoordinatorCreateNestedManyWithoutClubInput {
connect: [ClubCoordinatorWhereUniqueInput!]
connectOrCreate: [ClubCoordinatorCreateOrConnectWithoutClubInput!]
create: [ClubCoordinatorCreateWithoutClubInput!]
createMany: ClubCoordinatorCreateManyClubInputEnvelope
}
input ClubCoordinatorCreateNestedManyWithoutUserInput {
connect: [ClubCoordinatorWhereUniqueInput!]
connectOrCreate: [ClubCoordinatorCreateOrConnectWithoutUserInput!]
create: [ClubCoordinatorCreateWithoutUserInput!]
createMany: ClubCoordinatorCreateManyUserInputEnvelope
}
input ClubCoordinatorCreateOrConnectWithoutClubInput {
create: ClubCoordinatorCreateWithoutClubInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorCreateOrConnectWithoutUserInput {
create: ClubCoordinatorCreateWithoutUserInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorCreateWithoutClubInput {
createdAt: DateTime
deletedAt: DateTime
updatedAt: DateTime
user: UserCreateNestedOneWithoutClubCoordinatorInput!
}
input ClubCoordinatorCreateWithoutUserInput {
club: ClubCreateNestedOneWithoutClubCoordinatorInput!
createdAt: DateTime
deletedAt: DateTime
updatedAt: DateTime
}
type ClubCoordinatorGroupBy {
_avg: ClubCoordinatorAvgAggregate
_count: ClubCoordinatorCountAggregate
_max: ClubCoordinatorMaxAggregate
_min: ClubCoordinatorMinAggregate
_sum: ClubCoordinatorSumAggregate
clubId: Int!
createdAt: DateTime!
deletedAt: DateTime
id: Int!
updatedAt: DateTime!
userId: Int!
}
input ClubCoordinatorListRelationFilter {
every: ClubCoordinatorWhereInput
none: ClubCoordinatorWhereInput
some: ClubCoordinatorWhereInput
}
type ClubCoordinatorMaxAggregate {
clubId: Int
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
userId: Int
}
input ClubCoordinatorMaxOrderByAggregateInput {
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
id: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
type ClubCoordinatorMinAggregate {
clubId: Int
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
userId: Int
}
input ClubCoordinatorMinOrderByAggregateInput {
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
id: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input ClubCoordinatorOrderByRelationAggregateInput {
_count: SortOrder
}
input ClubCoordinatorOrderByWithAggregationInput {
_avg: ClubCoordinatorAvgOrderByAggregateInput
_count: ClubCoordinatorCountOrderByAggregateInput
_max: ClubCoordinatorMaxOrderByAggregateInput
_min: ClubCoordinatorMinOrderByAggregateInput
_sum: ClubCoordinatorSumOrderByAggregateInput
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
id: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input ClubCoordinatorOrderByWithRelationInput {
club: ClubOrderByWithRelationInput
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
id: SortOrder
updatedAt: SortOrder
user: UserOrderByWithRelationInput
userId: SortOrder
}
enum ClubCoordinatorScalarFieldEnum {
clubId
createdAt
deletedAt
id
updatedAt
userId
}
input ClubCoordinatorScalarWhereInput {
AND: [ClubCoordinatorScalarWhereInput!]
NOT: [ClubCoordinatorScalarWhereInput!]
OR: [ClubCoordinatorScalarWhereInput!]
clubId: IntFilter
createdAt: DateTimeFilter
deletedAt: DateTimeNullableFilter
id: IntFilter
updatedAt: DateTimeFilter
userId: IntFilter
}
input ClubCoordinatorScalarWhereWithAggregatesInput {
AND: [ClubCoordinatorScalarWhereWithAggregatesInput!]
NOT: [ClubCoordinatorScalarWhereWithAggregatesInput!]
OR: [ClubCoordinatorScalarWhereWithAggregatesInput!]
clubId: IntWithAggregatesFilter
createdAt: DateTimeWithAggregatesFilter
deletedAt: DateTimeNullableWithAggregatesFilter
id: IntWithAggregatesFilter
updatedAt: DateTimeWithAggregatesFilter
userId: IntWithAggregatesFilter
}
type ClubCoordinatorSumAggregate {
clubId: Int
id: Int
userId: Int
}
input ClubCoordinatorSumOrderByAggregateInput {
clubId: SortOrder
id: SortOrder
userId: SortOrder
}
input ClubCoordinatorUpdateInput {
club: ClubUpdateOneRequiredWithoutClubCoordinatorInput
createdAt: DateTimeFieldUpdateOperationsInput
deletedAt: NullableDateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutClubCoordinatorInput
}
input ClubCoordinatorUpdateManyMutationInput {
createdAt: DateTimeFieldUpdateOperationsInput
deletedAt: NullableDateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input ClubCoordinatorUpdateManyWithWhereWithoutClubInput {
data: ClubCoordinatorUpdateManyMutationInput!
where: ClubCoordinatorScalarWhereInput!
}
input ClubCoordinatorUpdateManyWithWhereWithoutUserInput {
data: ClubCoordinatorUpdateManyMutationInput!
where: ClubCoordinatorScalarWhereInput!
}
input ClubCoordinatorUpdateManyWithoutClubInput {
connect: [ClubCoordinatorWhereUniqueInput!]
connectOrCreate: [ClubCoordinatorCreateOrConnectWithoutClubInput!]
create: [ClubCoordinatorCreateWithoutClubInput!]
createMany: ClubCoordinatorCreateManyClubInputEnvelope
delete: [ClubCoordinatorWhereUniqueInput!]
deleteMany: [ClubCoordinatorScalarWhereInput!]
disconnect: [ClubCoordinatorWhereUniqueInput!]
set: [ClubCoordinatorWhereUniqueInput!]
update: [ClubCoordinatorUpdateWithWhereUniqueWithoutClubInput!]
updateMany: [ClubCoordinatorUpdateManyWithWhereWithoutClubInput!]
upsert: [ClubCoordinatorUpsertWithWhereUniqueWithoutClubInput!]
}
input ClubCoordinatorUpdateManyWithoutUserInput {
connect: [ClubCoordinatorWhereUniqueInput!]
connectOrCreate: [ClubCoordinatorCreateOrConnectWithoutUserInput!]
create: [ClubCoordinatorCreateWithoutUserInput!]
createMany: ClubCoordinatorCreateManyUserInputEnvelope
delete: [ClubCoordinatorWhereUniqueInput!]
deleteMany: [ClubCoordinatorScalarWhereInput!]
disconnect: [ClubCoordinatorWhereUniqueInput!]
set: [ClubCoordinatorWhereUniqueInput!]
update: [ClubCoordinatorUpdateWithWhereUniqueWithoutUserInput!]
updateMany: [ClubCoordinatorUpdateManyWithWhereWithoutUserInput!]
upsert: [ClubCoordinatorUpsertWithWhereUniqueWithoutUserInput!]
}
input ClubCoordinatorUpdateWithWhereUniqueWithoutClubInput {
data: ClubCoordinatorUpdateWithoutClubInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorUpdateWithWhereUniqueWithoutUserInput {
data: ClubCoordinatorUpdateWithoutUserInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorUpdateWithoutClubInput {
createdAt: DateTimeFieldUpdateOperationsInput
deletedAt: NullableDateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutClubCoordinatorInput
}
input ClubCoordinatorUpdateWithoutUserInput {
club: ClubUpdateOneRequiredWithoutClubCoordinatorInput
createdAt: DateTimeFieldUpdateOperationsInput
deletedAt: NullableDateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input ClubCoordinatorUpsertWithWhereUniqueWithoutClubInput {
create: ClubCoordinatorCreateWithoutClubInput!
update: ClubCoordinatorUpdateWithoutClubInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorUpsertWithWhereUniqueWithoutUserInput {
create: ClubCoordinatorCreateWithoutUserInput!
update: ClubCoordinatorUpdateWithoutUserInput!
where: ClubCoordinatorWhereUniqueInput!
}
input ClubCoordinatorWhereInput {
AND: [ClubCoordinatorWhereInput!]
NOT: [ClubCoordinatorWhereInput!]
OR: [ClubCoordinatorWhereInput!]
club: ClubRelationFilter
clubId: IntFilter
createdAt: DateTimeFilter
deletedAt: DateTimeNullableFilter
id: IntFilter
updatedAt: DateTimeFilter
user: UserRelationFilter
userId: IntFilter
}
input ClubCoordinatorWhereUniqueInput {
clubId_userId: ClubCoordinatorClubIdUserIdCompoundUniqueInput
id: Int
}
type ClubCount {
clubCoordinator: Int!
clubEvents: Int!
clubMember: Int!
clubNotifications: Int!
clubtags: Int!
subscription: Int!
}
type ClubCountAggregate {
_all: Int!
createdAt: Int!
deletedAt: Int!
description: Int!
id: Int!
image: Int!
links: Int!
name: Int!
updatedAt: Int!
}
input ClubCountOrderByAggregateInput {
createdAt: SortOrder
deletedAt: SortOrder
description: SortOrder
id: SortOrder
image: SortOrder
links: SortOrder
name: SortOrder
updatedAt: SortOrder
}
input ClubCreateInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateManyInput {
createdAt: DateTime
deletedAt: DateTime
description: String!
id: Int
image: String
links: String!
name: String!
updatedAt: DateTime
}
input ClubCreateNestedOneWithoutClubCoordinatorInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubCoordinatorInput
create: ClubCreateWithoutClubCoordinatorInput
}
input ClubCreateNestedOneWithoutClubEventsInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubEventsInput
create: ClubCreateWithoutClubEventsInput
}
input ClubCreateNestedOneWithoutClubMemberInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubMemberInput
create: ClubCreateWithoutClubMemberInput
}
input ClubCreateNestedOneWithoutClubNotificationsInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubNotificationsInput
create: ClubCreateWithoutClubNotificationsInput
}
input ClubCreateNestedOneWithoutClubRankInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubRankInput
create: ClubCreateWithoutClubRankInput
}
input ClubCreateNestedOneWithoutClubtagsInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutClubtagsInput
create: ClubCreateWithoutClubtagsInput
}
input ClubCreateNestedOneWithoutOtpInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutOtpInput
create: ClubCreateWithoutOtpInput
}
input ClubCreateNestedOneWithoutSubscriptionInput {
connect: ClubWhereUniqueInput
connectOrCreate: ClubCreateOrConnectWithoutSubscriptionInput
create: ClubCreateWithoutSubscriptionInput
}
input ClubCreateOrConnectWithoutClubCoordinatorInput {
create: ClubCreateWithoutClubCoordinatorInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutClubEventsInput {
create: ClubCreateWithoutClubEventsInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutClubMemberInput {
create: ClubCreateWithoutClubMemberInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutClubNotificationsInput {
create: ClubCreateWithoutClubNotificationsInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutClubRankInput {
create: ClubCreateWithoutClubRankInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutClubtagsInput {
create: ClubCreateWithoutClubtagsInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutOtpInput {
create: ClubCreateWithoutOtpInput!
where: ClubWhereUniqueInput!
}
input ClubCreateOrConnectWithoutSubscriptionInput {
create: ClubCreateWithoutSubscriptionInput!
where: ClubWhereUniqueInput!
}
input ClubCreateWithoutClubCoordinatorInput {
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutClubEventsInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutClubMemberInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutClubNotificationsInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutClubRankInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutClubtagsInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutOtpInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
subscription: SubscriptionCreateNestedManyWithoutClubInput
updatedAt: DateTime
}
input ClubCreateWithoutSubscriptionInput {
clubCoordinator: ClubCoordinatorCreateNestedManyWithoutClubInput
clubEvents: ClubEventCreateNestedManyWithoutClubInput
clubMember: ClubMemberCreateNestedManyWithoutClubInput
clubNotifications: ClubNotificationCreateNestedManyWithoutClubInput
clubRank: ClubRankCreateNestedOneWithoutClubInput
clubtags: ClubTagCreateNestedManyWithoutClubInput
createdAt: DateTime
deletedAt: DateTime
description: String!
image: String
links: String!
name: String!
otp: OTPCreateNestedOneWithoutClubInput
updatedAt: DateTime
}
type ClubEvent {
club: Club!
clubId: Int!
createdAt: DateTime!
deletedAt: DateTime
event: Event!
eventId: Int!
id: Int!
updatedAt: DateTime!
}
type ClubEventAvgAggregate {
clubId: Float
eventId: Float
id: Float
}
input ClubEventAvgOrderByAggregateInput {
clubId: SortOrder
eventId: SortOrder
id: SortOrder
}
input ClubEventClubIdEventIdCompoundUniqueInput {
clubId: Int!
eventId: Int!
}
type ClubEventCountAggregate {
_all: Int!
clubId: Int!
createdAt: Int!
deletedAt: Int!
eventId: Int!
id: Int!
updatedAt: Int!
}
input ClubEventCountOrderByAggregateInput {
clubId: SortOrder
createdAt: SortOrder
deletedAt: SortOrder
eventId: SortOrder
id: SortOrder
updatedAt: SortOrder
}
input ClubEventCreateInput {
club: ClubCreateNestedOneWithoutClubEventsInput!
createdAt: DateTime
deletedAt: DateTime
event: EventCreateNestedOneWithoutClubEventsInput!
updatedAt: DateTime
}
input ClubEventCreateManyClubInput {
createdAt: DateTime
deletedAt: DateTime
eventId: Int!
id: Int
updatedAt: DateTime
}
input ClubEventCreateManyClubInputEnvelope {
data: [ClubEventCreateManyClubInput!]!
skipDuplicates: Boolean
}
input ClubEventCreateManyEventInput {
clubId: Int!
createdAt: DateTime
deletedAt: DateTime
id: Int
updatedAt: DateTime
}
input ClubEventCreateManyEventInputEnvelope {
data: [ClubEventCreateManyEventInput!]!
skipDuplicates: Boolean
}
input ClubEventCreateManyInput {
clubId: Int!
createdAt: DateTime
deletedAt: DateTime
eventId: Int!
id: Int
updatedAt: DateTime
}
input ClubEventCreateNestedManyWithoutClubInput {
connect: [ClubEventWhereUniqueInput!]
connectOrCreate: [ClubEventCreateOrConnectWithoutClubInput!]
create: [ClubEventCreateWithoutClubInput!]
createMany: ClubEventCreateManyClubInputEnvelope
}
input ClubEventCreateNestedManyWithoutEventInput {
connect: [ClubEventWhereUniqueInput!]
connectOrCreate: [ClubEventCreateOrConnectWithoutEventInput!]
create: [ClubEventCreateWithoutEventInput!]
createMany: ClubEventCreateManyEventInputEnvelope
}
input ClubEventCreateOrConnectWithoutClubInput {
create: ClubEventCreateWithoutClubInput!
where: ClubEventWhereUniqueInput!
}
input ClubEventCreateOrConnectWithoutEventInput {
create: ClubEventCreateWithoutEventInput!
where: ClubEventWhereUniqueInput!
}
input ClubEventCreateWithoutClubInput {
createdAt: DateTime
deletedAt: DateTime
event: EventCreateNestedOneWithoutClubEventsInput!
updatedAt: DateTime
}
input ClubEventCreateWithoutEventInput {
club: ClubCreateNestedOneWithoutClubEventsInput!
createdAt: DateTime
deletedAt: DateTime
updatedAt: DateTime
}
type ClubEventGroupBy {
_avg: ClubEventAvgAggregate
_count: ClubEventCountAggregate
_max: ClubEventMaxAggregate
_min: ClubEventMinAggregate
_sum: ClubEventSumAggregate
clubId: Int!
createdAt: DateTime!
deletedAt: DateTime
eventId: Int!
id: Int!