OBJECT

GameEdge

Contains information about a Game's relationship to a given page (connection), and the Game itself.

link GraphQL Schema definition

1type GameEdge {
2
3cursor: Cursor
4
5node: Game
6
7# Unique id per game response item, used by clients to attribute displays/clicks
8# to items.
9trackingID: ID
10
11}