-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathschema.ts
518 lines (438 loc) · 11.7 KB
/
schema.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: FamousDetails
// ====================================================
export interface FamousDetails_famous_cast_movies {
__typename: "FamousCastMovie";
voteAverage: number | null;
posterPath: string | null;
voteCount: number | null;
title: string | null;
id: number;
}
export interface FamousDetails_famous_cast_tvShows {
__typename: "FamousCastTVShow";
voteAverage: number | null;
posterPath: string | null;
voteCount: number | null;
title: string | null;
id: number;
}
export interface FamousDetails_famous_cast {
__typename: "FamousCast";
movies: FamousDetails_famous_cast_movies[];
tvShows: FamousDetails_famous_cast_tvShows[];
}
export interface FamousDetails_famous {
__typename: "Famous";
knownForDepartment: string | null;
placeOfBirth: string | null;
biography: string | null;
birthday: string | null;
deathday: string | null;
images: string[];
cast: FamousDetails_famous_cast;
}
export interface FamousDetails {
famous: FamousDetails_famous;
}
export interface FamousDetailsVariables {
id: number;
language?: ISO6391Language | null;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: MovieDetails
// ====================================================
export interface MovieDetails_movie_cast {
__typename: "MediaCast";
image: string | null;
subText: string | null;
name: string | null;
id: number;
}
export interface MovieDetails_movie_crew {
__typename: "MediaCrew";
image: string | null;
name: string | null;
id: number;
subText: string | null;
}
export interface MovieDetails_movie_videos_thumbnail {
__typename: "Thumbnail";
/**
* 120x90
*/
extraSmall: string | null;
}
export interface MovieDetails_movie_videos {
__typename: "MediaVideo";
thumbnail: MovieDetails_movie_videos_thumbnail | null;
key: string | null;
id: string | null;
}
export interface MovieDetails_movie_similar {
__typename: "SimilarMovie";
voteAverage: number | null;
posterPath: string | null;
voteCount: number | null;
title: string | null;
id: number;
}
export interface MovieDetails_movie {
__typename: "Movie";
genres: string[];
voteAverage: number | null;
voteCount: number | null;
images: string[];
backdropPath: string | null;
id: number;
originalTitle: string | null;
overview: string | null;
title: string | null;
releaseDate: string | null;
budget: number | null;
revenue: number | null;
spokenLanguages: string[];
productionCountries: string[];
cast: MovieDetails_movie_cast[];
crew: MovieDetails_movie_crew[];
videos: MovieDetails_movie_videos[];
similar: MovieDetails_movie_similar[];
}
export interface MovieDetails {
movie: MovieDetails_movie;
}
export interface MovieDetailsVariables {
id: number;
language?: ISO6391Language | null;
includeVoteAverage: boolean;
includeGenres: boolean;
includeVoteCount: boolean;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: TVShowDetails
// ====================================================
export interface TVShowDetails_tvShow_createdBy {
__typename: "CreatedBy";
image: string | null;
name: string | null;
id: number;
}
export interface TVShowDetails_tvShow_videos_thumbnail {
__typename: "Thumbnail";
/**
* 120x90
*/
extraSmall: string | null;
}
export interface TVShowDetails_tvShow_videos {
__typename: "MediaVideo";
thumbnail: TVShowDetails_tvShow_videos_thumbnail | null;
key: string | null;
id: string | null;
}
export interface TVShowDetails_tvShow_cast {
__typename: "MediaCast";
image: string | null;
subText: string | null;
name: string | null;
id: number;
}
export interface TVShowDetails_tvShow_crew {
__typename: "MediaCrew";
image: string | null;
name: string | null;
id: number;
subText: string | null;
}
export interface TVShowDetails_tvShow_similar {
__typename: "SimilarTVShow";
voteAverage: number | null;
posterPath: string | null;
voteCount: number | null;
title: string | null;
id: number;
}
export interface TVShowDetails_tvShow {
__typename: "TVShow";
genres: string[];
voteAverage: number | null;
voteCount: number | null;
images: string[];
createdBy: TVShowDetails_tvShow_createdBy[];
episodeRunTime: number[];
firstAirDate: string | null;
lastAirDate: string | null;
title: string | null;
id: number;
originalLanguage: string | null;
originalName: string | null;
originCountry: string[];
overview: string | null;
videos: TVShowDetails_tvShow_videos[];
cast: TVShowDetails_tvShow_cast[];
crew: TVShowDetails_tvShow_crew[];
similar: TVShowDetails_tvShow_similar[];
numberOfEpisodes: number | null;
numberOfSeasons: number | null;
}
export interface TVShowDetails {
tvShow: TVShowDetails_tvShow;
}
export interface TVShowDetailsVariables {
id: number;
language?: ISO6391Language | null;
includeVoteAverage: boolean;
includeGenres: boolean;
includeVoteCount: boolean;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: SearchFamous
// ====================================================
export interface SearchFamous_search_items {
__typename: "SearchFamousItem";
image: string | null;
title: string | null;
id: number | null;
}
export interface SearchFamous_search {
__typename: "SearchFamousResult";
items: SearchFamous_search_items[];
hasMore: boolean;
}
export interface SearchFamous {
search: SearchFamous_search;
}
export interface SearchFamousVariables {
input: SearchInput;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: SearchMovies
// ====================================================
export interface SearchMovies_search_items {
__typename: "SearchMovieItem";
image: string | null;
title: string | null;
id: number;
}
export interface SearchMovies_search {
__typename: "SearchMoviesResult";
items: SearchMovies_search_items[];
hasMore: boolean;
}
export interface SearchMovies {
search: SearchMovies_search;
}
export interface SearchMoviesVariables {
input: SearchInput;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: SearchTVShows
// ====================================================
export interface SearchTVShows_search_items {
__typename: "SearchTVShowItem";
image: string | null;
title: string | null;
id: number;
}
export interface SearchTVShows_search {
__typename: "SearchTVShowsResult";
hasMore: boolean;
items: SearchTVShows_search_items[];
}
export interface SearchTVShows {
search: SearchTVShows_search;
}
export interface SearchTVShowsVariables {
input: SearchInput;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: TvShowSeason
// ====================================================
export interface TvShowSeason_tvShowSeason_episodes {
__typename: "Episode";
airDate: string | null;
id: number;
name: string | null;
overview: string | null;
stillPath: string | null;
voteAverage: number | null;
voteCount: number | null;
}
export interface TvShowSeason_tvShowSeason {
__typename: "TVShowSeason";
episodes: TvShowSeason_tvShowSeason_episodes[];
name: string | null;
overview: string | null;
posterPath: string | null;
voteAverage: number | null;
}
export interface TvShowSeason {
tvShowSeason: TvShowSeason_tvShowSeason;
}
export interface TvShowSeasonVariables {
input: TVShowSeasonInput;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: QueryTrendingFamous
// ====================================================
export interface QueryTrendingFamous_trendingFamous_items {
__typename: "TrendingFamousItem";
profilePath: string | null;
name: string | null;
id: number | null;
}
export interface QueryTrendingFamous_trendingFamous {
__typename: "TrendingFamousResult";
hasMore: boolean;
items: QueryTrendingFamous_trendingFamous_items[];
}
export interface QueryTrendingFamous {
trendingFamous: QueryTrendingFamous_trendingFamous;
}
export interface QueryTrendingFamousVariables {
page: number;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: QueryNews
// ====================================================
export interface QueryNews_news_items {
__typename: "NewsArticle";
url: string | null;
title: string | null;
source: string | null;
publishedAt: string | null;
image: string | null;
id: string | null;
description: string | null;
}
export interface QueryNews_news {
__typename: "NewsResult";
items: QueryNews_news_items[];
hasMore: boolean;
}
export interface QueryNews {
news: QueryNews_news;
}
export interface QueryNewsVariables {
page: number;
language: NewsLanguage;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
// ====================================================
// GraphQL query operation: QueryQuestions
// ====================================================
export interface QueryQuestions_quiz {
__typename: "QuizQuestion";
correctAnswer: string;
category: string;
question: string;
options: string[];
type: string;
}
export interface QueryQuestions {
quiz: QueryQuestions_quiz[];
}
export interface QueryQuestionsVariables {
input: QuizInput;
}
/* tslint:disable */
/* eslint-disable */
// @generated
// This file was automatically generated and should not be edited.
//==============================================================
// START Enums and Input Objects
//==============================================================
export enum ISO6391Language {
en = "en",
es = "es",
pt = "pt",
}
export enum NewsLanguage {
AR = "AR",
DE = "DE",
EN = "EN",
ES = "ES",
FR = "FR",
HE = "HE",
IT = "IT",
NL = "NL",
NO = "NO",
PT = "PT",
RU = "RU",
SE = "SE",
ZH = "ZH",
}
export enum QuizQuestionCategory {
MIXED = "MIXED",
MOVIE = "MOVIE",
TV = "TV",
}
export enum QuizQuestionDifficulty {
EASY = "EASY",
HARD = "HARD",
MEDIUM = "MEDIUM",
MIXED = "MIXED",
}
export enum QuizQuestionType {
BOOLEAN = "BOOLEAN",
MIXED = "MIXED",
MULTIPLE = "MULTIPLE",
}
export interface QuizInput {
difficulty: QuizQuestionDifficulty;
type: QuizQuestionType;
category: QuizQuestionCategory;
numberOfQuestions: number;
}
export interface SearchInput {
page: number;
query: string;
language?: ISO6391Language | null;
}
export interface TVShowSeasonInput {
id: number;
season: number;
language?: ISO6391Language | null;
}
//==============================================================
// END Enums and Input Objects
//==============================================================