-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.gql
3519 lines (3093 loc) · 96.4 KB
/
schema.gql
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 Account {
_count: AccountCount
budgets(cursor: BudgetWhereUniqueInput, distinct: [BudgetScalarFieldEnum!], orderBy: [BudgetOrderByWithRelationInput!], skip: Int, take: Int, where: BudgetWhereInput): [Budget!]!
createdAt: DateTime!
expenses(cursor: ExpenseWhereUniqueInput, distinct: [ExpenseScalarFieldEnum!], orderBy: [ExpenseOrderByWithRelationInput!], skip: Int, take: Int, where: ExpenseWhereInput): [Expense!]!
goals(cursor: GoalWhereUniqueInput, distinct: [GoalScalarFieldEnum!], orderBy: [GoalOrderByWithRelationInput!], skip: Int, take: Int, where: GoalWhereInput): [Goal!]!
id: Int!
incomes(cursor: IncomeWhereUniqueInput, distinct: [IncomeScalarFieldEnum!], orderBy: [IncomeOrderByWithRelationInput!], skip: Int, take: Int, where: IncomeWhereInput): [Income!]!
name: String!
updatedAt: DateTime!
user: User!
userId: Int!
}
type AccountAvgAggregate {
id: Float
userId: Float
}
input AccountAvgOrderByAggregateInput {
id: SortOrder
userId: SortOrder
}
type AccountCount {
budgets(where: BudgetWhereInput): Int!
expenses(where: ExpenseWhereInput): Int!
goals(where: GoalWhereInput): Int!
incomes(where: IncomeWhereInput): Int!
}
type AccountCountAggregate {
_all: Int!
createdAt: Int!
id: Int!
name: Int!
updatedAt: Int!
userId: Int!
}
input AccountCountOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input AccountCreateInput {
budgets: BudgetCreateNestedManyWithoutAccountInput
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutAccountInput
goals: GoalCreateNestedManyWithoutAccountInput
incomes: IncomeCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
user: UserCreateNestedOneWithoutAccountsInput!
}
input AccountCreateNestedManyWithoutUserInput {
connect: [AccountWhereUniqueInput!]
connectOrCreate: [AccountCreateOrConnectWithoutUserInput!]
create: [AccountCreateWithoutUserInput!]
}
input AccountCreateNestedOneWithoutBudgetsInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutBudgetsInput
create: AccountCreateWithoutBudgetsInput
}
input AccountCreateNestedOneWithoutExpensesInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutExpensesInput
create: AccountCreateWithoutExpensesInput
}
input AccountCreateNestedOneWithoutGoalsInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutGoalsInput
create: AccountCreateWithoutGoalsInput
}
input AccountCreateNestedOneWithoutIncomesInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutIncomesInput
create: AccountCreateWithoutIncomesInput
}
input AccountCreateOrConnectWithoutBudgetsInput {
create: AccountCreateWithoutBudgetsInput!
where: AccountWhereUniqueInput!
}
input AccountCreateOrConnectWithoutExpensesInput {
create: AccountCreateWithoutExpensesInput!
where: AccountWhereUniqueInput!
}
input AccountCreateOrConnectWithoutGoalsInput {
create: AccountCreateWithoutGoalsInput!
where: AccountWhereUniqueInput!
}
input AccountCreateOrConnectWithoutIncomesInput {
create: AccountCreateWithoutIncomesInput!
where: AccountWhereUniqueInput!
}
input AccountCreateOrConnectWithoutUserInput {
create: AccountCreateWithoutUserInput!
where: AccountWhereUniqueInput!
}
input AccountCreateWithoutBudgetsInput {
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutAccountInput
goals: GoalCreateNestedManyWithoutAccountInput
incomes: IncomeCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
user: UserCreateNestedOneWithoutAccountsInput!
}
input AccountCreateWithoutExpensesInput {
budgets: BudgetCreateNestedManyWithoutAccountInput
createdAt: DateTime
goals: GoalCreateNestedManyWithoutAccountInput
incomes: IncomeCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
user: UserCreateNestedOneWithoutAccountsInput!
}
input AccountCreateWithoutGoalsInput {
budgets: BudgetCreateNestedManyWithoutAccountInput
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutAccountInput
incomes: IncomeCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
user: UserCreateNestedOneWithoutAccountsInput!
}
input AccountCreateWithoutIncomesInput {
budgets: BudgetCreateNestedManyWithoutAccountInput
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutAccountInput
goals: GoalCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
user: UserCreateNestedOneWithoutAccountsInput!
}
input AccountCreateWithoutUserInput {
budgets: BudgetCreateNestedManyWithoutAccountInput
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutAccountInput
goals: GoalCreateNestedManyWithoutAccountInput
incomes: IncomeCreateNestedManyWithoutAccountInput
name: String!
updatedAt: DateTime
}
type AccountGroupBy {
_avg: AccountAvgAggregate
_count: AccountCountAggregate
_max: AccountMaxAggregate
_min: AccountMinAggregate
_sum: AccountSumAggregate
createdAt: DateTime!
id: Int!
name: String!
updatedAt: DateTime!
userId: Int!
}
input AccountListRelationFilter {
every: AccountWhereInput
none: AccountWhereInput
some: AccountWhereInput
}
type AccountMaxAggregate {
createdAt: DateTime
id: Int
name: String
updatedAt: DateTime
userId: Int
}
input AccountMaxOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
type AccountMinAggregate {
createdAt: DateTime
id: Int
name: String
updatedAt: DateTime
userId: Int
}
input AccountMinOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input AccountOrderByRelationAggregateInput {
_count: SortOrder
}
input AccountOrderByWithAggregationInput {
_avg: AccountAvgOrderByAggregateInput
_count: AccountCountOrderByAggregateInput
_max: AccountMaxOrderByAggregateInput
_min: AccountMinOrderByAggregateInput
_sum: AccountSumOrderByAggregateInput
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
userId: SortOrder
}
input AccountOrderByWithRelationInput {
budgets: BudgetOrderByRelationAggregateInput
createdAt: SortOrder
expenses: ExpenseOrderByRelationAggregateInput
goals: GoalOrderByRelationAggregateInput
id: SortOrder
incomes: IncomeOrderByRelationAggregateInput
name: SortOrder
updatedAt: SortOrder
user: UserOrderByWithRelationInput
userId: SortOrder
}
input AccountRelationFilter {
is: AccountWhereInput
isNot: AccountWhereInput
}
enum AccountScalarFieldEnum {
createdAt
id
name
updatedAt
userId
}
input AccountScalarWhereInput {
AND: [AccountScalarWhereInput!]
NOT: [AccountScalarWhereInput!]
OR: [AccountScalarWhereInput!]
createdAt: DateTimeFilter
id: IntFilter
name: StringFilter
updatedAt: DateTimeFilter
userId: IntFilter
}
input AccountScalarWhereWithAggregatesInput {
AND: [AccountScalarWhereWithAggregatesInput!]
NOT: [AccountScalarWhereWithAggregatesInput!]
OR: [AccountScalarWhereWithAggregatesInput!]
createdAt: DateTimeWithAggregatesFilter
id: IntWithAggregatesFilter
name: StringWithAggregatesFilter
updatedAt: DateTimeWithAggregatesFilter
userId: IntWithAggregatesFilter
}
type AccountSumAggregate {
id: Int
userId: Int
}
input AccountSumOrderByAggregateInput {
id: SortOrder
userId: SortOrder
}
input AccountUpdateInput {
budgets: BudgetUpdateManyWithoutAccountNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
expenses: ExpenseUpdateManyWithoutAccountNestedInput
goals: GoalUpdateManyWithoutAccountNestedInput
incomes: IncomeUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutAccountsNestedInput
}
input AccountUpdateManyMutationInput {
createdAt: DateTimeFieldUpdateOperationsInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input AccountUpdateManyWithWhereWithoutUserInput {
data: AccountUpdateManyMutationInput!
where: AccountScalarWhereInput!
}
input AccountUpdateManyWithoutUserNestedInput {
connect: [AccountWhereUniqueInput!]
connectOrCreate: [AccountCreateOrConnectWithoutUserInput!]
create: [AccountCreateWithoutUserInput!]
delete: [AccountWhereUniqueInput!]
deleteMany: [AccountScalarWhereInput!]
disconnect: [AccountWhereUniqueInput!]
set: [AccountWhereUniqueInput!]
update: [AccountUpdateWithWhereUniqueWithoutUserInput!]
updateMany: [AccountUpdateManyWithWhereWithoutUserInput!]
upsert: [AccountUpsertWithWhereUniqueWithoutUserInput!]
}
input AccountUpdateOneRequiredWithoutBudgetsNestedInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutBudgetsInput
create: AccountCreateWithoutBudgetsInput
update: AccountUpdateToOneWithWhereWithoutBudgetsInput
upsert: AccountUpsertWithoutBudgetsInput
}
input AccountUpdateOneRequiredWithoutExpensesNestedInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutExpensesInput
create: AccountCreateWithoutExpensesInput
update: AccountUpdateToOneWithWhereWithoutExpensesInput
upsert: AccountUpsertWithoutExpensesInput
}
input AccountUpdateOneRequiredWithoutGoalsNestedInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutGoalsInput
create: AccountCreateWithoutGoalsInput
update: AccountUpdateToOneWithWhereWithoutGoalsInput
upsert: AccountUpsertWithoutGoalsInput
}
input AccountUpdateOneRequiredWithoutIncomesNestedInput {
connect: AccountWhereUniqueInput
connectOrCreate: AccountCreateOrConnectWithoutIncomesInput
create: AccountCreateWithoutIncomesInput
update: AccountUpdateToOneWithWhereWithoutIncomesInput
upsert: AccountUpsertWithoutIncomesInput
}
input AccountUpdateToOneWithWhereWithoutBudgetsInput {
data: AccountUpdateWithoutBudgetsInput!
where: AccountWhereInput
}
input AccountUpdateToOneWithWhereWithoutExpensesInput {
data: AccountUpdateWithoutExpensesInput!
where: AccountWhereInput
}
input AccountUpdateToOneWithWhereWithoutGoalsInput {
data: AccountUpdateWithoutGoalsInput!
where: AccountWhereInput
}
input AccountUpdateToOneWithWhereWithoutIncomesInput {
data: AccountUpdateWithoutIncomesInput!
where: AccountWhereInput
}
input AccountUpdateWithWhereUniqueWithoutUserInput {
data: AccountUpdateWithoutUserInput!
where: AccountWhereUniqueInput!
}
input AccountUpdateWithoutBudgetsInput {
createdAt: DateTimeFieldUpdateOperationsInput
expenses: ExpenseUpdateManyWithoutAccountNestedInput
goals: GoalUpdateManyWithoutAccountNestedInput
incomes: IncomeUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutAccountsNestedInput
}
input AccountUpdateWithoutExpensesInput {
budgets: BudgetUpdateManyWithoutAccountNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
goals: GoalUpdateManyWithoutAccountNestedInput
incomes: IncomeUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutAccountsNestedInput
}
input AccountUpdateWithoutGoalsInput {
budgets: BudgetUpdateManyWithoutAccountNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
expenses: ExpenseUpdateManyWithoutAccountNestedInput
incomes: IncomeUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutAccountsNestedInput
}
input AccountUpdateWithoutIncomesInput {
budgets: BudgetUpdateManyWithoutAccountNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
expenses: ExpenseUpdateManyWithoutAccountNestedInput
goals: GoalUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
user: UserUpdateOneRequiredWithoutAccountsNestedInput
}
input AccountUpdateWithoutUserInput {
budgets: BudgetUpdateManyWithoutAccountNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
expenses: ExpenseUpdateManyWithoutAccountNestedInput
goals: GoalUpdateManyWithoutAccountNestedInput
incomes: IncomeUpdateManyWithoutAccountNestedInput
name: StringFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input AccountUpsertWithWhereUniqueWithoutUserInput {
create: AccountCreateWithoutUserInput!
update: AccountUpdateWithoutUserInput!
where: AccountWhereUniqueInput!
}
input AccountUpsertWithoutBudgetsInput {
create: AccountCreateWithoutBudgetsInput!
update: AccountUpdateWithoutBudgetsInput!
where: AccountWhereInput
}
input AccountUpsertWithoutExpensesInput {
create: AccountCreateWithoutExpensesInput!
update: AccountUpdateWithoutExpensesInput!
where: AccountWhereInput
}
input AccountUpsertWithoutGoalsInput {
create: AccountCreateWithoutGoalsInput!
update: AccountUpdateWithoutGoalsInput!
where: AccountWhereInput
}
input AccountUpsertWithoutIncomesInput {
create: AccountCreateWithoutIncomesInput!
update: AccountUpdateWithoutIncomesInput!
where: AccountWhereInput
}
input AccountWhereInput {
AND: [AccountWhereInput!]
NOT: [AccountWhereInput!]
OR: [AccountWhereInput!]
budgets: BudgetListRelationFilter
createdAt: DateTimeFilter
expenses: ExpenseListRelationFilter
goals: GoalListRelationFilter
id: IntFilter
incomes: IncomeListRelationFilter
name: StringFilter
updatedAt: DateTimeFilter
user: UserRelationFilter
userId: IntFilter
}
input AccountWhereUniqueInput {
AND: [AccountWhereInput!]
NOT: [AccountWhereInput!]
OR: [AccountWhereInput!]
budgets: BudgetListRelationFilter
createdAt: DateTimeFilter
expenses: ExpenseListRelationFilter
goals: GoalListRelationFilter
id: Int
incomes: IncomeListRelationFilter
name: StringFilter
updatedAt: DateTimeFilter
user: UserRelationFilter
userId: IntFilter
}
type AffectedRowsOutput {
count: Int!
}
type AggregateAccount {
_avg: AccountAvgAggregate
_count: AccountCountAggregate
_max: AccountMaxAggregate
_min: AccountMinAggregate
_sum: AccountSumAggregate
}
type AggregateBudget {
_avg: BudgetAvgAggregate
_count: BudgetCountAggregate
_max: BudgetMaxAggregate
_min: BudgetMinAggregate
_sum: BudgetSumAggregate
}
type AggregateCategory {
_avg: CategoryAvgAggregate
_count: CategoryCountAggregate
_max: CategoryMaxAggregate
_min: CategoryMinAggregate
_sum: CategorySumAggregate
}
type AggregateExpense {
_avg: ExpenseAvgAggregate
_count: ExpenseCountAggregate
_max: ExpenseMaxAggregate
_min: ExpenseMinAggregate
_sum: ExpenseSumAggregate
}
type AggregateGoal {
_avg: GoalAvgAggregate
_count: GoalCountAggregate
_max: GoalMaxAggregate
_min: GoalMinAggregate
_sum: GoalSumAggregate
}
type AggregateIncome {
_avg: IncomeAvgAggregate
_count: IncomeCountAggregate
_max: IncomeMaxAggregate
_min: IncomeMinAggregate
_sum: IncomeSumAggregate
}
type AggregatePassword {
_avg: PasswordAvgAggregate
_count: PasswordCountAggregate
_max: PasswordMaxAggregate
_min: PasswordMinAggregate
_sum: PasswordSumAggregate
}
type AggregateSchedule {
_count: ScheduleCountAggregate
_max: ScheduleMaxAggregate
_min: ScheduleMinAggregate
}
type AggregateSource {
_count: SourceCountAggregate
_max: SourceMaxAggregate
_min: SourceMinAggregate
}
type AggregateUser {
_avg: UserAvgAggregate
_count: UserCountAggregate
_max: UserMaxAggregate
_min: UserMinAggregate
_sum: UserSumAggregate
}
type Budget {
account: Account!
accountId: Int!
amount: Int!
category: Category!
categoryId: Int!
createdAt: DateTime!
id: Int!
updatedAt: DateTime!
}
type BudgetAvgAggregate {
accountId: Float
amount: Float
categoryId: Float
id: Float
}
input BudgetAvgOrderByAggregateInput {
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
id: SortOrder
}
type BudgetCountAggregate {
_all: Int!
accountId: Int!
amount: Int!
categoryId: Int!
createdAt: Int!
id: Int!
updatedAt: Int!
}
input BudgetCountOrderByAggregateInput {
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
createdAt: SortOrder
id: SortOrder
updatedAt: SortOrder
}
input BudgetCreateInput {
account: AccountCreateNestedOneWithoutBudgetsInput!
amount: Int!
category: CategoryCreateNestedOneWithoutBudgetsInput!
createdAt: DateTime
updatedAt: DateTime
}
input BudgetCreateNestedManyWithoutAccountInput {
connect: [BudgetWhereUniqueInput!]
connectOrCreate: [BudgetCreateOrConnectWithoutAccountInput!]
create: [BudgetCreateWithoutAccountInput!]
}
input BudgetCreateNestedManyWithoutCategoryInput {
connect: [BudgetWhereUniqueInput!]
connectOrCreate: [BudgetCreateOrConnectWithoutCategoryInput!]
create: [BudgetCreateWithoutCategoryInput!]
}
input BudgetCreateOrConnectWithoutAccountInput {
create: BudgetCreateWithoutAccountInput!
where: BudgetWhereUniqueInput!
}
input BudgetCreateOrConnectWithoutCategoryInput {
create: BudgetCreateWithoutCategoryInput!
where: BudgetWhereUniqueInput!
}
input BudgetCreateWithoutAccountInput {
amount: Int!
category: CategoryCreateNestedOneWithoutBudgetsInput!
createdAt: DateTime
updatedAt: DateTime
}
input BudgetCreateWithoutCategoryInput {
account: AccountCreateNestedOneWithoutBudgetsInput!
amount: Int!
createdAt: DateTime
updatedAt: DateTime
}
type BudgetGroupBy {
_avg: BudgetAvgAggregate
_count: BudgetCountAggregate
_max: BudgetMaxAggregate
_min: BudgetMinAggregate
_sum: BudgetSumAggregate
accountId: Int!
amount: Int!
categoryId: Int!
createdAt: DateTime!
id: Int!
updatedAt: DateTime!
}
input BudgetListRelationFilter {
every: BudgetWhereInput
none: BudgetWhereInput
some: BudgetWhereInput
}
type BudgetMaxAggregate {
accountId: Int
amount: Int
categoryId: Int
createdAt: DateTime
id: Int
updatedAt: DateTime
}
input BudgetMaxOrderByAggregateInput {
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
createdAt: SortOrder
id: SortOrder
updatedAt: SortOrder
}
type BudgetMinAggregate {
accountId: Int
amount: Int
categoryId: Int
createdAt: DateTime
id: Int
updatedAt: DateTime
}
input BudgetMinOrderByAggregateInput {
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
createdAt: SortOrder
id: SortOrder
updatedAt: SortOrder
}
input BudgetOrderByRelationAggregateInput {
_count: SortOrder
}
input BudgetOrderByWithAggregationInput {
_avg: BudgetAvgOrderByAggregateInput
_count: BudgetCountOrderByAggregateInput
_max: BudgetMaxOrderByAggregateInput
_min: BudgetMinOrderByAggregateInput
_sum: BudgetSumOrderByAggregateInput
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
createdAt: SortOrder
id: SortOrder
updatedAt: SortOrder
}
input BudgetOrderByWithRelationInput {
account: AccountOrderByWithRelationInput
accountId: SortOrder
amount: SortOrder
category: CategoryOrderByWithRelationInput
categoryId: SortOrder
createdAt: SortOrder
id: SortOrder
updatedAt: SortOrder
}
enum BudgetScalarFieldEnum {
accountId
amount
categoryId
createdAt
id
updatedAt
}
input BudgetScalarWhereInput {
AND: [BudgetScalarWhereInput!]
NOT: [BudgetScalarWhereInput!]
OR: [BudgetScalarWhereInput!]
accountId: IntFilter
amount: IntFilter
categoryId: IntFilter
createdAt: DateTimeFilter
id: IntFilter
updatedAt: DateTimeFilter
}
input BudgetScalarWhereWithAggregatesInput {
AND: [BudgetScalarWhereWithAggregatesInput!]
NOT: [BudgetScalarWhereWithAggregatesInput!]
OR: [BudgetScalarWhereWithAggregatesInput!]
accountId: IntWithAggregatesFilter
amount: IntWithAggregatesFilter
categoryId: IntWithAggregatesFilter
createdAt: DateTimeWithAggregatesFilter
id: IntWithAggregatesFilter
updatedAt: DateTimeWithAggregatesFilter
}
type BudgetSumAggregate {
accountId: Int
amount: Int
categoryId: Int
id: Int
}
input BudgetSumOrderByAggregateInput {
accountId: SortOrder
amount: SortOrder
categoryId: SortOrder
id: SortOrder
}
input BudgetUpdateInput {
account: AccountUpdateOneRequiredWithoutBudgetsNestedInput
amount: IntFieldUpdateOperationsInput
category: CategoryUpdateOneRequiredWithoutBudgetsNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input BudgetUpdateManyMutationInput {
amount: IntFieldUpdateOperationsInput
createdAt: DateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input BudgetUpdateManyWithWhereWithoutAccountInput {
data: BudgetUpdateManyMutationInput!
where: BudgetScalarWhereInput!
}
input BudgetUpdateManyWithWhereWithoutCategoryInput {
data: BudgetUpdateManyMutationInput!
where: BudgetScalarWhereInput!
}
input BudgetUpdateManyWithoutAccountNestedInput {
connect: [BudgetWhereUniqueInput!]
connectOrCreate: [BudgetCreateOrConnectWithoutAccountInput!]
create: [BudgetCreateWithoutAccountInput!]
delete: [BudgetWhereUniqueInput!]
deleteMany: [BudgetScalarWhereInput!]
disconnect: [BudgetWhereUniqueInput!]
set: [BudgetWhereUniqueInput!]
update: [BudgetUpdateWithWhereUniqueWithoutAccountInput!]
updateMany: [BudgetUpdateManyWithWhereWithoutAccountInput!]
upsert: [BudgetUpsertWithWhereUniqueWithoutAccountInput!]
}
input BudgetUpdateManyWithoutCategoryNestedInput {
connect: [BudgetWhereUniqueInput!]
connectOrCreate: [BudgetCreateOrConnectWithoutCategoryInput!]
create: [BudgetCreateWithoutCategoryInput!]
delete: [BudgetWhereUniqueInput!]
deleteMany: [BudgetScalarWhereInput!]
disconnect: [BudgetWhereUniqueInput!]
set: [BudgetWhereUniqueInput!]
update: [BudgetUpdateWithWhereUniqueWithoutCategoryInput!]
updateMany: [BudgetUpdateManyWithWhereWithoutCategoryInput!]
upsert: [BudgetUpsertWithWhereUniqueWithoutCategoryInput!]
}
input BudgetUpdateWithWhereUniqueWithoutAccountInput {
data: BudgetUpdateWithoutAccountInput!
where: BudgetWhereUniqueInput!
}
input BudgetUpdateWithWhereUniqueWithoutCategoryInput {
data: BudgetUpdateWithoutCategoryInput!
where: BudgetWhereUniqueInput!
}
input BudgetUpdateWithoutAccountInput {
amount: IntFieldUpdateOperationsInput
category: CategoryUpdateOneRequiredWithoutBudgetsNestedInput
createdAt: DateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input BudgetUpdateWithoutCategoryInput {
account: AccountUpdateOneRequiredWithoutBudgetsNestedInput
amount: IntFieldUpdateOperationsInput
createdAt: DateTimeFieldUpdateOperationsInput
updatedAt: DateTimeFieldUpdateOperationsInput
}
input BudgetUpsertWithWhereUniqueWithoutAccountInput {
create: BudgetCreateWithoutAccountInput!
update: BudgetUpdateWithoutAccountInput!
where: BudgetWhereUniqueInput!
}
input BudgetUpsertWithWhereUniqueWithoutCategoryInput {
create: BudgetCreateWithoutCategoryInput!
update: BudgetUpdateWithoutCategoryInput!
where: BudgetWhereUniqueInput!
}
input BudgetWhereInput {
AND: [BudgetWhereInput!]
NOT: [BudgetWhereInput!]
OR: [BudgetWhereInput!]
account: AccountRelationFilter
accountId: IntFilter
amount: IntFilter
category: CategoryRelationFilter
categoryId: IntFilter
createdAt: DateTimeFilter
id: IntFilter
updatedAt: DateTimeFilter
}
input BudgetWhereUniqueInput {
AND: [BudgetWhereInput!]
NOT: [BudgetWhereInput!]
OR: [BudgetWhereInput!]
account: AccountRelationFilter
accountId: IntFilter
amount: IntFilter
category: CategoryRelationFilter
categoryId: IntFilter
createdAt: DateTimeFilter
id: Int
updatedAt: DateTimeFilter
}
type Category {
_count: CategoryCount
budgets(cursor: BudgetWhereUniqueInput, distinct: [BudgetScalarFieldEnum!], orderBy: [BudgetOrderByWithRelationInput!], skip: Int, take: Int, where: BudgetWhereInput): [Budget!]!
createdAt: DateTime!
expenses(cursor: ExpenseWhereUniqueInput, distinct: [ExpenseScalarFieldEnum!], orderBy: [ExpenseOrderByWithRelationInput!], skip: Int, take: Int, where: ExpenseWhereInput): [Expense!]!
id: Int!
name: String!
updatedAt: DateTime!
}
type CategoryAvgAggregate {
id: Float
}
input CategoryAvgOrderByAggregateInput {
id: SortOrder
}
type CategoryCount {
budgets(where: BudgetWhereInput): Int!
expenses(where: ExpenseWhereInput): Int!
}
type CategoryCountAggregate {
_all: Int!
createdAt: Int!
id: Int!
name: Int!
updatedAt: Int!
}
input CategoryCountOrderByAggregateInput {
createdAt: SortOrder
id: SortOrder
name: SortOrder
updatedAt: SortOrder
}
input CategoryCreateInput {
budgets: BudgetCreateNestedManyWithoutCategoryInput
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutCategoryInput
name: String!
updatedAt: DateTime
}
input CategoryCreateNestedOneWithoutBudgetsInput {
connect: CategoryWhereUniqueInput
connectOrCreate: CategoryCreateOrConnectWithoutBudgetsInput
create: CategoryCreateWithoutBudgetsInput
}
input CategoryCreateNestedOneWithoutExpensesInput {
connect: CategoryWhereUniqueInput
connectOrCreate: CategoryCreateOrConnectWithoutExpensesInput
create: CategoryCreateWithoutExpensesInput
}
input CategoryCreateOrConnectWithoutBudgetsInput {
create: CategoryCreateWithoutBudgetsInput!
where: CategoryWhereUniqueInput!
}
input CategoryCreateOrConnectWithoutExpensesInput {
create: CategoryCreateWithoutExpensesInput!
where: CategoryWhereUniqueInput!
}
input CategoryCreateWithoutBudgetsInput {
createdAt: DateTime
expenses: ExpenseCreateNestedManyWithoutCategoryInput
name: String!
updatedAt: DateTime
}
input CategoryCreateWithoutExpensesInput {
budgets: BudgetCreateNestedManyWithoutCategoryInput
createdAt: DateTime
name: String!
updatedAt: DateTime
}
type CategoryGroupBy {
_avg: CategoryAvgAggregate
_count: CategoryCountAggregate
_max: CategoryMaxAggregate
_min: CategoryMinAggregate