OBJECT

GameConnection

Paginated list of Games. Implements the Relay cursor connections specification. See: https://facebook.github.io/relay/graphql/connections.htm.

link GraphQL Schema definition

1type GameConnection {
2
3# The list of games to display.
4edges: [GameEdge!]
5
6pageInfo: PageInfo!
7
8}