OBJECT

SearchForResultVideos

Contains video search results.

link GraphQL Schema definition

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