OBJECT

StreamRecommendationEdge

The content to render in a live recommendation item.

link GraphQL Schema definition

1type StreamRecommendationEdge {
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# Unique id per stream used in client tracking.
11trackingID: ID!
12
13}