OBJECT

VideoShelfConnection

A paginated list of video shelves with metadata.

link GraphQL Schema definition

1type VideoShelfConnection {
2
3# The list of video shelves available.
4edges: [VideoShelfEdge!]
5
6# The max number of shelves configuration.
7maxShelfCount: Int
8
9# Information about this page of video shelves.
10pageInfo: PageInfo!
11
12# The total number of shelves available.
13totalCount: Int!
14
15}