Skip to main content

getRecommendedShows

query GetRecommendedShows(
$country: CountryCode!
$limit: Int
$recommendationsId: String
$stationId: UUID!
$viewerId: UUID!
) {
recommendations: recommendedShows(
input: {
country: $country
limit: $limit
recommendationsId: $recommendationsId
stationId: $stationId
viewerId: $viewerId
}
) {
recommendationsId
shows: normalizedShows {
contentRating
descriptionLong
descriptionShort
genre {
name
slug
type
}
genreVibes {
name
slug
type
}
id
isAvailable
images {
profile
transformTemplate
}
languageName
passportLevel
productionLocale
productionLocaleFlagTemplate
runtime
seasons {
episodeCount
seasonNumber
}
showType
slug
title
}
}
}