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
//! GraphQL query string constants for the AniList API.
//!
//! All queries target the AniList GraphQL v2 schema.
//! Media fields are kept identical across queries for consistent deserialization.
// ── Shared field fragments (inlined into each query) ──────────────────────────
//
// AniList does not support named fragments across request boundaries, so we
// inline the same field list into every query constant.
/// Search anime with an optional `formatIn` filter.
///
/// Variables:
/// - `$query: String` — search string
/// - `$page: Int`
/// - `$perPage: Int`
/// - `$formatIn: [MediaFormat]` — e.g. `["MOVIE"]`, or `null` for any format
pub const SEARCH_ANIME: &str = r#"
query SearchAnime($query: String, $page: Int, $perPage: Int, $formatIn: [MediaFormat]) {
Page(page: $page, perPage: $perPage) {
pageInfo {
total
currentPage
lastPage
hasNextPage
perPage
}
media(search: $query, type: ANIME, format_in: $formatIn, sort: [SEARCH_MATCH, POPULARITY_DESC]) {
id
title { romaji english native }
description(asHtml: false)
startDate { year month day }
coverImage { large extraLarge }
bannerImage
genres
popularity
averageScore
episodes
duration
status
format
countryOfOrigin
isAdult
}
}
}
"#;
/// List trending anime (sorted by `TRENDING_DESC`) with an optional format filter.
///
/// Variables:
/// - `$page: Int`
/// - `$perPage: Int`
/// - `$formatIn: [MediaFormat]`
pub const LIST_TRENDING_ANIME: &str = r#"
query ListTrendingAnime($page: Int, $perPage: Int, $formatIn: [MediaFormat]) {
Page(page: $page, perPage: $perPage) {
pageInfo {
total
currentPage
lastPage
hasNextPage
perPage
}
media(type: ANIME, format_in: $formatIn, sort: [TRENDING_DESC]) {
id
title { romaji english native }
description(asHtml: false)
startDate { year month day }
coverImage { large extraLarge }
bannerImage
genres
popularity
averageScore
episodes
duration
status
format
countryOfOrigin
isAdult
}
}
}
"#;
/// List popular anime (sorted by `POPULARITY_DESC`) with an optional format filter.
///
/// Variables:
/// - `$page: Int`
/// - `$perPage: Int`
/// - `$formatIn: [MediaFormat]`
pub const LIST_POPULAR_ANIME: &str = r#"
query ListPopularAnime($page: Int, $perPage: Int, $formatIn: [MediaFormat]) {
Page(page: $page, perPage: $perPage) {
pageInfo {
total
currentPage
lastPage
hasNextPage
perPage
}
media(type: ANIME, format_in: $formatIn, sort: [POPULARITY_DESC]) {
id
title { romaji english native }
description(asHtml: false)
startDate { year month day }
coverImage { large extraLarge }
bannerImage
genres
popularity
averageScore
episodes
duration
status
format
countryOfOrigin
isAdult
}
}
}
"#;
/// List top-scored anime (sorted by `SCORE_DESC`) with an optional format filter.
///
/// Variables:
/// - `$page: Int`
/// - `$perPage: Int`
/// - `$formatIn: [MediaFormat]`
pub const LIST_TOP_SCORED_ANIME: &str = r#"
query ListTopScoredAnime($page: Int, $perPage: Int, $formatIn: [MediaFormat]) {
Page(page: $page, perPage: $perPage) {
pageInfo {
total
currentPage
lastPage
hasNextPage
perPage
}
media(type: ANIME, format_in: $formatIn, sort: [SCORE_DESC]) {
id
title { romaji english native }
description(asHtml: false)
startDate { year month day }
coverImage { large extraLarge }
bannerImage
genres
popularity
averageScore
episodes
duration
status
format
countryOfOrigin
isAdult
}
}
}
"#;
/// Fetch full details for a single anime by AniList ID.
///
/// Variables:
/// - `$id: Int!`
pub const MEDIA_DETAILS: &str = r#"
query MediaDetails($id: Int!) {
Media(id: $id, type: ANIME) {
id
title { romaji english native }
description(asHtml: false)
startDate { year month day }
endDate { year month day }
coverImage { large extraLarge }
bannerImage
genres
popularity
averageScore
episodes
duration
status
format
countryOfOrigin
isAdult
season
seasonYear
studios(isMain: true) {
nodes { name }
}
}
}
"#;
/// Search staff (real people) by name.
///
/// Variables:
/// - `$query: String`
/// - `$page: Int`
/// - `$perPage: Int`
pub const SEARCH_STAFF: &str = r#"
query SearchStaff($query: String, $page: Int, $perPage: Int) {
Page(page: $page, perPage: $perPage) {
pageInfo {
total
currentPage
lastPage
hasNextPage
perPage
}
staff(search: $query, sort: [SEARCH_MATCH]) {
id
name { full native }
image { large }
description
primaryOccupations
languageV2
}
}
}
"#;
/// Fetch full details for a single staff member by AniList ID.
///
/// Variables:
/// - `$id: Int!`
pub const STAFF_DETAILS: &str = r#"
query StaffDetails($id: Int!) {
Staff(id: $id) {
id
name { full native alternative }
image { large }
description
primaryOccupations
gender
dateOfBirth { year month day }
dateOfDeath { year month day }
homeTown
siteUrl
languageV2
}
}
"#;