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