OBJECT

LiveRecommendationConnection

link GraphQL Schema definition

1type LiveRecommendationConnection {
2
3# The list of recommended streams with metadata to display.
4edges: [StreamRecommendationEdge!]
5
6# Per-generation tracking id for identifying a recommendation model.
7generationID: String!
8
9# The list of recommended streams to display.
10nodes: [Stream]! @deprecated( reason: "To be replaced by edges which also includes a required trackingID." )
11
12# Unique tracking id per response.
13responseID: String!
14
15}