mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
14 lines
254 B
GraphQL
14 lines
254 B
GraphQL
query ($id: Int, $type: MediaType) {
|
|
Page {
|
|
media(id: $id, sort: POPULARITY_DESC, type: $type) {
|
|
airingSchedule(notYetAired: true) {
|
|
nodes {
|
|
airingAt
|
|
timeUntilAiring
|
|
episode
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|