Files
FastAnime/viu/assets/graphql/anilist/queries/notifications.gql
2025-08-16 16:18:41 +03:00

29 lines
451 B
GraphQL

query {
Page(perPage: 5) {
pageInfo {
total
}
notifications(resetNotificationCount: true, type: AIRING) {
... on AiringNotification {
id
type
episode
contexts
createdAt
media {
id
idMal
title {
romaji
english
}
coverImage {
medium
large
}
}
}
}
}
}