mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-05 20:40:09 -08:00
61 lines
1018 B
GraphQL
61 lines
1018 B
GraphQL
query ($id: Int, $page: Int, $per_page: Int) {
|
|
Page(perPage: $per_page, page: $page) {
|
|
recommendations(mediaRecommendationId: $id) {
|
|
media {
|
|
id
|
|
idMal
|
|
format
|
|
mediaListEntry {
|
|
status
|
|
id
|
|
progress
|
|
}
|
|
title {
|
|
english
|
|
romaji
|
|
native
|
|
}
|
|
coverImage {
|
|
medium
|
|
large
|
|
}
|
|
description
|
|
episodes
|
|
duration
|
|
trailer {
|
|
site
|
|
id
|
|
}
|
|
genres
|
|
synonyms
|
|
averageScore
|
|
popularity
|
|
streamingEpisodes {
|
|
title
|
|
thumbnail
|
|
}
|
|
favourites
|
|
tags {
|
|
name
|
|
}
|
|
startDate {
|
|
year
|
|
month
|
|
day
|
|
}
|
|
endDate {
|
|
year
|
|
month
|
|
day
|
|
}
|
|
status
|
|
nextAiringEpisode {
|
|
timeUntilAiring
|
|
airingAt
|
|
episode
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|