OBJECT

GameSelfConnection

The relationship between the authenticated user and a game.

link GraphQL Schema definition

1type GameSelfConnection {
2
3# The current user's follow relationship with this game.
4follow: GameFollow
5
6# Whether or not the current user has a link to this game that can be used
7# for Drops.
8isDropsLinked: Boolean
9
10}