OBJECT
RecommendedGamesConnection
The response of a recommended games request which contains a list of recommended games.
link GraphQL Schema definition
1 type RecommendedGamesConnection { 2 3 # A list of recommended games. 4 : [RecommendedGamesEdge!] 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 }