OBJECT

UnfollowGamePayload

UnfollowGamePayload is the response from unfollowing a game.

link GraphQL Schema definition

1type UnfollowGamePayload {
2
3# The deleted follow relationship, if one existed beforehand.
4follow: GameFollow
5
6# The game that was unfollowed
7# game.self.follow should now be null.
8game: Game
9
10}