OBJECT

ViewedVideosEdge

An element in a paginated list of viewing histories, and its metadata.

link GraphQL Schema definition

1type ViewedVideosEdge {
2
3# Viewing history of user against the video.
4history: VideoViewingHistory!
5
6# Video this viewing history belongs to.
7node: Video!
8
9}