Skip to main content

Set Entrants

In this example, we will query for the entrants in the grand finals set of Take The Shot 3, a 3v3 Rocket League event. In a teams event, an entrant has multiple participants, so we will get the available fields for each of those, too!

Example

query SetEntrants($setId: ID!) {
set(id: $setId) {
id
slots {
id
entrant {
id
name
participants {
id
gamerTag
connectedAccounts
}
}
}
}
},
{
"setId": "7851789"
}