OBJECT

Game

A game represents a single game within a set.

link GraphQL Schema definition

  • type Game {
  • id: ID
  • # Score of entrant 1. For smash, this is equivalent to stocks remaining.
  • entrant1Score: Int
  • # Score of entrant 2. For smash, this is equivalent to stocks remaining.
  • entrant2Score: Int
  • # Arguments
  • # type: [Not documented]
  • images(type: String): [Image]
  • orderNum: Int
  • # Selections for this game such as character, etc.
  • selections: [GameSelection]
  • # The stage that this game was played on (if applicable)
  • stage: Stage
  • state: Int
  • winnerId: Int
  • }

link Require by