OBJECT

RecommendedGamesConnection

The response of a recommended games request which contains a list of recommended games.

link GraphQL Schema definition

1type RecommendedGamesConnection {
2
3# A list of recommended games.
4edges: [RecommendedGamesEdge!]
5
6# Per-generation tracking id for identifying a recommendation model.
7generationID: ID!
8
9# As pagination is currently not supported by the backend, this will always be the
10# zero value.
11pageInfo: PageInfo!
12
13# Unique tracking id per response.
14responseID: ID!
15
16}