OBJECT
SearchForResultVideos
Contains video search results.
link GraphQL Schema definition
1 type SearchForResultVideos { 2 3 # Cursor for fetching the next page of results. 4 : String 5 6 # List of edges containing video results and trackingIDs. 7 : [SearchForEdge!]! 8 9 # List of matching video results. 10 : [Video!] 11 12 # Information about this page. 13 : PageInfo! 14 15 # Order in which the result should be displayed. 16 : Int! 17 18 # Total number of results. 19 : Int! 20 21 }