OBJECT

Entrant

An entrant in an event

link GraphQL Schema definition

  • type Entrant {
  • id: ID
  • event: Event
  • # Entrant's seed number in the first phase of the event.
  • initialSeedNum: Int
  • isDisqualified: Boolean
  • # The entrant name as it appears in bracket: gamerTag of the participant or team
  • # name
  • name: String
  • # Paginated sets for this entrant
  • #
  • # Arguments
  • # page: [Not documented]
  • # perPage: [Not documented]
  • # sortType: How to sort these sets
  • # filters: Supported filter options to filter down set results.
  • paginatedSets(
  • page: Int,
  • perPage: Int,
  • sortType: SetSortType,
  • filters: SetFilters
  • ): SetConnection
  • participants: [Participant]
  • seeds: [Seed]
  • skill: Int
  • # Standing for this entrant given an event. All entrants queried must be in the
  • # same event (for now).
  • standing: Standing
  • stream: Streams @deprecated( reason: "DEPRECATED. Use streams instead, which supports multiple stream types and teams." )
  • streams: [Streams]
  • # Team linked to this entrant, if one exists
  • team: Team
  • }