GameEventGameResult
The result of a contestant in the game have been determined
type GameEventGameResult {
contestant: GameContestant!
rank: Int!
type: GameResultType!
}
Fields
GameEventGameResult.contestant
● GameContestant!
non-null union
The contestant where the final result have been determined
GameEventGameResult.rank
● Int!
non-null scalar
The final rank/placement of the contestant (1 = 1st, 2 = 2nd, ....) - Ties/gaps are possible
GameEventGameResult.type
● GameResultType!
non-null enum
The type of result (WIN, LOSS or DRAW)
Implemented By
GameEventData
union