Menu
Developer Portal LogoDeveloper Portal
DocsSchemaAPI ExplorerHelpBlogUsers
Developer Portal LogoDeveloper Portal
  • Docs
  • Schema
  • API Explorer
  • Help
  • Blog
  • Users
  • Getting Started
    • Welcome
    • Join our Discord
    • Glossary
    • Intro to GraphQL
    • Authentication
    • Testing your Requests
    • Sending Requests
    • Rate Limits
    • Benefits of GraphQL
  • Query Examples
    • Event Standings
    • Event Entrants
    • League Schedule
    • League Standings
    • Sets in Event
    • Sets in Phase
    • Sets in Phase Group
    • Sets at Stations
    • Set Score
    • Sets by Player
    • Stream Queue
    • Set Entrants
    • Phase Groups in Phase
    • Phase Seeds
    • Pool Seeds
    • Attendee Counts
    • Tournaments by Location
    • Tournaments by Videogame
    • Tournaments by Owner
    • Attendees by Sponsor/Org
    • Shop Info
  • Widgets & Embeds
    • Embedded Registration
  • Full Examples
    • Update Phase Seeding
    • Resolve Schedule Conflicts
    • Randomize Phase Seeding
  • OAuth (Closed Alpha)
    • OAuth Overview (Closed Alpha)
    • OAuth Scopes
    • Example OAuth Flow

Pool Seeds

In this example, we will query for the seeding of a phase group (a pool) in the Rivals of Aether Singles event at Genesis 5. We'll include the name, and the seed id, of each entrant.

#Example

  • Request
  • Response
query PoolSeeds($phaseGroupId: ID!, $page: Int!, $perPage: Int!) {
phaseGroup(id: $phaseGroupId) {
id
seeds(query: {
page: $page
perPage: $perPage
}){
pageInfo {
total
}
nodes {
entrant {
id
name
}
}
}
}
},
{
"phaseGroupId": 398727,
"page": 1,
"perPage": 5
}
Edit this page
Previous

« Phase Seeds

Next

Attendee Counts »

  • Example

Docs

  • Getting Started
  • Example Usage
  • API Explorer
  • Projects

start.gg

  • Home
  • Developer Settings

Community

  • Discord
  • Twitter
  • GitHub
start.gg
Copyright © 2023 start.gg