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