watch
mutation Watch(
$deviceId: String!
$deviceType: DeviceType
$eventId: String
$stationId: UUID!
$videoId: String!
$videoMembershipTier: MembershipTier
$viewerId: UUID!
$watchTime: Int!
) {
watch: upsertWatchHistory(
input: {
deviceId: $deviceId
deviceType: $deviceType
eventId: $eventId
stationId: $stationId
videoId: $videoId
videoMembershipTier: $videoMembershipTier
viewerId: $viewerId
watchTime: $watchTime
}
) {
eventId
}
}