OBJECT

SearchStreamEdge

An element in a paginated list of videos, and its metadata.

link GraphQL Schema definition

1type SearchStreamEdge {
2
3# The cursor of the channel record list. This is same for one page.
4cursor: Cursor!
5
6# The channel result returned.
7node: Stream!
8
9}