OBJECT

VideoShelf

A video shelf contains items (clips, videos) from a user to display on their videos page.

link GraphQL Schema definition

1type VideoShelf {
2
3# The associated collection if the shelf items are from a specified collection.
4collection: Collection
5
6# A description of what the video shelf contains.
7description: String
8
9# The associated game with the shelf if the items are from a specified game.
10game: Game
11
12# ID of the video shelf.
13id: ID!
14
15# Videos/clips in the video shelf.
16items: [VideoShelfItem!]
17
18# The title of the video shelf.
19title: String!
20
21# The type of items the video shelf contains.
22type: VideoShelfType!
23
24}