query GetWatchHistoryShows(
$country: CountryCode!
$limit: Int
$skip: Int
$stationId: UUID!
$viewerId: String!
) {
shows: viewerWatchHistory(
viewerId: $viewerId
filters: { distinct: showId, limit: $limit, skip: $skip }
) {
show: normalizedShow(country: $country, stationId: $stationId) {
contentRating
descriptionLong
descriptionShort
genre {
name
slug
type
}
genreVibes {
name
slug
type
}
id
isAvailable
images {
profile
transformTemplate
}
languageName
passportLevel
productionLocale
productionLocaleFlagTemplate
runtime
seasons {
episodeCount
seasonNumber
}
slug
showType
title
}
}
}