OBJECT

Phase

A phase in an event

link GraphQL Schema definition

  • type Phase {
  • id: ID
  • # The bracket type of this phase.
  • bracketType: BracketType
  • # The Event that this phase belongs to
  • event: Event
  • # Number of phase groups in this phase
  • groupCount: Int
  • # Is the phase an exhibition or not.
  • isExhibition: Boolean
  • # Name of phase e.g. Round 1 Pools
  • name: String
  • # The number of seeds this phase contains.
  • numSeeds: Int
  • # Arguments
  • # query: [Not documented]
  • # eventId: [Not documented]
  • paginatedSeeds(
  • query: SeedPaginationQuery!,
  • eventId: ID
  • ): SeedConnection @deprecated( reason: "Please use 'seeds' instead" )
  • # Phase groups under this phase, paginated
  • #
  • # Arguments
  • # query: [Not documented]
  • phaseGroups(query: PhaseGroupPageQuery): PhaseGroupConnection
  • # The relative order of this phase within an event
  • phaseOrder: Int
  • # Paginated seeds for this phase
  • #
  • # Arguments
  • # query: [Not documented]
  • # eventId: [Not documented]
  • seeds(query: SeedPaginationQuery!, eventId: ID): SeedConnection
  • # Paginated sets for this Phase
  • #
  • # 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
  • # State of the phase
  • state: ActivityState
  • waves: [Wave]
  • }