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 } } } } } } } } } }