OBJECT
Recommendations
link GraphQL Schema definition
1 type Recommendations { 2 3 # The recommended community gifting quantities to display to the user when they 4 # intend to gift subscriptions. 5 # The trackingID is not a unique ID for the recommendations, but a passthrough 6 # value for backend logging to link to purchases made by the user after being 7 # shown these recommendations. 8 (: ID!): [Int!] 9 10 # A list of recommended friends. 11 : [RecommendedFriend] 12 13 # Live recommendations. 14 # recRequestID is a tracking id created by the caller. Should be unique per 15 # request. 16 ( 17 : Int, 18 : String!, 19 : String!, 20 : String, 21 : RecommendationsContext 22 ): LiveRecommendationConnection 23 24 # Stream recommendations. 25 ( 26 : Int 27 ): RecommendedStreamConnection @deprecated( reason: "use a specific recommendation instead" ) 28 29 # A list of recommended VODs. 30 ( 31 : Int, 32 : Cursor 33 ): RecommendedVideoConnection @deprecated( reason: "this feature has been sunset" ) 34 35 }