ENUM

VideoShelfType

The type of item returned in the video shelf.

link GraphQL Schema definition

1enum VideoShelfType {
2
3# Broadcasts sorted by recency.
4LATEST_BROADCASTS
5
6# Non broadcasts sorted by recency.
7LATEST_NON_BROADCASTS
8
9# Clips created within 30 days sorted by views.
10TOP_CLIPS
11
12# Videos under 30 minutes sorted by recency.
13SHORT_VIDEOS
14
15# Videos over 30 minutes sorted by recency.
16LONG_VIDEOS
17
18# Videos marked with a specified game sorted by recency.
19GAME
20
21# Videos from a specified collection.
22COLLECTION
23
24# All videos.
25ALL_VIDEOS
26}