Sets at Stations

In this example we will get the sets in an event at a particular station or set of stations. Here I have selected the ladder event Team Calyptus ran for the release of Super Smash Bros. Ultimate.

Example #1 (Sets at a Station)

The stationNumbers filter for sets queries accepts a set of station numbers. I filtered the results for this to sets at Station 3 in the event. You can use a much larger perPage here- it is kept small in the example for demo purposes.

  • Request
  • Response
query SetsAtStation($eventId: ID!, $stationNumbers: [Int]) {
event(id: $eventId) {
id
name
sets(
page: 1
perPage: 3
filters: {
stationNumbers: $stationNumbers
}) {
nodes {
id
station {
id
number
}
slots {
id
entrant {
id
name
}
}
}
}
}
},
{
"eventId": 122755,
"stationNumbers":[3]
}