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
query AiringSchedule(
$id: Int
$mediaId: Int
$episode: Int
$airingAt: Int
$notYetAired: Boolean = true
$id_not: Int
$id_in: [Int]
$id_not_in: [Int]
$mediaId_not: Int
$mediaId_in: [Int]
$mediaId_not_in: [Int]
$episode_not: Int
$episode_in: [Int]
$episode_not_in: [Int]
$episode_greater: Int
$episode_lesser: Int
$airingAt_greater: Int
$airingAt_lesser: Int
$sort: [AiringSort] = [TIME]
$page: Int = 1
$perPage: Int = 20
# HTML rendering options
$description_as_html: Boolean = false
) {
Page(page: $page, perPage: $perPage) {
pageInfo {
hasNextPage
}
airingSchedules(
id: $id
mediaId: $mediaId
episode: $episode
airingAt: $airingAt
notYetAired: $notYetAired
id_not: $id_not
id_in: $id_in
id_not_in: $id_not_in
mediaId_not: $mediaId_not
mediaId_in: $mediaId_in
mediaId_not_in: $mediaId_not_in
episode_not: $episode_not
episode_in: $episode_in
episode_not_in: $episode_not_in
episode_greater: $episode_greater
episode_lesser: $episode_lesser
airingAt_greater: $airingAt_greater
airingAt_lesser: $airingAt_lesser
sort: $sort
) {
id
airingAt
timeUntilAiring
episode
mediaId
media {
id
idMal
title {
romaji
english
native
userPreferred
}
type
format
status
description(asHtml: $description_as_html)
season
seasonYear
episodes
duration
coverImage {
extraLarge
large
medium
color
}
bannerImage
genres
averageScore
popularity
studios(isMain: true) {
edges {
node {
id
name
}
}
}
isAdult
countryOfOrigin
siteUrl
nextAiringEpisode {
airingAt
timeUntilAiring
episode
}
}
}
}
}