@financial-times/cp-content-pipeline-schema 2.5.2 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +187 -41
- package/lib/datasources/base.d.ts +1 -0
- package/lib/datasources/capi.js +1 -0
- package/lib/datasources/capi.js.map +1 -1
- package/lib/datasources/instrumented.d.ts +1 -0
- package/lib/datasources/instrumented.js +1 -9
- package/lib/datasources/instrumented.js.map +1 -1
- package/lib/datasources/origami-image.js +1 -0
- package/lib/datasources/origami-image.js.map +1 -1
- package/lib/datasources/twitter.js +1 -0
- package/lib/datasources/twitter.js.map +1 -1
- package/lib/datasources/url-management.d.ts +1 -0
- package/lib/datasources/url-management.js +2 -0
- package/lib/datasources/url-management.js.map +1 -1
- package/lib/generated/index.d.ts +1214 -909
- package/lib/model/CapiResponse.d.ts +14 -4
- package/lib/model/CapiResponse.js +19 -4
- package/lib/model/CapiResponse.js.map +1 -1
- package/lib/model/RichText.d.ts +1 -1
- package/lib/model/RichText.js.map +1 -1
- package/lib/model/Topper.d.ts +2 -2
- package/lib/model/Topper.js +2 -2
- package/lib/model/Topper.js.map +1 -1
- package/lib/model/schemas/capi/content-package.d.ts +18 -0
- package/lib/model/schemas/capi/content-package.js +1 -0
- package/lib/model/schemas/capi/content-package.js.map +1 -1
- package/lib/resolvers/clip.d.ts +10 -0
- package/lib/resolvers/clip.js +10 -0
- package/lib/resolvers/clip.js.map +1 -1
- package/lib/resolvers/content-tree/references/ClipSet.d.ts +13 -0
- package/lib/resolvers/content-tree/references/ClipSet.js +12 -1
- package/lib/resolvers/content-tree/references/ClipSet.js.map +1 -1
- package/lib/resolvers/content-tree/references/Flourish.d.ts +6 -0
- package/lib/resolvers/content-tree/references/Flourish.js +15 -1
- package/lib/resolvers/content-tree/references/Flourish.js.map +1 -1
- package/lib/resolvers/content-tree/references/ImageSet.d.ts +1 -0
- package/lib/resolvers/content-tree/references/ImageSet.js +3 -0
- package/lib/resolvers/content-tree/references/ImageSet.js.map +1 -1
- package/lib/resolvers/content-tree/references/LayoutImage.d.ts +1 -0
- package/lib/resolvers/content-tree/references/LayoutImage.js +3 -0
- package/lib/resolvers/content-tree/references/LayoutImage.js.map +1 -1
- package/lib/resolvers/content-tree/references/RawImage.d.ts +1 -0
- package/lib/resolvers/content-tree/references/RawImage.js +3 -0
- package/lib/resolvers/content-tree/references/RawImage.js.map +1 -1
- package/lib/resolvers/content-tree/references/Recommended.d.ts +1 -0
- package/lib/resolvers/content-tree/references/Recommended.js +3 -0
- package/lib/resolvers/content-tree/references/Recommended.js.map +1 -1
- package/lib/resolvers/content-tree/references/Reference.d.ts +1 -1
- package/lib/resolvers/content-tree/references/Reference.js +1 -3
- package/lib/resolvers/content-tree/references/Reference.js.map +1 -1
- package/lib/resolvers/content-tree/references/ScrollyImage.d.ts +1 -0
- package/lib/resolvers/content-tree/references/ScrollyImage.js +3 -0
- package/lib/resolvers/content-tree/references/ScrollyImage.js.map +1 -1
- package/lib/resolvers/content-tree/references/Tweet.d.ts +1 -0
- package/lib/resolvers/content-tree/references/Tweet.js +3 -0
- package/lib/resolvers/content-tree/references/Tweet.js.map +1 -1
- package/lib/resolvers/content-tree/references/Video.d.ts +2 -1
- package/lib/resolvers/content-tree/references/Video.js +4 -3
- package/lib/resolvers/content-tree/references/Video.js.map +1 -1
- package/lib/resolvers/content-tree/references/index.d.ts +5 -1
- package/lib/resolvers/content-tree/references/index.js +4 -0
- package/lib/resolvers/content-tree/references/index.js.map +1 -1
- package/lib/resolvers/content.d.ts +242 -33
- package/lib/resolvers/content.js +66 -31
- package/lib/resolvers/content.js.map +1 -1
- package/lib/resolvers/image.d.ts +142 -12
- package/lib/resolvers/image.js +45 -10
- package/lib/resolvers/image.js.map +1 -1
- package/lib/resolvers/index.d.ts +588 -60
- package/lib/resolvers/picture.d.ts +41 -8
- package/lib/resolvers/picture.js +19 -21
- package/lib/resolvers/picture.js.map +1 -1
- package/lib/resolvers/richText.d.ts +14 -2
- package/lib/resolvers/richText.js +8 -6
- package/lib/resolvers/richText.js.map +1 -1
- package/lib/resolvers/scalars.d.ts +2 -0
- package/lib/resolvers/scalars.js +2 -0
- package/lib/resolvers/scalars.js.map +1 -1
- package/lib/resolvers/teaser.d.ts +5 -0
- package/lib/resolvers/teaser.js +6 -1
- package/lib/resolvers/teaser.js.map +1 -1
- package/lib/resolvers/topper.d.ts +127 -7
- package/lib/resolvers/topper.js +64 -6
- package/lib/resolvers/topper.js.map +1 -1
- package/package.json +1 -1
- package/src/datasources/base.ts +1 -0
- package/src/datasources/capi.ts +1 -0
- package/src/datasources/instrumented.ts +1 -11
- package/src/datasources/origami-image.ts +3 -0
- package/src/datasources/twitter.ts +2 -0
- package/src/datasources/url-management.ts +2 -0
- package/src/generated/index.ts +1214 -670
- package/src/model/CapiResponse.ts +32 -7
- package/src/model/RichText.ts +1 -1
- package/src/model/Topper.ts +2 -2
- package/src/model/schemas/capi/content-package.ts +1 -0
- package/src/resolvers/clip.ts +13 -2
- package/src/resolvers/content-tree/references/ClipSet.ts +22 -2
- package/src/resolvers/content-tree/references/Flourish.ts +20 -1
- package/src/resolvers/content-tree/references/ImageSet.ts +4 -0
- package/src/resolvers/content-tree/references/LayoutImage.ts +4 -0
- package/src/resolvers/content-tree/references/RawImage.ts +4 -0
- package/src/resolvers/content-tree/references/Recommended.ts +4 -0
- package/src/resolvers/content-tree/references/Reference.ts +1 -3
- package/src/resolvers/content-tree/references/ScrollyImage.ts +4 -0
- package/src/resolvers/content-tree/references/Tweet.ts +4 -0
- package/src/resolvers/content-tree/references/Video.ts +5 -3
- package/src/resolvers/content-tree/references/index.ts +13 -2
- package/src/resolvers/content.ts +88 -38
- package/src/resolvers/image.ts +75 -5
- package/src/resolvers/picture.ts +35 -23
- package/src/resolvers/richText.ts +13 -8
- package/src/resolvers/scalars.ts +2 -0
- package/src/resolvers/teaser.ts +6 -2
- package/src/resolvers/topper.ts +86 -6
- package/tsconfig.tsbuildinfo +1 -1
- package/typedefs/clip.graphql +28 -0
- package/typedefs/concept.graphql +21 -2
- package/typedefs/content.graphql +441 -36
- package/typedefs/core.graphql +6 -0
- package/typedefs/image.graphql +210 -15
- package/typedefs/picture.graphql +54 -1
- package/typedefs/references/clipSet.graphql +34 -1
- package/typedefs/references/flourish.graphql +8 -0
- package/typedefs/references/imageSet.graphql +6 -0
- package/typedefs/references/layoutImage.graphql +3 -0
- package/typedefs/references/rawImage.graphql +3 -0
- package/typedefs/references/recommended.graphql +3 -0
- package/typedefs/references/reference.graphql +1 -0
- package/typedefs/references/scrollyImage.graphql +3 -0
- package/typedefs/references/tweet.graphql +3 -0
- package/typedefs/references/video.graphql +5 -0
- package/typedefs/richText.graphql +7 -4
- package/typedefs/teaser.graphql +42 -1
- package/typedefs/topper.graphql +219 -7
package/src/generated/index.ts
CHANGED
|
@@ -40,42 +40,70 @@ export type Scalars = {
|
|
|
40
40
|
};
|
|
41
41
|
|
|
42
42
|
export type Accessibility = {
|
|
43
|
+
/** An array of captions for the clip. */
|
|
43
44
|
readonly captions?: Maybe<ReadonlyArray<Maybe<Caption>>>;
|
|
45
|
+
/** An abstract syntax tree of the transcript for the clip. */
|
|
44
46
|
readonly transcript?: Maybe<RichText>;
|
|
45
47
|
};
|
|
46
48
|
|
|
47
49
|
export type AltStandfirst = {
|
|
50
|
+
/** An introductory paragraph of the article. */
|
|
48
51
|
readonly promotionalStandfirst?: Maybe<Scalars['String']['output']>;
|
|
49
52
|
};
|
|
50
53
|
|
|
51
54
|
export type AltTitle = {
|
|
55
|
+
/** A promotional title of the article. */
|
|
52
56
|
readonly promotionalTitle?: Maybe<Scalars['String']['output']>;
|
|
53
57
|
};
|
|
54
58
|
|
|
55
59
|
export type Article = Content & {
|
|
60
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
56
61
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
62
|
+
/** An alternative introductory paragraph of the article. */
|
|
57
63
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
64
|
+
/** An alternative title of the article. */
|
|
58
65
|
readonly altTitle?: Maybe<AltTitle>;
|
|
66
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
59
67
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
68
|
+
/** An abstract syntax tree of the article content. */
|
|
60
69
|
readonly body?: Maybe<RichText>;
|
|
70
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
61
71
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
72
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
62
73
|
readonly byline?: Maybe<StructuredContent>;
|
|
74
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
63
75
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
76
|
+
/** Whether comments are enabled on the article. */
|
|
64
77
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
78
|
+
/** The parent article, indicating this article is a part of a series or package. */
|
|
65
79
|
readonly containedIn?: Maybe<Content>;
|
|
80
|
+
/** A design object containing the theme and layout of the article. */
|
|
66
81
|
readonly design?: Maybe<Design>;
|
|
82
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
67
83
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
84
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
68
85
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
86
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
69
87
|
readonly id: Scalars['ID']['output'];
|
|
88
|
+
/** The concept to use for instant alert CTAs. */
|
|
70
89
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
90
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
71
91
|
readonly mainImage?: Maybe<Image>;
|
|
92
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
72
93
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
94
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
73
95
|
readonly publishedDate: Scalars['String']['output'];
|
|
96
|
+
/** An introductory paragraph of the article. */
|
|
74
97
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
98
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
75
99
|
readonly teaser?: Maybe<Teaser>;
|
|
100
|
+
/** The title of the article. */
|
|
76
101
|
readonly title: Scalars['String']['output'];
|
|
102
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
77
103
|
readonly topper?: Maybe<Topper>;
|
|
104
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
78
105
|
readonly type: Scalars['ContentType']['output'];
|
|
106
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
79
107
|
readonly url: Scalars['String']['output'];
|
|
80
108
|
};
|
|
81
109
|
|
|
@@ -91,29 +119,53 @@ export type ArticleUrlArgs = {
|
|
|
91
119
|
};
|
|
92
120
|
|
|
93
121
|
export type Audio = Content & {
|
|
122
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
94
123
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
124
|
+
/** An alternative introductory paragraph of the article. */
|
|
95
125
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
126
|
+
/** An alternative title of the article. */
|
|
96
127
|
readonly altTitle?: Maybe<AltTitle>;
|
|
128
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
97
129
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
130
|
+
/** An abstract syntax tree of the article content. */
|
|
98
131
|
readonly body?: Maybe<RichText>;
|
|
132
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
99
133
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
134
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
100
135
|
readonly byline?: Maybe<StructuredContent>;
|
|
136
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
101
137
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
138
|
+
/** Whether comments are enabled on the article. */
|
|
102
139
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
140
|
+
/** A design object containing the theme and layout of the article. */
|
|
103
141
|
readonly design?: Maybe<Design>;
|
|
142
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
104
143
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
144
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
105
145
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
146
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
106
147
|
readonly id: Scalars['ID']['output'];
|
|
148
|
+
/** The concept to use for instant alert CTAs. */
|
|
107
149
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
150
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
108
151
|
readonly mainImage?: Maybe<Image>;
|
|
152
|
+
/** An array of media objects containing the url, the duration, the filesize and the media type. */
|
|
109
153
|
readonly media?: Maybe<ReadonlyArray<Maybe<Media>>>;
|
|
154
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
110
155
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
156
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
111
157
|
readonly publishedDate: Scalars['String']['output'];
|
|
158
|
+
/** An introductory paragraph of the article. */
|
|
112
159
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
160
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
113
161
|
readonly teaser?: Maybe<Teaser>;
|
|
162
|
+
/** The title of the article. */
|
|
114
163
|
readonly title: Scalars['String']['output'];
|
|
164
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
115
165
|
readonly topper?: Maybe<Topper>;
|
|
166
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
116
167
|
readonly type: Scalars['ContentType']['output'];
|
|
168
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
117
169
|
readonly url: Scalars['String']['output'];
|
|
118
170
|
};
|
|
119
171
|
|
|
@@ -129,114 +181,198 @@ export type AudioUrlArgs = {
|
|
|
129
181
|
};
|
|
130
182
|
|
|
131
183
|
export type BasicTopper = Topper & {
|
|
184
|
+
/** Whether the topper should have a background box. */
|
|
132
185
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
186
|
+
/** The background colour of the topper. */
|
|
133
187
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
188
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
134
189
|
readonly displayConcept?: Maybe<Concept>;
|
|
190
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
135
191
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
192
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
136
193
|
readonly genreConcept?: Maybe<Concept>;
|
|
194
|
+
/** The headline text of the topper. */
|
|
137
195
|
readonly headline: Scalars['String']['output'];
|
|
196
|
+
/** An abstract syntax tree of the introduction text. */
|
|
138
197
|
readonly intro?: Maybe<RichText>;
|
|
198
|
+
/** Whether the topper should have a text shadow. */
|
|
139
199
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
140
200
|
};
|
|
141
201
|
|
|
142
202
|
export type BrandedTopper = Topper & TopperWithBrand & TopperWithTheme & {
|
|
203
|
+
/** Whether the topper should have a background box. */
|
|
143
204
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
205
|
+
/** The background colour of the topper. */
|
|
144
206
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
207
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
145
208
|
readonly brandConcept?: Maybe<Concept>;
|
|
209
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
146
210
|
readonly displayConcept?: Maybe<Concept>;
|
|
211
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
147
212
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
213
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
148
214
|
readonly genreConcept?: Maybe<Concept>;
|
|
215
|
+
/** The headline text of the topper. */
|
|
149
216
|
readonly headline: Scalars['String']['output'];
|
|
217
|
+
/** An abstract syntax tree of the introduction text. */
|
|
150
218
|
readonly intro?: Maybe<RichText>;
|
|
219
|
+
/** Whether the headline should be large. */
|
|
151
220
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
221
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
152
222
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
223
|
+
/** Whether the topper should have a text shadow. */
|
|
153
224
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
154
225
|
};
|
|
155
226
|
|
|
156
227
|
export type Caption = {
|
|
228
|
+
/** The media type of the caption eg. text/vtt. */
|
|
157
229
|
readonly mediaType?: Maybe<Scalars['String']['output']>;
|
|
230
|
+
/** The url of the caption, eg. 'https://next-media-api.ft.com/clips/captions/32065513'. */
|
|
158
231
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
159
232
|
};
|
|
160
233
|
|
|
161
234
|
export type Clip = {
|
|
235
|
+
/** An array of data sources - includes 'video/mp4' and 'audio/mp3' sources. */
|
|
162
236
|
readonly dataSource: ReadonlyArray<ClipSource>;
|
|
237
|
+
/** The format of the clip, eg. 'standard-inline' or 'mobile'. */
|
|
163
238
|
readonly format?: Maybe<Scalars['ClipFormat']['output']>;
|
|
239
|
+
/** The unique identifier of the clip - a uuid or a url. */
|
|
164
240
|
readonly id: Scalars['String']['output'];
|
|
241
|
+
/** The url of the image to be used as a poster for the clip, eg. 'https://www.ft.com/__origami/service/image...'. */
|
|
165
242
|
readonly poster?: Maybe<Scalars['String']['output']>;
|
|
243
|
+
/** The type of the clip, eg. 'http://www.ft.com/ontology/content/Clip'. */
|
|
166
244
|
readonly type?: Maybe<Scalars['String']['output']>;
|
|
167
245
|
};
|
|
168
246
|
|
|
169
247
|
export type ClipSet = Reference & {
|
|
248
|
+
/** An object containing the accessibility details of the clip. */
|
|
170
249
|
readonly accessibility?: Maybe<Accessibility>;
|
|
250
|
+
/** Whether the clip should play automatically when loaded. */
|
|
171
251
|
readonly autoplay?: Maybe<Scalars['Boolean']['output']>;
|
|
252
|
+
/** Text describing the content of the clip, to be shown next to the clip. */
|
|
172
253
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
254
|
+
/** An array of clips in the clip set. */
|
|
173
255
|
readonly clips?: Maybe<ReadonlyArray<Maybe<Clip>>>;
|
|
256
|
+
/** An array of content warnings for the clip set. */
|
|
174
257
|
readonly contentWarning?: Maybe<ReadonlyArray<Maybe<Scalars['String']['output']>>>;
|
|
258
|
+
/** The credit text of the clip, eg. 'Getty Images'. */
|
|
175
259
|
readonly credits?: Maybe<Scalars['String']['output']>;
|
|
260
|
+
/** The layout of the clip set, eg. 'in-line'. */
|
|
176
261
|
readonly dataLayout?: Maybe<Scalars['String']['output']>;
|
|
262
|
+
/** The description of the clip. */
|
|
177
263
|
readonly description?: Maybe<Scalars['String']['output']>;
|
|
264
|
+
/** The title to be displayed for the clip set. */
|
|
178
265
|
readonly displayTitle?: Maybe<Scalars['String']['output']>;
|
|
266
|
+
/** The unique identifier of the clip set. */
|
|
179
267
|
readonly id: Scalars['String']['output'];
|
|
268
|
+
/** Whether the clip should loop. */
|
|
180
269
|
readonly loop?: Maybe<Scalars['Boolean']['output']>;
|
|
270
|
+
/** Whether the clip should be muted. */
|
|
181
271
|
readonly muted?: Maybe<Scalars['Boolean']['output']>;
|
|
272
|
+
/** Whether the clip set should **not** include audio. */
|
|
182
273
|
readonly noAudio?: Maybe<Scalars['Boolean']['output']>;
|
|
274
|
+
/** The date the clip set was published. */
|
|
183
275
|
readonly publishedDate?: Maybe<Scalars['String']['output']>;
|
|
276
|
+
/** The source of the clip set, eg. 'YouTube'. */
|
|
184
277
|
readonly source?: Maybe<Scalars['String']['output']>;
|
|
278
|
+
/** The subtitle of the clip set. */
|
|
185
279
|
readonly subtitle?: Maybe<Scalars['String']['output']>;
|
|
280
|
+
/** The type of the clip set, eg. 'video'. */
|
|
186
281
|
readonly type: Scalars['String']['output'];
|
|
187
282
|
};
|
|
188
283
|
|
|
189
284
|
export type ClipSource = {
|
|
285
|
+
/** The audio encoding format of the source, eg. mp3. */
|
|
190
286
|
readonly audioCodec?: Maybe<Scalars['String']['output']>;
|
|
287
|
+
/** The url of the clip source, eg. 'https://next-media-api.ft.com/renditions/16868569859480/0x0.mp3'. */
|
|
191
288
|
readonly binaryUrl: Scalars['String']['output'];
|
|
289
|
+
/** The duration of the clip in milliseconds. */
|
|
192
290
|
readonly duration?: Maybe<Scalars['Int']['output']>;
|
|
291
|
+
/** The media type eg. video/mp4. */
|
|
193
292
|
readonly mediaType: Scalars['String']['output'];
|
|
293
|
+
/** The height of the clip in pixels. */
|
|
194
294
|
readonly pixelHeight?: Maybe<Scalars['Int']['output']>;
|
|
295
|
+
/** The width of the clip in pixels. */
|
|
195
296
|
readonly pixelWidth?: Maybe<Scalars['Int']['output']>;
|
|
297
|
+
/** The video encoding format of the source, eg. h264. */
|
|
196
298
|
readonly videoCodec?: Maybe<Scalars['String']['output']>;
|
|
197
299
|
};
|
|
198
300
|
|
|
301
|
+
/** A concept is supplemtary information item, like a location, person, organisation or topic. It is used to provide context to an article. */
|
|
199
302
|
export type Concept = {
|
|
303
|
+
/** The api url of the concept, eg. 'http://api.ft.com/things/a579350c-61ce-4c00-97ca-ddaa2e0cacf6'. */
|
|
200
304
|
readonly apiUrl?: Maybe<Scalars['String']['output']>;
|
|
305
|
+
/** The type of the concept, eg. 'http://www.ft.com/ontology/Topic'. */
|
|
201
306
|
readonly directType?: Maybe<Scalars['String']['output']>;
|
|
307
|
+
/** The unique identifier of the concept - a uuid or a url. */
|
|
202
308
|
readonly id: Scalars['ID']['output'];
|
|
309
|
+
/** Whether the concept is part of a package brand eg. 'ftSeries' or 'ftGuides'. */
|
|
203
310
|
readonly isPackageBrand?: Maybe<Scalars['Boolean']['output']>;
|
|
311
|
+
/** The relationship between the concept and the article, eg. 'http://www.ft.com/ontology/hasAuthor'. */
|
|
204
312
|
readonly predicate?: Maybe<Scalars['String']['output']>;
|
|
313
|
+
/** The preferred label of the concept, eg. 'Work & Careers'. */
|
|
205
314
|
readonly prefLabel: Scalars['String']['output'];
|
|
315
|
+
/** The type of the concept, eg. 'TOPIC'. */
|
|
206
316
|
readonly type?: Maybe<Scalars['String']['output']>;
|
|
317
|
+
/** An array of types, eg. ['http://www.ft.com/ontology/core/Thing', 'http://www.ft.com/ontology/Topic']. */
|
|
207
318
|
readonly types?: Maybe<ReadonlyArray<Scalars['String']['output']>>;
|
|
319
|
+
/** The url of the media, eg. 'https://next-media-api.ft.com/renditions/16868569859480/0x0.mp3'. */
|
|
208
320
|
readonly url: Scalars['String']['output'];
|
|
209
321
|
};
|
|
210
322
|
|
|
211
323
|
|
|
324
|
+
/** A concept is supplemtary information item, like a location, person, organisation or topic. It is used to provide context to an article. */
|
|
212
325
|
export type ConceptUrlArgs = {
|
|
213
326
|
relative?: InputMaybe<Scalars['Boolean']['input']>;
|
|
214
327
|
vanity?: InputMaybe<Scalars['Boolean']['input']>;
|
|
215
328
|
};
|
|
216
329
|
|
|
217
330
|
export type Content = {
|
|
331
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
218
332
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
333
|
+
/** An alternative introductory paragraph of the article. */
|
|
219
334
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
335
|
+
/** An alternative title of the article. */
|
|
220
336
|
readonly altTitle?: Maybe<AltTitle>;
|
|
337
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
221
338
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
339
|
+
/** An abstract syntax tree of the article content. */
|
|
222
340
|
readonly body?: Maybe<RichText>;
|
|
341
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
223
342
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
343
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
224
344
|
readonly byline?: Maybe<StructuredContent>;
|
|
345
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
225
346
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
347
|
+
/** Whether comments are enabled on the article. */
|
|
226
348
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
349
|
+
/** A design object containing the theme and layout of the article. */
|
|
227
350
|
readonly design?: Maybe<Design>;
|
|
351
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
228
352
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
353
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
229
354
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
355
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
230
356
|
readonly id: Scalars['ID']['output'];
|
|
357
|
+
/** The concept to use for instant alert CTAs. */
|
|
231
358
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
359
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
232
360
|
readonly mainImage?: Maybe<Image>;
|
|
361
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
233
362
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
363
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
234
364
|
readonly publishedDate: Scalars['String']['output'];
|
|
365
|
+
/** An introductory paragraph of the article. */
|
|
235
366
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
367
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
236
368
|
readonly teaser?: Maybe<Teaser>;
|
|
369
|
+
/** The title of the article. */
|
|
237
370
|
readonly title: Scalars['String']['output'];
|
|
371
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
238
372
|
readonly topper?: Maybe<Topper>;
|
|
373
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
239
374
|
readonly type: Scalars['ContentType']['output'];
|
|
375
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
240
376
|
readonly url: Scalars['String']['output'];
|
|
241
377
|
};
|
|
242
378
|
|
|
@@ -252,31 +388,57 @@ export type ContentUrlArgs = {
|
|
|
252
388
|
};
|
|
253
389
|
|
|
254
390
|
export type ContentPackage = Content & {
|
|
391
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
255
392
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
393
|
+
/** An alternative introductory paragraph of the article. */
|
|
256
394
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
395
|
+
/** An alternative title of the article. */
|
|
257
396
|
readonly altTitle?: Maybe<AltTitle>;
|
|
397
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
258
398
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
399
|
+
/** An abstract syntax tree of the article content. */
|
|
259
400
|
readonly body?: Maybe<RichText>;
|
|
401
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
260
402
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
403
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
261
404
|
readonly byline?: Maybe<StructuredContent>;
|
|
405
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
262
406
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
407
|
+
/** Whether comments are enabled on the article. */
|
|
263
408
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
409
|
+
/** The child articles of this content package. */
|
|
264
410
|
readonly contains?: Maybe<ReadonlyArray<Maybe<Teaser>>>;
|
|
411
|
+
/** The number of child articles in this content package. */
|
|
265
412
|
readonly containsLength?: Maybe<Scalars['Int']['output']>;
|
|
413
|
+
/** A design object containing the theme and layout of the article. */
|
|
266
414
|
readonly design?: Maybe<Design>;
|
|
415
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
267
416
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
417
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
268
418
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
419
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
269
420
|
readonly id: Scalars['ID']['output'];
|
|
421
|
+
/** The concept to use for instant alert CTAs. */
|
|
270
422
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
423
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
271
424
|
readonly mainImage?: Maybe<Image>;
|
|
425
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
272
426
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
427
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
273
428
|
readonly publishedDate: Scalars['String']['output'];
|
|
429
|
+
/** An introductory paragraph of the article. */
|
|
274
430
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
431
|
+
/** The optional table of contents for this content package. */
|
|
275
432
|
readonly tableOfContents?: Maybe<TableOfContents>;
|
|
433
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
276
434
|
readonly teaser?: Maybe<Teaser>;
|
|
435
|
+
/** The title of the article. */
|
|
277
436
|
readonly title: Scalars['String']['output'];
|
|
437
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
278
438
|
readonly topper?: Maybe<Topper>;
|
|
439
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
279
440
|
readonly type: Scalars['ContentType']['output'];
|
|
441
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
280
442
|
readonly url: Scalars['String']['output'];
|
|
281
443
|
};
|
|
282
444
|
|
|
@@ -298,79 +460,135 @@ export type ContentPackageUrlArgs = {
|
|
|
298
460
|
};
|
|
299
461
|
|
|
300
462
|
export type DeepLandscapeTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
463
|
+
/** Whether the topper should have a background box. */
|
|
301
464
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
465
|
+
/** The background colour of the topper. */
|
|
302
466
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
467
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
303
468
|
readonly brandConcept?: Maybe<Concept>;
|
|
469
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
304
470
|
readonly displayConcept?: Maybe<Concept>;
|
|
471
|
+
/** A fallback image to be used if the 'images' are not availableimages: [Image!]!. */
|
|
305
472
|
readonly fallbackImage?: Maybe<Image>;
|
|
473
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
306
474
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
475
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
307
476
|
readonly genreConcept?: Maybe<Concept>;
|
|
477
|
+
/** The headline text of the topper. */
|
|
308
478
|
readonly headline: Scalars['String']['output'];
|
|
479
|
+
/** An array of images to be displayed on the topper. */
|
|
309
480
|
readonly images: ReadonlyArray<Image>;
|
|
481
|
+
/** An abstract syntax tree of the introduction text. */
|
|
310
482
|
readonly intro?: Maybe<RichText>;
|
|
483
|
+
/** Whether the headline should be large. */
|
|
311
484
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
485
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
312
486
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
487
|
+
/** Whether the topper should have a text shadow. */
|
|
313
488
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
314
489
|
};
|
|
315
490
|
|
|
316
491
|
export type DeepPortraitTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
492
|
+
/** Whether the topper should have a background box. */
|
|
317
493
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
494
|
+
/** The background colour of the topper. */
|
|
318
495
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
496
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
319
497
|
readonly brandConcept?: Maybe<Concept>;
|
|
498
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
320
499
|
readonly displayConcept?: Maybe<Concept>;
|
|
500
|
+
/** A fallback image to be used if the 'images' are not availableimages: [Image!]!. */
|
|
321
501
|
readonly fallbackImage?: Maybe<Image>;
|
|
502
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
322
503
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
504
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
323
505
|
readonly genreConcept?: Maybe<Concept>;
|
|
506
|
+
/** The headline text of the topper. */
|
|
324
507
|
readonly headline: Scalars['String']['output'];
|
|
508
|
+
/** An array of images to be displayed on the topper. */
|
|
325
509
|
readonly images: ReadonlyArray<Image>;
|
|
510
|
+
/** An abstract syntax tree of the introduction text. */
|
|
326
511
|
readonly intro?: Maybe<RichText>;
|
|
512
|
+
/** Whether the headline should be large. */
|
|
327
513
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
514
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
328
515
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
516
|
+
/** Whether the topper should have a text shadow. */
|
|
329
517
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
330
518
|
};
|
|
331
519
|
|
|
332
520
|
export type Design = {
|
|
521
|
+
/** The layout, eg. 'default'. */
|
|
333
522
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
523
|
+
/** A scalar representing the theme of the design, eg. 'extra-wide'. */
|
|
334
524
|
readonly theme?: Maybe<Scalars['PackageDesign']['output']>;
|
|
335
525
|
};
|
|
336
526
|
|
|
337
527
|
export type Flourish = Reference & {
|
|
528
|
+
/** The fallback image to be used if the flourish graphics cannot be loaded. */
|
|
338
529
|
readonly fallbackImage?: Maybe<FlourishFallback>;
|
|
530
|
+
/** The type of the reference, eg. 'flourish'. */
|
|
339
531
|
readonly type: Scalars['String']['output'];
|
|
340
532
|
};
|
|
341
533
|
|
|
342
534
|
export type FlourishFallback = {
|
|
535
|
+
/** The height in pixels of the fallback image. */
|
|
343
536
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
537
|
+
/** The url of the fallback image. */
|
|
344
538
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
539
|
+
/** The width in pixels of the fallback image. */
|
|
345
540
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
346
541
|
};
|
|
347
542
|
|
|
348
543
|
export type FullBleedTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithTheme & {
|
|
544
|
+
/** Whether the topper should have a background box. */
|
|
349
545
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
546
|
+
/** The background colour of the topper. */
|
|
350
547
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
548
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
351
549
|
readonly brandConcept?: Maybe<Concept>;
|
|
550
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
352
551
|
readonly displayConcept?: Maybe<Concept>;
|
|
552
|
+
/** A fallback image to be used if the 'images' are not availableimages: [Image!]!. */
|
|
353
553
|
readonly fallbackImage?: Maybe<Image>;
|
|
554
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
354
555
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
556
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
355
557
|
readonly genreConcept?: Maybe<Concept>;
|
|
558
|
+
/** The headline text of the topper. */
|
|
356
559
|
readonly headline: Scalars['String']['output'];
|
|
560
|
+
/** An array of images to be displayed on the topper. */
|
|
357
561
|
readonly images: ReadonlyArray<Image>;
|
|
562
|
+
/** An abstract syntax tree of the introduction text. */
|
|
358
563
|
readonly intro?: Maybe<RichText>;
|
|
564
|
+
/** Whether the headline should be large. */
|
|
359
565
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
566
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
360
567
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
568
|
+
/** Whether the topper should have a text shadow. */
|
|
361
569
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
362
570
|
};
|
|
363
571
|
|
|
364
572
|
export type Image = {
|
|
573
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
365
574
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
575
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
366
576
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
577
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
367
578
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
579
|
+
/** The format of the image, eg. 'portrait'. */
|
|
368
580
|
readonly format: Scalars['ImageFormat']['output'];
|
|
581
|
+
/** The height of the image in pixels. */
|
|
369
582
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
583
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
370
584
|
readonly id: Scalars['String']['output'];
|
|
585
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
371
586
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
587
|
+
/** The type of the image, eg. 'graphic'. */
|
|
372
588
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
589
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
373
590
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
591
|
+
/** The width of the image in pixels. */
|
|
374
592
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
375
593
|
};
|
|
376
594
|
|
|
@@ -381,15 +599,25 @@ export type ImageSourceSetArgs = {
|
|
|
381
599
|
};
|
|
382
600
|
|
|
383
601
|
export type ImageDesktop = Image & {
|
|
602
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
384
603
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
604
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
385
605
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
606
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
386
607
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
608
|
+
/** The format of the image, eg. 'portrait'. */
|
|
387
609
|
readonly format: Scalars['ImageFormat']['output'];
|
|
610
|
+
/** The height of the image in pixels. */
|
|
388
611
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
612
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
389
613
|
readonly id: Scalars['String']['output'];
|
|
614
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
390
615
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
616
|
+
/** The type of the image, eg. 'graphic'. */
|
|
391
617
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
618
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
392
619
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
620
|
+
/** The width of the image in pixels. */
|
|
393
621
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
394
622
|
};
|
|
395
623
|
|
|
@@ -400,15 +628,25 @@ export type ImageDesktopSourceSetArgs = {
|
|
|
400
628
|
};
|
|
401
629
|
|
|
402
630
|
export type ImageLandscape = Image & {
|
|
631
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
403
632
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
633
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
404
634
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
635
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
405
636
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
637
|
+
/** The format of the image, eg. 'portrait'. */
|
|
406
638
|
readonly format: Scalars['ImageFormat']['output'];
|
|
639
|
+
/** The height of the image in pixels. */
|
|
407
640
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
641
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
408
642
|
readonly id: Scalars['String']['output'];
|
|
643
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
409
644
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
645
|
+
/** The type of the image, eg. 'graphic'. */
|
|
410
646
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
647
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
411
648
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
649
|
+
/** The width of the image in pixels. */
|
|
412
650
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
413
651
|
};
|
|
414
652
|
|
|
@@ -419,15 +657,25 @@ export type ImageLandscapeSourceSetArgs = {
|
|
|
419
657
|
};
|
|
420
658
|
|
|
421
659
|
export type ImageMobile = Image & {
|
|
660
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
422
661
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
662
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
423
663
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
664
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
424
665
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
666
|
+
/** The format of the image, eg. 'portrait'. */
|
|
425
667
|
readonly format: Scalars['ImageFormat']['output'];
|
|
668
|
+
/** The height of the image in pixels. */
|
|
426
669
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
670
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
427
671
|
readonly id: Scalars['String']['output'];
|
|
672
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
428
673
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
674
|
+
/** The type of the image, eg. 'graphic'. */
|
|
429
675
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
676
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
430
677
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
678
|
+
/** The width of the image in pixels. */
|
|
431
679
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
432
680
|
};
|
|
433
681
|
|
|
@@ -438,15 +686,25 @@ export type ImageMobileSourceSetArgs = {
|
|
|
438
686
|
};
|
|
439
687
|
|
|
440
688
|
export type ImagePortrait = Image & {
|
|
689
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
441
690
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
691
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
442
692
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
693
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
443
694
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
695
|
+
/** The format of the image, eg. 'portrait'. */
|
|
444
696
|
readonly format: Scalars['ImageFormat']['output'];
|
|
697
|
+
/** The height of the image in pixels. */
|
|
445
698
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
699
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
446
700
|
readonly id: Scalars['String']['output'];
|
|
701
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
447
702
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
703
|
+
/** The type of the image, eg. 'graphic'. */
|
|
448
704
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
705
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
449
706
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
707
|
+
/** The width of the image in pixels. */
|
|
450
708
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
451
709
|
};
|
|
452
710
|
|
|
@@ -457,26 +715,41 @@ export type ImagePortraitSourceSetArgs = {
|
|
|
457
715
|
};
|
|
458
716
|
|
|
459
717
|
export type ImageSet = Reference & {
|
|
718
|
+
/** A set of images with different sizes and formats. */
|
|
460
719
|
readonly picture?: Maybe<Picture>;
|
|
720
|
+
/** The type of the reference, eg. 'image-set'. */
|
|
461
721
|
readonly type: Scalars['String']['output'];
|
|
462
722
|
};
|
|
463
723
|
|
|
464
724
|
export type ImageSource = {
|
|
725
|
+
/** The device pixel ratio. DPR is calculated as DPR = Physical Pixels (pixels seen on screen) / Logical Pixels (pixel that can fit in a given space). */
|
|
465
726
|
readonly dpr?: Maybe<Scalars['Int']['output']>;
|
|
727
|
+
/** The url of the image source, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
466
728
|
readonly url: Scalars['String']['output'];
|
|
729
|
+
/** The width of the image source in pixels. */
|
|
467
730
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
468
731
|
};
|
|
469
732
|
|
|
470
733
|
export type ImageSquare = Image & {
|
|
734
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
471
735
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
736
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
472
737
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
738
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
473
739
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
740
|
+
/** The format of the image, eg. 'portrait'. */
|
|
474
741
|
readonly format: Scalars['ImageFormat']['output'];
|
|
742
|
+
/** The height of the image in pixels. */
|
|
475
743
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
744
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
476
745
|
readonly id: Scalars['String']['output'];
|
|
746
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
477
747
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
748
|
+
/** The type of the image, eg. 'graphic'. */
|
|
478
749
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
750
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
479
751
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
752
|
+
/** The width of the image in pixels. */
|
|
480
753
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
481
754
|
};
|
|
482
755
|
|
|
@@ -487,15 +760,25 @@ export type ImageSquareSourceSetArgs = {
|
|
|
487
760
|
};
|
|
488
761
|
|
|
489
762
|
export type ImageSquareFtEdit = Image & {
|
|
763
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
490
764
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
765
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
491
766
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
767
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
492
768
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
769
|
+
/** The format of the image, eg. 'portrait'. */
|
|
493
770
|
readonly format: Scalars['ImageFormat']['output'];
|
|
771
|
+
/** The height of the image in pixels. */
|
|
494
772
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
773
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
495
774
|
readonly id: Scalars['String']['output'];
|
|
775
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
496
776
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
777
|
+
/** The type of the image, eg. 'graphic'. */
|
|
497
778
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
779
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
498
780
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
781
|
+
/** The width of the image in pixels. */
|
|
499
782
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
500
783
|
};
|
|
501
784
|
|
|
@@ -506,15 +789,25 @@ export type ImageSquareFtEditSourceSetArgs = {
|
|
|
506
789
|
};
|
|
507
790
|
|
|
508
791
|
export type ImageStandard = Image & {
|
|
792
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
509
793
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
794
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
510
795
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
796
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
511
797
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
798
|
+
/** The format of the image, eg. 'portrait'. */
|
|
512
799
|
readonly format: Scalars['ImageFormat']['output'];
|
|
800
|
+
/** The height of the image in pixels. */
|
|
513
801
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
802
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
514
803
|
readonly id: Scalars['String']['output'];
|
|
804
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
515
805
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
806
|
+
/** The type of the image, eg. 'graphic'. */
|
|
516
807
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
808
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
517
809
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
810
|
+
/** The width of the image in pixels. */
|
|
518
811
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
519
812
|
};
|
|
520
813
|
|
|
@@ -525,15 +818,25 @@ export type ImageStandardSourceSetArgs = {
|
|
|
525
818
|
};
|
|
526
819
|
|
|
527
820
|
export type ImageStandardInline = Image & {
|
|
821
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
528
822
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
823
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
529
824
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
825
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
530
826
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
827
|
+
/** The format of the image, eg. 'portrait'. */
|
|
531
828
|
readonly format: Scalars['ImageFormat']['output'];
|
|
829
|
+
/** The height of the image in pixels. */
|
|
532
830
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
831
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
533
832
|
readonly id: Scalars['String']['output'];
|
|
833
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
534
834
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
835
|
+
/** The type of the image, eg. 'graphic'. */
|
|
535
836
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
837
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
536
838
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
839
|
+
/** The width of the image in pixels. */
|
|
537
840
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
538
841
|
};
|
|
539
842
|
|
|
@@ -544,15 +847,25 @@ export type ImageStandardInlineSourceSetArgs = {
|
|
|
544
847
|
};
|
|
545
848
|
|
|
546
849
|
export type ImageWide = Image & {
|
|
850
|
+
/** Text describing the content of the image, usually hidden from the user unless the image is not available. It is to be read by screen readers. */
|
|
547
851
|
readonly altText?: Maybe<Scalars['String']['output']>;
|
|
852
|
+
/** Text describing the content of the image, always shown next to the image. */
|
|
548
853
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
854
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
549
855
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
856
|
+
/** The format of the image, eg. 'portrait'. */
|
|
550
857
|
readonly format: Scalars['ImageFormat']['output'];
|
|
858
|
+
/** The height of the image in pixels. */
|
|
551
859
|
readonly height?: Maybe<Scalars['Int']['output']>;
|
|
860
|
+
/** The unique identifier of the image - a uuid or a url. */
|
|
552
861
|
readonly id: Scalars['String']['output'];
|
|
862
|
+
/** An array of image sources, ie. different images to render based on input width resulting in responsive images. */
|
|
553
863
|
readonly sourceSet: ReadonlyArray<ImageSource>;
|
|
864
|
+
/** The type of the image, eg. 'graphic'. */
|
|
554
865
|
readonly type?: Maybe<Scalars['ImageType']['output']>;
|
|
866
|
+
/** The url of the image, eg. 'https://www.ft.com/__origami/service/image/v2/images/raw/ftcms%3Aimage%3A0e7e7b6e-4e7b-11e9-bde6-79e4b4311f90?source=next&fit=scale-down&width=700'. */
|
|
555
867
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
868
|
+
/** The width of the image in pixels. */
|
|
556
869
|
readonly width?: Maybe<Scalars['Int']['output']>;
|
|
557
870
|
};
|
|
558
871
|
|
|
@@ -562,47 +875,83 @@ export type ImageWideSourceSetArgs = {
|
|
|
562
875
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
563
876
|
};
|
|
564
877
|
|
|
878
|
+
/** Indicators are used to determine teaser styling. */
|
|
565
879
|
export type Indicators = {
|
|
880
|
+
/** The access level of the teaser, eg. 'free' or 'premium'. */
|
|
566
881
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
882
|
+
/** Whether the teaser is a column, ie. has one author. */
|
|
567
883
|
readonly isColumn?: Maybe<Scalars['Boolean']['output']>;
|
|
884
|
+
/** Whether the teaser is an editor's choice. */
|
|
568
885
|
readonly isEditorsChoice?: Maybe<Scalars['Boolean']['output']>;
|
|
886
|
+
/** Whether the teaser is exclusive. */
|
|
569
887
|
readonly isExclusive?: Maybe<Scalars['Boolean']['output']>;
|
|
888
|
+
/** Whether the teaser is an opinion piece. */
|
|
570
889
|
readonly isOpinion?: Maybe<Scalars['Boolean']['output']>;
|
|
890
|
+
/** Whether the teaser is a podcast. */
|
|
571
891
|
readonly isPodcast?: Maybe<Scalars['Boolean']['output']>;
|
|
892
|
+
/** Whether the teaser is a scoop. */
|
|
572
893
|
readonly isScoop?: Maybe<Scalars['Boolean']['output']>;
|
|
573
894
|
};
|
|
574
895
|
|
|
575
896
|
export type LayoutImage = Reference & {
|
|
897
|
+
/** A set of images with different sizes and formats. */
|
|
576
898
|
readonly picture?: Maybe<Picture>;
|
|
899
|
+
/** The type of the reference, eg. 'layout-image'. */
|
|
577
900
|
readonly type: Scalars['String']['output'];
|
|
578
901
|
};
|
|
579
902
|
|
|
580
903
|
export type LiveBlogPackage = Content & {
|
|
904
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
581
905
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
906
|
+
/** An alternative introductory paragraph of the article. */
|
|
582
907
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
908
|
+
/** An alternative title of the article. */
|
|
583
909
|
readonly altTitle?: Maybe<AltTitle>;
|
|
910
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
584
911
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
912
|
+
/** An abstract syntax tree of the article content. */
|
|
585
913
|
readonly body?: Maybe<RichText>;
|
|
914
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
586
915
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
916
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
587
917
|
readonly byline?: Maybe<StructuredContent>;
|
|
918
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
588
919
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
920
|
+
/** Whether comments are enabled on the article. */
|
|
589
921
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
922
|
+
/** A design object containing the theme and layout of the article. */
|
|
590
923
|
readonly design?: Maybe<Design>;
|
|
924
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
591
925
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
926
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
592
927
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
928
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
593
929
|
readonly id: Scalars['ID']['output'];
|
|
930
|
+
/** The concept to use for instant alert CTAs. */
|
|
594
931
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
932
|
+
/** The child articles of this live blog package. */
|
|
595
933
|
readonly liveBlogPosts?: Maybe<ReadonlyArray<Maybe<Content>>>;
|
|
934
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
596
935
|
readonly mainImage?: Maybe<Image>;
|
|
936
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
597
937
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
938
|
+
/** The pinned article of this live blog package. */
|
|
598
939
|
readonly pinnedPost?: Maybe<Content>;
|
|
940
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
599
941
|
readonly publishedDate: Scalars['String']['output'];
|
|
942
|
+
/** Whether the live blog package should be updated in real time. */
|
|
600
943
|
readonly realtime?: Maybe<Scalars['Boolean']['output']>;
|
|
944
|
+
/** An introductory paragraph of the article. */
|
|
601
945
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
946
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
602
947
|
readonly teaser?: Maybe<Teaser>;
|
|
948
|
+
/** The title of the article. */
|
|
603
949
|
readonly title: Scalars['String']['output'];
|
|
950
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
604
951
|
readonly topper?: Maybe<Topper>;
|
|
952
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
605
953
|
readonly type: Scalars['ContentType']['output'];
|
|
954
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
606
955
|
readonly url: Scalars['String']['output'];
|
|
607
956
|
};
|
|
608
957
|
|
|
@@ -623,31 +972,57 @@ export type LiveBlogPackageUrlArgs = {
|
|
|
623
972
|
};
|
|
624
973
|
|
|
625
974
|
export type LiveBlogPost = Content & {
|
|
975
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
626
976
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
977
|
+
/** An alternative introductory paragraph of the article. */
|
|
627
978
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
979
|
+
/** An alternative title of the article. */
|
|
628
980
|
readonly altTitle?: Maybe<AltTitle>;
|
|
981
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
629
982
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
983
|
+
/** An abstract syntax tree of the article content. */
|
|
630
984
|
readonly body?: Maybe<RichText>;
|
|
985
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
631
986
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
987
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
632
988
|
readonly byline?: Maybe<StructuredContent>;
|
|
989
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
633
990
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
991
|
+
/** Whether comments are enabled on the article. */
|
|
634
992
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
993
|
+
/** The parent article, indicating this article is a part of a series or package. */
|
|
635
994
|
readonly containedIn?: Maybe<Content>;
|
|
995
|
+
/** A design object containing the theme and layout of the article. */
|
|
636
996
|
readonly design?: Maybe<Design>;
|
|
997
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
637
998
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
999
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
638
1000
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
1001
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
639
1002
|
readonly id: Scalars['ID']['output'];
|
|
1003
|
+
/** An object indicating whether the article is an opinion piece. */
|
|
640
1004
|
readonly indicators?: Maybe<Indicators>;
|
|
1005
|
+
/** The concept to use for instant alert CTAs. */
|
|
641
1006
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
1007
|
+
/** Whether the live-blog-post should be pinned. */
|
|
642
1008
|
readonly isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
1009
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
643
1010
|
readonly mainImage?: Maybe<Image>;
|
|
1011
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
644
1012
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
1013
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
645
1014
|
readonly publishedDate: Scalars['String']['output'];
|
|
1015
|
+
/** An introductory paragraph of the article. */
|
|
646
1016
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
1017
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
647
1018
|
readonly teaser?: Maybe<Teaser>;
|
|
1019
|
+
/** The title of the article. */
|
|
648
1020
|
readonly title: Scalars['String']['output'];
|
|
1021
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
649
1022
|
readonly topper?: Maybe<Topper>;
|
|
1023
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
650
1024
|
readonly type: Scalars['ContentType']['output'];
|
|
1025
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
651
1026
|
readonly url: Scalars['String']['output'];
|
|
652
1027
|
};
|
|
653
1028
|
|
|
@@ -663,20 +1038,27 @@ export type LiveBlogPostUrlArgs = {
|
|
|
663
1038
|
};
|
|
664
1039
|
|
|
665
1040
|
export type MainImage = Reference & {
|
|
1041
|
+
/** A set of images with different sizes and formats. */
|
|
666
1042
|
readonly picture?: Maybe<Picture>;
|
|
1043
|
+
/** The type of the reference, eg. 'main-image'. */
|
|
667
1044
|
readonly type: Scalars['String']['output'];
|
|
668
1045
|
};
|
|
669
1046
|
|
|
670
1047
|
export type Media = {
|
|
1048
|
+
/** The duration of the media in milliseconds. */
|
|
671
1049
|
readonly duration?: Maybe<Scalars['Int']['output']>;
|
|
1050
|
+
/** The filesize of the media in bytes. */
|
|
672
1051
|
readonly filesize?: Maybe<Scalars['Int']['output']>;
|
|
1052
|
+
/** The media type eg. video/mp4. */
|
|
673
1053
|
readonly mediaType?: Maybe<Scalars['String']['output']>;
|
|
1054
|
+
/** The url of the media, eg. 'https://next-media-api.ft.com/renditions/16868569859480/0x0.mp3'. */
|
|
674
1055
|
readonly url?: Maybe<Scalars['String']['output']>;
|
|
675
1056
|
};
|
|
676
1057
|
|
|
677
1058
|
export type MetaLink = Concept | ContentPackage;
|
|
678
1059
|
|
|
679
1060
|
export type Mutation = {
|
|
1061
|
+
/** A mutation to invalidate the redis cache for content-api responses for a given uuid. */
|
|
680
1062
|
readonly invalidateRedisCache?: Maybe<Scalars['String']['output']>;
|
|
681
1063
|
};
|
|
682
1064
|
|
|
@@ -686,17 +1068,29 @@ export type MutationInvalidateRedisCacheArgs = {
|
|
|
686
1068
|
};
|
|
687
1069
|
|
|
688
1070
|
export type OpinionTopper = Topper & TopperWithHeadshot & TopperWithTheme & {
|
|
1071
|
+
/** Whether the topper should have a background box. */
|
|
689
1072
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
1073
|
+
/** The background colour of the topper. */
|
|
690
1074
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
1075
|
+
/** The concept object describing details of the column author. */
|
|
691
1076
|
readonly columnist?: Maybe<Concept>;
|
|
1077
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
692
1078
|
readonly displayConcept?: Maybe<Concept>;
|
|
1079
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
693
1080
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
1081
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
694
1082
|
readonly genreConcept?: Maybe<Concept>;
|
|
1083
|
+
/** The headline text of the topper. */
|
|
695
1084
|
readonly headline: Scalars['String']['output'];
|
|
1085
|
+
/** The url of the headshot image, eg. for columns with one key author. */
|
|
696
1086
|
readonly headshot?: Maybe<Scalars['String']['output']>;
|
|
1087
|
+
/** An abstract syntax tree of the introduction text. */
|
|
697
1088
|
readonly intro?: Maybe<RichText>;
|
|
1089
|
+
/** Whether the headline should be large. */
|
|
698
1090
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
1091
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
699
1092
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
1093
|
+
/** Whether the topper should have a text shadow. */
|
|
700
1094
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
701
1095
|
};
|
|
702
1096
|
|
|
@@ -706,70 +1100,123 @@ export type OpinionTopperHeadshotArgs = {
|
|
|
706
1100
|
width?: InputMaybe<Scalars['Int']['input']>;
|
|
707
1101
|
};
|
|
708
1102
|
|
|
1103
|
+
/** A wrapper for images. */
|
|
709
1104
|
export type Picture = {
|
|
1105
|
+
/** The alt text of the image to be used for accessibility. */
|
|
710
1106
|
readonly alt: Scalars['String']['output'];
|
|
1107
|
+
/** The caption of the image. */
|
|
711
1108
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
1109
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
712
1110
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
1111
|
+
/** A fallback image to be used if the 'images' are not available. */
|
|
713
1112
|
readonly fallbackImage: Image;
|
|
1113
|
+
/** The type of the image, eg. 'image' or 'graphic'. */
|
|
714
1114
|
readonly imageType: Scalars['ImageType']['output'];
|
|
1115
|
+
/** A set of images with different sizes and formats. */
|
|
715
1116
|
readonly images: ReadonlyArray<Image>;
|
|
1117
|
+
/** The layout width of the image, eg, 'standard'. */
|
|
716
1118
|
readonly layoutWidth?: Maybe<Scalars['String']['output']>;
|
|
717
1119
|
};
|
|
718
1120
|
|
|
719
1121
|
export type PictureFullBleed = Picture & {
|
|
1122
|
+
/** The alt text of the image to be used for accessibility. */
|
|
720
1123
|
readonly alt: Scalars['String']['output'];
|
|
1124
|
+
/** The caption of the image. */
|
|
721
1125
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
1126
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
722
1127
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
1128
|
+
/** A fallback image to be used if the 'images' are not available. */
|
|
723
1129
|
readonly fallbackImage: Image;
|
|
1130
|
+
/** The type of the image, eg. 'image' or 'graphic'. */
|
|
724
1131
|
readonly imageType: Scalars['ImageType']['output'];
|
|
1132
|
+
/** A set of images with different sizes and formats. */
|
|
725
1133
|
readonly images: ReadonlyArray<Image>;
|
|
1134
|
+
/** The layout width of the image, eg, 'standard'. */
|
|
726
1135
|
readonly layoutWidth?: Maybe<Scalars['String']['output']>;
|
|
727
1136
|
};
|
|
728
1137
|
|
|
729
1138
|
export type PictureInline = Picture & {
|
|
1139
|
+
/** The alt text of the image to be used for accessibility. */
|
|
730
1140
|
readonly alt: Scalars['String']['output'];
|
|
1141
|
+
/** The caption of the image. */
|
|
731
1142
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
1143
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
732
1144
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
1145
|
+
/** A fallback image to be used if the 'images' are not available. */
|
|
733
1146
|
readonly fallbackImage: Image;
|
|
1147
|
+
/** The type of the image, eg. 'image' or 'graphic'. */
|
|
734
1148
|
readonly imageType: Scalars['ImageType']['output'];
|
|
1149
|
+
/** A set of images with different sizes and formats. */
|
|
735
1150
|
readonly images: ReadonlyArray<Image>;
|
|
1151
|
+
/** The layout width of the image, eg, 'standard'. */
|
|
736
1152
|
readonly layoutWidth?: Maybe<Scalars['String']['output']>;
|
|
737
1153
|
};
|
|
738
1154
|
|
|
739
1155
|
export type PictureStandard = Picture & {
|
|
1156
|
+
/** The alt text of the image to be used for accessibility. */
|
|
740
1157
|
readonly alt: Scalars['String']['output'];
|
|
1158
|
+
/** The caption of the image. */
|
|
741
1159
|
readonly caption?: Maybe<Scalars['String']['output']>;
|
|
1160
|
+
/** The credit of the image, eg. 'Getty Images'. */
|
|
742
1161
|
readonly credit?: Maybe<Scalars['String']['output']>;
|
|
1162
|
+
/** A fallback image to be used if the 'images' are not available. */
|
|
743
1163
|
readonly fallbackImage: Image;
|
|
1164
|
+
/** The type of the image, eg. 'image' or 'graphic'. */
|
|
744
1165
|
readonly imageType: Scalars['ImageType']['output'];
|
|
1166
|
+
/** A set of images with different sizes and formats. */
|
|
745
1167
|
readonly images: ReadonlyArray<Image>;
|
|
1168
|
+
/** The layout width of the image, eg, 'standard'. */
|
|
746
1169
|
readonly layoutWidth?: Maybe<Scalars['String']['output']>;
|
|
747
1170
|
};
|
|
748
1171
|
|
|
749
1172
|
export type Placeholder = Content & {
|
|
1173
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
750
1174
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
1175
|
+
/** An alternative introductory paragraph of the article. */
|
|
751
1176
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
1177
|
+
/** An alternative title of the article. */
|
|
752
1178
|
readonly altTitle?: Maybe<AltTitle>;
|
|
1179
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
753
1180
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
1181
|
+
/** An abstract syntax tree of the article content. */
|
|
754
1182
|
readonly body?: Maybe<RichText>;
|
|
1183
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
755
1184
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
1185
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
756
1186
|
readonly byline?: Maybe<StructuredContent>;
|
|
1187
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
757
1188
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
1189
|
+
/** Whether comments are enabled on the article. */
|
|
758
1190
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1191
|
+
/** The parent article, indicating this article is a part of a series or package. */
|
|
759
1192
|
readonly containedIn?: Maybe<Content>;
|
|
1193
|
+
/** A design object containing the theme and layout of the article. */
|
|
760
1194
|
readonly design?: Maybe<Design>;
|
|
1195
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
761
1196
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
1197
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
762
1198
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
1199
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
763
1200
|
readonly id: Scalars['ID']['output'];
|
|
1201
|
+
/** The concept to use for instant alert CTAs. */
|
|
764
1202
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
1203
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
765
1204
|
readonly mainImage?: Maybe<Image>;
|
|
1205
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
766
1206
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
1207
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
767
1208
|
readonly publishedDate: Scalars['String']['output'];
|
|
1209
|
+
/** An introductory paragraph of the article. */
|
|
768
1210
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
1211
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
769
1212
|
readonly teaser?: Maybe<Teaser>;
|
|
1213
|
+
/** The title of the article. */
|
|
770
1214
|
readonly title: Scalars['String']['output'];
|
|
1215
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
771
1216
|
readonly topper?: Maybe<Topper>;
|
|
1217
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
772
1218
|
readonly type: Scalars['ContentType']['output'];
|
|
1219
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
773
1220
|
readonly url: Scalars['String']['output'];
|
|
774
1221
|
};
|
|
775
1222
|
|
|
@@ -785,18 +1232,31 @@ export type PlaceholderUrlArgs = {
|
|
|
785
1232
|
};
|
|
786
1233
|
|
|
787
1234
|
export type PodcastTopper = Topper & TopperWithBrand & TopperWithHeadshot & TopperWithTheme & {
|
|
1235
|
+
/** Whether the topper should have a background box. */
|
|
788
1236
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
1237
|
+
/** The background colour of the topper. */
|
|
789
1238
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
1239
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
790
1240
|
readonly brandConcept?: Maybe<Concept>;
|
|
1241
|
+
/** The concept object describing details of the column author. */
|
|
791
1242
|
readonly columnist?: Maybe<Concept>;
|
|
1243
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
792
1244
|
readonly displayConcept?: Maybe<Concept>;
|
|
1245
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
793
1246
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
1247
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
794
1248
|
readonly genreConcept?: Maybe<Concept>;
|
|
1249
|
+
/** The headline text of the topper. */
|
|
795
1250
|
readonly headline: Scalars['String']['output'];
|
|
1251
|
+
/** The url of the headshot image, eg. for columns with one key author. */
|
|
796
1252
|
readonly headshot?: Maybe<Scalars['String']['output']>;
|
|
1253
|
+
/** An abstract syntax tree of the introduction text. */
|
|
797
1254
|
readonly intro?: Maybe<RichText>;
|
|
1255
|
+
/** Whether the headline should be large. */
|
|
798
1256
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
1257
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
799
1258
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
1259
|
+
/** Whether the topper should have a text shadow. */
|
|
800
1260
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
801
1261
|
};
|
|
802
1262
|
|
|
@@ -807,8 +1267,11 @@ export type PodcastTopperHeadshotArgs = {
|
|
|
807
1267
|
};
|
|
808
1268
|
|
|
809
1269
|
export type Query = {
|
|
1270
|
+
/** The resolved article content for given uuid. */
|
|
810
1271
|
readonly content: Content;
|
|
1272
|
+
/** The article content as resolved from passed-in content-api json data. */
|
|
811
1273
|
readonly contentFromJSON: Content;
|
|
1274
|
+
/** The version of the schema, eg. 2.0.0. */
|
|
812
1275
|
readonly version: Scalars['String']['output'];
|
|
813
1276
|
};
|
|
814
1277
|
|
|
@@ -823,21 +1286,26 @@ export type QueryContentFromJsonArgs = {
|
|
|
823
1286
|
};
|
|
824
1287
|
|
|
825
1288
|
export type RawImage = Reference & {
|
|
1289
|
+
/** The raw image object. */
|
|
826
1290
|
readonly image: Image;
|
|
1291
|
+
/** The type of the reference, eg. 'raw-image'. */
|
|
827
1292
|
readonly type: Scalars['String']['output'];
|
|
828
1293
|
};
|
|
829
1294
|
|
|
830
1295
|
export type Recommended = Reference & {
|
|
1296
|
+
/** Recommended references contain teaser thumbnails of related articles. */
|
|
831
1297
|
readonly teaser?: Maybe<Teaser>;
|
|
1298
|
+
/** The type of the reference, eg. 'recommended'. */
|
|
832
1299
|
readonly type: Scalars['String']['output'];
|
|
833
1300
|
};
|
|
834
1301
|
|
|
835
1302
|
export type Reference = {
|
|
1303
|
+
/** The type of the reference, eg. 'image-set'. References are additional data that cannot be loaded by content-tree. They will be appended to content-tree nodes during resolution. */
|
|
836
1304
|
readonly type: Scalars['String']['output'];
|
|
837
1305
|
};
|
|
838
1306
|
|
|
839
1307
|
export type RichText = {
|
|
840
|
-
/** Raw string of the XML as returned from
|
|
1308
|
+
/** Raw string of the XML as returned from content-api. */
|
|
841
1309
|
readonly raw?: Maybe<Scalars['String']['output']>;
|
|
842
1310
|
/** The source format eg. bodyXML. */
|
|
843
1311
|
readonly source: Scalars['RichTextSource']['output'];
|
|
@@ -846,28 +1314,44 @@ export type RichText = {
|
|
|
846
1314
|
};
|
|
847
1315
|
|
|
848
1316
|
export type ScrollyImage = Reference & {
|
|
1317
|
+
/** A set of images with different sizes and formats. */
|
|
849
1318
|
readonly picture?: Maybe<Picture>;
|
|
1319
|
+
/** The type of the reference, eg. 'scrolly-image'. */
|
|
850
1320
|
readonly type: Scalars['String']['output'];
|
|
851
1321
|
};
|
|
852
1322
|
|
|
853
1323
|
export type SplitTextTopper = Topper & TopperWithBrand & TopperWithImages & TopperWithPackage & TopperWithTheme & {
|
|
1324
|
+
/** Whether the topper should have a background box. */
|
|
854
1325
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
1326
|
+
/** The background colour of the topper. */
|
|
855
1327
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
1328
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
856
1329
|
readonly brandConcept?: Maybe<Concept>;
|
|
1330
|
+
/** The design of the topper, eg. 'standard'. */
|
|
857
1331
|
readonly design?: Maybe<Scalars['String']['output']>;
|
|
1332
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
858
1333
|
readonly displayConcept?: Maybe<Concept>;
|
|
1334
|
+
/** A fallback image to be used if the 'images' are not availableimages: [Image!]!. */
|
|
859
1335
|
readonly fallbackImage?: Maybe<Image>;
|
|
1336
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
860
1337
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
1338
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
861
1339
|
readonly genreConcept?: Maybe<Concept>;
|
|
1340
|
+
/** The headline text of the topper. */
|
|
862
1341
|
readonly headline: Scalars['String']['output'];
|
|
1342
|
+
/** An array of images to be displayed on the topper. */
|
|
863
1343
|
readonly images: ReadonlyArray<Image>;
|
|
1344
|
+
/** An abstract syntax tree of the introduction text. */
|
|
864
1345
|
readonly intro?: Maybe<RichText>;
|
|
1346
|
+
/** Whether the headline should be large. */
|
|
865
1347
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
1348
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
866
1349
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
1350
|
+
/** Whether the topper should have a text shadow. */
|
|
867
1351
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
868
1352
|
};
|
|
869
1353
|
|
|
870
|
-
/** Describes the structure of content as an abstract syntax tree */
|
|
1354
|
+
/** Describes the structure of content as an abstract syntax tree. */
|
|
871
1355
|
export type StructuredContent = {
|
|
872
1356
|
/** An array of objects containing extra information for nodes, which is fetched from external sources eg. Twitter API. */
|
|
873
1357
|
readonly references: ReadonlyArray<Reference>;
|
|
@@ -878,24 +1362,40 @@ export type StructuredContent = {
|
|
|
878
1362
|
};
|
|
879
1363
|
|
|
880
1364
|
export type TableOfContents = {
|
|
1365
|
+
/** The formatting of the label, eg. 'part-number'. */
|
|
881
1366
|
readonly labelType?: Maybe<Scalars['String']['output']>;
|
|
1367
|
+
/** The ordering, eg. 'exact-order'. */
|
|
882
1368
|
readonly sequence?: Maybe<Scalars['String']['output']>;
|
|
883
1369
|
};
|
|
884
1370
|
|
|
885
1371
|
export type Teaser = {
|
|
1372
|
+
/** The date the content of the teaser was first published. */
|
|
886
1373
|
readonly firstPublishedDate?: Maybe<Scalars['String']['output']>;
|
|
1374
|
+
/** The unique identifier of the teaser, a uuid or a url. */
|
|
887
1375
|
readonly id?: Maybe<Scalars['String']['output']>;
|
|
1376
|
+
/** The image to be used as a thumbnail for the teaser. */
|
|
888
1377
|
readonly image?: Maybe<Image>;
|
|
1378
|
+
/** An object containing a map of indicator items to boolean values, eg. accessLevel, isOpinion. */
|
|
889
1379
|
readonly indicators?: Maybe<Indicators>;
|
|
1380
|
+
/** An object containing the metadata details of the teaser, eg. id, url, prefLabel. */
|
|
890
1381
|
readonly metaAltLink?: Maybe<MetaLink>;
|
|
1382
|
+
/** An object containing the metadata details of the teaser, eg. id, url, prefLabel. */
|
|
891
1383
|
readonly metaLink?: Maybe<MetaLink>;
|
|
1384
|
+
/** The text to be displayed before the metadata of the teaser. */
|
|
892
1385
|
readonly metaPrefixText?: Maybe<Scalars['String']['output']>;
|
|
1386
|
+
/** The text to be displayed after the metadata of the teaser. */
|
|
893
1387
|
readonly metaSuffixText?: Maybe<Scalars['String']['output']>;
|
|
1388
|
+
/** The date the content of the teaser was published. */
|
|
894
1389
|
readonly publishedDate?: Maybe<Scalars['String']['output']>;
|
|
1390
|
+
/** The introductory text of the teaser. */
|
|
895
1391
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
1392
|
+
/** The theme to use for the teaser, eg. 'opinion' or 'news'. */
|
|
896
1393
|
readonly theme?: Maybe<Scalars['String']['output']>;
|
|
1394
|
+
/** The title of the teaser. */
|
|
897
1395
|
readonly title?: Maybe<Scalars['String']['output']>;
|
|
1396
|
+
/** The type of the teaser, eg. 'article' or 'video'. */
|
|
898
1397
|
readonly type?: Maybe<Scalars['String']['output']>;
|
|
1398
|
+
/** The url of the content that the teaser refers to. */
|
|
899
1399
|
readonly url: Scalars['String']['output'];
|
|
900
1400
|
};
|
|
901
1401
|
|
|
@@ -905,22 +1405,33 @@ export type TeaserUrlArgs = {
|
|
|
905
1405
|
};
|
|
906
1406
|
|
|
907
1407
|
export type Topper = {
|
|
1408
|
+
/** Whether the topper should have a background box. */
|
|
908
1409
|
readonly backgroundBox?: Maybe<Scalars['Boolean']['output']>;
|
|
1410
|
+
/** The background colour of the topper. */
|
|
909
1411
|
readonly backgroundColour?: Maybe<Scalars['TopperBackgroundColour']['output']>;
|
|
1412
|
+
/** The concept object to be displayed, eg. {'type': 'TOPIC', 'prefLabel': 'Non-dom tax status', ...}. */
|
|
910
1413
|
readonly displayConcept?: Maybe<Concept>;
|
|
1414
|
+
/** The variant of the follow button to be displayed on the topper. */
|
|
911
1415
|
readonly followButtonVariant?: Maybe<Scalars['FollowButtonVariant']['output']>;
|
|
1416
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
912
1417
|
readonly genreConcept?: Maybe<Concept>;
|
|
1418
|
+
/** The headline text of the topper. */
|
|
913
1419
|
readonly headline: Scalars['String']['output'];
|
|
1420
|
+
/** An abstract syntax tree of the introduction text. */
|
|
914
1421
|
readonly intro?: Maybe<RichText>;
|
|
1422
|
+
/** Whether the topper should have a text shadow. */
|
|
915
1423
|
readonly textShadow?: Maybe<Scalars['Boolean']['output']>;
|
|
916
1424
|
};
|
|
917
1425
|
|
|
918
1426
|
export type TopperWithBrand = {
|
|
1427
|
+
/** The concept object of the brand, eg. {'type': 'BRAND', 'prefLabel': 'FT Magazine', ...}. */
|
|
919
1428
|
readonly brandConcept?: Maybe<Concept>;
|
|
1429
|
+
/** The concept object of the genre, eg. {'type': 'GENRE', 'prefLabel': 'Opinion', ...}. */
|
|
920
1430
|
readonly genreConcept?: Maybe<Concept>;
|
|
921
1431
|
};
|
|
922
1432
|
|
|
923
1433
|
export type TopperWithHeadshot = {
|
|
1434
|
+
/** The url of the headshot image, eg. for columns with one key author. */
|
|
924
1435
|
readonly headshot?: Maybe<Scalars['String']['output']>;
|
|
925
1436
|
};
|
|
926
1437
|
|
|
@@ -931,47 +1442,77 @@ export type TopperWithHeadshotHeadshotArgs = {
|
|
|
931
1442
|
};
|
|
932
1443
|
|
|
933
1444
|
export type TopperWithImages = {
|
|
1445
|
+
/** A fallback image to be used if the 'images' are not available. */
|
|
934
1446
|
readonly fallbackImage?: Maybe<Image>;
|
|
1447
|
+
/** An array of images to be displayed on the topper. */
|
|
935
1448
|
readonly images: ReadonlyArray<Image>;
|
|
936
1449
|
};
|
|
937
1450
|
|
|
938
1451
|
export type TopperWithPackage = {
|
|
1452
|
+
/** The design of the topper, eg. 'standard'. */
|
|
939
1453
|
readonly design?: Maybe<Scalars['String']['output']>;
|
|
940
1454
|
};
|
|
941
1455
|
|
|
942
1456
|
export type TopperWithTheme = {
|
|
1457
|
+
/** Whether the headline should be large. */
|
|
943
1458
|
readonly isLargeHeadline?: Maybe<Scalars['Boolean']['output']>;
|
|
1459
|
+
/** The layout of the topper, eg. 'split-text-left'. */
|
|
944
1460
|
readonly layout?: Maybe<Scalars['String']['output']>;
|
|
945
1461
|
};
|
|
946
1462
|
|
|
947
1463
|
export type Tweet = Reference & {
|
|
1464
|
+
/** The raw HTML of the tweet. */
|
|
948
1465
|
readonly html?: Maybe<Scalars['String']['output']>;
|
|
1466
|
+
/** The type of the reference, eg. 'tweet'. */
|
|
949
1467
|
readonly type: Scalars['String']['output'];
|
|
950
1468
|
};
|
|
951
1469
|
|
|
952
1470
|
export type Video = Content & {
|
|
1471
|
+
/** A scalar representing the access level of the article, eg. 'free'. */
|
|
953
1472
|
readonly accessLevel?: Maybe<Scalars['AccessLevel']['output']>;
|
|
1473
|
+
/** An alternative introductory paragraph of the article. */
|
|
954
1474
|
readonly altStandfirst?: Maybe<AltStandfirst>;
|
|
1475
|
+
/** An alternative title of the article. */
|
|
955
1476
|
readonly altTitle?: Maybe<AltTitle>;
|
|
1477
|
+
/** An array of concepts related to the article, eg. organisations or topics. */
|
|
956
1478
|
readonly annotations?: Maybe<ReadonlyArray<Maybe<Concept>>>;
|
|
1479
|
+
/** An abstract syntax tree of the article content. */
|
|
957
1480
|
readonly body?: Maybe<RichText>;
|
|
1481
|
+
/** The raw string of the XML as returned from ContentAPI. */
|
|
958
1482
|
readonly bodyXML?: Maybe<Scalars['String']['output']>;
|
|
1483
|
+
/** An abstract syntax tree of the authors of the article. */
|
|
959
1484
|
readonly byline?: Maybe<StructuredContent>;
|
|
1485
|
+
/** A scalar representing whether the article can be syndicated, ie. published by a third party site. */
|
|
960
1486
|
readonly canBeSyndicated?: Maybe<Scalars['CanBeSyndicated']['output']>;
|
|
1487
|
+
/** Whether comments are enabled on the article. */
|
|
961
1488
|
readonly commentsEnabled?: Maybe<Scalars['Boolean']['output']>;
|
|
1489
|
+
/** A design object containing the theme and layout of the article. */
|
|
962
1490
|
readonly design?: Maybe<Design>;
|
|
1491
|
+
/** The editorial division the article belongs to, eg. 'FT-SpecialReports'. */
|
|
963
1492
|
readonly editorialDesk?: Maybe<Scalars['String']['output']>;
|
|
1493
|
+
/** The first ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
964
1494
|
readonly firstPublishedDate: Scalars['String']['output'];
|
|
1495
|
+
/** The unique identifier of the article - a uuid or a url. */
|
|
965
1496
|
readonly id: Scalars['ID']['output'];
|
|
1497
|
+
/** The concept to use for instant alert CTAs. */
|
|
966
1498
|
readonly instantAlertConcept?: Maybe<Concept>;
|
|
1499
|
+
/** An image object containing the url and the caption, to be displayed usually before the article content. */
|
|
967
1500
|
readonly mainImage?: Maybe<Image>;
|
|
1501
|
+
/** The party that originated the article, eg. 'FT'. */
|
|
968
1502
|
readonly originatingParty?: Maybe<Scalars['String']['output']>;
|
|
1503
|
+
/** The ISO string date the article was published, eg. '2024-04-03T10:35:52.443Z'. */
|
|
969
1504
|
readonly publishedDate: Scalars['String']['output'];
|
|
1505
|
+
/** An introductory paragraph of the article. */
|
|
970
1506
|
readonly standfirst?: Maybe<Scalars['String']['output']>;
|
|
1507
|
+
/** A promotional thumbnail / snapshot of the article. */
|
|
971
1508
|
readonly teaser?: Maybe<Teaser>;
|
|
1509
|
+
/** The title of the article. */
|
|
972
1510
|
readonly title: Scalars['String']['output'];
|
|
1511
|
+
/** A banner located usually at the top of articles containing the title, the standfirst and any images. */
|
|
973
1512
|
readonly topper?: Maybe<Topper>;
|
|
1513
|
+
/** The type of the article, eg. 'Article' or 'Video'. */
|
|
974
1514
|
readonly type: Scalars['ContentType']['output'];
|
|
1515
|
+
/** The url of the concept. Vanity urls replace long, randomly generated urls - they are more user friendly and concise. Relative urls are relative to the current domain. */
|
|
975
1516
|
readonly url: Scalars['String']['output'];
|
|
976
1517
|
};
|
|
977
1518
|
|
|
@@ -987,8 +1528,11 @@ export type VideoUrlArgs = {
|
|
|
987
1528
|
};
|
|
988
1529
|
|
|
989
1530
|
export type VideoReference = Reference & {
|
|
1531
|
+
/** The unique identifier of the video - a uuid or a url. */
|
|
990
1532
|
readonly id: Scalars['String']['output'];
|
|
1533
|
+
/** The title of the video. */
|
|
991
1534
|
readonly title: Scalars['String']['output'];
|
|
1535
|
+
/** The type of the reference, eg. 'video'. */
|
|
992
1536
|
readonly type: Scalars['String']['output'];
|
|
993
1537
|
};
|
|
994
1538
|
|
|
@@ -1068,28 +1612,28 @@ export type ResolversUnionTypes<RefType extends Record<string, unknown>> = Resol
|
|
|
1068
1612
|
/** Mapping of interface types */
|
|
1069
1613
|
export type ResolversInterfaceTypes<RefType extends Record<string, unknown>> = ResolversObject<{
|
|
1070
1614
|
Content: ( CapiResponse ) | ( CapiResponse ) | ( CapiResponse ) | ( CapiResponse ) | ( CapiResponse ) | ( CapiResponse ) | ( CapiResponse );
|
|
1071
|
-
Image: (
|
|
1072
|
-
Picture: (
|
|
1615
|
+
Image: ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel ) | ( ImageModel );
|
|
1616
|
+
Picture: ( PictureModel ) | ( PictureModel ) | ( PictureModel );
|
|
1073
1617
|
Reference: ( ReferenceWithCAPIData<ClipSetNode|OldClipNode> ) | ( ReferenceWithCAPIData<ContentTree.Flourish> ) | ( ReferenceWithCAPIData<ContentTree.ImageSet> ) | ( ReferenceWithCAPIData<ContentTree.LayoutImage> ) | ( ReferenceWithCAPIData<ContentTree.ImageSet> ) | ( ReferenceWithCAPIData<RawImageNode> ) | ( ReferenceWithCAPIData<ContentTree.Recommended> ) | ( ReferenceWithCAPIData<ContentTree.ScrollyImage> ) | ( ReferenceWithCAPIData<ContentTree.Tweet> ) | ( ReferenceWithCAPIData<VideoNode> );
|
|
1074
|
-
Topper: (
|
|
1075
|
-
TopperWithBrand: (
|
|
1618
|
+
Topper: ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel );
|
|
1619
|
+
TopperWithBrand: ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel );
|
|
1076
1620
|
TopperWithHeadshot: ( TopperModel ) | ( TopperModel );
|
|
1077
|
-
TopperWithImages: (
|
|
1078
|
-
TopperWithPackage: (
|
|
1079
|
-
TopperWithTheme: (
|
|
1621
|
+
TopperWithImages: ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel );
|
|
1622
|
+
TopperWithPackage: ( TopperModel );
|
|
1623
|
+
TopperWithTheme: ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel ) | ( TopperModel );
|
|
1080
1624
|
}>;
|
|
1081
1625
|
|
|
1082
1626
|
/** Mapping between all available schema types and the resolvers types */
|
|
1083
1627
|
export type ResolversTypes = ResolversObject<{
|
|
1084
1628
|
AccessLevel: ResolverTypeWrapper<Scalars['AccessLevel']['output']>;
|
|
1085
|
-
Accessibility: ResolverTypeWrapper<Omit<Accessibility, 'transcript'> & { transcript
|
|
1629
|
+
Accessibility: ResolverTypeWrapper<Omit<Accessibility, 'transcript'> & { transcript: Maybe<ResolversTypes['RichText']> }>;
|
|
1086
1630
|
AltStandfirst: ResolverTypeWrapper<AltStandfirst>;
|
|
1087
1631
|
AltTitle: ResolverTypeWrapper<AltTitle>;
|
|
1088
1632
|
Article: ResolverTypeWrapper<CapiResponse>;
|
|
1089
1633
|
Audio: ResolverTypeWrapper<CapiResponse>;
|
|
1090
|
-
BasicTopper: ResolverTypeWrapper<
|
|
1634
|
+
BasicTopper: ResolverTypeWrapper<TopperModel>;
|
|
1091
1635
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']['output']>;
|
|
1092
|
-
BrandedTopper: ResolverTypeWrapper<
|
|
1636
|
+
BrandedTopper: ResolverTypeWrapper<TopperModel>;
|
|
1093
1637
|
CanBeSyndicated: ResolverTypeWrapper<Scalars['CanBeSyndicated']['output']>;
|
|
1094
1638
|
Caption: ResolverTypeWrapper<Caption>;
|
|
1095
1639
|
Clip: ResolverTypeWrapper<ClipModel>;
|
|
@@ -1100,28 +1644,28 @@ export type ResolversTypes = ResolversObject<{
|
|
|
1100
1644
|
Content: ResolverTypeWrapper<ResolversInterfaceTypes<ResolversTypes>['Content']>;
|
|
1101
1645
|
ContentPackage: ResolverTypeWrapper<CapiResponse>;
|
|
1102
1646
|
ContentType: ResolverTypeWrapper<Scalars['ContentType']['output']>;
|
|
1103
|
-
DeepLandscapeTopper: ResolverTypeWrapper<
|
|
1104
|
-
DeepPortraitTopper: ResolverTypeWrapper<
|
|
1647
|
+
DeepLandscapeTopper: ResolverTypeWrapper<TopperModel>;
|
|
1648
|
+
DeepPortraitTopper: ResolverTypeWrapper<TopperModel>;
|
|
1105
1649
|
Design: ResolverTypeWrapper<Design>;
|
|
1106
1650
|
Flourish: ResolverTypeWrapper<ReferenceWithCAPIData<ContentTree.Flourish>>;
|
|
1107
1651
|
FlourishFallback: ResolverTypeWrapper<FlourishFallback>;
|
|
1108
1652
|
FollowButtonVariant: ResolverTypeWrapper<Scalars['FollowButtonVariant']['output']>;
|
|
1109
|
-
FullBleedTopper: ResolverTypeWrapper<
|
|
1653
|
+
FullBleedTopper: ResolverTypeWrapper<TopperModel>;
|
|
1110
1654
|
ID: ResolverTypeWrapper<Scalars['ID']['output']>;
|
|
1111
1655
|
Image: ResolverTypeWrapper<ImageModel>;
|
|
1112
|
-
ImageDesktop: ResolverTypeWrapper<
|
|
1656
|
+
ImageDesktop: ResolverTypeWrapper<ImageModel>;
|
|
1113
1657
|
ImageFormat: ResolverTypeWrapper<Scalars['ImageFormat']['output']>;
|
|
1114
|
-
ImageLandscape: ResolverTypeWrapper<
|
|
1115
|
-
ImageMobile: ResolverTypeWrapper<
|
|
1116
|
-
ImagePortrait: ResolverTypeWrapper<
|
|
1658
|
+
ImageLandscape: ResolverTypeWrapper<ImageModel>;
|
|
1659
|
+
ImageMobile: ResolverTypeWrapper<ImageModel>;
|
|
1660
|
+
ImagePortrait: ResolverTypeWrapper<ImageModel>;
|
|
1117
1661
|
ImageSet: ResolverTypeWrapper<ReferenceWithCAPIData<ContentTree.ImageSet>>;
|
|
1118
1662
|
ImageSource: ResolverTypeWrapper<ImageSource>;
|
|
1119
|
-
ImageSquare: ResolverTypeWrapper<
|
|
1120
|
-
ImageSquareFTEdit: ResolverTypeWrapper<
|
|
1121
|
-
ImageStandard: ResolverTypeWrapper<
|
|
1122
|
-
ImageStandardInline: ResolverTypeWrapper<
|
|
1663
|
+
ImageSquare: ResolverTypeWrapper<ImageModel>;
|
|
1664
|
+
ImageSquareFTEdit: ResolverTypeWrapper<ImageModel>;
|
|
1665
|
+
ImageStandard: ResolverTypeWrapper<ImageModel>;
|
|
1666
|
+
ImageStandardInline: ResolverTypeWrapper<ImageModel>;
|
|
1123
1667
|
ImageType: ResolverTypeWrapper<Scalars['ImageType']['output']>;
|
|
1124
|
-
ImageWide: ResolverTypeWrapper<
|
|
1668
|
+
ImageWide: ResolverTypeWrapper<ImageModel>;
|
|
1125
1669
|
Indicators: ResolverTypeWrapper<Indicators>;
|
|
1126
1670
|
Int: ResolverTypeWrapper<Scalars['Int']['output']>;
|
|
1127
1671
|
JSON: ResolverTypeWrapper<Scalars['JSON']['output']>;
|
|
@@ -1135,9 +1679,9 @@ export type ResolversTypes = ResolversObject<{
|
|
|
1135
1679
|
OpinionTopper: ResolverTypeWrapper<TopperModel>;
|
|
1136
1680
|
PackageDesign: ResolverTypeWrapper<Scalars['PackageDesign']['output']>;
|
|
1137
1681
|
Picture: ResolverTypeWrapper<PictureModel>;
|
|
1138
|
-
PictureFullBleed: ResolverTypeWrapper<
|
|
1139
|
-
PictureInline: ResolverTypeWrapper<
|
|
1140
|
-
PictureStandard: ResolverTypeWrapper<
|
|
1682
|
+
PictureFullBleed: ResolverTypeWrapper<PictureModel>;
|
|
1683
|
+
PictureInline: ResolverTypeWrapper<PictureModel>;
|
|
1684
|
+
PictureStandard: ResolverTypeWrapper<PictureModel>;
|
|
1141
1685
|
Placeholder: ResolverTypeWrapper<CapiResponse>;
|
|
1142
1686
|
PodcastTopper: ResolverTypeWrapper<TopperModel>;
|
|
1143
1687
|
Query: ResolverTypeWrapper<{}>;
|
|
@@ -1147,7 +1691,7 @@ export type ResolversTypes = ResolversObject<{
|
|
|
1147
1691
|
RichText: ResolverTypeWrapper<RichTextModel>;
|
|
1148
1692
|
RichTextSource: ResolverTypeWrapper<Scalars['RichTextSource']['output']>;
|
|
1149
1693
|
ScrollyImage: ResolverTypeWrapper<ReferenceWithCAPIData<ContentTree.ScrollyImage>>;
|
|
1150
|
-
SplitTextTopper: ResolverTypeWrapper<
|
|
1694
|
+
SplitTextTopper: ResolverTypeWrapper<TopperModel>;
|
|
1151
1695
|
String: ResolverTypeWrapper<Scalars['String']['output']>;
|
|
1152
1696
|
StructuredContent: ResolverTypeWrapper<Omit<StructuredContent, 'references'> & { references: ReadonlyArray<ResolversTypes['Reference']> }>;
|
|
1153
1697
|
TableOfContents: ResolverTypeWrapper<TableOfContents>;
|
|
@@ -1167,14 +1711,14 @@ export type ResolversTypes = ResolversObject<{
|
|
|
1167
1711
|
/** Mapping between all available schema types and the resolvers parents */
|
|
1168
1712
|
export type ResolversParentTypes = ResolversObject<{
|
|
1169
1713
|
AccessLevel: Scalars['AccessLevel']['output'];
|
|
1170
|
-
Accessibility: Omit<Accessibility, 'transcript'> & { transcript
|
|
1714
|
+
Accessibility: Omit<Accessibility, 'transcript'> & { transcript: Maybe<ResolversParentTypes['RichText']> };
|
|
1171
1715
|
AltStandfirst: AltStandfirst;
|
|
1172
1716
|
AltTitle: AltTitle;
|
|
1173
1717
|
Article: CapiResponse;
|
|
1174
1718
|
Audio: CapiResponse;
|
|
1175
|
-
BasicTopper:
|
|
1719
|
+
BasicTopper: TopperModel;
|
|
1176
1720
|
Boolean: Scalars['Boolean']['output'];
|
|
1177
|
-
BrandedTopper:
|
|
1721
|
+
BrandedTopper: TopperModel;
|
|
1178
1722
|
CanBeSyndicated: Scalars['CanBeSyndicated']['output'];
|
|
1179
1723
|
Caption: Caption;
|
|
1180
1724
|
Clip: ClipModel;
|
|
@@ -1185,28 +1729,28 @@ export type ResolversParentTypes = ResolversObject<{
|
|
|
1185
1729
|
Content: ResolversInterfaceTypes<ResolversParentTypes>['Content'];
|
|
1186
1730
|
ContentPackage: CapiResponse;
|
|
1187
1731
|
ContentType: Scalars['ContentType']['output'];
|
|
1188
|
-
DeepLandscapeTopper:
|
|
1189
|
-
DeepPortraitTopper:
|
|
1732
|
+
DeepLandscapeTopper: TopperModel;
|
|
1733
|
+
DeepPortraitTopper: TopperModel;
|
|
1190
1734
|
Design: Design;
|
|
1191
1735
|
Flourish: ReferenceWithCAPIData<ContentTree.Flourish>;
|
|
1192
1736
|
FlourishFallback: FlourishFallback;
|
|
1193
1737
|
FollowButtonVariant: Scalars['FollowButtonVariant']['output'];
|
|
1194
|
-
FullBleedTopper:
|
|
1738
|
+
FullBleedTopper: TopperModel;
|
|
1195
1739
|
ID: Scalars['ID']['output'];
|
|
1196
1740
|
Image: ImageModel;
|
|
1197
|
-
ImageDesktop:
|
|
1741
|
+
ImageDesktop: ImageModel;
|
|
1198
1742
|
ImageFormat: Scalars['ImageFormat']['output'];
|
|
1199
|
-
ImageLandscape:
|
|
1200
|
-
ImageMobile:
|
|
1201
|
-
ImagePortrait:
|
|
1743
|
+
ImageLandscape: ImageModel;
|
|
1744
|
+
ImageMobile: ImageModel;
|
|
1745
|
+
ImagePortrait: ImageModel;
|
|
1202
1746
|
ImageSet: ReferenceWithCAPIData<ContentTree.ImageSet>;
|
|
1203
1747
|
ImageSource: ImageSource;
|
|
1204
|
-
ImageSquare:
|
|
1205
|
-
ImageSquareFTEdit:
|
|
1206
|
-
ImageStandard:
|
|
1207
|
-
ImageStandardInline:
|
|
1748
|
+
ImageSquare: ImageModel;
|
|
1749
|
+
ImageSquareFTEdit: ImageModel;
|
|
1750
|
+
ImageStandard: ImageModel;
|
|
1751
|
+
ImageStandardInline: ImageModel;
|
|
1208
1752
|
ImageType: Scalars['ImageType']['output'];
|
|
1209
|
-
ImageWide:
|
|
1753
|
+
ImageWide: ImageModel;
|
|
1210
1754
|
Indicators: Indicators;
|
|
1211
1755
|
Int: Scalars['Int']['output'];
|
|
1212
1756
|
JSON: Scalars['JSON']['output'];
|
|
@@ -1220,9 +1764,9 @@ export type ResolversParentTypes = ResolversObject<{
|
|
|
1220
1764
|
OpinionTopper: TopperModel;
|
|
1221
1765
|
PackageDesign: Scalars['PackageDesign']['output'];
|
|
1222
1766
|
Picture: PictureModel;
|
|
1223
|
-
PictureFullBleed:
|
|
1224
|
-
PictureInline:
|
|
1225
|
-
PictureStandard:
|
|
1767
|
+
PictureFullBleed: PictureModel;
|
|
1768
|
+
PictureInline: PictureModel;
|
|
1769
|
+
PictureStandard: PictureModel;
|
|
1226
1770
|
Placeholder: CapiResponse;
|
|
1227
1771
|
PodcastTopper: TopperModel;
|
|
1228
1772
|
Query: {};
|
|
@@ -1232,7 +1776,7 @@ export type ResolversParentTypes = ResolversObject<{
|
|
|
1232
1776
|
RichText: RichTextModel;
|
|
1233
1777
|
RichTextSource: Scalars['RichTextSource']['output'];
|
|
1234
1778
|
ScrollyImage: ReferenceWithCAPIData<ContentTree.ScrollyImage>;
|
|
1235
|
-
SplitTextTopper:
|
|
1779
|
+
SplitTextTopper: TopperModel;
|
|
1236
1780
|
String: Scalars['String']['output'];
|
|
1237
1781
|
StructuredContent: Omit<StructuredContent, 'references'> & { references: ReadonlyArray<ResolversParentTypes['Reference']> };
|
|
1238
1782
|
TableOfContents: TableOfContents;
|
|
@@ -1254,101 +1798,101 @@ export interface AccessLevelScalarConfig extends GraphQLScalarTypeConfig<Resolve
|
|
|
1254
1798
|
}
|
|
1255
1799
|
|
|
1256
1800
|
export type AccessibilityResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Accessibility'] = ResolversParentTypes['Accessibility']> = ResolversObject<{
|
|
1257
|
-
captions
|
|
1258
|
-
transcript
|
|
1801
|
+
captions: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Caption']>>>, ParentType, ContextType>;
|
|
1802
|
+
transcript: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1259
1803
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1260
1804
|
}>;
|
|
1261
1805
|
|
|
1262
1806
|
export type AltStandfirstResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['AltStandfirst'] = ResolversParentTypes['AltStandfirst']> = ResolversObject<{
|
|
1263
|
-
promotionalStandfirst
|
|
1807
|
+
promotionalStandfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1264
1808
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1265
1809
|
}>;
|
|
1266
1810
|
|
|
1267
1811
|
export type AltTitleResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['AltTitle'] = ResolversParentTypes['AltTitle']> = ResolversObject<{
|
|
1268
|
-
promotionalTitle
|
|
1812
|
+
promotionalTitle: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1269
1813
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1270
1814
|
}>;
|
|
1271
1815
|
|
|
1272
1816
|
export type ArticleResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Article'] = ResolversParentTypes['Article']> = ResolversObject<{
|
|
1273
|
-
accessLevel
|
|
1274
|
-
altStandfirst
|
|
1275
|
-
altTitle
|
|
1276
|
-
annotations
|
|
1277
|
-
body
|
|
1278
|
-
bodyXML
|
|
1279
|
-
byline
|
|
1280
|
-
canBeSyndicated
|
|
1281
|
-
commentsEnabled
|
|
1282
|
-
containedIn
|
|
1283
|
-
design
|
|
1284
|
-
editorialDesk
|
|
1285
|
-
firstPublishedDate
|
|
1286
|
-
id
|
|
1287
|
-
instantAlertConcept
|
|
1288
|
-
mainImage
|
|
1289
|
-
originatingParty
|
|
1290
|
-
publishedDate
|
|
1291
|
-
standfirst
|
|
1292
|
-
teaser
|
|
1293
|
-
title
|
|
1294
|
-
topper
|
|
1295
|
-
type
|
|
1296
|
-
url
|
|
1817
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
1818
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
1819
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
1820
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
1821
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1822
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1823
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<ArticleBylineArgs>>;
|
|
1824
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
1825
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1826
|
+
containedIn: Resolver<Maybe<ResolversTypes['Content']>, ParentType, ContextType>;
|
|
1827
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
1828
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1829
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1830
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
1831
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1832
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
1833
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1834
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1835
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1836
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
1837
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1838
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
1839
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
1840
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<ArticleUrlArgs>>;
|
|
1297
1841
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1298
1842
|
}>;
|
|
1299
1843
|
|
|
1300
1844
|
export type AudioResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Audio'] = ResolversParentTypes['Audio']> = ResolversObject<{
|
|
1301
|
-
accessLevel
|
|
1302
|
-
altStandfirst
|
|
1303
|
-
altTitle
|
|
1304
|
-
annotations
|
|
1305
|
-
body
|
|
1306
|
-
bodyXML
|
|
1307
|
-
byline
|
|
1308
|
-
canBeSyndicated
|
|
1309
|
-
commentsEnabled
|
|
1310
|
-
design
|
|
1311
|
-
editorialDesk
|
|
1312
|
-
firstPublishedDate
|
|
1313
|
-
id
|
|
1314
|
-
instantAlertConcept
|
|
1315
|
-
mainImage
|
|
1316
|
-
media
|
|
1317
|
-
originatingParty
|
|
1318
|
-
publishedDate
|
|
1319
|
-
standfirst
|
|
1320
|
-
teaser
|
|
1321
|
-
title
|
|
1322
|
-
topper
|
|
1323
|
-
type
|
|
1324
|
-
url
|
|
1845
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
1846
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
1847
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
1848
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
1849
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1850
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1851
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<AudioBylineArgs>>;
|
|
1852
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
1853
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1854
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
1855
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1856
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1857
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
1858
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1859
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
1860
|
+
media: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Media']>>>, ParentType, ContextType>;
|
|
1861
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1862
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1863
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1864
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
1865
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1866
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
1867
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
1868
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<AudioUrlArgs>>;
|
|
1325
1869
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1326
1870
|
}>;
|
|
1327
1871
|
|
|
1328
1872
|
export type BasicTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['BasicTopper'] = ResolversParentTypes['BasicTopper']> = ResolversObject<{
|
|
1329
|
-
backgroundBox
|
|
1330
|
-
backgroundColour
|
|
1331
|
-
displayConcept
|
|
1332
|
-
followButtonVariant
|
|
1333
|
-
genreConcept
|
|
1334
|
-
headline
|
|
1335
|
-
intro
|
|
1336
|
-
textShadow
|
|
1873
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1874
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
1875
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1876
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
1877
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1878
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1879
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1880
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1337
1881
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1338
1882
|
}>;
|
|
1339
1883
|
|
|
1340
1884
|
export type BrandedTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['BrandedTopper'] = ResolversParentTypes['BrandedTopper']> = ResolversObject<{
|
|
1341
|
-
backgroundBox
|
|
1342
|
-
backgroundColour
|
|
1343
|
-
brandConcept
|
|
1344
|
-
displayConcept
|
|
1345
|
-
followButtonVariant
|
|
1346
|
-
genreConcept
|
|
1347
|
-
headline
|
|
1348
|
-
intro
|
|
1349
|
-
isLargeHeadline
|
|
1350
|
-
layout
|
|
1351
|
-
textShadow
|
|
1885
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1886
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
1887
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1888
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1889
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
1890
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1891
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1892
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1893
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1894
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1895
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1352
1896
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1353
1897
|
}>;
|
|
1354
1898
|
|
|
@@ -1357,17 +1901,17 @@ export interface CanBeSyndicatedScalarConfig extends GraphQLScalarTypeConfig<Res
|
|
|
1357
1901
|
}
|
|
1358
1902
|
|
|
1359
1903
|
export type CaptionResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Caption'] = ResolversParentTypes['Caption']> = ResolversObject<{
|
|
1360
|
-
mediaType
|
|
1361
|
-
url
|
|
1904
|
+
mediaType: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1905
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1362
1906
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1363
1907
|
}>;
|
|
1364
1908
|
|
|
1365
1909
|
export type ClipResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Clip'] = ResolversParentTypes['Clip']> = ResolversObject<{
|
|
1366
|
-
dataSource
|
|
1367
|
-
format
|
|
1368
|
-
id
|
|
1369
|
-
poster
|
|
1370
|
-
type
|
|
1910
|
+
dataSource: Resolver<ReadonlyArray<ResolversTypes['ClipSource']>, ParentType, ContextType>;
|
|
1911
|
+
format: Resolver<Maybe<ResolversTypes['ClipFormat']>, ParentType, ContextType>;
|
|
1912
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1913
|
+
poster: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1914
|
+
type: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1371
1915
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1372
1916
|
}>;
|
|
1373
1917
|
|
|
@@ -1376,104 +1920,104 @@ export interface ClipFormatScalarConfig extends GraphQLScalarTypeConfig<Resolver
|
|
|
1376
1920
|
}
|
|
1377
1921
|
|
|
1378
1922
|
export type ClipSetResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ClipSet'] = ResolversParentTypes['ClipSet']> = ResolversObject<{
|
|
1379
|
-
accessibility
|
|
1380
|
-
autoplay
|
|
1381
|
-
caption
|
|
1382
|
-
clips
|
|
1383
|
-
contentWarning
|
|
1384
|
-
credits
|
|
1385
|
-
dataLayout
|
|
1386
|
-
description
|
|
1387
|
-
displayTitle
|
|
1388
|
-
id
|
|
1389
|
-
loop
|
|
1390
|
-
muted
|
|
1391
|
-
noAudio
|
|
1392
|
-
publishedDate
|
|
1393
|
-
source
|
|
1394
|
-
subtitle
|
|
1395
|
-
type
|
|
1923
|
+
accessibility: Resolver<Maybe<ResolversTypes['Accessibility']>, ParentType, ContextType>;
|
|
1924
|
+
autoplay: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1925
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1926
|
+
clips: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Clip']>>>, ParentType, ContextType>;
|
|
1927
|
+
contentWarning: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['String']>>>, ParentType, ContextType>;
|
|
1928
|
+
credits: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1929
|
+
dataLayout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1930
|
+
description: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1931
|
+
displayTitle: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1932
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1933
|
+
loop: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1934
|
+
muted: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1935
|
+
noAudio: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1936
|
+
publishedDate: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1937
|
+
source: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1938
|
+
subtitle: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1939
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1396
1940
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1397
1941
|
}>;
|
|
1398
1942
|
|
|
1399
1943
|
export type ClipSourceResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ClipSource'] = ResolversParentTypes['ClipSource']> = ResolversObject<{
|
|
1400
|
-
audioCodec
|
|
1401
|
-
binaryUrl
|
|
1402
|
-
duration
|
|
1403
|
-
mediaType
|
|
1404
|
-
pixelHeight
|
|
1405
|
-
pixelWidth
|
|
1406
|
-
videoCodec
|
|
1944
|
+
audioCodec: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1945
|
+
binaryUrl: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1946
|
+
duration: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1947
|
+
mediaType: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1948
|
+
pixelHeight: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1949
|
+
pixelWidth: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1950
|
+
videoCodec: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1407
1951
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1408
1952
|
}>;
|
|
1409
1953
|
|
|
1410
1954
|
export type ConceptResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Concept'] = ResolversParentTypes['Concept']> = ResolversObject<{
|
|
1411
|
-
apiUrl
|
|
1412
|
-
directType
|
|
1413
|
-
id
|
|
1414
|
-
isPackageBrand
|
|
1415
|
-
predicate
|
|
1416
|
-
prefLabel
|
|
1417
|
-
type
|
|
1418
|
-
types
|
|
1419
|
-
url
|
|
1955
|
+
apiUrl: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1956
|
+
directType: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1957
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
1958
|
+
isPackageBrand: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1959
|
+
predicate: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1960
|
+
prefLabel: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1961
|
+
type: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1962
|
+
types: Resolver<Maybe<ReadonlyArray<ResolversTypes['String']>>, ParentType, ContextType>;
|
|
1963
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<ConceptUrlArgs>>;
|
|
1420
1964
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1421
1965
|
}>;
|
|
1422
1966
|
|
|
1423
1967
|
export type ContentResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Content'] = ResolversParentTypes['Content']> = ResolversObject<{
|
|
1424
1968
|
__resolveType?: TypeResolveFn<'Article' | 'Audio' | 'ContentPackage' | 'LiveBlogPackage' | 'LiveBlogPost' | 'Placeholder' | 'Video', ParentType, ContextType>;
|
|
1425
|
-
accessLevel
|
|
1426
|
-
altStandfirst
|
|
1427
|
-
altTitle
|
|
1428
|
-
annotations
|
|
1429
|
-
body
|
|
1430
|
-
bodyXML
|
|
1431
|
-
byline
|
|
1432
|
-
canBeSyndicated
|
|
1433
|
-
commentsEnabled
|
|
1434
|
-
design
|
|
1435
|
-
editorialDesk
|
|
1436
|
-
firstPublishedDate
|
|
1437
|
-
id
|
|
1438
|
-
instantAlertConcept
|
|
1439
|
-
mainImage
|
|
1440
|
-
originatingParty
|
|
1441
|
-
publishedDate
|
|
1442
|
-
standfirst
|
|
1443
|
-
teaser
|
|
1444
|
-
title
|
|
1445
|
-
topper
|
|
1446
|
-
type
|
|
1447
|
-
url
|
|
1969
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
1970
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
1971
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
1972
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
1973
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
1974
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1975
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<ContentBylineArgs>>;
|
|
1976
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
1977
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1978
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
1979
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1980
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1981
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
1982
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
1983
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
1984
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1985
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1986
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1987
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
1988
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1989
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
1990
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
1991
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<ContentUrlArgs>>;
|
|
1448
1992
|
}>;
|
|
1449
1993
|
|
|
1450
1994
|
export type ContentPackageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ContentPackage'] = ResolversParentTypes['ContentPackage']> = ResolversObject<{
|
|
1451
|
-
accessLevel
|
|
1452
|
-
altStandfirst
|
|
1453
|
-
altTitle
|
|
1454
|
-
annotations
|
|
1455
|
-
body
|
|
1456
|
-
bodyXML
|
|
1457
|
-
byline
|
|
1458
|
-
canBeSyndicated
|
|
1459
|
-
commentsEnabled
|
|
1460
|
-
contains
|
|
1461
|
-
containsLength
|
|
1462
|
-
design
|
|
1463
|
-
editorialDesk
|
|
1464
|
-
firstPublishedDate
|
|
1465
|
-
id
|
|
1466
|
-
instantAlertConcept
|
|
1467
|
-
mainImage
|
|
1468
|
-
originatingParty
|
|
1469
|
-
publishedDate
|
|
1470
|
-
standfirst
|
|
1471
|
-
tableOfContents
|
|
1472
|
-
teaser
|
|
1473
|
-
title
|
|
1474
|
-
topper
|
|
1475
|
-
type
|
|
1476
|
-
url
|
|
1995
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
1996
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
1997
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
1998
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
1999
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2000
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2001
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<ContentPackageBylineArgs>>;
|
|
2002
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
2003
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2004
|
+
contains: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Teaser']>>>, ParentType, ContextType, Partial<ContentPackageContainsArgs>>;
|
|
2005
|
+
containsLength: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2006
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
2007
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2008
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2009
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
2010
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2011
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2012
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2013
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2014
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2015
|
+
tableOfContents: Resolver<Maybe<ResolversTypes['TableOfContents']>, ParentType, ContextType>;
|
|
2016
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2017
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2018
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
2019
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
2020
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<ContentPackageUrlArgs>>;
|
|
1477
2021
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1478
2022
|
}>;
|
|
1479
2023
|
|
|
@@ -1482,55 +2026,55 @@ export interface ContentTypeScalarConfig extends GraphQLScalarTypeConfig<Resolve
|
|
|
1482
2026
|
}
|
|
1483
2027
|
|
|
1484
2028
|
export type DeepLandscapeTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['DeepLandscapeTopper'] = ResolversParentTypes['DeepLandscapeTopper']> = ResolversObject<{
|
|
1485
|
-
backgroundBox
|
|
1486
|
-
backgroundColour
|
|
1487
|
-
brandConcept
|
|
1488
|
-
displayConcept
|
|
1489
|
-
fallbackImage
|
|
1490
|
-
followButtonVariant
|
|
1491
|
-
genreConcept
|
|
1492
|
-
headline
|
|
1493
|
-
images
|
|
1494
|
-
intro
|
|
1495
|
-
isLargeHeadline
|
|
1496
|
-
layout
|
|
1497
|
-
textShadow
|
|
2029
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2030
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2031
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2032
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2033
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2034
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2035
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2036
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2037
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2038
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2039
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2040
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2041
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1498
2042
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1499
2043
|
}>;
|
|
1500
2044
|
|
|
1501
2045
|
export type DeepPortraitTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['DeepPortraitTopper'] = ResolversParentTypes['DeepPortraitTopper']> = ResolversObject<{
|
|
1502
|
-
backgroundBox
|
|
1503
|
-
backgroundColour
|
|
1504
|
-
brandConcept
|
|
1505
|
-
displayConcept
|
|
1506
|
-
fallbackImage
|
|
1507
|
-
followButtonVariant
|
|
1508
|
-
genreConcept
|
|
1509
|
-
headline
|
|
1510
|
-
images
|
|
1511
|
-
intro
|
|
1512
|
-
isLargeHeadline
|
|
1513
|
-
layout
|
|
1514
|
-
textShadow
|
|
2046
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2047
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2048
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2049
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2050
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2051
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2052
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2053
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2054
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2055
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2056
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2057
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2058
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1515
2059
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1516
2060
|
}>;
|
|
1517
2061
|
|
|
1518
2062
|
export type DesignResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Design'] = ResolversParentTypes['Design']> = ResolversObject<{
|
|
1519
|
-
layout
|
|
1520
|
-
theme
|
|
2063
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2064
|
+
theme: Resolver<Maybe<ResolversTypes['PackageDesign']>, ParentType, ContextType>;
|
|
1521
2065
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1522
2066
|
}>;
|
|
1523
2067
|
|
|
1524
2068
|
export type FlourishResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Flourish'] = ResolversParentTypes['Flourish']> = ResolversObject<{
|
|
1525
|
-
fallbackImage
|
|
1526
|
-
type
|
|
2069
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['FlourishFallback']>, ParentType, ContextType>;
|
|
2070
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1527
2071
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1528
2072
|
}>;
|
|
1529
2073
|
|
|
1530
2074
|
export type FlourishFallbackResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['FlourishFallback'] = ResolversParentTypes['FlourishFallback']> = ResolversObject<{
|
|
1531
|
-
height
|
|
1532
|
-
url
|
|
1533
|
-
width
|
|
2075
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2076
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2077
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1534
2078
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1535
2079
|
}>;
|
|
1536
2080
|
|
|
@@ -1539,47 +2083,47 @@ export interface FollowButtonVariantScalarConfig extends GraphQLScalarTypeConfig
|
|
|
1539
2083
|
}
|
|
1540
2084
|
|
|
1541
2085
|
export type FullBleedTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['FullBleedTopper'] = ResolversParentTypes['FullBleedTopper']> = ResolversObject<{
|
|
1542
|
-
backgroundBox
|
|
1543
|
-
backgroundColour
|
|
1544
|
-
brandConcept
|
|
1545
|
-
displayConcept
|
|
1546
|
-
fallbackImage
|
|
1547
|
-
followButtonVariant
|
|
1548
|
-
genreConcept
|
|
1549
|
-
headline
|
|
1550
|
-
images
|
|
1551
|
-
intro
|
|
1552
|
-
isLargeHeadline
|
|
1553
|
-
layout
|
|
1554
|
-
textShadow
|
|
2086
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2087
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2088
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2089
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2090
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2091
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2092
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2093
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2094
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2095
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2096
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2097
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2098
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1555
2099
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1556
2100
|
}>;
|
|
1557
2101
|
|
|
1558
2102
|
export type ImageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Image'] = ResolversParentTypes['Image']> = ResolversObject<{
|
|
1559
2103
|
__resolveType?: TypeResolveFn<'ImageDesktop' | 'ImageLandscape' | 'ImageMobile' | 'ImagePortrait' | 'ImageSquare' | 'ImageSquareFTEdit' | 'ImageStandard' | 'ImageStandardInline' | 'ImageWide', ParentType, ContextType>;
|
|
1560
|
-
altText
|
|
1561
|
-
caption
|
|
1562
|
-
credit
|
|
1563
|
-
format
|
|
1564
|
-
height
|
|
1565
|
-
id
|
|
1566
|
-
sourceSet
|
|
1567
|
-
type
|
|
1568
|
-
url
|
|
1569
|
-
width
|
|
2104
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2105
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2106
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2107
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2108
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2109
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2110
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageSourceSetArgs>>;
|
|
2111
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2112
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2113
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1570
2114
|
}>;
|
|
1571
2115
|
|
|
1572
2116
|
export type ImageDesktopResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageDesktop'] = ResolversParentTypes['ImageDesktop']> = ResolversObject<{
|
|
1573
|
-
altText
|
|
1574
|
-
caption
|
|
1575
|
-
credit
|
|
1576
|
-
format
|
|
1577
|
-
height
|
|
1578
|
-
id
|
|
1579
|
-
sourceSet
|
|
1580
|
-
type
|
|
1581
|
-
url
|
|
1582
|
-
width
|
|
2117
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2118
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2119
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2120
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2121
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2122
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2123
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageDesktopSourceSetArgs>>;
|
|
2124
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2125
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2126
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1583
2127
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1584
2128
|
}>;
|
|
1585
2129
|
|
|
@@ -1588,113 +2132,113 @@ export interface ImageFormatScalarConfig extends GraphQLScalarTypeConfig<Resolve
|
|
|
1588
2132
|
}
|
|
1589
2133
|
|
|
1590
2134
|
export type ImageLandscapeResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageLandscape'] = ResolversParentTypes['ImageLandscape']> = ResolversObject<{
|
|
1591
|
-
altText
|
|
1592
|
-
caption
|
|
1593
|
-
credit
|
|
1594
|
-
format
|
|
1595
|
-
height
|
|
1596
|
-
id
|
|
1597
|
-
sourceSet
|
|
1598
|
-
type
|
|
1599
|
-
url
|
|
1600
|
-
width
|
|
2135
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2136
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2137
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2138
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2139
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2140
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2141
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageLandscapeSourceSetArgs>>;
|
|
2142
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2143
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2144
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1601
2145
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1602
2146
|
}>;
|
|
1603
2147
|
|
|
1604
2148
|
export type ImageMobileResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageMobile'] = ResolversParentTypes['ImageMobile']> = ResolversObject<{
|
|
1605
|
-
altText
|
|
1606
|
-
caption
|
|
1607
|
-
credit
|
|
1608
|
-
format
|
|
1609
|
-
height
|
|
1610
|
-
id
|
|
1611
|
-
sourceSet
|
|
1612
|
-
type
|
|
1613
|
-
url
|
|
1614
|
-
width
|
|
2149
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2150
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2151
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2152
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2153
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2154
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2155
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageMobileSourceSetArgs>>;
|
|
2156
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2157
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2158
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1615
2159
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1616
2160
|
}>;
|
|
1617
2161
|
|
|
1618
2162
|
export type ImagePortraitResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImagePortrait'] = ResolversParentTypes['ImagePortrait']> = ResolversObject<{
|
|
1619
|
-
altText
|
|
1620
|
-
caption
|
|
1621
|
-
credit
|
|
1622
|
-
format
|
|
1623
|
-
height
|
|
1624
|
-
id
|
|
1625
|
-
sourceSet
|
|
1626
|
-
type
|
|
1627
|
-
url
|
|
1628
|
-
width
|
|
2163
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2164
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2165
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2166
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2167
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2168
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2169
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImagePortraitSourceSetArgs>>;
|
|
2170
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2171
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2172
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1629
2173
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1630
2174
|
}>;
|
|
1631
2175
|
|
|
1632
2176
|
export type ImageSetResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageSet'] = ResolversParentTypes['ImageSet']> = ResolversObject<{
|
|
1633
|
-
picture
|
|
1634
|
-
type
|
|
2177
|
+
picture: Resolver<Maybe<ResolversTypes['Picture']>, ParentType, ContextType>;
|
|
2178
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1635
2179
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1636
2180
|
}>;
|
|
1637
2181
|
|
|
1638
2182
|
export type ImageSourceResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageSource'] = ResolversParentTypes['ImageSource']> = ResolversObject<{
|
|
1639
|
-
dpr
|
|
1640
|
-
url
|
|
1641
|
-
width
|
|
2183
|
+
dpr: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2184
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2185
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1642
2186
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1643
2187
|
}>;
|
|
1644
2188
|
|
|
1645
2189
|
export type ImageSquareResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageSquare'] = ResolversParentTypes['ImageSquare']> = ResolversObject<{
|
|
1646
|
-
altText
|
|
1647
|
-
caption
|
|
1648
|
-
credit
|
|
1649
|
-
format
|
|
1650
|
-
height
|
|
1651
|
-
id
|
|
1652
|
-
sourceSet
|
|
1653
|
-
type
|
|
1654
|
-
url
|
|
1655
|
-
width
|
|
2190
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2191
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2192
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2193
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2194
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2195
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2196
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageSquareSourceSetArgs>>;
|
|
2197
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2198
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2199
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1656
2200
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1657
2201
|
}>;
|
|
1658
2202
|
|
|
1659
2203
|
export type ImageSquareFtEditResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageSquareFTEdit'] = ResolversParentTypes['ImageSquareFTEdit']> = ResolversObject<{
|
|
1660
|
-
altText
|
|
1661
|
-
caption
|
|
1662
|
-
credit
|
|
1663
|
-
format
|
|
1664
|
-
height
|
|
1665
|
-
id
|
|
1666
|
-
sourceSet
|
|
1667
|
-
type
|
|
1668
|
-
url
|
|
1669
|
-
width
|
|
2204
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2205
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2206
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2207
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2208
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2209
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2210
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageSquareFtEditSourceSetArgs>>;
|
|
2211
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2212
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2213
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1670
2214
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1671
2215
|
}>;
|
|
1672
2216
|
|
|
1673
2217
|
export type ImageStandardResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageStandard'] = ResolversParentTypes['ImageStandard']> = ResolversObject<{
|
|
1674
|
-
altText
|
|
1675
|
-
caption
|
|
1676
|
-
credit
|
|
1677
|
-
format
|
|
1678
|
-
height
|
|
1679
|
-
id
|
|
1680
|
-
sourceSet
|
|
1681
|
-
type
|
|
1682
|
-
url
|
|
1683
|
-
width
|
|
2218
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2219
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2220
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2221
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2222
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2223
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2224
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageStandardSourceSetArgs>>;
|
|
2225
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2226
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2227
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1684
2228
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1685
2229
|
}>;
|
|
1686
2230
|
|
|
1687
2231
|
export type ImageStandardInlineResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageStandardInline'] = ResolversParentTypes['ImageStandardInline']> = ResolversObject<{
|
|
1688
|
-
altText
|
|
1689
|
-
caption
|
|
1690
|
-
credit
|
|
1691
|
-
format
|
|
1692
|
-
height
|
|
1693
|
-
id
|
|
1694
|
-
sourceSet
|
|
1695
|
-
type
|
|
1696
|
-
url
|
|
1697
|
-
width
|
|
2232
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2233
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2234
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2235
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2236
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2237
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2238
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageStandardInlineSourceSetArgs>>;
|
|
2239
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2240
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2241
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1698
2242
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1699
2243
|
}>;
|
|
1700
2244
|
|
|
@@ -1703,27 +2247,27 @@ export interface ImageTypeScalarConfig extends GraphQLScalarTypeConfig<Resolvers
|
|
|
1703
2247
|
}
|
|
1704
2248
|
|
|
1705
2249
|
export type ImageWideResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ImageWide'] = ResolversParentTypes['ImageWide']> = ResolversObject<{
|
|
1706
|
-
altText
|
|
1707
|
-
caption
|
|
1708
|
-
credit
|
|
1709
|
-
format
|
|
1710
|
-
height
|
|
1711
|
-
id
|
|
1712
|
-
sourceSet
|
|
1713
|
-
type
|
|
1714
|
-
url
|
|
1715
|
-
width
|
|
2250
|
+
altText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2251
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2252
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2253
|
+
format: Resolver<ResolversTypes['ImageFormat'], ParentType, ContextType>;
|
|
2254
|
+
height: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2255
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2256
|
+
sourceSet: Resolver<ReadonlyArray<ResolversTypes['ImageSource']>, ParentType, ContextType, Partial<ImageWideSourceSetArgs>>;
|
|
2257
|
+
type: Resolver<Maybe<ResolversTypes['ImageType']>, ParentType, ContextType>;
|
|
2258
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2259
|
+
width: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
1716
2260
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1717
2261
|
}>;
|
|
1718
2262
|
|
|
1719
2263
|
export type IndicatorsResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Indicators'] = ResolversParentTypes['Indicators']> = ResolversObject<{
|
|
1720
|
-
accessLevel
|
|
1721
|
-
isColumn
|
|
1722
|
-
isEditorsChoice
|
|
1723
|
-
isExclusive
|
|
1724
|
-
isOpinion
|
|
1725
|
-
isPodcast
|
|
1726
|
-
isScoop
|
|
2264
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
2265
|
+
isColumn: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2266
|
+
isEditorsChoice: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2267
|
+
isExclusive: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2268
|
+
isOpinion: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2269
|
+
isPodcast: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2270
|
+
isScoop: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1727
2271
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1728
2272
|
}>;
|
|
1729
2273
|
|
|
@@ -1732,82 +2276,82 @@ export interface JsonScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes
|
|
|
1732
2276
|
}
|
|
1733
2277
|
|
|
1734
2278
|
export type LayoutImageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['LayoutImage'] = ResolversParentTypes['LayoutImage']> = ResolversObject<{
|
|
1735
|
-
picture
|
|
1736
|
-
type
|
|
2279
|
+
picture: Resolver<Maybe<ResolversTypes['Picture']>, ParentType, ContextType>;
|
|
2280
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1737
2281
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1738
2282
|
}>;
|
|
1739
2283
|
|
|
1740
2284
|
export type LiveBlogPackageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['LiveBlogPackage'] = ResolversParentTypes['LiveBlogPackage']> = ResolversObject<{
|
|
1741
|
-
accessLevel
|
|
1742
|
-
altStandfirst
|
|
1743
|
-
altTitle
|
|
1744
|
-
annotations
|
|
1745
|
-
body
|
|
1746
|
-
bodyXML
|
|
1747
|
-
byline
|
|
1748
|
-
canBeSyndicated
|
|
1749
|
-
commentsEnabled
|
|
1750
|
-
design
|
|
1751
|
-
editorialDesk
|
|
1752
|
-
firstPublishedDate
|
|
1753
|
-
id
|
|
1754
|
-
instantAlertConcept
|
|
1755
|
-
liveBlogPosts
|
|
1756
|
-
mainImage
|
|
1757
|
-
originatingParty
|
|
1758
|
-
pinnedPost
|
|
1759
|
-
publishedDate
|
|
1760
|
-
realtime
|
|
1761
|
-
standfirst
|
|
1762
|
-
teaser
|
|
1763
|
-
title
|
|
1764
|
-
topper
|
|
1765
|
-
type
|
|
1766
|
-
url
|
|
2285
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
2286
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
2287
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
2288
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
2289
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2290
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2291
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<LiveBlogPackageBylineArgs>>;
|
|
2292
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
2293
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2294
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
2295
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2296
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2297
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
2298
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2299
|
+
liveBlogPosts: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Content']>>>, ParentType, ContextType, Partial<LiveBlogPackageLiveBlogPostsArgs>>;
|
|
2300
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2301
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2302
|
+
pinnedPost: Resolver<Maybe<ResolversTypes['Content']>, ParentType, ContextType>;
|
|
2303
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2304
|
+
realtime: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2305
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2306
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2307
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2308
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
2309
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
2310
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<LiveBlogPackageUrlArgs>>;
|
|
1767
2311
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1768
2312
|
}>;
|
|
1769
2313
|
|
|
1770
2314
|
export type LiveBlogPostResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['LiveBlogPost'] = ResolversParentTypes['LiveBlogPost']> = ResolversObject<{
|
|
1771
|
-
accessLevel
|
|
1772
|
-
altStandfirst
|
|
1773
|
-
altTitle
|
|
1774
|
-
annotations
|
|
1775
|
-
body
|
|
1776
|
-
bodyXML
|
|
1777
|
-
byline
|
|
1778
|
-
canBeSyndicated
|
|
1779
|
-
commentsEnabled
|
|
1780
|
-
containedIn
|
|
1781
|
-
design
|
|
1782
|
-
editorialDesk
|
|
1783
|
-
firstPublishedDate
|
|
1784
|
-
id
|
|
1785
|
-
indicators
|
|
1786
|
-
instantAlertConcept
|
|
1787
|
-
isPinned
|
|
1788
|
-
mainImage
|
|
1789
|
-
originatingParty
|
|
1790
|
-
publishedDate
|
|
1791
|
-
standfirst
|
|
1792
|
-
teaser
|
|
1793
|
-
title
|
|
1794
|
-
topper
|
|
1795
|
-
type
|
|
1796
|
-
url
|
|
2315
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
2316
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
2317
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
2318
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
2319
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2320
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2321
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<LiveBlogPostBylineArgs>>;
|
|
2322
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
2323
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2324
|
+
containedIn: Resolver<Maybe<ResolversTypes['Content']>, ParentType, ContextType>;
|
|
2325
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
2326
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2327
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2328
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
2329
|
+
indicators: Resolver<Maybe<ResolversTypes['Indicators']>, ParentType, ContextType>;
|
|
2330
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2331
|
+
isPinned: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2332
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2333
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2334
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2335
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2336
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2337
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2338
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
2339
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
2340
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<LiveBlogPostUrlArgs>>;
|
|
1797
2341
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1798
2342
|
}>;
|
|
1799
2343
|
|
|
1800
2344
|
export type MainImageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['MainImage'] = ResolversParentTypes['MainImage']> = ResolversObject<{
|
|
1801
|
-
picture
|
|
1802
|
-
type
|
|
2345
|
+
picture: Resolver<Maybe<ResolversTypes['Picture']>, ParentType, ContextType>;
|
|
2346
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1803
2347
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1804
2348
|
}>;
|
|
1805
2349
|
|
|
1806
2350
|
export type MediaResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Media'] = ResolversParentTypes['Media']> = ResolversObject<{
|
|
1807
|
-
duration
|
|
1808
|
-
filesize
|
|
1809
|
-
mediaType
|
|
1810
|
-
url
|
|
2351
|
+
duration: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2352
|
+
filesize: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
|
2353
|
+
mediaType: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2354
|
+
url: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1811
2355
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1812
2356
|
}>;
|
|
1813
2357
|
|
|
@@ -1816,22 +2360,22 @@ export type MetaLinkResolvers<ContextType = QueryContext, ParentType extends Res
|
|
|
1816
2360
|
}>;
|
|
1817
2361
|
|
|
1818
2362
|
export type MutationResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Mutation'] = ResolversParentTypes['Mutation']> = ResolversObject<{
|
|
1819
|
-
invalidateRedisCache
|
|
2363
|
+
invalidateRedisCache: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType, RequireFields<MutationInvalidateRedisCacheArgs, 'uuid'>>;
|
|
1820
2364
|
}>;
|
|
1821
2365
|
|
|
1822
2366
|
export type OpinionTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['OpinionTopper'] = ResolversParentTypes['OpinionTopper']> = ResolversObject<{
|
|
1823
|
-
backgroundBox
|
|
1824
|
-
backgroundColour
|
|
1825
|
-
columnist
|
|
1826
|
-
displayConcept
|
|
1827
|
-
followButtonVariant
|
|
1828
|
-
genreConcept
|
|
1829
|
-
headline
|
|
1830
|
-
headshot
|
|
1831
|
-
intro
|
|
1832
|
-
isLargeHeadline
|
|
1833
|
-
layout
|
|
1834
|
-
textShadow
|
|
2367
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2368
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2369
|
+
columnist: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2370
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2371
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2372
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2373
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2374
|
+
headshot: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType, Partial<OpinionTopperHeadshotArgs>>;
|
|
2375
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2376
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2377
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2378
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1835
2379
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1836
2380
|
}>;
|
|
1837
2381
|
|
|
@@ -1841,120 +2385,120 @@ export interface PackageDesignScalarConfig extends GraphQLScalarTypeConfig<Resol
|
|
|
1841
2385
|
|
|
1842
2386
|
export type PictureResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Picture'] = ResolversParentTypes['Picture']> = ResolversObject<{
|
|
1843
2387
|
__resolveType?: TypeResolveFn<'PictureFullBleed' | 'PictureInline' | 'PictureStandard', ParentType, ContextType>;
|
|
1844
|
-
alt
|
|
1845
|
-
caption
|
|
1846
|
-
credit
|
|
1847
|
-
fallbackImage
|
|
1848
|
-
imageType
|
|
1849
|
-
images
|
|
1850
|
-
layoutWidth
|
|
2388
|
+
alt: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2389
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2390
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2391
|
+
fallbackImage: Resolver<ResolversTypes['Image'], ParentType, ContextType>;
|
|
2392
|
+
imageType: Resolver<ResolversTypes['ImageType'], ParentType, ContextType>;
|
|
2393
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2394
|
+
layoutWidth: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1851
2395
|
}>;
|
|
1852
2396
|
|
|
1853
2397
|
export type PictureFullBleedResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['PictureFullBleed'] = ResolversParentTypes['PictureFullBleed']> = ResolversObject<{
|
|
1854
|
-
alt
|
|
1855
|
-
caption
|
|
1856
|
-
credit
|
|
1857
|
-
fallbackImage
|
|
1858
|
-
imageType
|
|
1859
|
-
images
|
|
1860
|
-
layoutWidth
|
|
2398
|
+
alt: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2399
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2400
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2401
|
+
fallbackImage: Resolver<ResolversTypes['Image'], ParentType, ContextType>;
|
|
2402
|
+
imageType: Resolver<ResolversTypes['ImageType'], ParentType, ContextType>;
|
|
2403
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2404
|
+
layoutWidth: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1861
2405
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1862
2406
|
}>;
|
|
1863
2407
|
|
|
1864
2408
|
export type PictureInlineResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['PictureInline'] = ResolversParentTypes['PictureInline']> = ResolversObject<{
|
|
1865
|
-
alt
|
|
1866
|
-
caption
|
|
1867
|
-
credit
|
|
1868
|
-
fallbackImage
|
|
1869
|
-
imageType
|
|
1870
|
-
images
|
|
1871
|
-
layoutWidth
|
|
2409
|
+
alt: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2410
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2411
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2412
|
+
fallbackImage: Resolver<ResolversTypes['Image'], ParentType, ContextType>;
|
|
2413
|
+
imageType: Resolver<ResolversTypes['ImageType'], ParentType, ContextType>;
|
|
2414
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2415
|
+
layoutWidth: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1872
2416
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1873
2417
|
}>;
|
|
1874
2418
|
|
|
1875
2419
|
export type PictureStandardResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['PictureStandard'] = ResolversParentTypes['PictureStandard']> = ResolversObject<{
|
|
1876
|
-
alt
|
|
1877
|
-
caption
|
|
1878
|
-
credit
|
|
1879
|
-
fallbackImage
|
|
1880
|
-
imageType
|
|
1881
|
-
images
|
|
1882
|
-
layoutWidth
|
|
2420
|
+
alt: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2421
|
+
caption: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2422
|
+
credit: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2423
|
+
fallbackImage: Resolver<ResolversTypes['Image'], ParentType, ContextType>;
|
|
2424
|
+
imageType: Resolver<ResolversTypes['ImageType'], ParentType, ContextType>;
|
|
2425
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2426
|
+
layoutWidth: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1883
2427
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1884
2428
|
}>;
|
|
1885
2429
|
|
|
1886
2430
|
export type PlaceholderResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Placeholder'] = ResolversParentTypes['Placeholder']> = ResolversObject<{
|
|
1887
|
-
accessLevel
|
|
1888
|
-
altStandfirst
|
|
1889
|
-
altTitle
|
|
1890
|
-
annotations
|
|
1891
|
-
body
|
|
1892
|
-
bodyXML
|
|
1893
|
-
byline
|
|
1894
|
-
canBeSyndicated
|
|
1895
|
-
commentsEnabled
|
|
1896
|
-
containedIn
|
|
1897
|
-
design
|
|
1898
|
-
editorialDesk
|
|
1899
|
-
firstPublishedDate
|
|
1900
|
-
id
|
|
1901
|
-
instantAlertConcept
|
|
1902
|
-
mainImage
|
|
1903
|
-
originatingParty
|
|
1904
|
-
publishedDate
|
|
1905
|
-
standfirst
|
|
1906
|
-
teaser
|
|
1907
|
-
title
|
|
1908
|
-
topper
|
|
1909
|
-
type
|
|
1910
|
-
url
|
|
2431
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
2432
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
2433
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
2434
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
2435
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2436
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2437
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<PlaceholderBylineArgs>>;
|
|
2438
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
2439
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2440
|
+
containedIn: Resolver<Maybe<ResolversTypes['Content']>, ParentType, ContextType>;
|
|
2441
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
2442
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2443
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2444
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
2445
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2446
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2447
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2448
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2449
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2450
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2451
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2452
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
2453
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
2454
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<PlaceholderUrlArgs>>;
|
|
1911
2455
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1912
2456
|
}>;
|
|
1913
2457
|
|
|
1914
2458
|
export type PodcastTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['PodcastTopper'] = ResolversParentTypes['PodcastTopper']> = ResolversObject<{
|
|
1915
|
-
backgroundBox
|
|
1916
|
-
backgroundColour
|
|
1917
|
-
brandConcept
|
|
1918
|
-
columnist
|
|
1919
|
-
displayConcept
|
|
1920
|
-
followButtonVariant
|
|
1921
|
-
genreConcept
|
|
1922
|
-
headline
|
|
1923
|
-
headshot
|
|
1924
|
-
intro
|
|
1925
|
-
isLargeHeadline
|
|
1926
|
-
layout
|
|
1927
|
-
textShadow
|
|
2459
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2460
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2461
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2462
|
+
columnist: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2463
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2464
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2465
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2466
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2467
|
+
headshot: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType, Partial<PodcastTopperHeadshotArgs>>;
|
|
2468
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2469
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2470
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2471
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1928
2472
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1929
2473
|
}>;
|
|
1930
2474
|
|
|
1931
2475
|
export type QueryResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Query'] = ResolversParentTypes['Query']> = ResolversObject<{
|
|
1932
|
-
content
|
|
1933
|
-
contentFromJSON
|
|
1934
|
-
version
|
|
2476
|
+
content: Resolver<ResolversTypes['Content'], ParentType, ContextType, RequireFields<QueryContentArgs, 'uuid'>>;
|
|
2477
|
+
contentFromJSON: Resolver<ResolversTypes['Content'], ParentType, ContextType, RequireFields<QueryContentFromJsonArgs, 'content'>>;
|
|
2478
|
+
version: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1935
2479
|
}>;
|
|
1936
2480
|
|
|
1937
2481
|
export type RawImageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['RawImage'] = ResolversParentTypes['RawImage']> = ResolversObject<{
|
|
1938
|
-
image
|
|
1939
|
-
type
|
|
2482
|
+
image: Resolver<ResolversTypes['Image'], ParentType, ContextType>;
|
|
2483
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1940
2484
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1941
2485
|
}>;
|
|
1942
2486
|
|
|
1943
2487
|
export type RecommendedResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Recommended'] = ResolversParentTypes['Recommended']> = ResolversObject<{
|
|
1944
|
-
teaser
|
|
1945
|
-
type
|
|
2488
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2489
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1946
2490
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1947
2491
|
}>;
|
|
1948
2492
|
|
|
1949
2493
|
export type ReferenceResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Reference'] = ResolversParentTypes['Reference']> = ResolversObject<{
|
|
1950
2494
|
__resolveType?: TypeResolveFn<'ClipSet' | 'Flourish' | 'ImageSet' | 'LayoutImage' | 'MainImage' | 'RawImage' | 'Recommended' | 'ScrollyImage' | 'Tweet' | 'VideoReference', ParentType, ContextType>;
|
|
1951
|
-
type
|
|
2495
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1952
2496
|
}>;
|
|
1953
2497
|
|
|
1954
2498
|
export type RichTextResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['RichText'] = ResolversParentTypes['RichText']> = ResolversObject<{
|
|
1955
|
-
raw
|
|
1956
|
-
source
|
|
1957
|
-
structured
|
|
2499
|
+
raw: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2500
|
+
source: Resolver<ResolversTypes['RichTextSource'], ParentType, ContextType>;
|
|
2501
|
+
structured: Resolver<ResolversTypes['StructuredContent'], ParentType, ContextType>;
|
|
1958
2502
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1959
2503
|
}>;
|
|
1960
2504
|
|
|
@@ -1963,70 +2507,70 @@ export interface RichTextSourceScalarConfig extends GraphQLScalarTypeConfig<Reso
|
|
|
1963
2507
|
}
|
|
1964
2508
|
|
|
1965
2509
|
export type ScrollyImageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['ScrollyImage'] = ResolversParentTypes['ScrollyImage']> = ResolversObject<{
|
|
1966
|
-
picture
|
|
1967
|
-
type
|
|
2510
|
+
picture: Resolver<Maybe<ResolversTypes['Picture']>, ParentType, ContextType>;
|
|
2511
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
1968
2512
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1969
2513
|
}>;
|
|
1970
2514
|
|
|
1971
2515
|
export type SplitTextTopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['SplitTextTopper'] = ResolversParentTypes['SplitTextTopper']> = ResolversObject<{
|
|
1972
|
-
backgroundBox
|
|
1973
|
-
backgroundColour
|
|
1974
|
-
brandConcept
|
|
1975
|
-
design
|
|
1976
|
-
displayConcept
|
|
1977
|
-
fallbackImage
|
|
1978
|
-
followButtonVariant
|
|
1979
|
-
genreConcept
|
|
1980
|
-
headline
|
|
1981
|
-
images
|
|
1982
|
-
intro
|
|
1983
|
-
isLargeHeadline
|
|
1984
|
-
layout
|
|
1985
|
-
textShadow
|
|
2516
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2517
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2518
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2519
|
+
design: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2520
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2521
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2522
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2523
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2524
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2525
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2526
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2527
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2528
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2529
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
1986
2530
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1987
2531
|
}>;
|
|
1988
2532
|
|
|
1989
2533
|
export type StructuredContentResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['StructuredContent'] = ResolversParentTypes['StructuredContent']> = ResolversObject<{
|
|
1990
|
-
references
|
|
1991
|
-
text
|
|
1992
|
-
tree
|
|
2534
|
+
references: Resolver<ReadonlyArray<ResolversTypes['Reference']>, ParentType, ContextType>;
|
|
2535
|
+
text: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2536
|
+
tree: Resolver<ResolversTypes['JSON'], ParentType, ContextType>;
|
|
1993
2537
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
1994
2538
|
}>;
|
|
1995
2539
|
|
|
1996
2540
|
export type TableOfContentsResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TableOfContents'] = ResolversParentTypes['TableOfContents']> = ResolversObject<{
|
|
1997
|
-
labelType
|
|
1998
|
-
sequence
|
|
2541
|
+
labelType: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2542
|
+
sequence: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
1999
2543
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2000
2544
|
}>;
|
|
2001
2545
|
|
|
2002
2546
|
export type TeaserResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Teaser'] = ResolversParentTypes['Teaser']> = ResolversObject<{
|
|
2003
|
-
firstPublishedDate
|
|
2004
|
-
id
|
|
2005
|
-
image
|
|
2006
|
-
indicators
|
|
2007
|
-
metaAltLink
|
|
2008
|
-
metaLink
|
|
2009
|
-
metaPrefixText
|
|
2010
|
-
metaSuffixText
|
|
2011
|
-
publishedDate
|
|
2012
|
-
standfirst
|
|
2013
|
-
theme
|
|
2014
|
-
title
|
|
2015
|
-
type
|
|
2016
|
-
url
|
|
2547
|
+
firstPublishedDate: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2548
|
+
id: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2549
|
+
image: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2550
|
+
indicators: Resolver<Maybe<ResolversTypes['Indicators']>, ParentType, ContextType>;
|
|
2551
|
+
metaAltLink: Resolver<Maybe<ResolversTypes['MetaLink']>, ParentType, ContextType>;
|
|
2552
|
+
metaLink: Resolver<Maybe<ResolversTypes['MetaLink']>, ParentType, ContextType>;
|
|
2553
|
+
metaPrefixText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2554
|
+
metaSuffixText: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2555
|
+
publishedDate: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2556
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2557
|
+
theme: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2558
|
+
title: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2559
|
+
type: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2560
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<TeaserUrlArgs>>;
|
|
2017
2561
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2018
2562
|
}>;
|
|
2019
2563
|
|
|
2020
2564
|
export type TopperResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Topper'] = ResolversParentTypes['Topper']> = ResolversObject<{
|
|
2021
2565
|
__resolveType?: TypeResolveFn<'BasicTopper' | 'BrandedTopper' | 'DeepLandscapeTopper' | 'DeepPortraitTopper' | 'FullBleedTopper' | 'OpinionTopper' | 'PodcastTopper' | 'SplitTextTopper', ParentType, ContextType>;
|
|
2022
|
-
backgroundBox
|
|
2023
|
-
backgroundColour
|
|
2024
|
-
displayConcept
|
|
2025
|
-
followButtonVariant
|
|
2026
|
-
genreConcept
|
|
2027
|
-
headline
|
|
2028
|
-
intro
|
|
2029
|
-
textShadow
|
|
2566
|
+
backgroundBox: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2567
|
+
backgroundColour: Resolver<Maybe<ResolversTypes['TopperBackgroundColour']>, ParentType, ContextType>;
|
|
2568
|
+
displayConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2569
|
+
followButtonVariant: Resolver<Maybe<ResolversTypes['FollowButtonVariant']>, ParentType, ContextType>;
|
|
2570
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2571
|
+
headline: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2572
|
+
intro: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2573
|
+
textShadow: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2030
2574
|
}>;
|
|
2031
2575
|
|
|
2032
2576
|
export interface TopperBackgroundColourScalarConfig extends GraphQLScalarTypeConfig<ResolversTypes['TopperBackgroundColour'], any> {
|
|
@@ -2035,149 +2579,149 @@ export interface TopperBackgroundColourScalarConfig extends GraphQLScalarTypeCon
|
|
|
2035
2579
|
|
|
2036
2580
|
export type TopperWithBrandResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TopperWithBrand'] = ResolversParentTypes['TopperWithBrand']> = ResolversObject<{
|
|
2037
2581
|
__resolveType?: TypeResolveFn<'BrandedTopper' | 'DeepLandscapeTopper' | 'DeepPortraitTopper' | 'FullBleedTopper' | 'PodcastTopper' | 'SplitTextTopper', ParentType, ContextType>;
|
|
2038
|
-
brandConcept
|
|
2039
|
-
genreConcept
|
|
2582
|
+
brandConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2583
|
+
genreConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2040
2584
|
}>;
|
|
2041
2585
|
|
|
2042
2586
|
export type TopperWithHeadshotResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TopperWithHeadshot'] = ResolversParentTypes['TopperWithHeadshot']> = ResolversObject<{
|
|
2043
2587
|
__resolveType?: TypeResolveFn<'OpinionTopper' | 'PodcastTopper', ParentType, ContextType>;
|
|
2044
|
-
headshot
|
|
2588
|
+
headshot: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType, Partial<TopperWithHeadshotHeadshotArgs>>;
|
|
2045
2589
|
}>;
|
|
2046
2590
|
|
|
2047
2591
|
export type TopperWithImagesResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TopperWithImages'] = ResolversParentTypes['TopperWithImages']> = ResolversObject<{
|
|
2048
2592
|
__resolveType?: TypeResolveFn<'DeepLandscapeTopper' | 'DeepPortraitTopper' | 'FullBleedTopper' | 'SplitTextTopper', ParentType, ContextType>;
|
|
2049
|
-
fallbackImage
|
|
2050
|
-
images
|
|
2593
|
+
fallbackImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2594
|
+
images: Resolver<ReadonlyArray<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2051
2595
|
}>;
|
|
2052
2596
|
|
|
2053
2597
|
export type TopperWithPackageResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TopperWithPackage'] = ResolversParentTypes['TopperWithPackage']> = ResolversObject<{
|
|
2054
2598
|
__resolveType?: TypeResolveFn<'SplitTextTopper', ParentType, ContextType>;
|
|
2055
|
-
design
|
|
2599
|
+
design: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2056
2600
|
}>;
|
|
2057
2601
|
|
|
2058
2602
|
export type TopperWithThemeResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['TopperWithTheme'] = ResolversParentTypes['TopperWithTheme']> = ResolversObject<{
|
|
2059
2603
|
__resolveType?: TypeResolveFn<'BrandedTopper' | 'DeepLandscapeTopper' | 'DeepPortraitTopper' | 'FullBleedTopper' | 'OpinionTopper' | 'PodcastTopper' | 'SplitTextTopper', ParentType, ContextType>;
|
|
2060
|
-
isLargeHeadline
|
|
2061
|
-
layout
|
|
2604
|
+
isLargeHeadline: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2605
|
+
layout: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2062
2606
|
}>;
|
|
2063
2607
|
|
|
2064
2608
|
export type TweetResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Tweet'] = ResolversParentTypes['Tweet']> = ResolversObject<{
|
|
2065
|
-
html
|
|
2066
|
-
type
|
|
2609
|
+
html: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2610
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2067
2611
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2068
2612
|
}>;
|
|
2069
2613
|
|
|
2070
2614
|
export type VideoResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['Video'] = ResolversParentTypes['Video']> = ResolversObject<{
|
|
2071
|
-
accessLevel
|
|
2072
|
-
altStandfirst
|
|
2073
|
-
altTitle
|
|
2074
|
-
annotations
|
|
2075
|
-
body
|
|
2076
|
-
bodyXML
|
|
2077
|
-
byline
|
|
2078
|
-
canBeSyndicated
|
|
2079
|
-
commentsEnabled
|
|
2080
|
-
design
|
|
2081
|
-
editorialDesk
|
|
2082
|
-
firstPublishedDate
|
|
2083
|
-
id
|
|
2084
|
-
instantAlertConcept
|
|
2085
|
-
mainImage
|
|
2086
|
-
originatingParty
|
|
2087
|
-
publishedDate
|
|
2088
|
-
standfirst
|
|
2089
|
-
teaser
|
|
2090
|
-
title
|
|
2091
|
-
topper
|
|
2092
|
-
type
|
|
2093
|
-
url
|
|
2615
|
+
accessLevel: Resolver<Maybe<ResolversTypes['AccessLevel']>, ParentType, ContextType>;
|
|
2616
|
+
altStandfirst: Resolver<Maybe<ResolversTypes['AltStandfirst']>, ParentType, ContextType>;
|
|
2617
|
+
altTitle: Resolver<Maybe<ResolversTypes['AltTitle']>, ParentType, ContextType>;
|
|
2618
|
+
annotations: Resolver<Maybe<ReadonlyArray<Maybe<ResolversTypes['Concept']>>>, ParentType, ContextType>;
|
|
2619
|
+
body: Resolver<Maybe<ResolversTypes['RichText']>, ParentType, ContextType>;
|
|
2620
|
+
bodyXML: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2621
|
+
byline: Resolver<Maybe<ResolversTypes['StructuredContent']>, ParentType, ContextType, Partial<VideoBylineArgs>>;
|
|
2622
|
+
canBeSyndicated: Resolver<Maybe<ResolversTypes['CanBeSyndicated']>, ParentType, ContextType>;
|
|
2623
|
+
commentsEnabled: Resolver<Maybe<ResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
2624
|
+
design: Resolver<Maybe<ResolversTypes['Design']>, ParentType, ContextType>;
|
|
2625
|
+
editorialDesk: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2626
|
+
firstPublishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2627
|
+
id: Resolver<ResolversTypes['ID'], ParentType, ContextType>;
|
|
2628
|
+
instantAlertConcept: Resolver<Maybe<ResolversTypes['Concept']>, ParentType, ContextType>;
|
|
2629
|
+
mainImage: Resolver<Maybe<ResolversTypes['Image']>, ParentType, ContextType>;
|
|
2630
|
+
originatingParty: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2631
|
+
publishedDate: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2632
|
+
standfirst: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
|
2633
|
+
teaser: Resolver<Maybe<ResolversTypes['Teaser']>, ParentType, ContextType>;
|
|
2634
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2635
|
+
topper: Resolver<Maybe<ResolversTypes['Topper']>, ParentType, ContextType>;
|
|
2636
|
+
type: Resolver<ResolversTypes['ContentType'], ParentType, ContextType>;
|
|
2637
|
+
url: Resolver<ResolversTypes['String'], ParentType, ContextType, Partial<VideoUrlArgs>>;
|
|
2094
2638
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2095
2639
|
}>;
|
|
2096
2640
|
|
|
2097
2641
|
export type VideoReferenceResolvers<ContextType = QueryContext, ParentType extends ResolversParentTypes['VideoReference'] = ResolversParentTypes['VideoReference']> = ResolversObject<{
|
|
2098
|
-
id
|
|
2099
|
-
title
|
|
2100
|
-
type
|
|
2642
|
+
id: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2643
|
+
title: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2644
|
+
type: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
|
2101
2645
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2102
2646
|
}>;
|
|
2103
2647
|
|
|
2104
2648
|
export type Resolvers<ContextType = QueryContext> = ResolversObject<{
|
|
2105
|
-
AccessLevel
|
|
2106
|
-
Accessibility
|
|
2107
|
-
AltStandfirst
|
|
2108
|
-
AltTitle
|
|
2109
|
-
Article
|
|
2110
|
-
Audio
|
|
2111
|
-
BasicTopper
|
|
2112
|
-
BrandedTopper
|
|
2113
|
-
CanBeSyndicated
|
|
2114
|
-
Caption
|
|
2115
|
-
Clip
|
|
2116
|
-
ClipFormat
|
|
2117
|
-
ClipSet
|
|
2118
|
-
ClipSource
|
|
2119
|
-
Concept
|
|
2120
|
-
Content
|
|
2121
|
-
ContentPackage
|
|
2122
|
-
ContentType
|
|
2123
|
-
DeepLandscapeTopper
|
|
2124
|
-
DeepPortraitTopper
|
|
2125
|
-
Design
|
|
2126
|
-
Flourish
|
|
2127
|
-
FlourishFallback
|
|
2128
|
-
FollowButtonVariant
|
|
2129
|
-
FullBleedTopper
|
|
2130
|
-
Image
|
|
2131
|
-
ImageDesktop
|
|
2132
|
-
ImageFormat
|
|
2133
|
-
ImageLandscape
|
|
2134
|
-
ImageMobile
|
|
2135
|
-
ImagePortrait
|
|
2136
|
-
ImageSet
|
|
2137
|
-
ImageSource
|
|
2138
|
-
ImageSquare
|
|
2139
|
-
ImageSquareFTEdit
|
|
2140
|
-
ImageStandard
|
|
2141
|
-
ImageStandardInline
|
|
2142
|
-
ImageType
|
|
2143
|
-
ImageWide
|
|
2144
|
-
Indicators
|
|
2145
|
-
JSON
|
|
2146
|
-
LayoutImage
|
|
2147
|
-
LiveBlogPackage
|
|
2148
|
-
LiveBlogPost
|
|
2149
|
-
MainImage
|
|
2150
|
-
Media
|
|
2151
|
-
MetaLink
|
|
2152
|
-
Mutation
|
|
2153
|
-
OpinionTopper
|
|
2154
|
-
PackageDesign
|
|
2155
|
-
Picture
|
|
2156
|
-
PictureFullBleed
|
|
2157
|
-
PictureInline
|
|
2158
|
-
PictureStandard
|
|
2159
|
-
Placeholder
|
|
2160
|
-
PodcastTopper
|
|
2161
|
-
Query
|
|
2162
|
-
RawImage
|
|
2163
|
-
Recommended
|
|
2164
|
-
Reference
|
|
2165
|
-
RichText
|
|
2166
|
-
RichTextSource
|
|
2167
|
-
ScrollyImage
|
|
2168
|
-
SplitTextTopper
|
|
2169
|
-
StructuredContent
|
|
2170
|
-
TableOfContents
|
|
2171
|
-
Teaser
|
|
2172
|
-
Topper
|
|
2173
|
-
TopperBackgroundColour
|
|
2174
|
-
TopperWithBrand
|
|
2175
|
-
TopperWithHeadshot
|
|
2176
|
-
TopperWithImages
|
|
2177
|
-
TopperWithPackage
|
|
2178
|
-
TopperWithTheme
|
|
2179
|
-
Tweet
|
|
2180
|
-
Video
|
|
2181
|
-
VideoReference
|
|
2649
|
+
AccessLevel: GraphQLScalarType;
|
|
2650
|
+
Accessibility: AccessibilityResolvers<ContextType>;
|
|
2651
|
+
AltStandfirst: AltStandfirstResolvers<ContextType>;
|
|
2652
|
+
AltTitle: AltTitleResolvers<ContextType>;
|
|
2653
|
+
Article: ArticleResolvers<ContextType>;
|
|
2654
|
+
Audio: AudioResolvers<ContextType>;
|
|
2655
|
+
BasicTopper: BasicTopperResolvers<ContextType>;
|
|
2656
|
+
BrandedTopper: BrandedTopperResolvers<ContextType>;
|
|
2657
|
+
CanBeSyndicated: GraphQLScalarType;
|
|
2658
|
+
Caption: CaptionResolvers<ContextType>;
|
|
2659
|
+
Clip: ClipResolvers<ContextType>;
|
|
2660
|
+
ClipFormat: GraphQLScalarType;
|
|
2661
|
+
ClipSet: ClipSetResolvers<ContextType>;
|
|
2662
|
+
ClipSource: ClipSourceResolvers<ContextType>;
|
|
2663
|
+
Concept: ConceptResolvers<ContextType>;
|
|
2664
|
+
Content: ContentResolvers<ContextType>;
|
|
2665
|
+
ContentPackage: ContentPackageResolvers<ContextType>;
|
|
2666
|
+
ContentType: GraphQLScalarType;
|
|
2667
|
+
DeepLandscapeTopper: DeepLandscapeTopperResolvers<ContextType>;
|
|
2668
|
+
DeepPortraitTopper: DeepPortraitTopperResolvers<ContextType>;
|
|
2669
|
+
Design: DesignResolvers<ContextType>;
|
|
2670
|
+
Flourish: FlourishResolvers<ContextType>;
|
|
2671
|
+
FlourishFallback: FlourishFallbackResolvers<ContextType>;
|
|
2672
|
+
FollowButtonVariant: GraphQLScalarType;
|
|
2673
|
+
FullBleedTopper: FullBleedTopperResolvers<ContextType>;
|
|
2674
|
+
Image: ImageResolvers<ContextType>;
|
|
2675
|
+
ImageDesktop: ImageDesktopResolvers<ContextType>;
|
|
2676
|
+
ImageFormat: GraphQLScalarType;
|
|
2677
|
+
ImageLandscape: ImageLandscapeResolvers<ContextType>;
|
|
2678
|
+
ImageMobile: ImageMobileResolvers<ContextType>;
|
|
2679
|
+
ImagePortrait: ImagePortraitResolvers<ContextType>;
|
|
2680
|
+
ImageSet: ImageSetResolvers<ContextType>;
|
|
2681
|
+
ImageSource: ImageSourceResolvers<ContextType>;
|
|
2682
|
+
ImageSquare: ImageSquareResolvers<ContextType>;
|
|
2683
|
+
ImageSquareFTEdit: ImageSquareFtEditResolvers<ContextType>;
|
|
2684
|
+
ImageStandard: ImageStandardResolvers<ContextType>;
|
|
2685
|
+
ImageStandardInline: ImageStandardInlineResolvers<ContextType>;
|
|
2686
|
+
ImageType: GraphQLScalarType;
|
|
2687
|
+
ImageWide: ImageWideResolvers<ContextType>;
|
|
2688
|
+
Indicators: IndicatorsResolvers<ContextType>;
|
|
2689
|
+
JSON: GraphQLScalarType;
|
|
2690
|
+
LayoutImage: LayoutImageResolvers<ContextType>;
|
|
2691
|
+
LiveBlogPackage: LiveBlogPackageResolvers<ContextType>;
|
|
2692
|
+
LiveBlogPost: LiveBlogPostResolvers<ContextType>;
|
|
2693
|
+
MainImage: MainImageResolvers<ContextType>;
|
|
2694
|
+
Media: MediaResolvers<ContextType>;
|
|
2695
|
+
MetaLink: MetaLinkResolvers<ContextType>;
|
|
2696
|
+
Mutation: MutationResolvers<ContextType>;
|
|
2697
|
+
OpinionTopper: OpinionTopperResolvers<ContextType>;
|
|
2698
|
+
PackageDesign: GraphQLScalarType;
|
|
2699
|
+
Picture: PictureResolvers<ContextType>;
|
|
2700
|
+
PictureFullBleed: PictureFullBleedResolvers<ContextType>;
|
|
2701
|
+
PictureInline: PictureInlineResolvers<ContextType>;
|
|
2702
|
+
PictureStandard: PictureStandardResolvers<ContextType>;
|
|
2703
|
+
Placeholder: PlaceholderResolvers<ContextType>;
|
|
2704
|
+
PodcastTopper: PodcastTopperResolvers<ContextType>;
|
|
2705
|
+
Query: QueryResolvers<ContextType>;
|
|
2706
|
+
RawImage: RawImageResolvers<ContextType>;
|
|
2707
|
+
Recommended: RecommendedResolvers<ContextType>;
|
|
2708
|
+
Reference: ReferenceResolvers<ContextType>;
|
|
2709
|
+
RichText: RichTextResolvers<ContextType>;
|
|
2710
|
+
RichTextSource: GraphQLScalarType;
|
|
2711
|
+
ScrollyImage: ScrollyImageResolvers<ContextType>;
|
|
2712
|
+
SplitTextTopper: SplitTextTopperResolvers<ContextType>;
|
|
2713
|
+
StructuredContent: StructuredContentResolvers<ContextType>;
|
|
2714
|
+
TableOfContents: TableOfContentsResolvers<ContextType>;
|
|
2715
|
+
Teaser: TeaserResolvers<ContextType>;
|
|
2716
|
+
Topper: TopperResolvers<ContextType>;
|
|
2717
|
+
TopperBackgroundColour: GraphQLScalarType;
|
|
2718
|
+
TopperWithBrand: TopperWithBrandResolvers<ContextType>;
|
|
2719
|
+
TopperWithHeadshot: TopperWithHeadshotResolvers<ContextType>;
|
|
2720
|
+
TopperWithImages: TopperWithImagesResolvers<ContextType>;
|
|
2721
|
+
TopperWithPackage: TopperWithPackageResolvers<ContextType>;
|
|
2722
|
+
TopperWithTheme: TopperWithThemeResolvers<ContextType>;
|
|
2723
|
+
Tweet: TweetResolvers<ContextType>;
|
|
2724
|
+
Video: VideoResolvers<ContextType>;
|
|
2725
|
+
VideoReference: VideoReferenceResolvers<ContextType>;
|
|
2182
2726
|
}>;
|
|
2183
2727
|
|