OBJECT

GameApplication

GameApplication is an application to associate a game with an organization.

link GraphQL Schema definition

1type GameApplication {
2
3# Creation time.
4createdAt: Time!
5
6# Game that is added in the application.
7game: Game!
8
9# ID of the game application, stored in RBAC.
10id: ID!
11
12# Organization that is going to be associated with the game.
13organization: Organization!
14
15}