-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.graphql
More file actions
4582 lines (4108 loc) · 138 KB
/
schema.graphql
File metadata and controls
4582 lines (4108 loc) · 138 KB
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 AggregateCreator {
_avg: CreatorAvgAggregate
_count: CreatorCountAggregate
_max: CreatorMaxAggregate
_min: CreatorMinAggregate
_sum: CreatorSumAggregate
}
type AggregateDanceMove {
_avg: DanceMoveAvgAggregate
_count: DanceMoveCountAggregate
_max: DanceMoveMaxAggregate
_min: DanceMoveMinAggregate
_sum: DanceMoveSumAggregate
}
type AggregateDanceStyle {
_avg: DanceStyleAvgAggregate
_count: DanceStyleCountAggregate
_max: DanceStyleMaxAggregate
_min: DanceStyleMinAggregate
_sum: DanceStyleSumAggregate
}
type AggregateDifficulty {
_avg: DifficultyAvgAggregate
_count: DifficultyCountAggregate
_max: DifficultyMaxAggregate
_min: DifficultyMinAggregate
_sum: DifficultySumAggregate
}
type AggregateLearningProgress {
_avg: LearningProgressAvgAggregate
_count: LearningProgressCountAggregate
_max: LearningProgressMaxAggregate
_min: LearningProgressMinAggregate
_sum: LearningProgressSumAggregate
}
type AggregateNote {
_avg: NoteAvgAggregate
_count: NoteCountAggregate
_max: NoteMaxAggregate
_min: NoteMinAggregate
_sum: NoteSumAggregate
}
type AggregateTransition {
_avg: TransitionAvgAggregate
_count: TransitionCountAggregate
_max: TransitionMaxAggregate
_min: TransitionMinAggregate
_sum: TransitionSumAggregate
}
type Creator {
_count: CreatorCount
createdAt: DateTimeISO!
danceMoves(cursor: DanceMoveWhereUniqueInput, distinct: [DanceMoveScalarFieldEnum!], orderBy: [DanceMoveOrderByWithRelationInput!], skip: Int, take: Int, where: DanceMoveWhereInput): [DanceMove!]!
danceStyles(cursor: DanceStyleWhereUniqueInput, distinct: [DanceStyleScalarFieldEnum!], orderBy: [DanceStyleOrderByWithRelationInput!], skip: Int, take: Int, where: DanceStyleWhereInput): [DanceStyle!]!
id: Int!
name: String!
updatedAt: DateTimeISO!
}
type CreatorAvgAggregate {
id: Float
}
input CreatorAvgOrderByAggregateInput {
id: SortOrder
}
type CreatorCount {
danceMoves(where: DanceMoveWhereInput): Int!
danceStyles(where: DanceStyleWhereInput): Int!
}
type CreatorCountAggregate {
_all: Int!
createdAt: Int!
id: Int!
name: Int!
updatedAt: Int!
}
input CreatorCountOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
input CreatorCreateInput {
createdAt: DateTimeISO
danceMoves: DanceMoveCreateNestedManyWithoutCreatorInput
danceStyles: DanceStyleCreateNestedManyWithoutCreatorInput
name: String!
updatedAt: DateTimeISO
}
input CreatorCreateManyInput {
createdAt: DateTimeISO
id: Int
name: String!
updatedAt: DateTimeISO
}
input CreatorCreateNestedOneWithoutDanceMovesInput {
connect: CreatorWhereUniqueInput
connectOrCreate: CreatorCreateOrConnectWithoutDanceMovesInput
create: CreatorCreateWithoutDanceMovesInput
}
input CreatorCreateNestedOneWithoutDanceStylesInput {
connect: CreatorWhereUniqueInput
connectOrCreate: CreatorCreateOrConnectWithoutDanceStylesInput
create: CreatorCreateWithoutDanceStylesInput
}
input CreatorCreateOrConnectWithoutDanceMovesInput {
create: CreatorCreateWithoutDanceMovesInput!
where: CreatorWhereUniqueInput!
}
input CreatorCreateOrConnectWithoutDanceStylesInput {
create: CreatorCreateWithoutDanceStylesInput!
where: CreatorWhereUniqueInput!
}
input CreatorCreateWithoutDanceMovesInput {
createdAt: DateTimeISO
danceStyles: DanceStyleCreateNestedManyWithoutCreatorInput
name: String!
updatedAt: DateTimeISO
}
input CreatorCreateWithoutDanceStylesInput {
createdAt: DateTimeISO
danceMoves: DanceMoveCreateNestedManyWithoutCreatorInput
name: String!
updatedAt: DateTimeISO
}
type CreatorGroupBy {
_avg: CreatorAvgAggregate
_count: CreatorCountAggregate
_max: CreatorMaxAggregate
_min: CreatorMinAggregate
_sum: CreatorSumAggregate
createdAt: DateTimeISO!
id: Int!
name: String!
updatedAt: DateTimeISO!
}
type CreatorMaxAggregate {
createdAt: DateTimeISO
id: Int
name: String
updatedAt: DateTimeISO
}
input CreatorMaxOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
type CreatorMinAggregate {
createdAt: DateTimeISO
id: Int
name: String
updatedAt: DateTimeISO
}
input CreatorMinOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
input CreatorNullableRelationFilter {
is: CreatorWhereInput
isNot: CreatorWhereInput
}
input CreatorOrderByWithAggregationInput {
_avg: CreatorAvgOrderByAggregateInput
_count: CreatorCountOrderByAggregateInput
_max: CreatorMaxOrderByAggregateInput
_min: CreatorMinOrderByAggregateInput
_sum: CreatorSumOrderByAggregateInput
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
input CreatorOrderByWithRelationInput {
createdAt: SortOrder
danceMoves: DanceMoveOrderByRelationAggregateInput
danceStyles: DanceStyleOrderByRelationAggregateInput
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
enum CreatorScalarFieldEnum {
createdAt
id
name
updatedAt
}
input CreatorScalarWhereWithAggregatesInput {
AND: [CreatorScalarWhereWithAggregatesInput!]
NOT: [CreatorScalarWhereWithAggregatesInput!]
OR: [CreatorScalarWhereWithAggregatesInput!]
createdAt: DateTimeWithAggregatesFilter
id: IntWithAggregatesFilter
name: StringWithAggregatesFilter
updatedAt: DateTimeWithAggregatesFilter
}
type CreatorSumAggregate {
id: Int
}
input CreatorSumOrderByAggregateInput {
id: SortOrder
}
input CreatorUpdateInput {
createdAt: DateTimeFieldUpdateOperationsInput
danceMoves: DanceMoveUpdateManyWithoutCreatorNestedInput
danceStyles: DanceStyleUpdateManyWithoutCreatorNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input CreatorUpdateManyMutationInput {
createdAt: DateTimeFieldUpdateOperationsInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input CreatorUpdateOneWithoutDanceMovesNestedInput {
connect: CreatorWhereUniqueInput
connectOrCreate: CreatorCreateOrConnectWithoutDanceMovesInput
create: CreatorCreateWithoutDanceMovesInput
delete: CreatorWhereInput
disconnect: CreatorWhereInput
update: CreatorUpdateToOneWithWhereWithoutDanceMovesInput
upsert: CreatorUpsertWithoutDanceMovesInput
}
input CreatorUpdateOneWithoutDanceStylesNestedInput {
connect: CreatorWhereUniqueInput
connectOrCreate: CreatorCreateOrConnectWithoutDanceStylesInput
create: CreatorCreateWithoutDanceStylesInput
delete: CreatorWhereInput
disconnect: CreatorWhereInput
update: CreatorUpdateToOneWithWhereWithoutDanceStylesInput
upsert: CreatorUpsertWithoutDanceStylesInput
}
input CreatorUpdateToOneWithWhereWithoutDanceMovesInput {
data: CreatorUpdateWithoutDanceMovesInput!
where: CreatorWhereInput
}
input CreatorUpdateToOneWithWhereWithoutDanceStylesInput {
data: CreatorUpdateWithoutDanceStylesInput!
where: CreatorWhereInput
}
input CreatorUpdateWithoutDanceMovesInput {
createdAt: DateTimeFieldUpdateOperationsInput
danceStyles: DanceStyleUpdateManyWithoutCreatorNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input CreatorUpdateWithoutDanceStylesInput {
createdAt: DateTimeFieldUpdateOperationsInput
danceMoves: DanceMoveUpdateManyWithoutCreatorNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input CreatorUpsertWithoutDanceMovesInput {
create: CreatorCreateWithoutDanceMovesInput!
update: CreatorUpdateWithoutDanceMovesInput!
where: CreatorWhereInput
}
input CreatorUpsertWithoutDanceStylesInput {
create: CreatorCreateWithoutDanceStylesInput!
update: CreatorUpdateWithoutDanceStylesInput!
where: CreatorWhereInput
}
input CreatorWhereInput {
AND: [CreatorWhereInput!]
NOT: [CreatorWhereInput!]
OR: [CreatorWhereInput!]
createdAt: DateTimeFilter
danceMoves: DanceMoveListRelationFilter
danceStyles: DanceStyleListRelationFilter
id: IntFilter
name: StringFilter
updatedAt: DateTimeFilter
}
input CreatorWhereUniqueInput {
AND: [CreatorWhereInput!]
NOT: [CreatorWhereInput!]
OR: [CreatorWhereInput!]
createdAt: DateTimeFilter
danceMoves: DanceMoveListRelationFilter
danceStyles: DanceStyleListRelationFilter
id: Int
name: StringFilter
updatedAt: DateTimeFilter
}
type DanceMove {
_count: DanceMoveCount
aliases: [String!]!
createdAt: DateTimeISO!
creator(where: CreatorWhereInput): Creator
creatorId: Int
danceStyle(where: DanceStyleWhereInput): DanceStyle
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: [DateTimeISO!]!
difficultyHistory(cursor: DifficultyWhereUniqueInput, distinct: [DifficultyScalarFieldEnum!], orderBy: [DifficultyOrderByWithRelationInput!], skip: Int, take: Int, where: DifficultyWhereInput): [Difficulty!]!
era: Era
id: Int!
learningProgress(cursor: LearningProgressWhereUniqueInput, distinct: [LearningProgressScalarFieldEnum!], orderBy: [LearningProgressOrderByWithRelationInput!], skip: Int, take: Int, where: LearningProgressWhereInput): [LearningProgress!]!
name: String!
notes(cursor: NoteWhereUniqueInput, distinct: [NoteScalarFieldEnum!], orderBy: [NoteOrderByWithRelationInput!], skip: Int, take: Int, where: NoteWhereInput): [Note!]!
officialSong: String
origin: String
transitionMove1(cursor: TransitionWhereUniqueInput, distinct: [TransitionScalarFieldEnum!], orderBy: [TransitionOrderByWithRelationInput!], skip: Int, take: Int, where: TransitionWhereInput): [Transition!]!
transitionMove2(cursor: TransitionWhereUniqueInput, distinct: [TransitionScalarFieldEnum!], orderBy: [TransitionOrderByWithRelationInput!], skip: Int, take: Int, where: TransitionWhereInput): [Transition!]!
tutorials: [String!]!
updatedAt: DateTimeISO!
}
type DanceMoveAvgAggregate {
creatorId: Float
danceStyleId: Float
id: Float
}
input DanceMoveAvgOrderByAggregateInput {
creatorId: SortOrder
danceStyleId: SortOrder
id: SortOrder
}
type DanceMoveCount {
difficultyHistory(where: DifficultyWhereInput): Int!
learningProgress(where: LearningProgressWhereInput): Int!
notes(where: NoteWhereInput): Int!
transitionMove1(where: TransitionWhereInput): Int!
transitionMove2(where: TransitionWhereInput): Int!
}
type DanceMoveCountAggregate {
_all: Int!
aliases: Int!
createdAt: Int!
creatorId: Int!
danceStyleId: Int!
dateCreated: Int!
dateLearned: Int!
datesReviewed: Int!
era: Int!
id: Int!
name: Int!
officialSong: Int!
origin: Int!
tutorials: Int!
updatedAt: Int!
}
input DanceMoveCountOrderByAggregateInput {
aliases: SortOrder
createdAt: SortOrder
creatorId: SortOrder
danceStyleId: SortOrder
dateCreated: SortOrder
dateLearned: SortOrder
datesReviewed: SortOrder
era: SortOrder
id: SortOrder
name: SortOrder
officialSong: SortOrder
origin: SortOrder
tutorials: SortOrder
updatedAt: SortOrder
}
input DanceMoveCreateInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateManyCreatorInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
era: Era
id: Int
name: String!
officialSong: String
origin: String
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateManyCreatorInputEnvelope {
data: [DanceMoveCreateManyCreatorInput!]!
skipDuplicates: Boolean
}
input DanceMoveCreateManyDanceStyleInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creatorId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
era: Era
id: Int
name: String!
officialSong: String
origin: String
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateManyDanceStyleInputEnvelope {
data: [DanceMoveCreateManyDanceStyleInput!]!
skipDuplicates: Boolean
}
input DanceMoveCreateManyInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creatorId: Int
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
era: Era
id: Int
name: String!
officialSong: String
origin: String
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateNestedManyWithoutCreatorInput {
connect: [DanceMoveWhereUniqueInput!]
connectOrCreate: [DanceMoveCreateOrConnectWithoutCreatorInput!]
create: [DanceMoveCreateWithoutCreatorInput!]
createMany: DanceMoveCreateManyCreatorInputEnvelope
}
input DanceMoveCreateNestedManyWithoutDanceStyleInput {
connect: [DanceMoveWhereUniqueInput!]
connectOrCreate: [DanceMoveCreateOrConnectWithoutDanceStyleInput!]
create: [DanceMoveCreateWithoutDanceStyleInput!]
createMany: DanceMoveCreateManyDanceStyleInputEnvelope
}
input DanceMoveCreateNestedOneWithoutDifficultyHistoryInput {
connect: DanceMoveWhereUniqueInput
connectOrCreate: DanceMoveCreateOrConnectWithoutDifficultyHistoryInput
create: DanceMoveCreateWithoutDifficultyHistoryInput
}
input DanceMoveCreateNestedOneWithoutLearningProgressInput {
connect: DanceMoveWhereUniqueInput
connectOrCreate: DanceMoveCreateOrConnectWithoutLearningProgressInput
create: DanceMoveCreateWithoutLearningProgressInput
}
input DanceMoveCreateNestedOneWithoutNotesInput {
connect: DanceMoveWhereUniqueInput
connectOrCreate: DanceMoveCreateOrConnectWithoutNotesInput
create: DanceMoveCreateWithoutNotesInput
}
input DanceMoveCreateNestedOneWithoutTransitionMove1Input {
connect: DanceMoveWhereUniqueInput
connectOrCreate: DanceMoveCreateOrConnectWithoutTransitionMove1Input
create: DanceMoveCreateWithoutTransitionMove1Input
}
input DanceMoveCreateNestedOneWithoutTransitionMove2Input {
connect: DanceMoveWhereUniqueInput
connectOrCreate: DanceMoveCreateOrConnectWithoutTransitionMove2Input
create: DanceMoveCreateWithoutTransitionMove2Input
}
input DanceMoveCreateOrConnectWithoutCreatorInput {
create: DanceMoveCreateWithoutCreatorInput!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutDanceStyleInput {
create: DanceMoveCreateWithoutDanceStyleInput!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutDifficultyHistoryInput {
create: DanceMoveCreateWithoutDifficultyHistoryInput!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutLearningProgressInput {
create: DanceMoveCreateWithoutLearningProgressInput!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutNotesInput {
create: DanceMoveCreateWithoutNotesInput!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutTransitionMove1Input {
create: DanceMoveCreateWithoutTransitionMove1Input!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateOrConnectWithoutTransitionMove2Input {
create: DanceMoveCreateWithoutTransitionMove2Input!
where: DanceMoveWhereUniqueInput!
}
input DanceMoveCreateWithoutCreatorInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutDanceStyleInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutDifficultyHistoryInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutLearningProgressInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutNotesInput {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutTransitionMove1Input {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove2: TransitionCreateNestedManyWithoutDanceMove2Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreateWithoutTransitionMove2Input {
aliases: DanceMoveCreatealiasesInput
createdAt: DateTimeISO
creator: CreatorCreateNestedOneWithoutDanceMovesInput
danceStyle: DanceStyleCreateNestedOneWithoutDanceMovesInput
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: DanceMoveCreatedatesReviewedInput
difficultyHistory: DifficultyCreateNestedManyWithoutDanceMoveInput
era: Era
learningProgress: LearningProgressCreateNestedManyWithoutDanceMoveInput
name: String!
notes: NoteCreateNestedManyWithoutDanceMoveInput
officialSong: String
origin: String
transitionMove1: TransitionCreateNestedManyWithoutDanceMove1Input
tutorials: DanceMoveCreatetutorialsInput
updatedAt: DateTimeISO
}
input DanceMoveCreatealiasesInput {
set: [String!]!
}
input DanceMoveCreatedatesReviewedInput {
set: [DateTimeISO!]!
}
input DanceMoveCreatetutorialsInput {
set: [String!]!
}
type DanceMoveGroupBy {
_avg: DanceMoveAvgAggregate
_count: DanceMoveCountAggregate
_max: DanceMoveMaxAggregate
_min: DanceMoveMinAggregate
_sum: DanceMoveSumAggregate
aliases: [String!]
createdAt: DateTimeISO!
creatorId: Int
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
datesReviewed: [DateTimeISO!]
era: Era
id: Int!
name: String!
officialSong: String
origin: String
tutorials: [String!]
updatedAt: DateTimeISO!
}
input DanceMoveListRelationFilter {
every: DanceMoveWhereInput
none: DanceMoveWhereInput
some: DanceMoveWhereInput
}
type DanceMoveMaxAggregate {
createdAt: DateTimeISO
creatorId: Int
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
era: Era
id: Int
name: String
officialSong: String
origin: String
updatedAt: DateTimeISO
}
input DanceMoveMaxOrderByAggregateInput {
createdAt: SortOrder
creatorId: SortOrder
danceStyleId: SortOrder
dateCreated: SortOrder
dateLearned: SortOrder
era: SortOrder
id: SortOrder
name: SortOrder
officialSong: SortOrder
origin: SortOrder
updatedAt: SortOrder
}
type DanceMoveMinAggregate {
createdAt: DateTimeISO
creatorId: Int
danceStyleId: Int
dateCreated: DateTimeISO
dateLearned: DateTimeISO
era: Era
id: Int
name: String
officialSong: String
origin: String
updatedAt: DateTimeISO
}
input DanceMoveMinOrderByAggregateInput {
createdAt: SortOrder
creatorId: SortOrder
danceStyleId: SortOrder
dateCreated: SortOrder
dateLearned: SortOrder
era: SortOrder
id: SortOrder
name: SortOrder
officialSong: SortOrder
origin: SortOrder
updatedAt: SortOrder
}
input DanceMoveNullableRelationFilter {
is: DanceMoveWhereInput
isNot: DanceMoveWhereInput
}
input DanceMoveOrderByRelationAggregateInput {
_count: SortOrder
}
input DanceMoveOrderByWithAggregationInput {
_avg: DanceMoveAvgOrderByAggregateInput
_count: DanceMoveCountOrderByAggregateInput
_max: DanceMoveMaxOrderByAggregateInput
_min: DanceMoveMinOrderByAggregateInput
_sum: DanceMoveSumOrderByAggregateInput
aliases: SortOrder
createdAt: SortOrder
creatorId: SortOrderInput
danceStyleId: SortOrderInput
dateCreated: SortOrderInput
dateLearned: SortOrderInput
datesReviewed: SortOrder
era: SortOrderInput
id: SortOrder
name: SortOrder
officialSong: SortOrderInput
origin: SortOrderInput
tutorials: SortOrder
updatedAt: SortOrder
}
input DanceMoveOrderByWithRelationInput {
aliases: SortOrder
createdAt: SortOrder
creator: CreatorOrderByWithRelationInput
creatorId: SortOrderInput
danceStyle: DanceStyleOrderByWithRelationInput
danceStyleId: SortOrderInput
dateCreated: SortOrderInput
dateLearned: SortOrderInput
datesReviewed: SortOrder
difficultyHistory: DifficultyOrderByRelationAggregateInput
era: SortOrderInput
id: SortOrder
learningProgress: LearningProgressOrderByRelationAggregateInput
name: SortOrder
notes: NoteOrderByRelationAggregateInput
officialSong: SortOrderInput
origin: SortOrderInput
transitionMove1: TransitionOrderByRelationAggregateInput
transitionMove2: TransitionOrderByRelationAggregateInput
tutorials: SortOrder
updatedAt: SortOrder
}
enum DanceMoveScalarFieldEnum {
aliases
createdAt
creatorId
danceStyleId
dateCreated
dateLearned
datesReviewed
era
id
name
officialSong
origin
tutorials
updatedAt
}
input DanceMoveScalarWhereInput {
AND: [DanceMoveScalarWhereInput!]
NOT: [DanceMoveScalarWhereInput!]
OR: [DanceMoveScalarWhereInput!]
aliases: StringNullableListFilter
createdAt: DateTimeFilter
creatorId: IntNullableFilter
danceStyleId: IntNullableFilter
dateCreated: DateTimeNullableFilter
dateLearned: DateTimeNullableFilter
datesReviewed: DateTimeNullableListFilter
era: EnumEraNullableFilter
id: IntFilter
name: StringFilter
officialSong: StringNullableFilter
origin: StringNullableFilter
tutorials: StringNullableListFilter
updatedAt: DateTimeFilter
}
input DanceMoveScalarWhereWithAggregatesInput {
AND: [DanceMoveScalarWhereWithAggregatesInput!]
NOT: [DanceMoveScalarWhereWithAggregatesInput!]
OR: [DanceMoveScalarWhereWithAggregatesInput!]
aliases: StringNullableListFilter
createdAt: DateTimeWithAggregatesFilter
creatorId: IntNullableWithAggregatesFilter
danceStyleId: IntNullableWithAggregatesFilter
dateCreated: DateTimeNullableWithAggregatesFilter
dateLearned: DateTimeNullableWithAggregatesFilter
datesReviewed: DateTimeNullableListFilter
era: EnumEraNullableWithAggregatesFilter
id: IntWithAggregatesFilter
name: StringWithAggregatesFilter
officialSong: StringNullableWithAggregatesFilter
origin: StringNullableWithAggregatesFilter
tutorials: StringNullableListFilter
updatedAt: DateTimeWithAggregatesFilter
}
type DanceMoveSumAggregate {
creatorId: Int
danceStyleId: Int
id: Int
}
input DanceMoveSumOrderByAggregateInput {
creatorId: SortOrder
danceStyleId: SortOrder
id: SortOrder
}
input DanceMoveUpdateInput {
aliases: DanceMoveUpdatealiasesInput
createdAt: DateTimeFieldUpdateOperationsInput
creator: CreatorUpdateOneWithoutDanceMovesNestedInput
danceStyle: DanceStyleUpdateOneWithoutDanceMovesNestedInput
dateCreated: NullableDateTimeFieldUpdateOperationsInput
dateLearned: NullableDateTimeFieldUpdateOperationsInput
datesReviewed: DanceMoveUpdatedatesReviewedInput
difficultyHistory: DifficultyUpdateManyWithoutDanceMoveNestedInput
era: NullableEnumEraFieldUpdateOperationsInput
learningProgress: LearningProgressUpdateManyWithoutDanceMoveNestedInput
name: StringFieldUpdateOperationsInput
notes: NoteUpdateManyWithoutDanceMoveNestedInput
officialSong: NullableStringFieldUpdateOperationsInput
origin: NullableStringFieldUpdateOperationsInput
transitionMove1: TransitionUpdateManyWithoutDanceMove1NestedInput
transitionMove2: TransitionUpdateManyWithoutDanceMove2NestedInput
tutorials: DanceMoveUpdatetutorialsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input DanceMoveUpdateManyMutationInput {
aliases: DanceMoveUpdatealiasesInput
createdAt: DateTimeFieldUpdateOperationsInput
dateCreated: NullableDateTimeFieldUpdateOperationsInput
dateLearned: NullableDateTimeFieldUpdateOperationsInput
datesReviewed: DanceMoveUpdatedatesReviewedInput
era: NullableEnumEraFieldUpdateOperationsInput
name: StringFieldUpdateOperationsInput
officialSong: NullableStringFieldUpdateOperationsInput
origin: NullableStringFieldUpdateOperationsInput
tutorials: DanceMoveUpdatetutorialsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input DanceMoveUpdateManyWithWhereWithoutCreatorInput {
data: DanceMoveUpdateManyMutationInput!
where: DanceMoveScalarWhereInput!
}
input DanceMoveUpdateManyWithWhereWithoutDanceStyleInput {
data: DanceMoveUpdateManyMutationInput!
where: DanceMoveScalarWhereInput!
}
input DanceMoveUpdateManyWithoutCreatorNestedInput {
connect: [DanceMoveWhereUniqueInput!]
connectOrCreate: [DanceMoveCreateOrConnectWithoutCreatorInput!]
create: [DanceMoveCreateWithoutCreatorInput!]
createMany: DanceMoveCreateManyCreatorInputEnvelope
delete: [DanceMoveWhereUniqueInput!]
deleteMany: [DanceMoveScalarWhereInput!]
disconnect: [DanceMoveWhereUniqueInput!]
set: [DanceMoveWhereUniqueInput!]
update: [DanceMoveUpdateWithWhereUniqueWithoutCreatorInput!]
updateMany: [DanceMoveUpdateManyWithWhereWithoutCreatorInput!]
upsert: [DanceMoveUpsertWithWhereUniqueWithoutCreatorInput!]
}
input DanceMoveUpdateManyWithoutDanceStyleNestedInput {
connect: [DanceMoveWhereUniqueInput!]
connectOrCreate: [DanceMoveCreateOrConnectWithoutDanceStyleInput!]