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