OBJECT

VideoConnection

A paginated list of videos, and its metadata.

link GraphQL Schema definition

1type VideoConnection {
2
3# The list of videos in this page.
4edges: [VideoEdge]
5
6# Information about this page of videos.
7pageInfo: PageInfo
8
9# The total number of videos in the larger collection.
10totalCount: Int
11
12}