OBJECT

RecommendedGamesEdge

The content to render from a recommended game.

link GraphQL Schema definition

1type RecommendedGamesEdge {
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 game content to render.
8node: Game
9
10# Globally unique id per category used in client tracking.
11trackingID: ID!
12
13}