@@ -62,6 +62,7 @@ export type BlankExperienceOrderByInput = {
62
62
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
63
63
_modified ?: InputMaybe < OrderBy > ;
64
64
_ranking ?: InputMaybe < Ranking > ;
65
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
65
66
composition ?: InputMaybe < CompositionStructureNodeOrderByInput > ;
66
67
} ;
67
68
@@ -130,6 +131,7 @@ export type BlankSectionOrderByInput = {
130
131
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
131
132
_modified ?: InputMaybe < OrderBy > ;
132
133
_ranking ?: InputMaybe < Ranking > ;
134
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
133
135
composition ?: InputMaybe < CompositionStructureNodeOrderByInput > ;
134
136
} ;
135
137
@@ -359,6 +361,7 @@ export type CompositionStructureNodeWhereInput = {
359
361
360
362
export type ContentMetadata = IContentMetadata & {
361
363
__typename ?: 'ContentMetadata' ;
364
+ created ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
362
365
displayName ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
363
366
key ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
364
367
lastModified ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
@@ -514,6 +517,7 @@ export type DataOrderByInput = {
514
517
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
515
518
_modified ?: InputMaybe < OrderBy > ;
516
519
_ranking ?: InputMaybe < Ranking > ;
520
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
517
521
} ;
518
522
519
523
export type DataOutput = {
@@ -554,6 +558,8 @@ export enum DateFacetUnit {
554
558
export type DateFilterInput = {
555
559
/** `boost` influences the weight of a field by boosting a match with a number (default: 1) — counts more towards the eventual relevance score which can be projected with `_score` — at query time. Note that `boost` cannot be a negative number. */
556
560
boost ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
561
+ /** `decay` influences the weight of the score with a decay function. For example, results that have a more recent datetime will be ranked higher. The `origin` will be `now()` in case not specified. The `scale` is by default 10. The `rate` must be in the range `[0..1]`. */
562
+ decay ?: InputMaybe < Decay > ;
557
563
/** `eq` matches on an exact value, but the value is case-insensitive. */
558
564
eq ?: InputMaybe < Scalars [ 'Date' ] [ 'input' ] > ;
559
565
/** `exist` matches results that have this field. */
@@ -570,6 +576,13 @@ export type DateFilterInput = {
570
576
notEq ?: InputMaybe < Scalars [ 'Date' ] [ 'input' ] > ;
571
577
} ;
572
578
579
+ /** Decay influences the weight of the score based on field values with a decay function */
580
+ export type Decay = {
581
+ origin ?: InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
582
+ rate ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
583
+ scale ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
584
+ } ;
585
+
573
586
export type GenericMedia = IData & _IContent & _IMedia & {
574
587
__typename ?: 'GenericMedia' ;
575
588
/** @deprecated Use `_link` field instead */
@@ -608,6 +621,7 @@ export type GenericMediaOrderByInput = {
608
621
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
609
622
_modified ?: InputMaybe < OrderBy > ;
610
623
_ranking ?: InputMaybe < Ranking > ;
624
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
611
625
} ;
612
626
613
627
export type GenericMediaOutput = {
@@ -778,6 +792,7 @@ export type ICompositionStructureNode = {
778
792
} ;
779
793
780
794
export type IContentMetadata = {
795
+ created ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
781
796
displayName ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
782
797
key ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
783
798
lastModified ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
@@ -836,6 +851,7 @@ export type IContentMetadataAutocompleteVersionArgs = {
836
851
837
852
export type IContentMetadataFacet = {
838
853
__typename ?: 'IContentMetadataFacet' ;
854
+ created ?: Maybe < Array < Maybe < DateFacet > > > ;
839
855
displayName ?: Maybe < Array < Maybe < StringFacet > > > ;
840
856
key ?: Maybe < Array < Maybe < StringFacet > > > ;
841
857
lastModified ?: Maybe < Array < Maybe < DateFacet > > > ;
@@ -848,6 +864,12 @@ export type IContentMetadataFacet = {
848
864
} ;
849
865
850
866
867
+ export type IContentMetadataFacetCreatedArgs = {
868
+ unit ?: InputMaybe < DateFacetUnit > ;
869
+ value ?: InputMaybe < Scalars [ 'Int' ] [ 'input' ] > ;
870
+ } ;
871
+
872
+
851
873
export type IContentMetadataFacetDisplayNameArgs = {
852
874
filters ?: InputMaybe < Array < Scalars [ 'String' ] [ 'input' ] > > ;
853
875
limit ?: Scalars [ 'Int' ] [ 'input' ] ;
@@ -908,6 +930,7 @@ export type IContentMetadataFacetVersionArgs = {
908
930
} ;
909
931
910
932
export type IContentMetadataOrderByInput = {
933
+ created ?: InputMaybe < OrderBy > ;
911
934
displayName ?: InputMaybe < OrderBy > ;
912
935
key ?: InputMaybe < OrderBy > ;
913
936
lastModified ?: InputMaybe < OrderBy > ;
@@ -920,6 +943,7 @@ export type IContentMetadataOrderByInput = {
920
943
} ;
921
944
922
945
export type IContentMetadataWhereInput = {
946
+ created ?: InputMaybe < DateFilterInput > ;
923
947
displayName ?: InputMaybe < SearchableStringFilterInput > ;
924
948
key ?: InputMaybe < StringFilterInput > ;
925
949
lastModified ?: InputMaybe < DateFilterInput > ;
@@ -979,6 +1003,7 @@ export type IInstanceMetadataDisplayNameArgs = {
979
1003
} ;
980
1004
981
1005
export type IItemMetadata = {
1006
+ created ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
982
1007
displayName ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
983
1008
displayOption ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
984
1009
key ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
@@ -1068,6 +1093,7 @@ export type ImageMediaOrderByInput = {
1068
1093
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1069
1094
_modified ?: InputMaybe < OrderBy > ;
1070
1095
_ranking ?: InputMaybe < Ranking > ;
1096
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1071
1097
} ;
1072
1098
1073
1099
export type ImageMediaOutput = {
@@ -1122,6 +1148,7 @@ export type InstanceMetadataDisplayNameArgs = {
1122
1148
1123
1149
export type ItemMetadata = IContentMetadata & IItemMetadata & {
1124
1150
__typename ?: 'ItemMetadata' ;
1151
+ created ?: Maybe < Scalars [ 'DateTime' ] [ 'output' ] > ;
1125
1152
displayName ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
1126
1153
displayOption ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
1127
1154
key ?: Maybe < Scalars [ 'String' ] [ 'output' ] > ;
@@ -1214,7 +1241,6 @@ export type ParagraphElement = IData & _IComponent & _IContent & _IElement & {
1214
1241
_metadata ?: Maybe < IContentMetadata > ;
1215
1242
_modified ?: Maybe < Scalars [ 'Date' ] [ 'output' ] > ;
1216
1243
_score ?: Maybe < Scalars [ 'Float' ] [ 'output' ] > ;
1217
- html ?: Maybe < RichText > ;
1218
1244
} ;
1219
1245
1220
1246
@@ -1231,14 +1257,12 @@ export type ParagraphElementAutocomplete = {
1231
1257
__typename ?: 'ParagraphElementAutocomplete' ;
1232
1258
Text ?: Maybe < RichTextAutocomplete > ;
1233
1259
_metadata ?: Maybe < IContentMetadataAutocomplete > ;
1234
- html ?: Maybe < RichTextAutocomplete > ;
1235
1260
} ;
1236
1261
1237
1262
export type ParagraphElementFacet = {
1238
1263
__typename ?: 'ParagraphElementFacet' ;
1239
1264
Text ?: Maybe < RichTextFacet > ;
1240
1265
_metadata ?: Maybe < IContentMetadataFacet > ;
1241
- html ?: Maybe < RichTextFacet > ;
1242
1266
} ;
1243
1267
1244
1268
export type ParagraphElementOrderByInput = {
@@ -1247,7 +1271,7 @@ export type ParagraphElementOrderByInput = {
1247
1271
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1248
1272
_modified ?: InputMaybe < OrderBy > ;
1249
1273
_ranking ?: InputMaybe < Ranking > ;
1250
- html ?: InputMaybe < RichTextOrderByInput > ;
1274
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1251
1275
} ;
1252
1276
1253
1277
export type ParagraphElementOutput = {
@@ -1272,7 +1296,6 @@ export type ParagraphElementWhereInput = {
1272
1296
_modified ?: InputMaybe < DateFilterInput > ;
1273
1297
_not ?: InputMaybe < Array < InputMaybe < ParagraphElementWhereInput > > > ;
1274
1298
_or ?: InputMaybe < Array < InputMaybe < ParagraphElementWhereInput > > > ;
1275
- html ?: InputMaybe < RichTextWhereInput > ;
1276
1299
} ;
1277
1300
1278
1301
export type Query = {
@@ -1863,6 +1886,7 @@ export type SysContentFolderOrderByInput = {
1863
1886
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1864
1887
_modified ?: InputMaybe < OrderBy > ;
1865
1888
_ranking ?: InputMaybe < Ranking > ;
1889
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1866
1890
} ;
1867
1891
1868
1892
export type SysContentFolderOutput = {
@@ -1926,6 +1950,7 @@ export type VideoMediaOrderByInput = {
1926
1950
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1927
1951
_modified ?: InputMaybe < OrderBy > ;
1928
1952
_ranking ?: InputMaybe < Ranking > ;
1953
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1929
1954
} ;
1930
1955
1931
1956
export type VideoMediaOutput = {
@@ -1989,6 +2014,7 @@ export type _ComponentOrderByInput = {
1989
2014
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1990
2015
_modified ?: InputMaybe < OrderBy > ;
1991
2016
_ranking ?: InputMaybe < Ranking > ;
2017
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
1992
2018
} ;
1993
2019
1994
2020
export type _ComponentOutput = {
@@ -2052,6 +2078,7 @@ export type _ContentOrderByInput = {
2052
2078
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2053
2079
_modified ?: InputMaybe < OrderBy > ;
2054
2080
_ranking ?: InputMaybe < Ranking > ;
2081
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2055
2082
} ;
2056
2083
2057
2084
export type _ContentOutput = {
@@ -2115,6 +2142,7 @@ export type _ElementOrderByInput = {
2115
2142
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2116
2143
_modified ?: InputMaybe < OrderBy > ;
2117
2144
_ranking ?: InputMaybe < Ranking > ;
2145
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2118
2146
} ;
2119
2147
2120
2148
export type _ElementOutput = {
@@ -2181,6 +2209,7 @@ export type _ExperienceOrderByInput = {
2181
2209
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2182
2210
_modified ?: InputMaybe < OrderBy > ;
2183
2211
_ranking ?: InputMaybe < Ranking > ;
2212
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2184
2213
composition ?: InputMaybe < CompositionStructureNodeOrderByInput > ;
2185
2214
} ;
2186
2215
@@ -2246,6 +2275,7 @@ export type _FolderOrderByInput = {
2246
2275
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2247
2276
_modified ?: InputMaybe < OrderBy > ;
2248
2277
_ranking ?: InputMaybe < Ranking > ;
2278
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2249
2279
} ;
2250
2280
2251
2281
export type _FolderOutput = {
@@ -2531,6 +2561,7 @@ export type _ImageOrderByInput = {
2531
2561
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2532
2562
_modified ?: InputMaybe < OrderBy > ;
2533
2563
_ranking ?: InputMaybe < Ranking > ;
2564
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2534
2565
} ;
2535
2566
2536
2567
export type _ImageOutput = {
@@ -2594,6 +2625,7 @@ export type _MediaOrderByInput = {
2594
2625
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2595
2626
_modified ?: InputMaybe < OrderBy > ;
2596
2627
_ranking ?: InputMaybe < Ranking > ;
2628
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2597
2629
} ;
2598
2630
2599
2631
export type _MediaOutput = {
@@ -2657,6 +2689,7 @@ export type _PageOrderByInput = {
2657
2689
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2658
2690
_modified ?: InputMaybe < OrderBy > ;
2659
2691
_ranking ?: InputMaybe < Ranking > ;
2692
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2660
2693
} ;
2661
2694
2662
2695
export type _PageOutput = {
@@ -2723,6 +2756,7 @@ export type _SectionOrderByInput = {
2723
2756
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2724
2757
_modified ?: InputMaybe < OrderBy > ;
2725
2758
_ranking ?: InputMaybe < Ranking > ;
2759
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2726
2760
composition ?: InputMaybe < CompositionStructureNodeOrderByInput > ;
2727
2761
} ;
2728
2762
@@ -2788,6 +2822,7 @@ export type _VideoOrderByInput = {
2788
2822
_minimumScore ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2789
2823
_modified ?: InputMaybe < OrderBy > ;
2790
2824
_ranking ?: InputMaybe < Ranking > ;
2825
+ _semanticWeight ?: InputMaybe < Scalars [ 'Float' ] [ 'input' ] > ;
2791
2826
} ;
2792
2827
2793
2828
export type _VideoOutput = {
0 commit comments