OBJECT

PhaseGroup

A group within a phase

link GraphQL Schema definition

  • type PhaseGroup {
  • id: ID
  • # The bracket type of this group's phase.
  • bracketType: BracketType
  • # URL for this phase groups's bracket.
  • bracketUrl: String
  • # Unique identifier for this group within the context of its phase
  • displayIdentifier: String
  • # For the given phase group, this is the start time of the first round that occurs
  • # in the group.
  • firstRoundTime: Timestamp
  • numRounds: Int
  • # Arguments
  • # query: [Not documented]
  • # eventId: [Not documented]
  • paginatedSeeds(
  • query: SeedPaginationQuery!,
  • eventId: ID
  • ): SeedConnection @deprecated( reason: "Please use 'seeds', which is now paginated" )
  • # Paginated sets on this phaseGroup
  • #
  • # 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 @deprecated( reason: "Please use 'sets', which is now paginated" )
  • # The phase associated with this phase group
  • phase: Phase
  • # The progressions out of this phase group
  • progressionsOut: [Progression]
  • rounds: [Round]
  • seedMap: JSON
  • # Paginated seeds for this phase group
  • #
  • # Arguments
  • # query: [Not documented]
  • # eventId: [Not documented]
  • seeds(query: SeedPaginationQuery!, eventId: ID): SeedConnection
  • # Paginated sets on this phaseGroup
  • #
  • # Arguments
  • # page: [Not documented]
  • # perPage: [Not documented]
  • # sortType: How to sort these sets
  • # filters: Supported filter options to filter down set results.
  • sets(page: Int, perPage: Int, sortType: SetSortType, filters: SetFilters): SetConnection
  • # Paginated list of standings
  • #
  • # Arguments
  • # query: [Not documented]
  • standings(query: StandingGroupStandingPageFilter): StandingConnection
  • # Unix time the group is scheduled to start. This info could also be on the wave
  • # instead.
  • startAt: Timestamp
  • state: Int
  • tiebreakOrder: JSON
  • wave: Wave
  • }