INPUT_OBJECT

BracketSetGameDataInput

Game specific H2H set data such as character, stage, and stock info

link GraphQL Schema definition

  • input BracketSetGameDataInput {
  • # Entrant ID of game winner
  • winnerId: ID
  • # Game number
  • gameNum: Int!
  • # Score for entrant 1 (if applicable). For smash, this is stocks remaining.
  • entrant1Score: Int
  • # Score for entrant 2 (if applicable). For smash, this is stocks remaining.
  • entrant2Score: Int
  • # ID of the stage that was played for this game (if applicable)
  • stageId: ID
  • # List of selections for the game, typically character selections.
  • selections: [BracketSetGameSelectionInput]
  • }

link Require by