OBJECT

Participant

A participant of a tournament; either a spectator or competitor

link GraphQL Schema definition

  • type Participant {
  • id: ID
  • # If this participant was checked-in by admin
  • checkedIn: Boolean
  • # The time this participant was checked-in by admin
  • checkedInAt: Timestamp
  • # Info for connected accounts to external services.
  • connectedAccounts: JSON
  • # Contact Info selected during registration. Falls back to User.location and/or
  • # User.name if necessary. These fields are for admin use only. If you are not a
  • # tournament admin or the participant being queried, these fields will be null.
  • # Do not display this information publicly.
  • contactInfo: ContactInfo
  • # Email of the user, only available to admins within 18 months of tournament
  • # completion for tournament administrators.
  • email: String
  • # Entrants associated with this Participant, if applicable
  • entrants: [Entrant]
  • # The events this participant registered for within a Tournament.
  • events: [Event]
  • # The tag that was used when the participant registered, e.g. Mang0
  • gamerTag: String
  • # Arguments
  • # type: [Not documented]
  • images(type: String): [Image]
  • player: Player
  • # The prefix that the user set for this Tournament, e.g. C9
  • prefix: String
  • # Tournament Admin viewable field. Shows details for required social connections
  • requiredConnections: [ProfileAuthorization]
  • # The user this participant is associated to.
  • user: User
  • # If this participant is verified as actually being in the tournament
  • verified: Boolean
  • }