search
query Search(
$country: CountryCode!
$limit: Int
$resultsId: String
$stationId: UUID!
$term: String
$viewerId: UUID
) {
search(
input: {
country: $country
limit: $limit
resultsId: $resultsId
stationId: $stationId
term: $term
viewerId: $viewerId
}
) {
results {
__typename
... on NormalizedShow {
id
title
}
... on NormalizedVideo {
id
show: normalizedShow {
title
}
title
}
}
resultsId
}
}