query GetLikes(
$contentType: ContentType
$country: CountryCode!
$limit: Int
$skip: Int
$stationId: UUID!
$type: LikeType
$viewerId: String!
) {
likes: viewerLikes(
filters: {
contentType: $contentType
limit: $limit
skip: $skip
type: $type
}
viewerId: $viewerId
) {
id
show: normalizedShow(country: $country, stationId: $stationId) {
contentRating
descriptionLong
descriptionShort
genre {
name
slug
type
}
genreVibes {
name
slug
type
}
id
images {
profile
transformTemplate
}
isAvailable
language
languageName
passportLevel
productionLocale
productionLocaleFlagTemplate
runtime
seasons {
episodeCount
seasonNumber
}
showType
slug
title
}
showId
video: normalizedVideo(country: $country, stationId: $stationId) {
contentAdvisory
contentRating
descriptionLong
descriptionShort
duration
embedCodeVideoId
episodeNumber
googleAdManagerVastAdTagUrl
id
isAvailable
images {
profile
transformTemplate
}
isPublicAvailable
premiereDate
season
show: normalizedShow(stationId: $stationId, country: $country) {
genre {
name
slug
type
}
genreVibes {
name
slug
type
}
id
showType
slug
title
}
slug
title
titleShort
upNextDuration
upNextStart
videoType
}
type
videoId
}
}