OBJECT

RecommendedStreamsEdge

The content to render from a recommended stream.

link GraphQL Schema definition

1type RecommendedStreamsEdge {
2
3# As pagination is currently not supported by the backend, this will always be the
4# zero value.
5cursor: Cursor!
6
7# The underlying stream content to render.
8node: Stream
9
10# Globally unique id per stream used in client tracking.
11trackingID: ID!
12
13}