Sets in Phase Group

In this example we will get the sets in a specific phase group. Here I have selected the phase group (pool) "G1" for the Slap City Singles event at Genesis 6.

Example #1 (All Sets in Event)

To get all sets, don't pass any filters to the sets query. Instead, just iterate over the the pages as necessary. You can use a much larger perPage here- it is kept small in the example for demo purposes.

  • Request
  • Response
query PhaseGroupSets($phaseGroupId: ID!, $page:Int!, $perPage:Int!){
phaseGroup(id:$phaseGroupId){
id
displayIdentifier
sets(
page: $page
perPage: $perPage
sortType: STANDARD
){
pageInfo{
total
}
nodes{
id
slots{
id
entrant{
id
name
}
}
}
}
}
},
{
"phaseGroupId": 813313,
"page": 1,
"perPage": 3
}