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