OBJECT

RecommendedStreamsConnection

The response of a recommended streams request which contains a list of recommended streams.

link GraphQL Schema definition

1type RecommendedStreamsConnection {
2
3# A list of recommended streams.
4edges: [RecommendedStreamsEdge!]
5
6# Per-generation tracking id for identifying a recommendation model.
7generationID: ID!
8
9# As pagination is currently not supported by the backend, this will always be the
10# zero value.
11pageInfo: PageInfo!
12
13# Unique tracking id per response.
14responseID: ID!
15
16}