Skip to main content

getShowExtras

query GetShowExtras(
$country: CountryCode!
$limit: Int
$season: Int
$showId: String
$showSlug: String
$skip: Int
$stationId: UUID!
) {
videos: normalizedVideos(
country: $country
filters: {
limit: $limit
season: $season
showId: $showId
showSlug: $showSlug
skip: $skip
type: [CLIP, PREVIEW]
}
stationId: $stationId
) {
contentRating
descriptionLong
duration
embedCodeVideoId
episodeNumber
id
images {
profile
transformTemplate
}
isAvailable
isPublicAvailable
premiereDate
season
show: normalizedShow(stationId: $stationId, country: $country) {
id
showType
slug
}
slug
title
titleShort
videoType
}
}