OBJECT

Seed

A seed for an entrant

link GraphQL Schema definition

  • type Seed {
  • id: ID
  • # Map of Participant ID to checked in boolean
  • checkedInParticipants: JSON
  • entrant: Entrant
  • groupSeedNum: Int
  • isBye: Boolean
  • phase: Phase
  • phaseGroup: PhaseGroup
  • placeholderName: String
  • placement: Int
  • # The player(s) associated with this seed's entrant
  • players: [Player]
  • progressionSeedId: Int
  • # Source progression information
  • progressionSource: Progression
  • seedNum: Int
  • # Entrant's win/loss record for this standing. Scores do not include byes.
  • #
  • # Arguments
  • # phaseGroupId: [Not documented]
  • setRecordWithoutByes(phaseGroupId: ID!): JSON
  • # Arguments
  • # containerType: The container of the standing groups to get
  • # standings for. If null, will return all standings.
  • standings(containerType: String): [Standing]
  • }