OBJECT

GameFollow

Game followed by a User.

link GraphQL Schema definition

1type GameFollow {
2
3# Represents when this relationship was established.
4followedAt: Time!
5
6# The game that is followed.
7game: Game
8
9# The user who is following.
10user: User
11
12}