OBJECT

GameSelection

A selection for this game. i.e. character/stage selection, etc

link GraphQL Schema definition

  • type GameSelection {
  • # If this is a character selection, returns the selected character.
  • character: Character
  • id: ID
  • # The entrant who this selection is for
  • entrant: Entrant
  • orderNum: Int
  • # The participant who this selection is for. This is only populated if there are
  • # selections for multiple participants of a single entrant
  • participant: Participant
  • selectionType: GameSelectionType
  • selectionValue: Int
  • }