query SearchShows(
$country: CountryCode!
$limit: Int
$skip: Int
$stationId: UUID!
$term: String!
) {
shows: searchShows(
search: $term
country: $country
stationId: $stationId
filters: { hasAvailableFullLengthContent: true, limit: $limit, skip: $skip }
) {
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
updatedAt
}
}