@@ -105,7 +105,6 @@ See https://cap.cloud.sap/docs/cds/common#aspect-managed
105
105
type AdminService_Books {
106
106
ID : Int
107
107
author : AdminService_Authors
108
- author_ID : Int
109
108
chapters (filter : [AdminService_Chapters_filter ], orderBy : [AdminService_Chapters_orderBy ], skip : Int , top : Int ): AdminService_Chapters_connection
110
109
createdAt : Timestamp
111
110
@@ -118,10 +117,8 @@ type AdminService_Books {
118
117
See https://cap.cloud.sap/docs/cds/common#type-currency
119
118
"""
120
119
currency : AdminService_Currencies
121
- currency_code : String
122
120
descr : String
123
121
genre : AdminService_Genres
124
- genre_ID : Int
125
122
image : Binary
126
123
modifiedAt : Timestamp
127
124
@@ -136,15 +133,12 @@ type AdminService_Books {
136
133
input AdminService_Books_C {
137
134
ID : Int
138
135
author : AdminService_Authors_C
139
- author_ID : Int
140
136
chapters : [AdminService_Chapters_C ]
141
137
createdAt : Timestamp
142
138
createdBy : String
143
139
currency : AdminService_Currencies_C
144
- currency_code : String
145
140
descr : String
146
141
genre : AdminService_Genres_C
147
- genre_ID : Int
148
142
image : Binary
149
143
modifiedAt : Timestamp
150
144
modifiedBy : String
@@ -156,15 +150,12 @@ input AdminService_Books_C {
156
150
157
151
input AdminService_Books_U {
158
152
author : AdminService_Authors_C
159
- author_ID : Int
160
153
chapters : [AdminService_Chapters_C ]
161
154
createdAt : Timestamp
162
155
createdBy : String
163
156
currency : AdminService_Currencies_C
164
- currency_code : String
165
157
descr : String
166
158
genre : AdminService_Genres_C
167
- genre_ID : Int
168
159
image : Binary
169
160
modifiedAt : Timestamp
170
161
modifiedBy : String
@@ -181,12 +172,9 @@ type AdminService_Books_connection {
181
172
182
173
input AdminService_Books_filter {
183
174
ID : [Int_filter ]
184
- author_ID : [Int_filter ]
185
175
createdAt : [Timestamp_filter ]
186
176
createdBy : [String_filter ]
187
- currency_code : [String_filter ]
188
177
descr : [String_filter ]
189
- genre_ID : [Int_filter ]
190
178
image : [Binary_filter ]
191
179
modifiedAt : [Timestamp_filter ]
192
180
modifiedBy : [String_filter ]
@@ -203,12 +191,9 @@ type AdminService_Books_input {
203
191
204
192
input AdminService_Books_orderBy {
205
193
ID : SortDirection
206
- author_ID : SortDirection
207
194
createdAt : SortDirection
208
195
createdBy : SortDirection
209
- currency_code : SortDirection
210
196
descr : SortDirection
211
- genre_ID : SortDirection
212
197
image : SortDirection
213
198
modifiedAt : SortDirection
214
199
modifiedBy : SortDirection
@@ -266,7 +251,6 @@ input AdminService_Books_texts_orderBy {
266
251
"""A Chapter of a Book"""
267
252
type AdminService_Chapters {
268
253
book : AdminService_Books
269
- book_ID : Int
270
254
createdAt : Timestamp
271
255
272
256
"""Canonical user ID"""
@@ -281,7 +265,6 @@ type AdminService_Chapters {
281
265
282
266
input AdminService_Chapters_C {
283
267
book : AdminService_Books_C
284
- book_ID : Int
285
268
createdAt : Timestamp
286
269
createdBy : String
287
270
modifiedAt : Timestamp
@@ -304,7 +287,6 @@ type AdminService_Chapters_connection {
304
287
}
305
288
306
289
input AdminService_Chapters_filter {
307
- book_ID : [Int_filter ]
308
290
createdAt : [Timestamp_filter ]
309
291
createdBy : [String_filter ]
310
292
modifiedAt : [Timestamp_filter ]
@@ -320,7 +302,6 @@ type AdminService_Chapters_input {
320
302
}
321
303
322
304
input AdminService_Chapters_orderBy {
323
- book_ID : SortDirection
324
305
createdAt : SortDirection
325
306
createdBy : SortDirection
326
307
modifiedAt : SortDirection
@@ -440,7 +421,6 @@ type AdminService_Genres {
440
421
descr : String
441
422
name : String
442
423
parent : AdminService_Genres
443
- parent_ID : Int
444
424
texts (filter : [AdminService_Genres_texts_filter ], orderBy : [AdminService_Genres_texts_orderBy ], skip : Int , top : Int ): AdminService_Genres_texts_connection
445
425
}
446
426
@@ -450,7 +430,6 @@ input AdminService_Genres_C {
450
430
descr : String
451
431
name : String
452
432
parent : AdminService_Genres_C
453
- parent_ID : Int
454
433
texts : [AdminService_Genres_texts_C ]
455
434
}
456
435
@@ -459,7 +438,6 @@ input AdminService_Genres_U {
459
438
descr : String
460
439
name : String
461
440
parent : AdminService_Genres_C
462
- parent_ID : Int
463
441
texts : [AdminService_Genres_texts_C ]
464
442
}
465
443
@@ -472,7 +450,6 @@ input AdminService_Genres_filter {
472
450
ID : [Int_filter ]
473
451
descr : [String_filter ]
474
452
name : [String_filter ]
475
- parent_ID : [Int_filter ]
476
453
}
477
454
478
455
type AdminService_Genres_input {
@@ -485,7 +462,6 @@ input AdminService_Genres_orderBy {
485
462
ID : SortDirection
486
463
descr : SortDirection
487
464
name : SortDirection
488
- parent_ID : SortDirection
489
465
}
490
466
491
467
type AdminService_Genres_texts {
@@ -579,10 +555,8 @@ type CatalogService_Books {
579
555
See https://cap.cloud.sap/docs/cds/common#type-currency
580
556
"""
581
557
currency : CatalogService_Currencies
582
- currency_code : String
583
558
descr : String
584
559
genre : CatalogService_Genres
585
- genre_ID : Int
586
560
image : Binary
587
561
modifiedAt : Timestamp
588
562
price : Decimal
@@ -597,10 +571,8 @@ input CatalogService_Books_C {
597
571
chapters : [CatalogService_Chapters_C ]
598
572
createdAt : Timestamp
599
573
currency : CatalogService_Currencies_C
600
- currency_code : String
601
574
descr : String
602
575
genre : CatalogService_Genres_C
603
- genre_ID : Int
604
576
image : Binary
605
577
modifiedAt : Timestamp
606
578
price : Decimal
@@ -614,10 +586,8 @@ input CatalogService_Books_U {
614
586
chapters : [CatalogService_Chapters_C ]
615
587
createdAt : Timestamp
616
588
currency : CatalogService_Currencies_C
617
- currency_code : String
618
589
descr : String
619
590
genre : CatalogService_Genres_C
620
- genre_ID : Int
621
591
image : Binary
622
592
modifiedAt : Timestamp
623
593
price : Decimal
@@ -635,9 +605,7 @@ input CatalogService_Books_filter {
635
605
ID : [Int_filter ]
636
606
author : [String_filter ]
637
607
createdAt : [Timestamp_filter ]
638
- currency_code : [String_filter ]
639
608
descr : [String_filter ]
640
- genre_ID : [Int_filter ]
641
609
image : [Binary_filter ]
642
610
modifiedAt : [Timestamp_filter ]
643
611
price : [Decimal_filter ]
@@ -655,9 +623,7 @@ input CatalogService_Books_orderBy {
655
623
ID : SortDirection
656
624
author : SortDirection
657
625
createdAt : SortDirection
658
- currency_code : SortDirection
659
626
descr : SortDirection
660
- genre_ID : SortDirection
661
627
image : SortDirection
662
628
modifiedAt : SortDirection
663
629
price : SortDirection
@@ -714,7 +680,6 @@ input CatalogService_Books_texts_orderBy {
714
680
"""A Chapter of a Book"""
715
681
type CatalogService_Chapters {
716
682
book : CatalogService_Books
717
- book_ID : Int
718
683
createdAt : Timestamp
719
684
720
685
"""Canonical user ID"""
@@ -729,7 +694,6 @@ type CatalogService_Chapters {
729
694
730
695
input CatalogService_Chapters_C {
731
696
book : CatalogService_Books_C
732
- book_ID : Int
733
697
createdAt : Timestamp
734
698
createdBy : String
735
699
modifiedAt : Timestamp
@@ -752,7 +716,6 @@ type CatalogService_Chapters_connection {
752
716
}
753
717
754
718
input CatalogService_Chapters_filter {
755
- book_ID : [Int_filter ]
756
719
createdAt : [Timestamp_filter ]
757
720
createdBy : [String_filter ]
758
721
modifiedAt : [Timestamp_filter ]
@@ -768,7 +731,6 @@ type CatalogService_Chapters_input {
768
731
}
769
732
770
733
input CatalogService_Chapters_orderBy {
771
- book_ID : SortDirection
772
734
createdAt : SortDirection
773
735
createdBy : SortDirection
774
736
modifiedAt : SortDirection
@@ -888,7 +850,6 @@ type CatalogService_Genres {
888
850
descr : String
889
851
name : String
890
852
parent : CatalogService_Genres
891
- parent_ID : Int
892
853
texts (filter : [CatalogService_Genres_texts_filter ], orderBy : [CatalogService_Genres_texts_orderBy ], skip : Int , top : Int ): CatalogService_Genres_texts_connection
893
854
}
894
855
@@ -898,7 +859,6 @@ input CatalogService_Genres_C {
898
859
descr : String
899
860
name : String
900
861
parent : CatalogService_Genres_C
901
- parent_ID : Int
902
862
texts : [CatalogService_Genres_texts_C ]
903
863
}
904
864
@@ -907,7 +867,6 @@ input CatalogService_Genres_U {
907
867
descr : String
908
868
name : String
909
869
parent : CatalogService_Genres_C
910
- parent_ID : Int
911
870
texts : [CatalogService_Genres_texts_C ]
912
871
}
913
872
@@ -920,7 +879,6 @@ input CatalogService_Genres_filter {
920
879
ID : [Int_filter ]
921
880
descr : [String_filter ]
922
881
name : [String_filter ]
923
- parent_ID : [Int_filter ]
924
882
}
925
883
926
884
type CatalogService_Genres_input {
@@ -933,7 +891,6 @@ input CatalogService_Genres_orderBy {
933
891
ID : SortDirection
934
892
descr : SortDirection
935
893
name : SortDirection
936
- parent_ID : SortDirection
937
894
}
938
895
939
896
type CatalogService_Genres_texts {
@@ -995,9 +952,7 @@ type CatalogService_ListOfBooks {
995
952
See https://cap.cloud.sap/docs/cds/common#type-currency
996
953
"""
997
954
currency : CatalogService_Currencies
998
- currency_code : String
999
955
genre : CatalogService_Genres
1000
- genre_ID : Int
1001
956
image : Binary
1002
957
modifiedAt : Timestamp
1003
958
price : Decimal
@@ -1012,9 +967,7 @@ input CatalogService_ListOfBooks_C {
1012
967
chapters : [CatalogService_Chapters_C ]
1013
968
createdAt : Timestamp
1014
969
currency : CatalogService_Currencies_C
1015
- currency_code : String
1016
970
genre : CatalogService_Genres_C
1017
- genre_ID : Int
1018
971
image : Binary
1019
972
modifiedAt : Timestamp
1020
973
price : Decimal
@@ -1028,9 +981,7 @@ input CatalogService_ListOfBooks_U {
1028
981
chapters : [CatalogService_Chapters_C ]
1029
982
createdAt : Timestamp
1030
983
currency : CatalogService_Currencies_C
1031
- currency_code : String
1032
984
genre : CatalogService_Genres_C
1033
- genre_ID : Int
1034
985
image : Binary
1035
986
modifiedAt : Timestamp
1036
987
price : Decimal
@@ -1048,8 +999,6 @@ input CatalogService_ListOfBooks_filter {
1048
999
ID : [Int_filter ]
1049
1000
author : [String_filter ]
1050
1001
createdAt : [Timestamp_filter ]
1051
- currency_code : [String_filter ]
1052
- genre_ID : [Int_filter ]
1053
1002
image : [Binary_filter ]
1054
1003
modifiedAt : [Timestamp_filter ]
1055
1004
price : [Decimal_filter ]
@@ -1067,8 +1016,6 @@ input CatalogService_ListOfBooks_orderBy {
1067
1016
ID : SortDirection
1068
1017
author : SortDirection
1069
1018
createdAt : SortDirection
1070
- currency_code : SortDirection
1071
- genre_ID : SortDirection
1072
1019
image : SortDirection
1073
1020
modifiedAt : SortDirection
1074
1021
price : SortDirection
0 commit comments