OBJECT

Set

A set

link GraphQL Schema definition

  • type Set {
  • id: ID
  • # The time this set was marked as completed
  • completedAt: Timestamp
  • # The time this set was created
  • createdAt: Timestamp
  • # Arguments
  • # mainEntrantId: [Not documented]
  • displayScore(mainEntrantId: ID): String
  • # Event that this set belongs to.
  • event: Event
  • # Full round text of this set.
  • fullRoundText: String
  • # Arguments
  • # orderNum: [Not documented]
  • game(orderNum: Int!): Game
  • games: [Game]
  • # Whether this set contains a placeholder entrant
  • hasPlaceholder: Boolean
  • # The letters that describe a unique identifier within the pool. Eg. F, AT
  • identifier: String
  • # Arguments
  • # type: [Not documented]
  • images(type: String): [Image]
  • lPlacement: Int
  • # Phase group that this Set belongs to.
  • phaseGroup: PhaseGroup
  • # The sets that are affected from resetting this set
  • resetAffectedData: ResetAffectedData
  • # The round number of the set. Negative numbers are losers bracket
  • round: Int
  • # Indicates whether the set is in best of or total games mode. This instructs
  • # which field is used to figure out how many games are in this set.
  • setGamesType: Int
  • # A possible spot in a set. Use this to get all entrants in a set. Use this for
  • # all bracket types (FFA, elimination, etc)
  • #
  • # Arguments
  • # includeByes: [Not documented]
  • slots(includeByes: Boolean): [SetSlot]
  • # The start time of the Set. If there is no startAt time on the Set, will pull it
  • # from phaseGroup rounds configuration.
  • startAt: Timestamp
  • startedAt: Timestamp
  • state: Int
  • # Tournament event station for a set
  • station: Stations
  • # Tournament event stream for a set
  • stream: Streams
  • # If setGamesType is in total games mode, this defined the number of games in the
  • # set.
  • totalGames: Int
  • # Url of a VOD for this set
  • vodUrl: String
  • wPlacement: Int
  • winnerId: Int
  • }