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