50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
Plaintext
|
query getCharsByTournamentIdAndPlayerIds($tournamentId:ID, $playerIds:[ID])
|
||
|
{
|
||
|
tournament(id:$tournamentId)
|
||
|
{
|
||
|
events
|
||
|
{
|
||
|
name
|
||
|
sets
|
||
|
(
|
||
|
perPage:100
|
||
|
page:1
|
||
|
filters:
|
||
|
{
|
||
|
playerIds: $playerIds
|
||
|
}
|
||
|
)
|
||
|
{
|
||
|
pageInfo
|
||
|
{
|
||
|
total
|
||
|
}
|
||
|
|
||
|
nodes
|
||
|
{
|
||
|
games
|
||
|
{
|
||
|
winnerId
|
||
|
selections
|
||
|
{
|
||
|
selectionType
|
||
|
selectionValue
|
||
|
entrant
|
||
|
{
|
||
|
participants
|
||
|
{
|
||
|
player
|
||
|
{
|
||
|
id
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|