Skip to main content

getWatchPositions

query GetWatchPositions(
$country: CountryCode!
$stationId: UUID!
$videoId: [UUID!]
$viewerId: String!
) {
videos: viewerWatchHistory(
viewerId: $viewerId
filters: { distinct: videoId, videoId: $videoId }
) {
video: normalizedVideo(country: $country, stationId: $stationId) {
id
watchPosition(viewerId: $viewerId) {
completed
eventId
watchTime
}
}
}
}