OBJECT

CollectionConnection

A paginated list of videos, and its metadata.

link GraphQL Schema definition

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