From 7a65a945207ba27c1fd610097c069ed971c40d1c Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 27 Aug 2026 18:10:00 -0400 Subject: [PATCH 1/8] @api bug: practice pods handed out a previous tenant's steam relay "Constant issues with server making, and getting a connection", and the reporter had already narrowed it correctly: it does not happen over IP:PORT, and it does not happen on dedicated or draft servers. get_match_server_info prefers servers.steam_relay over host:port whenever it is set. That column is only ever written by the 5stack match plugin's ping and by the dedicated-server ping cron -- and a practice pod runs with INSTALL_5STACK_PLUGIN=false, so it never pings. The server row outlives the pod, and reserving it for a new match never cleared the field, so each practice session inherited whatever relay account the row's last occupant had registered. Dedicated servers were fine because their cron keeps the value honest, which is exactly the split that was observed. Booting an on-demand server now clears it, so the connect string falls back to host:port until something reports a real one. The two reservation paths for already-running dedicated servers are deliberately untouched -- their relay is current, not stale. Also adds a practice-side event trigger on utility_lineups: the plugin caches its library and only re-reads it when told to, so a lineup written on the website stayed invisible in game until somebody typed .reload. This is a separate trigger from the search one because that one is not allowed to fire on the geometry columns, and geometry is what a server standing someone on a throw needs to have right. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JTocnM98q1YiSRN4Z73REh --- .../tables/public_utility_lineups.yaml | 38 +++++++++++++++++++ .../match-assistant.service.ts | 8 ++++ src/utility/utility-lineups.controller.ts | 30 ++++++++++++++- src/utility/utility-practice.service.ts | 30 +++++++++++++++ 4 files changed, 105 insertions(+), 1 deletion(-) diff --git a/hasura/metadata/databases/default/tables/public_utility_lineups.yaml b/hasura/metadata/databases/default/tables/public_utility_lineups.yaml index 8c374603..31628994 100644 --- a/hasura/metadata/databases/default/tables/public_utility_lineups.yaml +++ b/hasura/metadata/databases/default/tables/public_utility_lineups.yaml @@ -598,6 +598,44 @@ event_triggers: num_retries: 6 timeout_sec: 60 webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' + # The search index deliberately ignores the geometry columns; a practice + # server standing somebody on a throw cannot. Separate trigger rather than + # more columns on that one, so re-indexing and re-serving stay independent. + - name: utility_lineups_practice_events + definition: + delete: + columns: '*' + enable_manual: true + insert: + columns: '*' + update: + columns: + - map_name + - utility_type + - side + - technique + - name + - description + - visibility + - archived_at + - team_id + - aim_tolerance + - origin_x + - origin_y + - origin_z + - eye_z + - view_yaw + - view_pitch + - land_x + - land_y + - land_z + - jump_throw_bind + - throw_strength + retry_conf: + interval_sec: 10 + num_retries: 6 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' - name: utility_lineups_events definition: delete: diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 32a4a094..dd063cc4 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -887,6 +887,14 @@ export class MatchAssistantService { connected: false, offline_at: null, reserved_by_match_id: matchId, + // The row outlives the pod, and the relay account id in it + // belonged to the previous tenant. get_match_server_info + // prefers steam_relay over host:port whenever it is set, so + // leaving it behind handed the next player a connect string + // pointing at somebody else's relay -- which connects and + // then drops. The pod that is about to boot reports its own + // once it is up. + steam_relay: null, }, }, __typename: true, diff --git a/src/utility/utility-lineups.controller.ts b/src/utility/utility-lineups.controller.ts index de66da21..70eaa3c8 100644 --- a/src/utility/utility-lineups.controller.ts +++ b/src/utility/utility-lineups.controller.ts @@ -1,16 +1,44 @@ import { Controller } from "@nestjs/common"; -import { HasuraAction } from "../hasura/hasura.controller"; +import { HasuraAction, HasuraEvent } from "../hasura/hasura.controller"; +import { HasuraEventData } from "../hasura/types/HasuraEventData"; import { User } from "../auth/types/User"; import { UtilityImportService } from "./utility-import.service"; import { UtilityLineupsService } from "./utility-lineups.service"; +import { UtilityPracticeService } from "./utility-practice.service"; @Controller("utility-lineups") export class UtilityLineupsController { constructor( private readonly lineups: UtilityLineupsService, private readonly imports: UtilityImportService, + private readonly practice: UtilityPracticeService, ) {} + /** + * A lineup changed, so any practice server on that map is holding a stale + * library. + * + * Both maps matter on a move: the server the lineup left has one row too + * many and the one it arrived on has one too few. This is a separate trigger + * from the search one deliberately -- that one is not allowed to fire on the + * geometry columns, and geometry is exactly what a server standing somebody + * on a throw needs to have right. + */ + @HasuraEvent() + public async utility_lineups_practice_events( + data: HasuraEventData<{ map_name?: string | null }>, + ) { + const maps = new Set( + [data.new?.map_name, data.old?.map_name].filter( + (map): map is string => !!map, + ), + ); + + for (const map of maps) { + await this.practice.refreshLibrariesOnMap(map); + } + } + @HasuraAction() public async forkUtilityLineup(data: { user: User; diff --git a/src/utility/utility-practice.service.ts b/src/utility/utility-practice.service.ts index 6b3c6c30..fbe5048c 100644 --- a/src/utility/utility-practice.service.ts +++ b/src/utility/utility-practice.service.ts @@ -903,6 +903,36 @@ export class UtilityPracticeService { return row ?? null; } + /** + * Tell every practice server sitting on a map that its library is out of + * date. + * + * The plugin caches the library per player and only re-reads it when it is + * asked to, so a lineup written or edited on the website was invisible in + * game until somebody typed .reload -- which is not something a player knows + * to do, and is the in-game half of "the panel doesn't auto refresh". Scoped + * to the map because a lineup on Ancient is nothing to a server on Mirage. + */ + public async refreshLibrariesOnMap(mapName: string): Promise { + if (!mapName) { + return; + } + + const rows = await this.postgres.query>( + `SELECT m.id::text AS match_id + FROM public.utility_practice_sessions s + INNER JOIN public.matches m ON m.id = s.match_id + WHERE s.map_name = $1 + AND s.map_changing_at IS NULL + AND s.status IN ('Starting', 'Ready')`, + [mapName], + ); + + for (const row of rows) { + await this.matchAssistant.sendUtilityPracticeRefresh(row.match_id); + } + } + public async reapIdle(): Promise { const idle = await this.minutes( SystemSettingName.UtilityPracticeIdleMinutes, From 48f4fb68b30069c4a9434fc3e7e7a9544afe6cab Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 27 Aug 2026 18:33:24 -0400 Subject: [PATCH 2/8] @api feature: practice pods report their own steam relay The other half of the connection fix. Clearing the previous tenant's relay id stops a practice pod handing out a stranger's address, but nothing then ever writes a real one -- the match plugin's ping is what maintains that column everywhere else, and a practice pod does not run the match plugin. So practice was permanently on host:port. It rides on the occupancy heartbeat rather than getting a beat of its own: same fact about the same server on the same schedule, already authenticated by the server key. Deliberately NOT the match plugin's ping endpoint, which also writes plugin_version and plugin_runtime -- those decide how the panel talks to a server, and the utility plugin's version is not the answer to that question. A null is "nothing to say", never "clear it": a pod still registering with the relay would otherwise flap the address out from under someone mid-join. The stale value is cleared when the row is reserved, which is the one moment it is known to be wrong. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JTocnM98q1YiSRN4Z73REh --- src/utility/utility-practice.service.ts | 37 +++++++++++++++++++++++++ src/utility/utility.controller.ts | 3 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/src/utility/utility-practice.service.ts b/src/utility/utility-practice.service.ts index fbe5048c..93ca554e 100644 --- a/src/utility/utility-practice.service.ts +++ b/src/utility/utility-practice.service.ts @@ -913,6 +913,37 @@ export class UtilityPracticeService { * to do, and is the in-game half of "the panel doesn't auto refresh". Scoped * to the map because a lineup on Ancient is nothing to a server on Mirage. */ + /** + * Record where a practice pod can be reached over Steam's relay network. + * + * Nothing else ever writes this for a practice server: the match plugin's + * ping is what maintains it everywhere else, and a practice pod does not run + * the match plugin. Deliberately not that endpoint either -- it also writes + * plugin_version and plugin_runtime, which decide how the panel talks to a + * server, and the utility plugin's version is not the answer to that. + * + * A null is "nothing to say", never "clear it": a pod still registering with + * the relay would otherwise flap the address out from under a player joining. + * The stale value that caused the original bug is cleared when the row is + * reserved, which is the moment it is known to be wrong. + */ + private async reportSteamRelay( + serverId: string, + steamRelay: string | null, + ): Promise { + if (!steamRelay) { + return; + } + + await this.postgres.query( + `UPDATE public.servers + SET steam_relay = $2 + WHERE id = $1::uuid + AND steam_relay IS DISTINCT FROM $2`, + [serverId, steamRelay], + ); + } + public async refreshLibrariesOnMap(mapName: string): Promise { if (!mapName) { return; @@ -1808,7 +1839,13 @@ export class UtilityPracticeService { public async reportOccupancy( serverId: string, steamIds: Array, + steamRelay: string | null = null, ): Promise { + // Independent of the session: a pod reports where it can be reached + // whether or not anyone is on it yet, and the connect string is read + // before the first player arrives. + await this.reportSteamRelay(serverId, steamRelay); + const session = await this.liveSessionForServer(serverId); if (!session) { diff --git a/src/utility/utility.controller.ts b/src/utility/utility.controller.ts index ecc08c55..59a3b357 100644 --- a/src/utility/utility.controller.ts +++ b/src/utility/utility.controller.ts @@ -72,11 +72,12 @@ export class UtilityController { @UseGuards(UtilityPluginKeyGuard) public async occupancy( @Req() request: Request, - @Body() body: { steam_ids?: Array }, + @Body() body: { steam_ids?: Array; steam_relay?: string | null }, ) { await this.practice.reportOccupancy( UtilityController.serverId(request), Array.isArray(body?.steam_ids) ? body.steam_ids : [], + typeof body?.steam_relay === "string" ? body.steam_relay : null, ); return { ok: true }; From 2546bc38e239037f479d046a6f002102acedcd30 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 27 Aug 2026 21:22:20 -0400 Subject: [PATCH 3/8] @api feature: PATCH /utility/:id, so a lineup can be fixed instead of replaced Nothing could change a lineup that already existed. The only UPDATE on the table set name/description/visibility from the panel's own action, and the plugin had ingest and delete and nothing between them -- so fixing a throw in game meant deleting it and recording it again, which loses the id and with it every scored attempt, favourite and collection entry hanging off it. Authorised on the LINEUP's author, not just the server key. The key proves which server is asking and can never prove which player, and the plugin holding it is the same plugin every player on that pod is talking to -- without the author check anybody on a practice server could rewrite anybody else's lineup and the plugin would have no way to refuse. Text goes through the same sanitizer as ingest, because a name typed in game is echoed straight back into chat and this is a second front door onto input that path already hardens. Geometry is separate and all-or-nothing. A lineup describes one throw as where you stand, where you look and where it lands; a partial write leaves a row describing a throw nobody ever made. Moving it clears the recorded flight and drops confidence to low, because the path that was measured described the old coordinates and a hand-moved point is not something a server watched happen. The rule worth arguing about is whose record gets thrown away. The author's own is theirs to invalidate: past a move further than the success radius their attempts measured a different throw, so they go. Another player's is NOT -- somebody who has drilled a lineup fifty times did not agree to have that turned into a hit rate against a throw they have never made. When anyone else has practised it the move is refused and the caller is pointed at a fork, which is the answer the panel has always given for exactly this reason: a different throw is a new lineup, not an edit to somebody else's. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JTocnM98q1YiSRN4Z73REh --- src/utility/utility-lineups.service.ts | 233 ++++++++++++++++++++- src/utility/utility.controller.ts | 119 +++++++++++ test/utility-edits.spec.ts | 270 +++++++++++++++++++++++++ 3 files changed, 618 insertions(+), 4 deletions(-) create mode 100644 test/utility-edits.spec.ts diff --git a/src/utility/utility-lineups.service.ts b/src/utility/utility-lineups.service.ts index c47bd587..425b8c85 100644 --- a/src/utility/utility-lineups.service.ts +++ b/src/utility/utility-lineups.service.ts @@ -11,6 +11,7 @@ import { UtilityArtifactsService, UtilityTrajectoryPoint, } from "./utility-artifacts.service"; +import { UtilityCalloutsService } from "./utility-callouts.service"; export type UtilityIngestPayload = { match_id?: string; @@ -191,6 +192,7 @@ export class UtilityLineupsService { private readonly cache: CacheService, @Inject(forwardRef(() => UtilityLoadService)) private readonly load: UtilityLoadService, + private readonly callouts: UtilityCalloutsService, ) {} public async isLibraryEnabled(): Promise { @@ -368,7 +370,15 @@ export class UtilityLineupsService { // of rows called repair-. repair ? repair.lineup_name - : UtilityLineupsService.sanitizeName(payload.name, context.mapName), + : UtilityLineupsService.sanitizeName( + payload.name, + await this.calloutName( + context.mapName, + payload.utility_type, + origin, + land, + ), + ), UtilityLineupsService.sanitizeText(payload.description, 1000), author, context.matchId, @@ -798,6 +808,192 @@ export class UtilityLineupsService { }; } + /** + * Change a lineup that already exists, keeping its id. + * + * Deliberately not delete-and-reinsert: the id is what every scored attempt, + * favourite and collection entry hangs off, so re-creating the row would + * silently throw all of that away to change a name. + * + * Geometry is separate from the rest and all-or-nothing. Moving where a + * smoke lands changes what the lineup IS, so it cannot arrive by accident on + * the back of a rename, and everything downstream of the old geometry has to + * be dealt with rather than left pointing at a throw that no longer exists. + */ + public async updateLineup(options: { + lineupId: string; + steamId: string; + name?: string | null; + description?: string | null; + visibility?: string | null; + role?: string | null; + geometry?: { + origin_x: number; + origin_y: number; + origin_z: number; + eye_z: number; + view_yaw: number; + view_pitch: number; + land_x: number; + land_y: number; + land_z: number; + } | null; + }): Promise<{ id: string; progress_reset: boolean }> { + if (!UtilityLineupsService.UUID.test(options.lineupId)) { + throw Error("that is not a lineup"); + } + + const [row] = await this.postgres.query< + Array<{ + id: string; + author_steam_id: string; + land_x: number | null; + land_y: number | null; + land_z: number | null; + }> + >( + `SELECT id::text AS id, author_steam_id::text AS author_steam_id, + land_x, land_y, land_z + FROM public.utility_lineups + WHERE id = $1::uuid AND archived_at IS NULL`, + [options.lineupId], + ); + + if (!row) { + throw Error("that lineup does not exist"); + } + + // The server key proves which SERVER is asking, never which player, and the + // plugin holding it is the same plugin every player on the pod is talking + // to. Without this, anybody on a practice server could rewrite anybody + // else's lineup and the plugin would have no way to refuse. + if (row.author_steam_id !== String(options.steamId)) { + throw Error("that lineup belongs to somebody else"); + } + + const sets: Array = []; + const values: Array = [options.lineupId]; + + const push = (fragment: string, value: string | number | null) => { + values.push(value); + sets.push(`${fragment} = $${values.length}`); + }; + + // Same hardening as ingest, because this is a second front door onto the + // same input: a name typed in game is echoed straight back into chat. + if (options.name != null) { + push("name", UtilityLineupsService.sanitizeText(options.name, 120)); + } + + if (options.description != null) { + push( + "description", + UtilityLineupsService.sanitizeText(options.description, 1000), + ); + } + + if (options.visibility != null) { + const visibility = UtilityLineupsService.visibilityFor( + options.visibility, + { steam_id: options.steamId, role: options.role ?? null }, + ); + + push("visibility", visibility.visibility); + } + + let progressReset = false; + + if (options.geometry) { + const geometry = options.geometry; + + for (const [column, value] of Object.entries(geometry)) { + if (!Number.isFinite(Number(value))) { + throw Error("the geometry is incomplete"); + } + + push(column, Number(value)); + } + + // The recorded flight described the OLD geometry, so it is no longer a + // measurement of this lineup. Cleared rather than left to be served + // against coordinates it never belonged to, and the confidence drops to + // match: a hand-moved point is not something a server watched happen. + push("trajectory_file", null); + push("confidence", "low"); + + progressReset = await this.resetProgressIfMoved(row, geometry); + } + + if (sets.length === 0) { + return { id: row.id, progress_reset: false }; + } + + await this.postgres.query( + `UPDATE public.utility_lineups SET ${sets.join(", ")} WHERE id = $1::uuid`, + values, + ); + + return { id: row.id, progress_reset: progressReset }; + } + + /** + * Every scored attempt was measured against where the smoke used to land, so + * moving it further than the radius they were judged by makes them + * measurements of a different throw. + * + * The author's own record is theirs to invalidate. ANOTHER player's is not: + * somebody who has drilled this lineup fifty times did not agree to have that + * turned into a hit rate against a throw they have never made. When anyone + * else has practised it the move is refused and the caller is pointed at a + * fork, which is the answer the panel has always given for the same reason -- + * a different throw is a new lineup, not an edit to somebody else's. + */ + private async resetProgressIfMoved( + was: { + id: string; + author_steam_id: string; + land_x: number | null; + land_y: number | null; + land_z: number | null; + }, + now: { land_x: number; land_y: number; land_z: number }, + ): Promise { + if (was.land_x == null || was.land_y == null || was.land_z == null) { + return false; + } + + const moved = Math.sqrt( + (now.land_x - was.land_x) ** 2 + + (now.land_y - was.land_y) ** 2 + + (now.land_z - was.land_z) ** 2, + ); + + if (moved <= (await this.successRadius())) { + return false; + } + + const [others] = await this.postgres.query>( + `SELECT count(*)::text AS count + FROM public.utility_lineup_progress + WHERE utility_lineup_id = $1::uuid + AND steam_id <> $2::bigint`, + [was.id, was.author_steam_id], + ); + + if (Number(others?.count ?? 0) > 0) { + throw Error( + "somebody else has practised this lineup; fork it instead of moving it", + ); + } + + await this.postgres.query( + `DELETE FROM public.utility_lineup_progress WHERE utility_lineup_id = $1::uuid`, + [was.id], + ); + + return true; + } + public async successRadius(): Promise { const configured = Number( await this.setting(SystemSettingName.UtilitySuccessRadius), @@ -849,8 +1045,8 @@ export class UtilityLineupsService { tags?: Array; collectionId?: string | null; }): Promise<{ id: string }> { - const [row] = await this.postgres.query>( - `SELECT id::text AS id FROM public.utility_lineups + const [row] = await this.postgres.query>( + `SELECT id::text AS id, name FROM public.utility_lineups WHERE id = $1::uuid AND source_match_id = $2::uuid AND author_steam_id = $3::bigint`, @@ -882,7 +1078,9 @@ export class UtilityLineupsService { WHERE id = $1::uuid`, [ options.lineupId, - UtilityLineupsService.sanitizeName(options.name, "Lineup"), + // The row already carries the name the ingest gave it, which is the + // callouts it was thrown between -- a better fallback than a literal. + UtilityLineupsService.sanitizeName(options.name, row.name || "Lineup"), UtilityLineupsService.sanitizeText(options.description, 1000), visibility.visibility, options.teamId ?? null, @@ -1434,6 +1632,33 @@ export class UtilityLineupsService { }; } + /** + * What the map itself would call this throw. Empty when the map has no + * callouts, which is what keeps a caller's own fallback in play rather than + * replacing it with a name that says nothing. + */ + private async calloutName( + mapName: string, + utilityType: string | undefined, + origin: { x: number; y: number; z: number }, + land: { x: number; y: number; z: number }, + ): Promise { + try { + const name = await this.callouts.autoName( + mapName, + utilityType ?? "", + origin, + land, + ); + return name || mapName; + } catch (error) { + this.logger.warn( + `unable to name a lineup from callouts: ${(error as Error)?.message}`, + ); + return mapName; + } + } + public static sanitizeName( value: string | undefined, fallback: string, diff --git a/src/utility/utility.controller.ts b/src/utility/utility.controller.ts index 59a3b357..cd47097f 100644 --- a/src/utility/utility.controller.ts +++ b/src/utility/utility.controller.ts @@ -9,6 +9,7 @@ import { Logger, NotFoundException, Param, + Patch, Post, Query, Req, @@ -20,6 +21,10 @@ import { PostgresService } from "../postgres/postgres.service"; import { SystemSettingName } from "../system/enums/SystemSettingName"; import { isRoleAbove } from "../utilities/isRoleAbove"; import { UtilityArtifactsService } from "./utility-artifacts.service"; +import { + MapCallout, + UtilityCalloutsService, +} from "./utility-callouts.service"; import { UtilityIngestPayload, UtilityLineupsService, @@ -37,6 +42,7 @@ export class UtilityController { private readonly lineups: UtilityLineupsService, private readonly artifacts: UtilityArtifactsService, private readonly practice: UtilityPracticeService, + private readonly callouts: UtilityCalloutsService, ) {} @Post("ingest") @@ -83,6 +89,30 @@ export class UtilityController { return { ok: true }; } + // What the server found in the map it just loaded. Reported rather than + // asked for, because only a server with the map open can answer, and a + // workshop map is never going to be in the published extract. + // + // Deliberately does NOT resolve a server context: this fires on map load, + // which is before a practice session exists, and the guard has already said + // which server is talking. + @Post("callouts") + @UseGuards(UtilityPluginKeyGuard) + public async reportCallouts( + @Body() body: { map?: string; callouts?: Array }, + ) { + const map = String(body?.map ?? "").trim(); + + if (!map) { + throw new BadRequestException("no map"); + } + + return await this.callouts.report( + map, + Array.isArray(body?.callouts) ? body.callouts : [], + ); + } + @Get("library") @UseGuards(UtilityPluginKeyGuard) public async library( @@ -217,6 +247,95 @@ export class UtilityController { return new StreamableFile(await this.artifacts.readTrajectory(file)); } + /** + * Change a lineup that already exists. + * + * Nothing else could: the only UPDATE on the table sets name, description and + * visibility from the panel's own action, and the plugin had ingest and + * delete and nothing between them. Fixing a throw therefore meant deleting it + * and recording it again, which loses the id and every scored attempt hanging + * off it. + */ + @Patch(":id") + @UseGuards(UtilityPluginKeyGuard) + public async update( + @Req() request: Request, + @Param("id") id: string, + @Body() + body: { + steam_id?: string; + name?: string; + description?: string; + visibility?: string; + geometry?: Record; + }, + ) { + await this.assertLibraryEnabled(); + + const context = await this.context(request); + const author = String(body?.steam_id ?? ""); + + // Same gate the delete beside this uses: the server key says which server + // is asking, and the roster says the player it names is actually on it. + if (!context.lineupSteamIds.includes(author)) { + throw new ForbiddenException("player is not in this match lineup"); + } + + try { + return await this.lineups.updateLineup({ + lineupId: id, + steamId: author, + name: body?.name ?? null, + description: body?.description ?? null, + visibility: body?.visibility ?? null, + geometry: UtilityController.geometry(body?.geometry), + }); + } catch (error) { + throw new BadRequestException( + (error as Error)?.message ?? "invalid request", + ); + } + } + + /** + * Geometry is taken whole or not at all. A lineup carries where you stand, + * where you look and where it lands as one description of one throw, and a + * partial write leaves a row describing a throw nobody ever made. + */ + private static geometry(input?: Record) { + if (!input) { + return null; + } + + const columns = [ + "origin_x", + "origin_y", + "origin_z", + "eye_z", + "view_yaw", + "view_pitch", + "land_x", + "land_y", + "land_z", + ] as const; + + const present = columns.filter((column) => + Number.isFinite(Number(input[column])), + ); + + if (present.length === 0) { + return null; + } + + if (present.length !== columns.length) { + throw new BadRequestException("the geometry is incomplete"); + } + + return Object.fromEntries( + columns.map((column) => [column, Number(input[column])]), + ) as Record<(typeof columns)[number], number>; + } + @Delete(":id") @UseGuards(UtilityPluginKeyGuard) public async remove( diff --git a/test/utility-edits.spec.ts b/test/utility-edits.spec.ts new file mode 100644 index 00000000..bddf89d4 --- /dev/null +++ b/test/utility-edits.spec.ts @@ -0,0 +1,270 @@ +import { Logger } from "@nestjs/common"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { UtilityLineupsService } from "./../src/utility/utility-lineups.service"; +import { User } from "./../src/auth/types/User"; +import { Fixtures } from "./utils/fixtures"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; +import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; + +// Editing a lineup in place, which nothing could do before: the only UPDATE on +// the table set name/description/visibility, and the plugin had ingest and +// delete and nothing between them. What these pin is the line between a rename +// and a different throw -- because the id is what every scored attempt hangs +// off, and moving where a smoke lands quietly turns everybody's hit rate into a +// measurement of something they never threw. +describe("utility lineup edits (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + let fx: Fixtures; + let lineups: UtilityLineupsService; + + beforeAll(async () => { + db = await bootMigratedDb("UtilityEditTest"); + postgres = db.postgres; + fx = new Fixtures(postgres, 76561199610000000n); + lineups = new UtilityLineupsService( + new Logger("UtilityEditTest"), + postgres, + { + uploadTrajectory: jest.fn(async (): Promise => "key"), + removeTrajectories: jest.fn(async (): Promise => undefined), + } as unknown as never, + { + get: jest.fn(async (_key: string, fallback?: unknown) => fallback), + put: jest.fn(async (): Promise => true), + forget: jest.fn(async (): Promise => true), + } as unknown as never, + { + pending: jest.fn(async (): Promise> => []), + } as unknown as never, + ); + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM utility_lineups"); + await postgres.query("DELETE FROM utility_collections"); + await postgres.query("DELETE FROM teams"); + await postgres.query("DELETE FROM players"); + }); + + const user = (steamId: string, role = "user"): User => + ({ steam_id: steamId, role, name: "tester" }) as User; + + const SEED = { + initial_pos_x: -1900, + initial_pos_y: 930, + initial_pos_z: -100, + initial_vel_x: 500, + initial_vel_y: 200, + initial_vel_z: 300, + }; + + async function insertLineup( + author: string, + overrides: Record = {}, + ): Promise { + const row = { + map_name: "de_mirage", + utility_type: "Smoke", + side: "TERRORIST", + technique: "Jump", + throw_strength: "Full", + jump_throw_bind: true, + origin_x: -1912, + origin_y: 922, + origin_z: -167, + eye_z: -103, + view_yaw: 133.7, + view_pitch: -12.4, + land_x: -560, + land_y: 320, + land_z: -140, + flight_time_ms: 1800, + name: "Window from T spawn", + description: "one step left of the box", + tags: ["execute", "a-site"], + visibility: "Public", + author_steam_id: author, + origin_source: "plugin", + confidence: "exact", + ...overrides, + }; + const cols = Object.keys(row); + const [inserted] = await postgres.query>( + `INSERT INTO utility_lineups (${cols.join(", ")}) + VALUES (${cols.map((_, i) => `$${i + 1}`).join(", ")}) RETURNING id`, + Object.values(row), + ); + return inserted.id; + } + + const rowOf = async (lineupId: string) => { + const [row] = await postgres.query>>( + "SELECT * FROM utility_lineups WHERE id = $1", + [lineupId], + ); + return row; + }; + + async function practise(lineupId: string, steamId: string) { + await postgres.query( + `INSERT INTO utility_lineup_progress + (utility_lineup_id, steam_id, attempts, successes, current_streak, best_streak) + VALUES ($1::uuid, $2::bigint, 9, 7, 3, 5)`, + [lineupId, steamId], + ); + } + + const progressCount = async (lineupId: string) => { + const [row] = await postgres.query>( + "SELECT count(*)::text AS count FROM utility_lineup_progress WHERE utility_lineup_id = $1", + [lineupId], + ); + return Number(row.count); + }; + + const GEOMETRY = { + origin_x: -1912, + origin_y: 922, + origin_z: -167, + eye_z: -103, + view_yaw: 133.7, + view_pitch: -12.4, + land_x: -560, + land_y: 320, + land_z: -140, + }; + + + it("renames a lineup without touching its id or its history", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + await practise(id, AUTHOR); + + const result = await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + name: "Window, one step left", + }); + + expect(result.id).toBe(id); + expect(result.progress_reset).toBe(false); + expect((await rowOf(id)).name).toBe("Window, one step left"); + expect(await progressCount(id)).toBe(1); + }); + + // The server key proves which server is asking, never which player. Without + // this anybody on a practice pod could rewrite anybody else's lineup. + it("refuses to edit somebody else's lineup", async () => { + const AUTHOR = await fx.player(); + const SOMEBODY_ELSE = await fx.player(); + const id = await insertLineup(AUTHOR); + + await expect( + lineups.updateLineup({ lineupId: id, steamId: SOMEBODY_ELSE, name: "mine now" }), + ).rejects.toThrow(/belongs to somebody else/i); + }); + + it("hardens text the same way ingest does", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + + await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + name: `bad\u0007name`, + description: "x".repeat(2000), + }); + + const row = await rowOf(id); + expect(String(row.name)).not.toContain("\u0007"); + expect(String(row.description).length).toBeLessThanOrEqual(1000); + }); + + // Moving the landing point is what makes it a different throw. The recorded + // flight described the old one, so it stops being served as a measurement of + // this lineup. + it("drops the recorded flight and the confidence when the geometry moves", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR, { trajectory_file: "utility/x/t.json.gz" }); + + await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + geometry: { ...GEOMETRY, land_x: 400 }, + }); + + const row = await rowOf(id); + expect(row.trajectory_file).toBeNull(); + expect(row.confidence).toBe("low"); + expect(Number(row.land_x)).toBe(400); + }); + + it("keeps the author's own record when the landing barely moves", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + await practise(id, AUTHOR); + + const result = await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + geometry: { ...GEOMETRY, land_x: GEOMETRY.land_x + 4 }, + }); + + expect(result.progress_reset).toBe(false); + expect(await progressCount(id)).toBe(1); + }); + + it("clears the author's own record when the landing really moves", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + await practise(id, AUTHOR); + + const result = await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + geometry: { ...GEOMETRY, land_x: GEOMETRY.land_x + 2000 }, + }); + + expect(result.progress_reset).toBe(true); + expect(await progressCount(id)).toBe(0); + }); + + // The one that matters most. Somebody who has drilled this fifty times did + // not agree to have that turned into a hit rate against a throw they have + // never made -- so the move is refused and the caller is sent to fork, which + // is the answer the panel has always given for the same reason. + it("refuses to move a lineup somebody else has practised", async () => { + const AUTHOR = await fx.player(); + const SOMEBODY_ELSE = await fx.player(); + const id = await insertLineup(AUTHOR); + await practise(id, SOMEBODY_ELSE); + + await expect( + lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + geometry: { ...GEOMETRY, land_x: GEOMETRY.land_x + 2000 }, + }), + ).rejects.toThrow(/fork it instead/i); + + expect(await progressCount(id)).toBe(1); + expect(Number((await rowOf(id)).land_x)).toBe(GEOMETRY.land_x); + }); + + it("refuses a lineup that does not exist", async () => { + const AUTHOR = await fx.player(); + + await expect( + lineups.updateLineup({ + lineupId: "00000000-0000-4000-8000-000000000000", + steamId: AUTHOR, + name: "ghost", + }), + ).rejects.toThrow(/does not exist/i); + }); +}); From 1e5ce1f04791f5def138f4f89a882e032828fc7a Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 27 Aug 2026 21:23:48 -0400 Subject: [PATCH 4/8] @api chore: "that is not yours" is a 403, not a 400 The edit route answered every refusal with 400, including the two that are refusals rather than malformed requests: editing a lineup you do not own, and moving one somebody else has practised. A plugin told 400 for either would report it to the player as its own bug rather than as the answer it is. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JTocnM98q1YiSRN4Z73REh --- src/utility/utility-lineups.service.ts | 12 ++++++++++-- src/utility/utility.controller.ts | 5 +++++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/src/utility/utility-lineups.service.ts b/src/utility/utility-lineups.service.ts index 425b8c85..36139ed0 100644 --- a/src/utility/utility-lineups.service.ts +++ b/src/utility/utility-lineups.service.ts @@ -133,6 +133,14 @@ export type UtilityLibraryRow = { }; @Injectable() +/** + * A refusal rather than a bad request: the caller asked a well-formed question + * and the answer is no. Typed so the route can say 403 and mean it -- a plugin + * told 400 for "that is not yours" would report it to the player as its own + * bug. + */ +export class UtilityLineupForbidden extends Error {} + export class UtilityLineupsService { // A compromised game server can send anything, so every one of these is a // hard reject rather than a clamp: a silently corrected lineup is a lineup @@ -868,7 +876,7 @@ export class UtilityLineupsService { // to. Without this, anybody on a practice server could rewrite anybody // else's lineup and the plugin would have no way to refuse. if (row.author_steam_id !== String(options.steamId)) { - throw Error("that lineup belongs to somebody else"); + throw new UtilityLineupForbidden("that lineup belongs to somebody else"); } const sets: Array = []; @@ -981,7 +989,7 @@ export class UtilityLineupsService { ); if (Number(others?.count ?? 0) > 0) { - throw Error( + throw new UtilityLineupForbidden( "somebody else has practised this lineup; fork it instead of moving it", ); } diff --git a/src/utility/utility.controller.ts b/src/utility/utility.controller.ts index cd47097f..85ca1e6e 100644 --- a/src/utility/utility.controller.ts +++ b/src/utility/utility.controller.ts @@ -27,6 +27,7 @@ import { } from "./utility-callouts.service"; import { UtilityIngestPayload, + UtilityLineupForbidden, UtilityLineupsService, UtilityPracticeResultPayload, UtilityServerContext, @@ -291,6 +292,10 @@ export class UtilityController { geometry: UtilityController.geometry(body?.geometry), }); } catch (error) { + if (error instanceof UtilityLineupForbidden) { + throw new ForbiddenException(error.message); + } + throw new BadRequestException( (error as Error)?.message ?? "invalid request", ); From ea8d8260442aa731b44a9e426d2ea2fc6277329e Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Thu, 27 Aug 2026 21:27:53 -0400 Subject: [PATCH 5/8] @api chore: give each edit refusal a code, not just a sentence The two 403s from PATCH /utility/:id need different words in game -- one is "that is not yours", the other is "others have practised this, save a copy instead" -- and the only way to tell them apart was to match on our prose. The plugin was looking for the substring "fork", which couples it to wording nobody would think twice about rewording. The reason now travels as a code beside the sentence: not_author, already_practised. Pinned by tests, because it is a contract another codebase reads rather than an implementation detail. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_01JTocnM98q1YiSRN4Z73REh --- src/utility/utility-lineups.service.ts | 24 ++++++++++++++-- src/utility/utility.controller.ts | 5 +++- test/utility-edits.spec.ts | 39 +++++++++++++++++++++++++- 3 files changed, 63 insertions(+), 5 deletions(-) diff --git a/src/utility/utility-lineups.service.ts b/src/utility/utility-lineups.service.ts index 36139ed0..23273213 100644 --- a/src/utility/utility-lineups.service.ts +++ b/src/utility/utility-lineups.service.ts @@ -132,15 +132,29 @@ export type UtilityLibraryRow = { author_steam_id: string; }; -@Injectable() /** * A refusal rather than a bad request: the caller asked a well-formed question * and the answer is no. Typed so the route can say 403 and mean it -- a plugin * told 400 for "that is not yours" would report it to the player as its own * bug. + * + * The reason travels as a CODE as well as a sentence. The two refusals here + * need different words in game -- one is "not yours", the other is "save a copy + * instead" -- and a caller telling them apart by matching on the prose is + * coupled to wording nobody would think twice about rewording. */ -export class UtilityLineupForbidden extends Error {} +export type UtilityLineupRefusal = "not_author" | "already_practised"; + +export class UtilityLineupForbidden extends Error { + constructor( + public readonly reason: UtilityLineupRefusal, + message: string, + ) { + super(message); + } +} +@Injectable() export class UtilityLineupsService { // A compromised game server can send anything, so every one of these is a // hard reject rather than a clamp: a silently corrected lineup is a lineup @@ -876,7 +890,10 @@ export class UtilityLineupsService { // to. Without this, anybody on a practice server could rewrite anybody // else's lineup and the plugin would have no way to refuse. if (row.author_steam_id !== String(options.steamId)) { - throw new UtilityLineupForbidden("that lineup belongs to somebody else"); + throw new UtilityLineupForbidden( + "not_author", + "that lineup belongs to somebody else", + ); } const sets: Array = []; @@ -990,6 +1007,7 @@ export class UtilityLineupsService { if (Number(others?.count ?? 0) > 0) { throw new UtilityLineupForbidden( + "already_practised", "somebody else has practised this lineup; fork it instead of moving it", ); } diff --git a/src/utility/utility.controller.ts b/src/utility/utility.controller.ts index 85ca1e6e..67e143bc 100644 --- a/src/utility/utility.controller.ts +++ b/src/utility/utility.controller.ts @@ -293,7 +293,10 @@ export class UtilityController { }); } catch (error) { if (error instanceof UtilityLineupForbidden) { - throw new ForbiddenException(error.message); + throw new ForbiddenException({ + message: error.message, + reason: error.reason, + }); } throw new BadRequestException( diff --git a/test/utility-edits.spec.ts b/test/utility-edits.spec.ts index bddf89d4..d69a7817 100644 --- a/test/utility-edits.spec.ts +++ b/test/utility-edits.spec.ts @@ -1,6 +1,9 @@ import { Logger } from "@nestjs/common"; import { PostgresService } from "./../src/postgres/postgres.service"; -import { UtilityLineupsService } from "./../src/utility/utility-lineups.service"; +import { + UtilityLineupForbidden, + UtilityLineupsService, +} from "./../src/utility/utility-lineups.service"; import { User } from "./../src/auth/types/User"; import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; @@ -256,6 +259,40 @@ describe("utility lineup edits (SQL-driven)", () => { expect(Number((await rowOf(id)).land_x)).toBe(GEOMETRY.land_x); }); + // The plugin shows a different sentence for each refusal, and it should not + // have to match on our prose to tell them apart. + it("names each refusal with a stable code", async () => { + const AUTHOR = await fx.player(); + const SOMEBODY_ELSE = await fx.player(); + + const mine = await insertLineup(AUTHOR); + + await expect( + lineups.updateLineup({ lineupId: mine, steamId: SOMEBODY_ELSE, name: "x" }), + ).rejects.toMatchObject({ reason: "not_author" }); + + const practised = await insertLineup(AUTHOR); + await practise(practised, SOMEBODY_ELSE); + + await expect( + lineups.updateLineup({ + lineupId: practised, + steamId: AUTHOR, + geometry: { ...GEOMETRY, land_x: GEOMETRY.land_x + 2000 }, + }), + ).rejects.toMatchObject({ reason: "already_practised" }); + }); + + it("marks a refusal as a refusal rather than a bad request", async () => { + const AUTHOR = await fx.player(); + const SOMEBODY_ELSE = await fx.player(); + const id = await insertLineup(AUTHOR); + + await expect( + lineups.updateLineup({ lineupId: id, steamId: SOMEBODY_ELSE, name: "x" }), + ).rejects.toBeInstanceOf(UtilityLineupForbidden); + }); + it("refuses a lineup that does not exist", async () => { const AUTHOR = await fx.player(); From eb05ec96459c6f697bc1f4241b00e1fa37da7695 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 28 Aug 2026 09:44:50 -0400 Subject: [PATCH 6/8] feature: nade qol enhancements --- generated/schema.graphql | 461 + generated/schema.ts | 441 + generated/types.ts | 95590 ++++++++-------- hasura/metadata/actions.graphql | 9 + hasura/metadata/actions.yaml | 8 + .../default/tables/public_map_callouts.yaml | 14 + .../databases/default/tables/tables.yaml | 1 + .../1880000011000_map_callouts/down.sql | 3 + .../default/1880000011000_map_callouts/up.sql | 26 + src/telemetry/telemetry.service.ts | 133 +- src/utility/enums/UtilityJobs.ts | 1 + src/utility/jobs/SyncMapCallouts.ts | 26 + src/utility/utility-analysis.controller.ts | 14 + src/utility/utility-callouts.service.spec.ts | 148 + src/utility/utility-callouts.service.ts | 457 + src/utility/utility-mining.service.ts | 29 +- src/utility/utility.module.ts | 19 + test/map-callouts.spec.ts | 109 + test/telemetry.spec.ts | 15 + 19 files changed, 49954 insertions(+), 47550 deletions(-) create mode 100644 hasura/metadata/databases/default/tables/public_map_callouts.yaml create mode 100644 hasura/migrations/default/1880000011000_map_callouts/down.sql create mode 100644 hasura/migrations/default/1880000011000_map_callouts/up.sql create mode 100644 src/utility/jobs/SyncMapCallouts.ts create mode 100644 src/utility/utility-callouts.service.spec.ts create mode 100644 src/utility/utility-callouts.service.ts create mode 100644 test/map-callouts.spec.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index a27073bd..3bf999e5 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -403,6 +403,11 @@ type LockInfo { usename: String } +type MapCalloutSyncOutput { + callouts: Int! + maps: Int! +} + type MeResponse { avatar_url: String! country: String @@ -32426,6 +32431,254 @@ input lobby_players_variance_order_by { steam_id: order_by } +""" +columns and relationships of "map_callouts" +""" +type map_callouts { + boxes( + """JSON select path""" + path: String + ): jsonb! + map_name: String! + name: String! + source: String! + updated_at: timestamptz! +} + +""" +aggregated selection of "map_callouts" +""" +type map_callouts_aggregate { + aggregate: map_callouts_aggregate_fields + nodes: [map_callouts!]! +} + +""" +aggregate fields of "map_callouts" +""" +type map_callouts_aggregate_fields { + count(columns: [map_callouts_select_column!], distinct: Boolean): Int! + max: map_callouts_max_fields + min: map_callouts_min_fields +} + +"""append existing jsonb value of filtered columns with new jsonb value""" +input map_callouts_append_input { + boxes: jsonb +} + +""" +Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. +""" +input map_callouts_bool_exp { + _and: [map_callouts_bool_exp!] + _not: map_callouts_bool_exp + _or: [map_callouts_bool_exp!] + boxes: jsonb_comparison_exp + map_name: String_comparison_exp + name: String_comparison_exp + source: String_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "map_callouts" +""" +enum map_callouts_constraint { + """ + unique or primary key constraint on columns "name", "map_name" + """ + map_callouts_pkey +} + +""" +delete the field or element with specified path (for JSON arrays, negative integers count from the end) +""" +input map_callouts_delete_at_path_input { + boxes: [String!] +} + +""" +delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array +""" +input map_callouts_delete_elem_input { + boxes: Int +} + +""" +delete key/value pair or string element. key/value pairs are matched based on their key value +""" +input map_callouts_delete_key_input { + boxes: String +} + +""" +input type for inserting data into table "map_callouts" +""" +input map_callouts_insert_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +"""aggregate max on columns""" +type map_callouts_max_fields { + map_name: String + name: String + source: String + updated_at: timestamptz +} + +"""aggregate min on columns""" +type map_callouts_min_fields { + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +response of any mutation on the table "map_callouts" +""" +type map_callouts_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [map_callouts!]! +} + +""" +on_conflict condition type for table "map_callouts" +""" +input map_callouts_on_conflict { + constraint: map_callouts_constraint! + update_columns: [map_callouts_update_column!]! = [] + where: map_callouts_bool_exp +} + +"""Ordering options when selecting data from "map_callouts".""" +input map_callouts_order_by { + boxes: order_by + map_name: order_by + name: order_by + source: order_by + updated_at: order_by +} + +"""primary key columns input for table: map_callouts""" +input map_callouts_pk_columns_input { + map_name: String! + name: String! +} + +"""prepend existing jsonb value of filtered columns with new jsonb value""" +input map_callouts_prepend_input { + boxes: jsonb +} + +""" +select columns of table "map_callouts" +""" +enum map_callouts_select_column { + """column name""" + boxes + + """column name""" + map_name + + """column name""" + name + + """column name""" + source + + """column name""" + updated_at +} + +""" +input type for updating data in table "map_callouts" +""" +input map_callouts_set_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +Streaming cursor of the table "map_callouts" +""" +input map_callouts_stream_cursor_input { + """Stream column input with initial value""" + initial_value: map_callouts_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input map_callouts_stream_cursor_value_input { + boxes: jsonb + map_name: String + name: String + source: String + updated_at: timestamptz +} + +""" +update columns of table "map_callouts" +""" +enum map_callouts_update_column { + """column name""" + boxes + + """column name""" + map_name + + """column name""" + name + + """column name""" + source + + """column name""" + updated_at +} + +input map_callouts_updates { + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + + """filter the rows which have to be updated""" + where: map_callouts_bool_exp! +} + """ columns and relationships of "map_pools" """ @@ -44500,6 +44753,19 @@ type mutation_root { """ delete_lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players + """ + delete data from the table: "map_callouts" + """ + delete_map_callouts( + """filter the rows which have to be deleted""" + where: map_callouts_bool_exp! + ): map_callouts_mutation_response + + """ + delete single row from the table: "map_callouts" + """ + delete_map_callouts_by_pk(map_name: String!, name: String!): map_callouts + """ delete data from the table: "map_pools" """ @@ -47906,6 +48172,28 @@ type mutation_root { on_conflict: lobby_players_on_conflict ): lobby_players + """ + insert data into the table: "map_callouts" + """ + insert_map_callouts( + """the rows to be inserted""" + objects: [map_callouts_insert_input!]! + + """upsert condition""" + on_conflict: map_callouts_on_conflict + ): map_callouts_mutation_response + + """ + insert a single row into the table: "map_callouts" + """ + insert_map_callouts_one( + """the row to be inserted""" + object: map_callouts_insert_input! + + """upsert condition""" + on_conflict: map_callouts_on_conflict + ): map_callouts + """ insert data into the table: "map_pools" """ @@ -50332,6 +50620,9 @@ type mutation_root { switchLineup(match_id: String!): SuccessOutput switchLiveMatch(from_match_id: uuid!, mode: String!, to_match_id: uuid!): SuccessOutput + """Pull the published map callouts for every enabled map""" + syncMapCallouts: MapCalloutSyncOutput + """Pull the game plugin registry into this panel's catalog""" syncPluginRegistry: SyncPluginRegistryOutput syncSteamFriends: SuccessOutput @@ -53654,6 +53945,76 @@ type mutation_root { updates: [lobby_players_updates!]! ): [lobby_players_mutation_response] + """ + update data of the table: "map_callouts" + """ + update_map_callouts( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + + """filter the rows which have to be updated""" + where: map_callouts_bool_exp! + ): map_callouts_mutation_response + + """ + update single row of the table: "map_callouts" + """ + update_map_callouts_by_pk( + """append existing jsonb value of filtered columns with new jsonb value""" + _append: map_callouts_append_input + + """ + delete the field or element with specified path (for JSON arrays, negative integers count from the end) + """ + _delete_at_path: map_callouts_delete_at_path_input + + """ + delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array + """ + _delete_elem: map_callouts_delete_elem_input + + """ + delete key/value pair or string element. key/value pairs are matched based on their key value + """ + _delete_key: map_callouts_delete_key_input + + """prepend existing jsonb value of filtered columns with new jsonb value""" + _prepend: map_callouts_prepend_input + + """sets the columns of the filtered rows to the given values""" + _set: map_callouts_set_input + pk_columns: map_callouts_pk_columns_input! + ): map_callouts + + """ + update multiples rows of table: "map_callouts" + """ + update_map_callouts_many( + """updates to execute, in order""" + updates: [map_callouts_updates!]! + ): [map_callouts_mutation_response] + """ update data of the table: "map_pools" """ @@ -84060,6 +84421,49 @@ type query_root { """fetch data from the table: "lobby_players" using primary key columns""" lobby_players_by_pk(lobby_id: uuid!, steam_id: bigint!): lobby_players + """ + fetch data from the table: "map_callouts" + """ + map_callouts( + """distinct select on columns""" + distinct_on: [map_callouts_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + + """ + fetch aggregated fields from the table: "map_callouts" + """ + map_callouts_aggregate( + """distinct select on columns""" + distinct_on: [map_callouts_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): map_callouts_aggregate! + + """fetch data from the table: "map_callouts" using primary key columns""" + map_callouts_by_pk(map_name: String!, name: String!): map_callouts + """ fetch data from the table: "map_pools" """ @@ -98211,6 +98615,63 @@ type subscription_root { where: lobby_players_bool_exp ): [lobby_players!]! + """ + fetch data from the table: "map_callouts" + """ + map_callouts( + """distinct select on columns""" + distinct_on: [map_callouts_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + + """ + fetch aggregated fields from the table: "map_callouts" + """ + map_callouts_aggregate( + """distinct select on columns""" + distinct_on: [map_callouts_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [map_callouts_order_by!] + + """filter the rows returned""" + where: map_callouts_bool_exp + ): map_callouts_aggregate! + + """fetch data from the table: "map_callouts" using primary key columns""" + map_callouts_by_pk(map_name: String!, name: String!): map_callouts + + """ + fetch data from the table in a streaming manner: "map_callouts" + """ + map_callouts_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [map_callouts_stream_cursor_input]! + + """filter the rows returned""" + where: map_callouts_bool_exp + ): [map_callouts!]! + """ fetch data from the table: "map_pools" """ diff --git a/generated/schema.ts b/generated/schema.ts index b09328b5..485987ad 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -368,6 +368,12 @@ export interface LockInfo { __typename: 'LockInfo' } +export interface MapCalloutSyncOutput { + callouts: Scalars['Int'] + maps: Scalars['Int'] + __typename: 'MapCalloutSyncOutput' +} + export interface MeResponse { avatar_url: Scalars['String'] country: (Scalars['String'] | null) @@ -11679,6 +11685,76 @@ export interface lobby_players_variance_fields { } +/** columns and relationships of "map_callouts" */ +export interface map_callouts { + boxes: Scalars['jsonb'] + map_name: Scalars['String'] + name: Scalars['String'] + source: Scalars['String'] + updated_at: Scalars['timestamptz'] + __typename: 'map_callouts' +} + + +/** aggregated selection of "map_callouts" */ +export interface map_callouts_aggregate { + aggregate: (map_callouts_aggregate_fields | null) + nodes: map_callouts[] + __typename: 'map_callouts_aggregate' +} + + +/** aggregate fields of "map_callouts" */ +export interface map_callouts_aggregate_fields { + count: Scalars['Int'] + max: (map_callouts_max_fields | null) + min: (map_callouts_min_fields | null) + __typename: 'map_callouts_aggregate_fields' +} + + +/** unique or primary key constraints on table "map_callouts" */ +export type map_callouts_constraint = 'map_callouts_pkey' + + +/** aggregate max on columns */ +export interface map_callouts_max_fields { + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'map_callouts_max_fields' +} + + +/** aggregate min on columns */ +export interface map_callouts_min_fields { + map_name: (Scalars['String'] | null) + name: (Scalars['String'] | null) + source: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'map_callouts_min_fields' +} + + +/** response of any mutation on the table "map_callouts" */ +export interface map_callouts_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: map_callouts[] + __typename: 'map_callouts_mutation_response' +} + + +/** select columns of table "map_callouts" */ +export type map_callouts_select_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' + + +/** update columns of table "map_callouts" */ +export type map_callouts_update_column = 'boxes' | 'map_name' | 'name' | 'source' | 'updated_at' + + /** columns and relationships of "map_pools" */ export interface map_pools { /** An object relationship */ @@ -15036,6 +15112,10 @@ export interface mutation_root { delete_lobby_players: (lobby_players_mutation_response | null) /** delete single row from the table: "lobby_players" */ delete_lobby_players_by_pk: (lobby_players | null) + /** delete data from the table: "map_callouts" */ + delete_map_callouts: (map_callouts_mutation_response | null) + /** delete single row from the table: "map_callouts" */ + delete_map_callouts_by_pk: (map_callouts | null) /** delete data from the table: "map_pools" */ delete_map_pools: (map_pools_mutation_response | null) /** delete single row from the table: "map_pools" */ @@ -15816,6 +15896,10 @@ export interface mutation_root { insert_lobby_players: (lobby_players_mutation_response | null) /** insert a single row into the table: "lobby_players" */ insert_lobby_players_one: (lobby_players | null) + /** insert data into the table: "map_callouts" */ + insert_map_callouts: (map_callouts_mutation_response | null) + /** insert a single row into the table: "map_callouts" */ + insert_map_callouts_one: (map_callouts | null) /** insert data into the table: "map_pools" */ insert_map_pools: (map_pools_mutation_response | null) /** insert a single row into the table: "map_pools" */ @@ -16362,6 +16446,8 @@ export interface mutation_root { swapLineups: (SuccessOutput | null) switchLineup: (SuccessOutput | null) switchLiveMatch: (SuccessOutput | null) + /** Pull the published map callouts for every enabled map */ + syncMapCallouts: (MapCalloutSyncOutput | null) /** Pull the game plugin registry into this panel's catalog */ syncPluginRegistry: (SyncPluginRegistryOutput | null) syncSteamFriends: (SuccessOutput | null) @@ -16971,6 +17057,12 @@ export interface mutation_root { update_lobby_players_by_pk: (lobby_players | null) /** update multiples rows of table: "lobby_players" */ update_lobby_players_many: ((lobby_players_mutation_response | null)[] | null) + /** update data of the table: "map_callouts" */ + update_map_callouts: (map_callouts_mutation_response | null) + /** update single row of the table: "map_callouts" */ + update_map_callouts_by_pk: (map_callouts | null) + /** update multiples rows of table: "map_callouts" */ + update_map_callouts_many: ((map_callouts_mutation_response | null)[] | null) /** update data of the table: "map_pools" */ update_map_pools: (map_pools_mutation_response | null) /** update single row of the table: "map_pools" */ @@ -26626,6 +26718,12 @@ export interface query_root { lobby_players_aggregate: lobby_players_aggregate /** fetch data from the table: "lobby_players" using primary key columns */ lobby_players_by_pk: (lobby_players | null) + /** fetch data from the table: "map_callouts" */ + map_callouts: map_callouts[] + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate: map_callouts_aggregate + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk: (map_callouts | null) /** fetch data from the table: "map_pools" */ map_pools: map_pools[] /** fetch aggregated fields from the table: "map_pools" */ @@ -29090,6 +29188,14 @@ export interface subscription_root { lobby_players_by_pk: (lobby_players | null) /** fetch data from the table in a streaming manner: "lobby_players" */ lobby_players_stream: lobby_players[] + /** fetch data from the table: "map_callouts" */ + map_callouts: map_callouts[] + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate: map_callouts_aggregate + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk: (map_callouts | null) + /** fetch data from the table in a streaming manner: "map_callouts" */ + map_callouts_stream: map_callouts[] /** fetch data from the table: "map_pools" */ map_pools: map_pools[] /** fetch aggregated fields from the table: "map_pools" */ @@ -43864,6 +43970,13 @@ export interface LockInfoGenqlSelection{ __scalar?: boolean | number } +export interface MapCalloutSyncOutputGenqlSelection{ + callouts?: boolean | number + maps?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface MeResponseGenqlSelection{ avatar_url?: boolean | number country?: boolean | number @@ -62282,6 +62395,144 @@ export interface lobby_players_variance_fieldsGenqlSelection{ export interface lobby_players_variance_order_by {invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +/** columns and relationships of "map_callouts" */ +export interface map_calloutsGenqlSelection{ + boxes?: { __args: { + /** JSON select path */ + path?: (Scalars['String'] | null)} } | boolean | number + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "map_callouts" */ +export interface map_callouts_aggregateGenqlSelection{ + aggregate?: map_callouts_aggregate_fieldsGenqlSelection + nodes?: map_calloutsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "map_callouts" */ +export interface map_callouts_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (map_callouts_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: map_callouts_max_fieldsGenqlSelection + min?: map_callouts_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** append existing jsonb value of filtered columns with new jsonb value */ +export interface map_callouts_append_input {boxes?: (Scalars['jsonb'] | null)} + + +/** Boolean expression to filter rows from the table "map_callouts". All fields are combined with a logical 'AND'. */ +export interface map_callouts_bool_exp {_and?: (map_callouts_bool_exp[] | null),_not?: (map_callouts_bool_exp | null),_or?: (map_callouts_bool_exp[] | null),boxes?: (jsonb_comparison_exp | null),map_name?: (String_comparison_exp | null),name?: (String_comparison_exp | null),source?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +export interface map_callouts_delete_at_path_input {boxes?: (Scalars['String'][] | null)} + + +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +export interface map_callouts_delete_elem_input {boxes?: (Scalars['Int'] | null)} + + +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +export interface map_callouts_delete_key_input {boxes?: (Scalars['String'] | null)} + + +/** input type for inserting data into table "map_callouts" */ +export interface map_callouts_insert_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface map_callouts_max_fieldsGenqlSelection{ + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface map_callouts_min_fieldsGenqlSelection{ + map_name?: boolean | number + name?: boolean | number + source?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "map_callouts" */ +export interface map_callouts_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: map_calloutsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "map_callouts" */ +export interface map_callouts_on_conflict {constraint: map_callouts_constraint,update_columns?: map_callouts_update_column[],where?: (map_callouts_bool_exp | null)} + + +/** Ordering options when selecting data from "map_callouts". */ +export interface map_callouts_order_by {boxes?: (order_by | null),map_name?: (order_by | null),name?: (order_by | null),source?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: map_callouts */ +export interface map_callouts_pk_columns_input {map_name: Scalars['String'],name: Scalars['String']} + + +/** prepend existing jsonb value of filtered columns with new jsonb value */ +export interface map_callouts_prepend_input {boxes?: (Scalars['jsonb'] | null)} + + +/** input type for updating data in table "map_callouts" */ +export interface map_callouts_set_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** Streaming cursor of the table "map_callouts" */ +export interface map_callouts_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: map_callouts_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface map_callouts_stream_cursor_value_input {boxes?: (Scalars['jsonb'] | null),map_name?: (Scalars['String'] | null),name?: (Scalars['String'] | null),source?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null)} + +export interface map_callouts_updates { +/** append existing jsonb value of filtered columns with new jsonb value */ +_append?: (map_callouts_append_input | null), +/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ +_delete_at_path?: (map_callouts_delete_at_path_input | null), +/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ +_delete_elem?: (map_callouts_delete_elem_input | null), +/** delete key/value pair or string element. key/value pairs are matched based on their key value */ +_delete_key?: (map_callouts_delete_key_input | null), +/** prepend existing jsonb value of filtered columns with new jsonb value */ +_prepend?: (map_callouts_prepend_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (map_callouts_set_input | null), +/** filter the rows which have to be updated */ +where: map_callouts_bool_exp} + + /** columns and relationships of "map_pools" */ export interface map_poolsGenqlSelection{ /** An object relationship */ @@ -68113,6 +68364,12 @@ export interface mutation_rootGenqlSelection{ where: lobby_players_bool_exp} }) /** delete single row from the table: "lobby_players" */ delete_lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "map_callouts" */ + delete_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: map_callouts_bool_exp} }) + /** delete single row from the table: "map_callouts" */ + delete_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) /** delete data from the table: "map_pools" */ delete_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -69873,6 +70130,18 @@ export interface mutation_rootGenqlSelection{ object: lobby_players_insert_input, /** upsert condition */ on_conflict?: (lobby_players_on_conflict | null)} }) + /** insert data into the table: "map_callouts" */ + insert_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: map_callouts_insert_input[], + /** upsert condition */ + on_conflict?: (map_callouts_on_conflict | null)} }) + /** insert a single row into the table: "map_callouts" */ + insert_map_callouts_one?: (map_calloutsGenqlSelection & { __args: { + /** the row to be inserted */ + object: map_callouts_insert_input, + /** upsert condition */ + on_conflict?: (map_callouts_on_conflict | null)} }) /** insert data into the table: "map_pools" */ insert_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -71219,6 +71488,8 @@ export interface mutation_rootGenqlSelection{ swapLineups?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) switchLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) switchLiveMatch?: (SuccessOutputGenqlSelection & { __args: {from_match_id: Scalars['uuid'], mode: Scalars['String'], to_match_id: Scalars['uuid']} }) + /** Pull the published map callouts for every enabled map */ + syncMapCallouts?: MapCalloutSyncOutputGenqlSelection /** Pull the game plugin registry into this panel's catalog */ syncPluginRegistry?: SyncPluginRegistryOutputGenqlSelection syncSteamFriends?: SuccessOutputGenqlSelection @@ -72912,6 +73183,40 @@ export interface mutation_rootGenqlSelection{ update_lobby_players_many?: (lobby_players_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: lobby_players_updates[]} }) + /** update data of the table: "map_callouts" */ + update_map_callouts?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (map_callouts_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (map_callouts_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (map_callouts_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (map_callouts_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (map_callouts_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (map_callouts_set_input | null), + /** filter the rows which have to be updated */ + where: map_callouts_bool_exp} }) + /** update single row of the table: "map_callouts" */ + update_map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: { + /** append existing jsonb value of filtered columns with new jsonb value */ + _append?: (map_callouts_append_input | null), + /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */ + _delete_at_path?: (map_callouts_delete_at_path_input | null), + /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */ + _delete_elem?: (map_callouts_delete_elem_input | null), + /** delete key/value pair or string element. key/value pairs are matched based on their key value */ + _delete_key?: (map_callouts_delete_key_input | null), + /** prepend existing jsonb value of filtered columns with new jsonb value */ + _prepend?: (map_callouts_prepend_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (map_callouts_set_input | null), pk_columns: map_callouts_pk_columns_input} }) + /** update multiples rows of table: "map_callouts" */ + update_map_callouts_many?: (map_callouts_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: map_callouts_updates[]} }) /** update data of the table: "map_pools" */ update_map_pools?: (map_pools_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -89439,6 +89744,32 @@ export interface query_rootGenqlSelection{ where?: (lobby_players_bool_exp | null)} }) /** fetch data from the table: "lobby_players" using primary key columns */ lobby_players_by_pk?: (lobby_playersGenqlSelection & { __args: {lobby_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "map_callouts" */ + map_callouts?: (map_calloutsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) /** fetch data from the table: "map_pools" */ map_pools?: (map_poolsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -97696,6 +98027,40 @@ export interface subscription_rootGenqlSelection{ cursor: (lobby_players_stream_cursor_input | null)[], /** filter the rows returned */ where?: (lobby_players_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" */ + map_callouts?: (map_calloutsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch aggregated fields from the table: "map_callouts" */ + map_callouts_aggregate?: (map_callouts_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (map_callouts_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (map_callouts_order_by[] | null), + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) + /** fetch data from the table: "map_callouts" using primary key columns */ + map_callouts_by_pk?: (map_calloutsGenqlSelection & { __args: {map_name: Scalars['String'], name: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "map_callouts" */ + map_callouts_stream?: (map_calloutsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (map_callouts_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (map_callouts_bool_exp | null)} }) /** fetch data from the table: "map_pools" */ map_pools?: (map_poolsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -121530,6 +121895,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const MapCalloutSyncOutput_possibleTypes: string[] = ['MapCalloutSyncOutput'] + export const isMapCalloutSyncOutput = (obj?: { __typename?: any } | null): obj is MapCalloutSyncOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isMapCalloutSyncOutput"') + return MapCalloutSyncOutput_possibleTypes.includes(obj.__typename) + } + + + const MeResponse_possibleTypes: string[] = ['MeResponse'] export const isMeResponse = (obj?: { __typename?: any } | null): obj is MeResponse => { if (!obj?.__typename) throw new Error('__typename is missing in "isMeResponse"') @@ -129298,6 +129671,54 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const map_callouts_possibleTypes: string[] = ['map_callouts'] + export const ismap_callouts = (obj?: { __typename?: any } | null): obj is map_callouts => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts"') + return map_callouts_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_aggregate_possibleTypes: string[] = ['map_callouts_aggregate'] + export const ismap_callouts_aggregate = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate"') + return map_callouts_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_aggregate_fields_possibleTypes: string[] = ['map_callouts_aggregate_fields'] + export const ismap_callouts_aggregate_fields = (obj?: { __typename?: any } | null): obj is map_callouts_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_aggregate_fields"') + return map_callouts_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_max_fields_possibleTypes: string[] = ['map_callouts_max_fields'] + export const ismap_callouts_max_fields = (obj?: { __typename?: any } | null): obj is map_callouts_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_max_fields"') + return map_callouts_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_min_fields_possibleTypes: string[] = ['map_callouts_min_fields'] + export const ismap_callouts_min_fields = (obj?: { __typename?: any } | null): obj is map_callouts_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_min_fields"') + return map_callouts_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const map_callouts_mutation_response_possibleTypes: string[] = ['map_callouts_mutation_response'] + export const ismap_callouts_mutation_response = (obj?: { __typename?: any } | null): obj is map_callouts_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ismap_callouts_mutation_response"') + return map_callouts_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const map_pools_possibleTypes: string[] = ['map_pools'] export const ismap_pools = (obj?: { __typename?: any } | null): obj is map_pools => { if (!obj?.__typename) throw new Error('__typename is missing in "ismap_pools"') @@ -145270,6 +145691,26 @@ export const enumLobbyPlayersUpdateColumn = { steam_id: 'steam_id' as const } +export const enumMapCalloutsConstraint = { + map_callouts_pkey: 'map_callouts_pkey' as const +} + +export const enumMapCalloutsSelectColumn = { + boxes: 'boxes' as const, + map_name: 'map_name' as const, + name: 'name' as const, + source: 'source' as const, + updated_at: 'updated_at' as const +} + +export const enumMapCalloutsUpdateColumn = { + boxes: 'boxes' as const, + map_name: 'map_name' as const, + name: 'name' as const, + source: 'source' as const, + updated_at: 'updated_at' as const +} + export const enumMapPoolsConstraint = { map_pools_pkey: 'map_pools_pkey' as const } diff --git a/generated/types.ts b/generated/types.ts index 51259fe1..a1e4bff4 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -3,876 +3,879 @@ export default { 6, 32, 41, - 84, - 156, - 164, - 168, - 170, - 181, - 192, - 204, - 217, - 226, - 234, - 250, - 261, - 273, - 286, - 296, - 304, - 309, - 312, - 319, - 328, - 336, - 354, - 369, + 85, + 157, + 165, + 169, + 171, + 182, + 193, + 205, + 218, + 227, + 235, + 251, + 262, + 274, + 287, + 297, + 305, + 310, + 313, + 320, + 329, + 337, + 355, 370, 371, - 383, - 392, - 399, - 412, - 420, - 430, - 439, - 447, - 457, - 466, - 474, - 484, - 493, - 501, - 518, - 529, + 372, + 384, + 393, + 400, + 413, + 421, + 431, + 440, + 448, + 458, + 467, + 475, + 485, + 494, + 502, + 519, 530, 531, - 543, - 563, - 574, + 532, + 544, + 564, 575, 576, - 588, - 608, - 620, + 577, + 589, + 609, 621, 622, - 634, - 646, + 623, + 635, 647, - 656, - 660, - 666, + 648, + 657, + 661, 667, - 676, - 680, - 686, + 668, + 677, + 681, 687, - 696, - 700, - 706, + 688, + 697, + 701, 707, - 717, - 721, - 727, + 708, + 718, + 722, 728, - 738, - 742, - 748, + 729, + 739, + 743, 749, - 759, - 763, - 769, + 750, + 760, + 764, 770, - 780, - 784, - 790, + 771, + 781, + 785, 791, - 801, - 805, - 811, + 792, + 802, + 806, 812, - 821, - 825, - 831, + 813, + 822, + 826, 832, - 841, - 845, - 851, + 833, + 842, + 846, 852, - 862, - 866, - 872, + 853, + 863, + 867, 873, - 882, - 886, - 892, + 874, + 883, + 887, 893, - 902, - 906, - 912, + 894, + 903, + 907, 913, - 922, - 926, - 932, + 914, + 923, + 927, 933, - 942, - 946, - 952, + 934, + 943, + 947, 953, - 963, - 967, - 973, + 954, + 964, + 968, 974, - 984, - 988, - 994, + 975, + 985, + 989, 995, - 1005, - 1009, - 1015, + 996, + 1006, + 1010, 1016, - 1026, - 1030, - 1036, + 1017, + 1027, + 1031, 1037, - 1047, - 1051, - 1057, + 1038, + 1048, + 1052, 1058, - 1068, - 1072, - 1078, + 1059, + 1069, + 1073, 1079, - 1088, - 1092, - 1098, + 1080, + 1089, + 1093, 1099, - 1109, - 1113, - 1119, + 1100, + 1110, + 1114, 1120, - 1129, - 1133, - 1139, + 1121, + 1130, + 1134, 1140, - 1150, - 1154, - 1160, + 1141, + 1151, + 1155, 1161, - 1170, - 1174, - 1180, + 1162, + 1171, + 1175, 1181, - 1190, - 1194, - 1200, + 1182, + 1191, + 1195, 1201, - 1211, - 1215, - 1221, + 1202, + 1212, + 1216, 1222, - 1232, - 1236, - 1242, + 1223, + 1233, + 1237, 1243, - 1252, - 1256, - 1262, + 1244, + 1253, + 1257, 1263, - 1272, - 1276, - 1282, + 1264, + 1273, + 1277, 1283, - 1292, - 1296, - 1302, + 1284, + 1293, + 1297, 1303, - 1312, - 1316, - 1322, + 1304, + 1313, + 1317, 1323, - 1332, - 1336, - 1342, + 1324, + 1333, + 1337, 1343, - 1353, - 1357, - 1363, + 1344, + 1354, + 1358, 1364, - 1373, - 1377, - 1383, + 1365, + 1374, + 1378, 1384, - 1393, - 1397, - 1403, + 1385, + 1394, + 1398, 1404, - 1413, - 1417, - 1423, + 1405, + 1414, + 1418, 1424, - 1433, - 1437, - 1443, + 1425, + 1434, + 1438, 1444, - 1454, - 1458, - 1464, + 1445, + 1455, + 1459, 1465, - 1474, - 1478, - 1484, + 1466, + 1475, + 1479, 1485, - 1494, - 1498, - 1504, + 1486, + 1495, + 1499, 1505, - 1515, - 1519, - 1525, + 1506, + 1516, + 1520, 1526, - 1536, - 1540, - 1546, + 1527, + 1537, + 1541, 1547, - 1557, - 1561, - 1567, + 1548, + 1558, + 1562, 1568, - 1577, - 1581, - 1587, + 1569, + 1578, + 1582, 1588, - 1598, - 1602, - 1608, + 1589, + 1599, + 1603, 1609, - 1618, - 1622, - 1628, + 1610, + 1619, + 1623, 1629, - 1638, - 1642, - 1648, + 1630, + 1639, + 1643, 1649, - 1658, - 1662, - 1668, + 1650, + 1659, + 1663, 1669, - 1678, - 1682, - 1688, + 1670, + 1679, + 1683, 1689, - 1698, - 1702, - 1708, + 1690, + 1699, + 1703, 1709, - 1718, - 1722, - 1728, + 1710, + 1719, + 1723, 1729, - 1738, - 1742, - 1748, - 1756, - 1760, - 1772, - 1794, - 1805, - 1817, - 1825, - 1837, - 1855, - 1866, - 1878, - 1896, - 1907, - 1919, - 1935, - 1945, - 1949, - 1959, - 1969, - 1973, - 1980, - 1990, - 1998, - 2003, - 2010, - 2019, - 2027, - 2045, - 2060, + 1730, + 1739, + 1743, + 1749, + 1757, + 1761, + 1773, + 1795, + 1806, + 1818, + 1826, + 1838, + 1856, + 1867, + 1879, + 1897, + 1908, + 1920, + 1936, + 1946, + 1950, + 1960, + 1970, + 1974, + 1981, + 1991, + 1999, + 2004, + 2011, + 2020, + 2028, + 2046, 2061, 2062, - 2074, - 2086, - 2095, - 2099, - 2105, - 2113, - 2117, - 2131, - 2142, + 2063, + 2075, + 2087, + 2096, + 2100, + 2106, + 2114, + 2118, + 2132, 2143, 2144, - 2156, - 2170, - 2183, - 2191, - 2206, - 2216, + 2145, + 2157, + 2171, + 2184, + 2192, + 2207, 2217, 2218, - 2222, - 2237, - 2253, + 2219, + 2223, + 2238, 2254, 2255, - 2267, - 2281, - 2295, - 2303, - 2314, - 2327, - 2335, - 2344, - 2346, - 2348, - 2362, - 2380, - 2390, - 2398, - 2413, - 2424, - 2436, - 2454, - 2465, - 2477, - 2495, - 2506, - 2518, - 2534, - 2545, - 2549, - 2557, - 2571, - 2579, - 2594, - 2605, - 2617, - 2635, - 2646, - 2658, - 2676, - 2688, - 2700, - 2712, - 2721, - 2725, - 2731, - 2740, - 2744, - 2758, - 2769, + 2256, + 2268, + 2282, + 2296, + 2304, + 2315, + 2328, + 2336, + 2345, + 2347, + 2349, + 2363, + 2381, + 2391, + 2399, + 2414, + 2425, + 2437, + 2455, + 2466, + 2478, + 2496, + 2507, + 2519, + 2535, + 2546, + 2550, + 2558, + 2572, + 2580, + 2595, + 2606, + 2618, + 2636, + 2647, + 2659, + 2677, + 2689, + 2701, + 2713, + 2722, + 2726, + 2732, + 2741, + 2745, + 2759, 2770, 2771, - 2783, - 2795, - 2804, - 2808, - 2820, - 2831, + 2772, + 2784, + 2797, + 2809, + 2813, + 2819, + 2828, 2832, - 2833, - 2837, - 2849, + 2844, + 2855, + 2856, + 2857, 2861, 2873, - 2892, - 2907, - 2919, - 2939, - 2950, - 2951, - 2952, - 2964, - 2982, - 2994, + 2885, + 2897, + 2916, + 2931, + 2943, + 2963, + 2974, + 2975, + 2976, + 2988, 3006, - 3027, - 3043, - 3044, - 3045, - 3057, - 3075, - 3086, - 3098, - 3116, - 3126, - 3127, - 3128, - 3132, - 3144, + 3018, + 3030, + 3051, + 3067, + 3068, + 3069, + 3081, + 3099, + 3110, + 3122, + 3140, + 3150, + 3151, + 3152, 3156, 3168, - 3188, - 3200, - 3201, - 3202, - 3214, - 3232, - 3242, - 3243, - 3244, - 3248, - 3263, - 3278, - 3279, - 3280, - 3292, + 3180, + 3192, + 3212, + 3224, + 3225, + 3226, + 3238, + 3256, + 3266, + 3267, + 3268, + 3272, + 3287, + 3302, + 3303, 3304, - 3312, 3316, - 3330, - 3342, - 3343, - 3344, - 3356, + 3328, + 3336, + 3340, + 3354, + 3366, + 3367, 3368, - 3376, 3380, - 3407, - 3408, - 3409, + 3392, + 3400, + 3404, + 3431, + 3432, 3433, - 3442, - 3450, - 3460, - 3469, - 3477, - 3495, - 3510, - 3511, - 3512, - 3524, - 3532, + 3457, + 3466, + 3474, + 3484, + 3493, + 3501, + 3519, 3534, - 3545, + 3535, + 3536, + 3548, 3556, - 3568, - 3581, - 3591, - 3599, - 3609, - 3618, - 3626, - 3641, - 3652, - 3664, - 3684, - 3695, - 3696, - 3697, - 3709, - 3725, - 3745, - 3756, - 3768, - 3781, - 3790, - 3798, - 3813, - 3824, - 3836, - 3856, - 3867, - 3868, - 3869, - 3881, - 3911, - 3922, - 3934, - 3942, - 3953, - 3954, - 3955, - 3967, - 3986, - 4008, - 4019, - 4031, - 4047, - 4073, - 4100, - 4111, - 4123, - 4139, - 4159, - 4170, - 4182, - 4200, - 4211, - 4223, - 4251, - 4262, - 4263, - 4264, - 4265, - 4266, - 4267, - 4268, - 4269, - 4270, - 4282, - 4295, - 4305, - 4313, - 4324, + 3558, + 3569, + 3580, + 3592, + 3605, + 3615, + 3623, + 3633, + 3642, + 3650, + 3665, + 3676, + 3688, + 3708, + 3719, + 3720, + 3721, + 3733, + 3749, + 3769, + 3780, + 3792, + 3805, + 3814, + 3822, + 3837, + 3848, + 3860, + 3880, + 3891, + 3892, + 3893, + 3905, + 3935, + 3946, + 3958, + 3966, + 3977, + 3978, + 3979, + 3991, + 4010, + 4032, + 4043, + 4055, + 4071, + 4097, + 4124, + 4135, + 4147, + 4163, + 4183, + 4194, + 4206, + 4224, + 4235, + 4247, + 4275, + 4286, + 4287, + 4288, + 4289, + 4290, + 4291, + 4292, + 4293, + 4294, + 4306, + 4319, + 4329, 4337, - 4345, - 4355, - 4364, - 4372, - 4387, - 4398, - 4410, - 4428, - 4439, - 4451, + 4348, + 4361, + 4369, + 4379, + 4388, + 4396, + 4411, + 4422, + 4434, + 4452, + 4463, 4475, - 4497, - 4507, - 4515, - 4525, - 4534, - 4542, - 4552, - 4561, - 4569, - 4587, - 4597, - 4607, - 4615, - 4625, - 4634, - 4642, - 4660, - 4676, - 4677, - 4678, - 4690, + 4499, + 4521, + 4531, + 4539, + 4549, + 4558, + 4566, + 4576, + 4585, + 4593, + 4611, + 4621, + 4631, + 4639, + 4649, + 4658, + 4666, + 4684, + 4700, + 4701, 4702, - 4710, 4714, - 4716, 4726, - 4736, + 4734, + 4738, 4740, - 4747, - 4757, - 4765, - 4775, - 4784, - 4792, - 4807, - 4818, - 4830, - 4850, - 4861, - 4862, - 4863, - 4875, - 4888, - 4897, - 4905, - 4920, - 4930, - 4931, - 4932, - 4936, - 4948, - 4959, - 4971, - 4991, - 5003, - 5004, - 5005, - 5017, - 5030, - 5040, - 5048, - 5058, - 5067, - 5075, - 5092, - 5104, - 5105, - 5106, - 5118, - 5126, + 4750, + 4760, + 4764, + 4771, + 4781, + 4789, + 4799, + 4808, + 4816, + 4831, + 4842, + 4854, + 4874, + 4885, + 4886, + 4887, + 4899, + 4912, + 4921, + 4929, + 4944, + 4954, + 4955, + 4956, + 4960, + 4972, + 4983, + 4995, + 5015, + 5027, + 5028, + 5029, + 5041, + 5054, + 5064, + 5072, + 5082, + 5091, + 5099, + 5116, 5128, 5129, - 5141, + 5130, + 5142, + 5150, + 5152, 5153, 5165, - 5185, - 5197, - 5198, - 5199, - 5211, - 5227, - 5237, - 5241, + 5177, + 5189, + 5209, + 5221, + 5222, + 5223, + 5235, 5251, 5261, 5265, - 5277, - 5288, - 5300, - 5318, - 5329, - 5341, - 5359, - 5370, - 5382, - 5403, - 5419, - 5420, - 5421, - 5433, - 5451, - 5462, - 5474, - 5492, - 5503, - 5515, - 5533, - 5545, + 5275, + 5285, + 5289, + 5301, + 5312, + 5324, + 5342, + 5353, + 5365, + 5383, + 5394, + 5406, + 5427, + 5443, + 5444, + 5445, + 5457, + 5475, + 5486, + 5498, + 5516, + 5527, + 5539, 5557, - 5587, - 5599, - 5600, - 5601, - 5602, - 5603, - 5604, - 5605, - 5606, - 5607, - 5608, - 5609, - 5621, - 5639, - 5650, - 5662, - 5675, - 5685, - 5693, - 5703, - 5712, - 5720, - 5730, - 5739, - 5747, - 5772, - 5783, - 5784, - 5785, - 5786, - 5787, - 5788, - 5789, - 5790, - 5791, - 5803, - 5816, - 5826, - 5834, - 5849, - 5860, - 5872, - 5900, - 5911, - 5912, - 5913, - 5914, - 5915, - 5916, - 5917, - 5918, - 5919, - 5931, - 5952, - 5967, - 5968, - 5969, - 5981, - 6009, - 6020, - 6021, - 6022, - 6023, - 6024, - 6025, - 6026, - 6027, - 6028, - 6040, - 6058, - 6069, - 6081, - 6112, - 6128, - 6129, - 6130, - 6131, - 6132, - 6133, - 6134, - 6135, + 5569, + 5581, + 5611, + 5623, + 5624, + 5625, + 5626, + 5627, + 5628, + 5629, + 5630, + 5631, + 5632, + 5633, + 5645, + 5663, + 5674, + 5686, + 5699, + 5709, + 5717, + 5727, + 5736, + 5744, + 5754, + 5763, + 5771, + 5796, + 5807, + 5808, + 5809, + 5810, + 5811, + 5812, + 5813, + 5814, + 5815, + 5827, + 5840, + 5850, + 5858, + 5873, + 5884, + 5896, + 5924, + 5935, + 5936, + 5937, + 5938, + 5939, + 5940, + 5941, + 5942, + 5943, + 5955, + 5976, + 5991, + 5992, + 5993, + 6005, + 6033, + 6044, + 6045, + 6046, + 6047, + 6048, + 6049, + 6050, + 6051, + 6052, + 6064, + 6082, + 6093, + 6105, 6136, - 6137, - 6138, - 6150, - 6163, - 6172, - 6180, - 6195, - 6206, - 6218, - 6231, - 6241, - 6249, - 6264, - 6275, - 6287, - 6307, - 6319, - 6320, - 6321, - 6333, - 6341, - 6370, - 6371, - 6372, - 6373, - 6374, - 6375, - 6376, - 6377, - 6378, - 6403, - 6429, - 6472, - 6473, - 6474, - 6475, - 6476, - 6477, - 6478, - 6479, - 6480, - 6509, - 6537, - 6562, - 6580, - 6598, - 6619, - 6639, - 6665, - 6690, - 6708, - 6744, - 6745, - 6746, - 6747, - 6748, - 6749, - 6750, - 6751, - 6752, - 6777, - 6795, - 6813, - 6841, - 6868, - 6886, - 6904, - 6930, - 6955, - 6973, - 6991, - 7018, - 7019, - 7020, - 7033, - 7053, - 7073, - 7103, - 7115, - 7116, - 7117, - 7118, - 7119, - 7120, - 7121, - 7122, - 7123, - 7135, - 7169, - 7170, - 7171, - 7172, - 7173, - 7174, - 7175, - 7176, - 7177, - 7220, - 7221, - 7222, - 7223, - 7224, - 7225, - 7226, - 7227, - 7228 + 6152, + 6153, + 6154, + 6155, + 6156, + 6157, + 6158, + 6159, + 6160, + 6161, + 6162, + 6174, + 6187, + 6196, + 6204, + 6219, + 6230, + 6242, + 6255, + 6265, + 6273, + 6288, + 6299, + 6311, + 6331, + 6343, + 6344, + 6345, + 6357, + 6365, + 6394, + 6395, + 6396, + 6397, + 6398, + 6399, + 6400, + 6401, + 6402, + 6427, + 6453, + 6496, + 6497, + 6498, + 6499, + 6500, + 6501, + 6502, + 6503, + 6504, + 6533, + 6561, + 6586, + 6604, + 6622, + 6643, + 6663, + 6689, + 6714, + 6732, + 6768, + 6769, + 6770, + 6771, + 6772, + 6773, + 6774, + 6775, + 6776, + 6801, + 6819, + 6837, + 6865, + 6892, + 6910, + 6928, + 6954, + 6979, + 6997, + 7015, + 7042, + 7043, + 7044, + 7057, + 7077, + 7097, + 7127, + 7139, + 7140, + 7141, + 7142, + 7143, + 7144, + 7145, + 7146, + 7147, + 7159, + 7193, + 7194, + 7195, + 7196, + 7197, + 7198, + 7199, + 7200, + 7201, + 7244, + 7245, + 7246, + 7247, + 7248, + 7249, + 7250, + 7251, + 7252 ], "types": { "ActiveConnection": { "application_name": [ - 84 + 85 ], "client_addr": [ - 84 + 85 ], "pid": [ 41 ], "query": [ - 84 + 85 ], "query_start": [ - 5128 + 5152 ], "state": [ - 84 + 85 ], "usename": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ActiveQuery": { "application_name": [ - 84 + 85 ], "client_addr": [ - 84 + 85 ], "duration_seconds": [ 32 @@ -881,50 +884,50 @@ export default { 41 ], "query": [ - 84 + 85 ], "query_start": [ - 5128 + 5152 ], "state": [ - 84 + 85 ], "usename": [ - 84 + 85 ], "wait_event": [ - 84 + 85 ], "wait_event_type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "AddCustomGamePluginOutput": { "name": [ - 84 + 85 ], "runtime": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ApiKeyResponse": { "key": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "Award": { @@ -932,87 +935,87 @@ export default { 6 ], "created_at": [ - 84 + 85 ], "created_by_steam_id": [ - 84 + 85 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tier": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "AwardRecipient": { "award_id": [ - 6341 + 6365 ], "awarded_by_steam_id": [ - 84 + 85 ], "created_at": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "player_steam_id": [ - 84 + 85 ], "source": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "Boolean": {}, @@ -1045,7 +1048,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "ClipAudioInput": { @@ -1059,27 +1062,27 @@ export default { 41 ], "track_url": [ - 84 + 85 ], "volume": [ 32 ], "__typename": [ - 84 + 85 ] }, "ClipOutputInput": { "format": [ - 84 + 85 ], "fps": [ 41 ], "resolution": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ClipOverlayInput": { @@ -1087,16 +1090,16 @@ export default { 41 ], "payload": [ - 2348 + 2349 ], "start_ms": [ 41 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ClipSegmentInput": { @@ -1104,13 +1107,13 @@ export default { 41 ], "pov_steam_id": [ - 84 + 85 ], "start_tick": [ 41 ], "__typename": [ - 84 + 85 ] }, "ClipSpecInput": { @@ -1118,10 +1121,10 @@ export default { 8 ], "destination": [ - 84 + 85 ], "match_map_id": [ - 6341 + 6365 ], "output": [ 9 @@ -1133,10 +1136,10 @@ export default { 11 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ConnectionByState": { @@ -1144,16 +1147,16 @@ export default { 41 ], "state": [ - 84 + 85 ], "wait_event_type": [ - 84 + 85 ], "waiting_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "ConnectionStats": { @@ -1176,51 +1179,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "CpuStat": { "time": [ - 5128 + 5152 ], "total": [ - 309 + 310 ], "used": [ - 309 + 310 ], "window": [ 32 ], "__typename": [ - 84 + 85 ] }, "CreateClipRenderOutput": { "job_id": [ - 6341 + 6365 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "CreateDraftGameOutput": { "draftGameId": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "CreateScheduledMatchOutput": { "matchId": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "DatabaseStats": { @@ -1237,7 +1240,7 @@ export default { 41 ], "datname": [ - 84 + 85 ], "deadlocks": [ 41 @@ -1267,7 +1270,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "DbStats": { @@ -1290,10 +1293,10 @@ export default { 32 ], "query": [ - 84 + 85 ], "queryid": [ - 84 + 85 ], "shared_blks_hit": [ 41 @@ -1308,24 +1311,24 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "DedicatedSeverInfo": { "id": [ - 84 + 85 ], "lastPing": [ - 84 + 85 ], "map": [ - 84 + 85 ], "players": [ 41 ], "__typename": [ - 84 + 85 ] }, "DeleteOrphansOutput": { @@ -1342,30 +1345,30 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "DiskStat": { "available": [ - 84 + 85 ], "filesystem": [ - 84 + 85 ], "mountpoint": [ - 84 + 85 ], "size": [ - 84 + 85 ], "used": [ - 84 + 85 ], "usedPercent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "DiskStats": { @@ -1373,10 +1376,10 @@ export default { 23 ], "time": [ - 5128 + 5152 ], "__typename": [ - 84 + 85 ] }, "DraftGamePreviewOutput": { @@ -1384,25 +1387,25 @@ export default { 41 ], "access": [ - 84 + 85 ], "capacity": [ 41 ], "host_avatar_url": [ - 84 + 85 ], "host_name": [ - 84 + 85 ], "host_steam_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "players": [ 26 @@ -1411,30 +1414,30 @@ export default { 6 ], "status": [ - 84 + 85 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "DraftGamePreviewPlayer": { "avatar_url": [ - 84 + 85 ], "name": [ - 84 + 85 ], "status": [ - 84 + 85 ], "steam_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "FaceitTestOutput": { @@ -1445,32 +1448,32 @@ export default { 28 ], "__typename": [ - 84 + 85 ] }, "FaceitTestResult": { "detail": [ - 84 + 85 ], "ok": [ 6 ], "__typename": [ - 84 + 85 ] }, "FileContentResponse": { "content": [ - 84 + 85 ], "path": [ - 84 + 85 ], "size": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "FileItem": { @@ -1478,33 +1481,33 @@ export default { 6 ], "modified": [ - 5128 + 5152 ], "name": [ - 84 + 85 ], "path": [ - 84 + 85 ], "size": [ - 309 + 310 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "FileListResponse": { "currentPath": [ - 84 + 85 ], "items": [ 30 ], "__typename": [ - 84 + 85 ] }, "Float": {}, @@ -1537,18 +1540,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "GetTestUploadResponse": { "error": [ - 84 + 85 ], "link": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "GpuDeviceStat": { @@ -1562,7 +1565,7 @@ export default { 41 ], "name": [ - 84 + 85 ], "power_w": [ 41 @@ -1574,7 +1577,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "GpuStats": { @@ -1582,10 +1585,10 @@ export default { 35 ], "time": [ - 5128 + 5152 ], "__typename": [ - 84 + 85 ] }, "HighlightPresetAvailability": { @@ -1605,7 +1608,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "HypertableInfo": { @@ -1613,13 +1616,13 @@ export default { 6 ], "hypertable_name": [ - 84 + 85 ], "num_chunks": [ 41 ], "__typename": [ - 84 + 85 ] }, "IndexIOStat": { @@ -1630,16 +1633,16 @@ export default { 41 ], "indexname": [ - 84 + 85 ], "schemaname": [ - 84 + 85 ], "tablename": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "IndexStat": { @@ -1656,19 +1659,19 @@ export default { 41 ], "indexname": [ - 84 + 85 ], "schemaname": [ - 84 + 85 ], "table_size": [ 41 ], "tablename": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "Int": {}, @@ -1701,7 +1704,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "KickResult": { @@ -1709,45 +1712,45 @@ export default { 6 ], "message": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "LiveSpecGsi": { "map_name": [ - 84 + 85 ], "map_phase": [ - 84 + 85 ], "round_number": [ 41 ], "round_phase": [ - 84 + 85 ], "spec_slots": [ 45 ], "spectated_steam_id": [ - 84 + 85 ], "team_ct_name": [ - 84 + 85 ], "team_ct_score": [ 41 ], "team_t_name": [ - 84 + 85 ], "team_t_score": [ 41 ], "__typename": [ - 84 + 85 ] }, "LiveSpecSlot": { @@ -1758,19 +1761,19 @@ export default { 41 ], "name": [ - 84 + 85 ], "slot": [ 41 ], "steam_id": [ - 84 + 85 ], "team": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "LiveStreamSpecState": { @@ -1778,7 +1781,7 @@ export default { 44 ], "__typename": [ - 84 + 85 ] }, "LockInfo": { @@ -1786,137 +1789,148 @@ export default { 6 ], "locktype": [ - 84 + 85 ], "mode": [ - 84 + 85 ], "pid": [ 41 ], "query": [ - 84 + 85 ], "relation": [ - 84 + 85 ], "usename": [ - 84 + 85 ], "__typename": [ - 84 + 85 + ] + }, + "MapCalloutSyncOutput": { + "callouts": [ + 41 + ], + "maps": [ + 41 + ], + "__typename": [ + 85 ] }, "MeResponse": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "discord_id": [ - 84 + 85 ], "language": [ - 84 + 85 ], "name": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "profile_url": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "MemoryStat": { "time": [ - 5128 + 5152 ], "total": [ - 309 + 310 ], "used": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "NetworkStats": { "nics": [ - 52 + 53 ], "time": [ - 5128 + 5152 ], "__typename": [ - 84 + 85 ] }, "NewsPost": { "author_steam_id": [ - 84 + 85 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "published_at": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 84 + 85 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "NicStat": { "name": [ - 84 + 85 ], "rx": [ - 309 + 310 ], "tx": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "NodeStats": { @@ -1930,32 +1944,32 @@ export default { 36 ], "memory": [ - 49 + 50 ], "network": [ - 50 + 51 ], "node": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "OrphanObject": { "key": [ - 84 + 85 ], "size": [ 32 ], "__typename": [ - 84 + 85 ] }, "OrphanScanResultOutput": { "bucket": [ - 84 + 85 ], "clip_bytes": [ 32 @@ -1979,7 +1993,7 @@ export default { 41 ], "orphans": [ - 54 + 55 ], "other_bytes": [ 32 @@ -1988,7 +2002,7 @@ export default { 41 ], "scanned_at": [ - 84 + 85 ], "scanning": [ 6 @@ -2006,35 +2020,35 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "PendingMatchImportActionOutput": { "error": [ - 84 + 85 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "PluginReadmeOutput": { "content": [ - 84 + 85 ], "format": [ - 84 + 85 ], "repo": [ - 84 + 85 ], "url": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "PodStats": { @@ -2042,55 +2056,55 @@ export default { 15 ], "memory": [ - 49 + 50 ], "name": [ - 84 + 85 ], "node": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "PreviewGameModeOutput": { "cfg": [ - 84 + 85 ], "enabledPlugins": [ - 84 + 85 ], "extraGameParams": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 111 + 112 ], "__typename": [ - 84 + 85 ] }, "QueryDetail": { "explain_plan": [ - 84 + 85 ], "query": [ - 84 + 85 ], "queryid": [ - 84 + 85 ], "stats": [ - 62 + 63 ], "__typename": [ - 84 + 85 ] }, "QueryStat": { @@ -2116,10 +2130,10 @@ export default { 32 ], "query": [ - 84 + 85 ], "queryid": [ - 84 + 85 ], "shared_blks_hit": [ 41 @@ -2140,7 +2154,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "RecomputeEloStartedOutput": { @@ -2151,7 +2165,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "RecomputeEloStatusOutput": { @@ -2162,25 +2176,25 @@ export default { 41 ], "current_match_id": [ - 84 + 85 ], "failed": [ 41 ], "finished_at": [ - 84 + 85 ], "running": [ 6 ], "started_at": [ - 84 + 85 ], "total": [ 41 ], "__typename": [ - 84 + 85 ] }, "ReconcileNodePluginsOutput": { @@ -2188,7 +2202,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "ReindexStartedOutput": { @@ -2199,7 +2213,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "ReindexStatusOutput": { @@ -2210,25 +2224,25 @@ export default { 41 ], "current_steam_id": [ - 84 + 85 ], "failed": [ 41 ], "finished_at": [ - 84 + 85 ], "running": [ 6 ], "started_at": [ - 84 + 85 ], "total": [ 41 ], "__typename": [ - 84 + 85 ] }, "ReparseAllStartedOutput": { @@ -2239,7 +2253,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "ReparseAllStatusOutput": { @@ -2250,25 +2264,25 @@ export default { 41 ], "current_demo_id": [ - 84 + 85 ], "failed": [ 41 ], "finished_at": [ - 84 + 85 ], "running": [ 6 ], "started_at": [ - 84 + 85 ], "total": [ 41 ], "__typename": [ - 84 + 85 ] }, "SanctionResult": { @@ -2276,13 +2290,13 @@ export default { 6 ], "id": [ - 84 + 85 ], "message": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "ScanStartedOutput": { @@ -2293,18 +2307,18 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "ScheduledLineupInput": { "steam_ids": [ - 84 + 85 ], "team_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "SeasonBackfillStatusOutput": { @@ -2315,61 +2329,61 @@ export default { 41 ], "current_match_id": [ - 84 + 85 ], "failed": [ 41 ], "finished_at": [ - 84 + 85 ], "running": [ 6 ], "season_id": [ - 84 + 85 ], "started_at": [ - 84 + 85 ], "total": [ 41 ], "__typename": [ - 84 + 85 ] }, "ServerPlayer": { "name": [ - 84 + 85 ], "steam_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "SetupGameServeOutput": { "gameServerId": [ - 84 + 85 ], "link": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 84 + 85 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "SteamMatchHistoryPollOutput": { @@ -2377,27 +2391,27 @@ export default { 41 ], "error": [ - 84 + 85 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "SteamPresenceAdminStatusOutput": { "bots": [ - 79 + 80 ], "enabled": [ 6 ], "pool": [ - 81 + 82 ], "__typename": [ - 84 + 85 ] }, "SteamPresenceBot": { @@ -2411,10 +2425,10 @@ export default { 6 ], "guardType": [ - 84 + 85 ], "id": [ - 84 + 85 ], "needs2fa": [ 6 @@ -2423,36 +2437,36 @@ export default { 6 ], "steamId": [ - 84 + 85 ], "steamLevel": [ 41 ], "username": [ - 84 + 85 ], "watching": [ 41 ], "__typename": [ - 84 + 85 ] }, "SteamPresenceBotAssignment": { "addUrl": [ - 84 + 85 ], "enabled": [ 6 ], "status": [ - 84 + 85 ], "steamId": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "SteamPresencePool": { @@ -2472,18 +2486,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "StorageStats": { "summary": [ - 83 + 84 ], "tables": [ - 90 + 91 ], "__typename": [ - 84 + 85 ] }, "StorageSummary": { @@ -2500,108 +2514,108 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 84 + 85 ], "_contains": [ - 84 + 85 ], "_eq": [ - 84 + 85 ], "_gt": [ - 84 + 85 ], "_gte": [ - 84 + 85 ], "_in": [ - 84 + 85 ], "_is_null": [ 6 ], "_lt": [ - 84 + 85 ], "_lte": [ - 84 + 85 ], "_neq": [ - 84 + 85 ], "_nin": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "String_comparison_exp": { "_eq": [ - 84 + 85 ], "_gt": [ - 84 + 85 ], "_gte": [ - 84 + 85 ], "_ilike": [ - 84 + 85 ], "_in": [ - 84 + 85 ], "_iregex": [ - 84 + 85 ], "_is_null": [ 6 ], "_like": [ - 84 + 85 ], "_lt": [ - 84 + 85 ], "_lte": [ - 84 + 85 ], "_neq": [ - 84 + 85 ], "_nilike": [ - 84 + 85 ], "_nin": [ - 84 + 85 ], "_niregex": [ - 84 + 85 ], "_nlike": [ - 84 + 85 ], "_nregex": [ - 84 + 85 ], "_nsimilar": [ - 84 + 85 ], "_regex": [ - 84 + 85 ], "_similar": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "SuccessOutput": { @@ -2609,7 +2623,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "SyncPluginRegistryOutput": { @@ -2620,7 +2634,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TableIOStat": { @@ -2640,13 +2654,13 @@ export default { 41 ], "relname": [ - 84 + 85 ], "schemaname": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TableSizeInfo": { @@ -2663,19 +2677,19 @@ export default { 41 ], "schemaname": [ - 84 + 85 ], "table_size": [ 32 ], "tablename": [ - 84 + 85 ], "total_size": [ 32 ], "__typename": [ - 84 + 85 ] }, "TableStat": { @@ -2686,16 +2700,16 @@ export default { 41 ], "last_analyze": [ - 5128 + 5152 ], "last_autoanalyze": [ - 5128 + 5152 ], "last_autovacuum": [ - 5128 + 5152 ], "last_vacuum": [ - 5128 + 5152 ], "n_dead_tup": [ 41 @@ -2716,10 +2730,10 @@ export default { 41 ], "relname": [ - 84 + 85 ], "schemaname": [ - 84 + 85 ], "seq_scan": [ 41 @@ -2728,20 +2742,20 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TeamCalendarOutput": { "url": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryActivityPoint": { "day": [ - 84 + 85 ], "installs": [ 41 @@ -2750,18 +2764,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryCountryCount": { "country": [ - 84 + 85 ], "installs": [ 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryFeatureAdoption": { @@ -2778,10 +2792,10 @@ export default { 41 ], "key": [ - 84 + 85 ], "kind": [ - 84 + 85 ], "reporting": [ 41 @@ -2790,7 +2804,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryFleetTotals": { @@ -2912,7 +2926,7 @@ export default { 41 ], "pluginsBySlug": [ - 2348 + 2349 ], "pluginsManual": [ 41 @@ -2951,7 +2965,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryGrowthPoint": { @@ -2959,10 +2973,10 @@ export default { 41 ], "month": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryInstallCounts": { @@ -2985,7 +2999,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryMatchSourceCount": { @@ -2993,10 +3007,10 @@ export default { 41 ], "source": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryMatchTypeCount": { @@ -3004,10 +3018,10 @@ export default { 41 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryRuntimeCount": { @@ -3015,57 +3029,57 @@ export default { 41 ], "runtime": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryStats": { "activity": [ - 93 + 94 ], "countries": [ - 94 + 95 ], "features": [ - 95 + 96 ], "growth": [ - 97 + 98 ], "installs": [ - 98 + 99 ], "matchSources": [ - 99 + 100 ], "matchTypes": [ - 100 + 101 ], "online": [ 41 ], "runtimes": [ - 101 + 102 ], "totals": [ - 96 + 97 ], "utility": [ - 104 + 105 ], "utilitySources": [ - 103 + 104 ], "utilityTypes": [ - 105 + 106 ], "versions": [ - 106 + 107 ], "__typename": [ - 84 + 85 ] }, "TelemetryUtilitySourceCount": { @@ -3073,10 +3087,10 @@ export default { 41 ], "source": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryUtilityTotals": { @@ -3180,7 +3194,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "TelemetryUtilityTypeCount": { @@ -3188,10 +3202,10 @@ export default { 41 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TelemetryVersionCount": { @@ -3202,41 +3216,41 @@ export default { 41 ], "since": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TestUploadResponse": { "error": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "TimescaleJob": { "hypertable_name": [ - 84 + 85 ], "job_id": [ 41 ], "job_type": [ - 84 + 85 ], "last_run_status": [ - 84 + 85 ], "next_start": [ - 5128 + 5152 ], "__typename": [ - 84 + 85 ] }, "TimescaleStats": { @@ -3247,24 +3261,24 @@ export default { 38 ], "jobs": [ - 108 + 109 ], "__typename": [ - 84 + 85 ] }, "TournamentAward": { "award_id": [ - 6341 + 6365 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -3273,15 +3287,15 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 6341 + 6365 ], "depth": [ 41 @@ -3290,28 +3304,28 @@ export default { 6 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_status": [ - 84 + 85 ], "path": [ - 84 + 85 ], "round": [ 41 ], "stage_type": [ - 84 + 85 ], "will_delete_match": [ 6 ], "__typename": [ - 84 + 85 ] }, "UtilityBlockingOutput": { @@ -3319,13 +3333,13 @@ export default { 6 ], "message": [ - 84 + 85 ], "results": [ - 113 + 114 ], "__typename": [ - 84 + 85 ] }, "UtilityBlockingResult": { @@ -3339,24 +3353,24 @@ export default { 32 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityCalibrationOutput": { "detail": [ - 84 + 85 ], "ready": [ 6 ], "status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityDriftScanOutput": { @@ -3364,41 +3378,41 @@ export default { 41 ], "scan_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityDrillLoadOutput": { "map_name": [ - 84 + 85 ], "queued": [ 41 ], "reason": [ - 84 + 85 ], "sent": [ 6 ], "__typename": [ - 84 + 85 ] }, "UtilityImportError": { "external_id": [ - 84 + 85 ], "index": [ 41 ], "reason": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityImportOutput": { @@ -3406,7 +3420,7 @@ export default { 6 ], "errors": [ - 117 + 118 ], "failed": [ 41 @@ -3421,7 +3435,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "UtilityLaunchSeedBackfillOutput": { @@ -3438,29 +3452,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "UtilityLineupOutput": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityLoadOutput": { "map_name": [ - 84 + 85 ], "reason": [ - 84 + 85 ], "sent": [ 6 ], "__typename": [ - 84 + 85 ] }, "UtilityMissPatternOutput": { @@ -3468,7 +3482,7 @@ export default { 6 ], "bias": [ - 84 + 85 ], "mean_along": [ 32 @@ -3480,7 +3494,7 @@ export default { 32 ], "message": [ - 84 + 85 ], "players": [ 41 @@ -3489,7 +3503,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "UtilityOneWayOutput": { @@ -3497,27 +3511,27 @@ export default { 6 ], "message": [ - 84 + 85 ], "results": [ - 124 + 125 ], "__typename": [ - 84 + 85 ] }, "UtilityOneWayResult": { "cause": [ - 84 + 85 ], "confidence": [ - 84 + 85 ], "contested": [ 6 ], "favors": [ - 84 + 85 ], "index": [ 41 @@ -3526,7 +3540,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "UtilityPlaybookCoverageOutput": { @@ -3534,13 +3548,13 @@ export default { 6 ], "message": [ - 84 + 85 ], "results": [ - 126 + 127 ], "__typename": [ - 84 + 85 ] }, "UtilityPlaybookCoverageResult": { @@ -3560,37 +3574,37 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "UtilityPlaybookOutput": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityPlaybookStepInput": { "assigned_steam_id": [ - 84 + 85 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticeMapChangeOutput": { "map_name": [ - 84 + 85 ], "queued": [ 6 @@ -3599,7 +3613,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticePlanEntry": { @@ -3607,7 +3621,7 @@ export default { 41 ], "difficulty": [ - 84 + 85 ], "global_attempts": [ 41 @@ -3628,16 +3642,16 @@ export default { 32 ], "reason": [ - 84 + 85 ], "successes": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticePlanOutput": { @@ -3645,75 +3659,75 @@ export default { 6 ], "entries": [ - 130 + 131 ], "message": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticeServer": { "held_by": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "in_use": [ 6 ], "label": [ - 84 + 85 ], "region": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticeServersOutput": { "servers": [ - 132 + 133 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticeSessionOutput": { "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityPracticeWhereOutput": { "map_name": [ - 84 + 85 ], "on_server": [ 6 ], "session_id": [ - 6341 + 6365 ], "switching": [ 6 ], "__typename": [ - 84 + 85 ] }, "UtilityPurgeOutput": { @@ -3724,10 +3738,10 @@ export default { 41 ], "origin_source": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityRemineOutput": { @@ -3741,7 +3755,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "UtilityRenderClearOutput": { @@ -3749,29 +3763,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "UtilityRenderQueueOutput": { "reason": [ - 84 + 85 ], "render_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "UtilityScratchLineupInput": { "client_id": [ - 84 + 85 ], "eye_z": [ 32 @@ -3786,10 +3800,10 @@ export default { 32 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "origin_x": [ 32 @@ -3801,16 +3815,16 @@ export default { 32 ], "side": [ - 84 + 85 ], "technique": [ - 84 + 85 ], "throw_strength": [ - 84 + 85 ], "utility_type": [ - 84 + 85 ], "view_pitch": [ 32 @@ -3819,7 +3833,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "UtilitySightlineOutput": { @@ -3827,16 +3841,16 @@ export default { 6 ], "message": [ - 84 + 85 ], "results": [ - 143 + 144 ], "threshold": [ 32 ], "__typename": [ - 84 + 85 ] }, "UtilitySightlinePairInput": { @@ -3859,7 +3873,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "UtilitySightlineResult": { @@ -3867,7 +3881,7 @@ export default { 6 ], "blocked_by": [ - 84 + 85 ], "depth": [ 32 @@ -3882,7 +3896,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "UtilitySolveOutput": { @@ -3890,13 +3904,13 @@ export default { 6 ], "message": [ - 84 + 85 ], "status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityTeamUtilityEntry": { @@ -3910,10 +3924,10 @@ export default { 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "UtilityTeamUtilityOutput": { @@ -3921,13 +3935,13 @@ export default { 6 ], "entries": [ - 145 + 146 ], "message": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "UtilityUtilityReportOutput": { @@ -3935,7 +3949,7 @@ export default { 6 ], "by_type": [ - 148 + 149 ], "landed": [ 41 @@ -3947,19 +3961,19 @@ export default { 41 ], "message": [ - 84 + 85 ], "radius": [ 32 ], "steam_id": [ - 84 + 85 ], "throws": [ 41 ], "__typename": [ - 84 + 85 ] }, "UtilityUtilityTypeReport": { @@ -3976,27 +3990,27 @@ export default { 41 ], "utility_type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "WatchDemoOutput": { "match_map_id": [ - 84 + 85 ], "session_id": [ - 84 + 85 ], "stream_url": [ - 84 + 85 ], "success": [ 6 ], "__typename": [ - 84 + 85 ] }, "WebPushPlatformCount": { @@ -4004,10 +4018,10 @@ export default { 41 ], "platform": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "WebPushStatusOutput": { @@ -4018,7 +4032,7 @@ export default { 6 ], "last_delivered_at": [ - 5129 + 5153 ], "managed_by_environment": [ 6 @@ -4030,7 +4044,7 @@ export default { 41 ], "platforms": [ - 150 + 151 ], "players": [ 41 @@ -4039,29 +4053,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "_map_pool": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_aggregate": { "aggregate": [ - 154 + 155 ], "nodes": [ - 152 + 153 ], "__typename": [ - 84 + 85 ] }, "_map_pool_aggregate_fields": { @@ -4069,7 +4083,7 @@ export default { 41, { "columns": [ - 164, + 165, "[_map_pool_select_column!]" ], "distinct": [ @@ -4078,67 +4092,67 @@ export default { } ], "max": [ - 158 + 159 ], "min": [ - 159 + 160 ], "__typename": [ - 84 + 85 ] }, "_map_pool_bool_exp": { "_and": [ - 155 + 156 ], "_not": [ - 155 + 156 ], "_or": [ - 155 + 156 ], "map_id": [ - 6343 + 6367 ], "map_pool_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_max_fields": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_min_fields": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_mutation_response": { @@ -4146,160 +4160,160 @@ export default { 41 ], "returning": [ - 152 + 153 ], "__typename": [ - 84 + 85 ] }, "_map_pool_on_conflict": { "constraint": [ - 156 + 157 ], "update_columns": [ - 168 + 169 ], "where": [ - 155 + 156 ], "__typename": [ - 84 + 85 ] }, "_map_pool_order_by": { "map_id": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 167 + 168 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 165 + 166 ], "where": [ - 155 + 156 ], "__typename": [ - 84 + 85 ] }, "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 175 + 176 ], "nodes": [ - 171 + 172 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 174 + 175 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 192 + 193 ], "distinct": [ 6 ], "filter": [ - 180 + 181 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 178 + 179 ], "count": [ 41, { "columns": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -4308,83 +4322,83 @@ export default { } ], "max": [ - 184 + 185 ], "min": [ - 186 + 187 ], "stddev": [ - 194 + 195 ], "stddev_pop": [ - 196 + 197 ], "stddev_samp": [ - 198 + 199 ], "sum": [ - 202 + 203 ], "var_pop": [ - 206 + 207 ], "var_samp": [ - 208 + 209 ], "variance": [ - 210 + 211 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_aggregate_order_by": { "avg": [ - 179 + 180 ], "count": [ - 3534 + 3558 ], "max": [ - 185 + 186 ], "min": [ - 187 + 188 ], "stddev": [ - 195 + 196 ], "stddev_pop": [ - 197 + 198 ], "stddev_samp": [ - 199 + 200 ], "sum": [ - 203 + 204 ], "var_pop": [ - 207 + 208 ], "var_samp": [ - 209 + 210 ], "variance": [ - 211 + 212 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 183 + 184 ], "on_conflict": [ - 189 + 190 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_avg_fields": { @@ -4392,141 +4406,141 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_bool_exp": { "_and": [ - 180 + 181 ], "_not": [ - 180 + 181 ], "_or": [ - 180 + 181 ], "abandoned_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_mutation_response": { @@ -4534,70 +4548,70 @@ export default { 41 ], "returning": [ - 171 + 172 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 181 + 182 ], "update_columns": [ - 204 + 205 ], "where": [ - 180 + 181 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_fields": { @@ -4605,15 +4619,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_pop_fields": { @@ -4621,15 +4635,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_samp_fields": { @@ -4637,74 +4651,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 201 + 202 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 182 + 183 ], "_set": [ - 193 + 194 ], "where": [ - 180 + 181 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_var_pop_fields": { @@ -4712,15 +4726,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_var_samp_fields": { @@ -4728,15 +4742,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_variance_fields": { @@ -4744,57 +4758,57 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "api_keys": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_aggregate": { "aggregate": [ - 214 + 215 ], "nodes": [ - 212 + 213 ], "__typename": [ - 84 + 85 ] }, "api_keys_aggregate_fields": { "avg": [ - 215 + 216 ], "count": [ 41, { "columns": [ - 226, + 227, "[api_keys_select_column!]" ], "distinct": [ @@ -4803,34 +4817,34 @@ export default { } ], "max": [ - 220 + 221 ], "min": [ - 221 + 222 ], "stddev": [ - 228 + 229 ], "stddev_pop": [ - 229 + 230 ], "stddev_samp": [ - 230 + 231 ], "sum": [ - 233 + 234 ], "var_pop": [ - 236 + 237 ], "var_samp": [ - 237 + 238 ], "variance": [ - 238 + 239 ], "__typename": [ - 84 + 85 ] }, "api_keys_avg_fields": { @@ -4838,105 +4852,105 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_bool_exp": { "_and": [ - 216 + 217 ], "_not": [ - 216 + 217 ], "_or": [ - 216 + 217 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "label": [ - 86 + 87 ], "last_used_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_mutation_response": { @@ -4944,73 +4958,73 @@ export default { 41 ], "returning": [ - 212 + 213 ], "__typename": [ - 84 + 85 ] }, "api_keys_on_conflict": { "constraint": [ - 217 + 218 ], "update_columns": [ - 234 + 235 ], "where": [ - 216 + 217 ], "__typename": [ - 84 + 85 ] }, "api_keys_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "last_used_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "api_keys_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_stddev_fields": { @@ -5018,7 +5032,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_stddev_pop_fields": { @@ -5026,7 +5040,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_stddev_samp_fields": { @@ -5034,61 +5048,61 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 232 + 233 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "last_used_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 218 + 219 ], "_set": [ - 227 + 228 ], "where": [ - 216 + 217 ], "__typename": [ - 84 + 85 ] }, "api_keys_var_pop_fields": { @@ -5096,7 +5110,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_var_samp_fields": { @@ -5104,7 +5118,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "api_keys_variance_fields": { @@ -5112,142 +5126,142 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "approve_league_season_movements_args": { "_league_season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients": { "award": [ - 281 + 282 ], "award_id": [ - 6341 + 6365 ], "awarded_by": [ - 4492 + 4516 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season": [ - 2551 + 2552 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "placement_tier": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "season": [ - 4592 + 4616 ], "season_id": [ - 6341 + 6365 ], "source": [ - 647 + 648 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5565 + 5589 ], "tournament_award": [ - 5131 + 5155 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team": [ - 5523 + 5547 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_aggregate": { "aggregate": [ - 244 + 245 ], "nodes": [ - 240 + 241 ], "__typename": [ - 84 + 85 ] }, "award_recipients_aggregate_bool_exp": { "count": [ - 243 + 244 ], "__typename": [ - 84 + 85 ] }, "award_recipients_aggregate_bool_exp_count": { "arguments": [ - 261 + 262 ], "distinct": [ 6 ], "filter": [ - 249 + 250 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "award_recipients_aggregate_fields": { "avg": [ - 247 + 248 ], "count": [ 41, { "columns": [ - 261, + 262, "[award_recipients_select_column!]" ], "distinct": [ @@ -5255,44 +5269,6 @@ export default { ] } ], - "max": [ - 253 - ], - "min": [ - 255 - ], - "stddev": [ - 263 - ], - "stddev_pop": [ - 265 - ], - "stddev_samp": [ - 267 - ], - "sum": [ - 271 - ], - "var_pop": [ - 275 - ], - "var_samp": [ - 277 - ], - "variance": [ - 279 - ], - "__typename": [ - 84 - ] - }, - "award_recipients_aggregate_order_by": { - "avg": [ - 248 - ], - "count": [ - 3534 - ], "max": [ 254 ], @@ -5321,18 +5297,56 @@ export default { 280 ], "__typename": [ - 84 + 85 + ] + }, + "award_recipients_aggregate_order_by": { + "avg": [ + 249 + ], + "count": [ + 3558 + ], + "max": [ + 255 + ], + "min": [ + 257 + ], + "stddev": [ + 265 + ], + "stddev_pop": [ + 267 + ], + "stddev_samp": [ + 269 + ], + "sum": [ + 273 + ], + "var_pop": [ + 277 + ], + "var_samp": [ + 279 + ], + "variance": [ + 281 + ], + "__typename": [ + 85 ] }, "award_recipients_arr_rel_insert_input": { "data": [ - 252 + 253 ], "on_conflict": [ - 258 + 259 ], "__typename": [ - 84 + 85 ] }, "award_recipients_avg_fields": { @@ -5346,390 +5360,390 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_avg_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_bool_exp": { "_and": [ - 249 + 250 ], "_not": [ - 249 + 250 ], "_or": [ - 249 + 250 ], "award": [ - 285 + 286 ], "award_id": [ - 6343 + 6367 ], "awarded_by": [ - 4496 + 4520 ], "awarded_by_steam_id": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "league_season": [ - 2556 + 2557 ], "league_season_id": [ - 6343 + 6367 ], "note": [ - 86 + 87 ], "placement": [ 42 ], "placement_tier": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "season": [ - 4596 + 4620 ], "season_id": [ - 6343 + 6367 ], "source": [ - 648 + 649 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "tournament": [ - 5586 + 5610 ], "tournament_award": [ - 5140 + 5164 ], "tournament_id": [ - 6343 + 6367 ], "tournament_team": [ - 5532 + 5556 ], "tournament_team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "award_recipients_constraint": {}, "award_recipients_inc_input": { "awarded_by_steam_id": [ - 309 + 310 ], "placement": [ 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "award_recipients_insert_input": { "award": [ - 292 + 293 ], "award_id": [ - 6341 + 6365 ], "awarded_by": [ - 4503 + 4527 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season": [ - 2566 + 2567 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "season": [ - 4603 + 4627 ], "season_id": [ - 6341 + 6365 ], "source": [ - 647 + 648 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5595 + 5619 ], "tournament_award": [ - 5149 + 5173 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team": [ - 5541 + 5565 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_max_fields": { "award_id": [ - 6341 + 6365 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "placement_tier": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_max_order_by": { "award_id": [ - 3534 + 3558 ], "awarded_by_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "placement_tier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_min_fields": { "award_id": [ - 6341 + 6365 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "placement_tier": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_min_order_by": { "award_id": [ - 3534 + 3558 ], "awarded_by_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "placement_tier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_mutation_response": { @@ -5737,160 +5751,160 @@ export default { 41 ], "returning": [ - 240 + 241 ], "__typename": [ - 84 + 85 ] }, "award_recipients_on_conflict": { "constraint": [ - 250 + 251 ], "update_columns": [ - 273 + 274 ], "where": [ - 249 + 250 ], "__typename": [ - 84 + 85 ] }, "award_recipients_order_by": { "award": [ - 294 + 295 ], "award_id": [ - 3534 + 3558 ], "awarded_by": [ - 4505 + 4529 ], "awarded_by_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season": [ - 2568 + 2569 ], "league_season_id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "placement_tier": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "season": [ - 4605 + 4629 ], "season_id": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_award": [ - 5151 + 5175 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team": [ - 5543 + 5567 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_select_column": {}, "award_recipients_set_input": { "award_id": [ - 6341 + 6365 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "source": [ - 647 + 648 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_fields": { @@ -5904,21 +5918,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_pop_fields": { @@ -5932,21 +5946,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_pop_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_samp_fields": { @@ -5960,125 +5974,125 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stddev_samp_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stream_cursor_input": { "initial_value": [ - 270 + 271 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "award_recipients_stream_cursor_value_input": { "award_id": [ - 6341 + 6365 ], "awarded_by_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "placement": [ 41 ], "placement_tier": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "source": [ - 647 + 648 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "award_recipients_sum_fields": { "awarded_by_steam_id": [ - 309 + 310 ], "placement": [ 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "award_recipients_sum_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_update_column": {}, "award_recipients_updates": { "_inc": [ - 251 + 252 ], "_set": [ - 262 + 263 ], "where": [ - 249 + 250 ], "__typename": [ - 84 + 85 ] }, "award_recipients_var_pop_fields": { @@ -6092,21 +6106,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_var_pop_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_var_samp_fields": { @@ -6120,21 +6134,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_var_samp_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "award_recipients_variance_fields": { @@ -6148,21 +6162,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "award_recipients_variance_order_by": { "awarded_by_steam_id": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "awards": { @@ -6170,43 +6184,43 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by": [ - 4492 + 4516 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season": [ - 2551 + 2552 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "recipients": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -6216,19 +6230,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "recipients_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -6238,37 +6252,37 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "season": [ - 4592 + 4616 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tier": [ - 667 + 668 ], "tournament": [ - 5565 + 5589 ], "tournament_configs": [ - 5131, + 5155, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -6278,19 +6292,19 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_configs_aggregate": [ - 5132, + 5156, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -6300,44 +6314,44 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_aggregate": { "aggregate": [ - 283 + 284 ], "nodes": [ - 281 + 282 ], "__typename": [ - 84 + 85 ] }, "awards_aggregate_fields": { "avg": [ - 284 + 285 ], "count": [ 41, { "columns": [ - 296, + 297, "[awards_select_column!]" ], "distinct": [ @@ -6346,34 +6360,34 @@ export default { } ], "max": [ - 289 + 290 ], "min": [ - 290 + 291 ], "stddev": [ - 298 + 299 ], "stddev_pop": [ - 299 + 300 ], "stddev_samp": [ - 300 + 301 ], "sum": [ - 303 + 304 ], "var_pop": [ - 306 + 307 ], "var_samp": [ - 307 + 308 ], "variance": [ - 308 + 309 ], "__typename": [ - 84 + 85 ] }, "awards_avg_fields": { @@ -6384,105 +6398,105 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_bool_exp": { "_and": [ - 285 + 286 ], "_not": [ - 285 + 286 ], "_or": [ - 285 + 286 ], "allow_multiple": [ 7 ], "created_at": [ - 5130 + 5154 ], "created_by": [ - 4496 + 4520 ], "created_by_steam_id": [ - 311 + 312 ], "description": [ - 86 + 87 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "image_url": [ - 86 + 87 ], "league_season": [ - 2556 + 2557 ], "league_season_id": [ - 6343 + 6367 ], "name": [ - 86 + 87 ], "recipients": [ - 249 + 250 ], "recipients_aggregate": [ - 242 + 243 ], "season": [ - 4596 + 4620 ], "season_id": [ - 6343 + 6367 ], "silhouette": [ 42 ], "system_key": [ - 86 + 87 ], "tier": [ - 668 + 669 ], "tournament": [ - 5586 + 5610 ], "tournament_configs": [ - 5140 + 5164 ], "tournament_configs_aggregate": [ - 5133 + 5157 ], "tournament_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "awards_constraint": {}, "awards_inc_input": { "created_by_steam_id": [ - 309 + 310 ], "silhouette": [ 41 ], "__typename": [ - 84 + 85 ] }, "awards_insert_input": { @@ -6490,158 +6504,158 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by": [ - 4503 + 4527 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season": [ - 2566 + 2567 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "recipients": [ - 246 + 247 ], "season": [ - 4603 + 4627 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tier": [ - 667 + 668 ], "tournament": [ - 5595 + 5619 ], "tournament_configs": [ - 5137 + 5161 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_max_fields": { "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_min_fields": { "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_mutation_response": { @@ -6649,114 +6663,114 @@ export default { 41 ], "returning": [ - 281 + 282 ], "__typename": [ - 84 + 85 ] }, "awards_obj_rel_insert_input": { "data": [ - 288 + 289 ], "on_conflict": [ - 293 + 294 ], "__typename": [ - 84 + 85 ] }, "awards_on_conflict": { "constraint": [ - 286 + 287 ], "update_columns": [ - 304 + 305 ], "where": [ - 285 + 286 ], "__typename": [ - 84 + 85 ] }, "awards_order_by": { "allow_multiple": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "created_by": [ - 4505 + 4529 ], "created_by_steam_id": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "image_url": [ - 3534 + 3558 ], "league_season": [ - 2568 + 2569 ], "league_season_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "recipients_aggregate": [ - 245 + 246 ], "season": [ - 4605 + 4629 ], "season_id": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "system_key": [ - 3534 + 3558 ], "tier": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_configs_aggregate": [ - 5136 + 5160 ], "tournament_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "awards_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "awards_select_column": {}, @@ -6765,49 +6779,49 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tier": [ - 667 + 668 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_stddev_fields": { @@ -6818,7 +6832,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_stddev_pop_fields": { @@ -6829,7 +6843,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_stddev_samp_fields": { @@ -6840,18 +6854,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_stream_cursor_input": { "initial_value": [ - 302 + 303 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "awards_stream_cursor_value_input": { @@ -6859,75 +6873,75 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "system_key": [ - 84 + 85 ], "tier": [ - 667 + 668 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "awards_sum_fields": { "created_by_steam_id": [ - 309 + 310 ], "silhouette": [ 41 ], "__typename": [ - 84 + 85 ] }, "awards_update_column": {}, "awards_updates": { "_inc": [ - 287 + 288 ], "_set": [ - 297 + 298 ], "where": [ - 285 + 286 ], "__typename": [ - 84 + 85 ] }, "awards_var_pop_fields": { @@ -6938,7 +6952,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_var_samp_fields": { @@ -6949,7 +6963,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "awards_variance_fields": { @@ -6960,147 +6974,147 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "bigint": {}, "bigint_array_comparison_exp": { "_contained_in": [ - 309 + 310 ], "_contains": [ - 309 + 310 ], "_eq": [ - 309 + 310 ], "_gt": [ - 309 + 310 ], "_gte": [ - 309 + 310 ], "_in": [ - 309 + 310 ], "_is_null": [ 6 ], "_lt": [ - 309 + 310 ], "_lte": [ - 309 + 310 ], "_neq": [ - 309 + 310 ], "_nin": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "bigint_comparison_exp": { "_eq": [ - 309 + 310 ], "_gt": [ - 309 + 310 ], "_gte": [ - 309 + 310 ], "_in": [ - 309 + 310 ], "_is_null": [ 6 ], "_lt": [ - 309 + 310 ], "_lte": [ - 309 + 310 ], "_neq": [ - 309 + 310 ], "_nin": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 312 + 313 ], "_gt": [ - 312 + 313 ], "_gte": [ - 312 + 313 ], "_in": [ - 312 + 313 ], "_is_null": [ 6 ], "_lt": [ - 312 + 313 ], "_lte": [ - 312 + 313 ], "_neq": [ - 312 + 313 ], "_nin": [ - 312 + 313 ], "__typename": [ - 84 + 85 ] }, "chat_read_state": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_aggregate": { "aggregate": [ - 316 + 317 ], "nodes": [ - 314 + 315 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_aggregate_fields": { "avg": [ - 317 + 318 ], "count": [ 41, { "columns": [ - 328, + 329, "[chat_read_state_select_column!]" ], "distinct": [ @@ -7109,34 +7123,34 @@ export default { } ], "max": [ - 322 + 323 ], "min": [ - 323 + 324 ], "stddev": [ - 330 + 331 ], "stddev_pop": [ - 331 + 332 ], "stddev_samp": [ - 332 + 333 ], "sum": [ - 335 + 336 ], "var_pop": [ - 338 + 339 ], "var_samp": [ - 339 + 340 ], "variance": [ - 340 + 341 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_avg_fields": { @@ -7144,81 +7158,81 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_bool_exp": { "_and": [ - 318 + 319 ], "_not": [ - 318 + 319 ], "_or": [ - 318 + 319 ], "last_read_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "thread": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_constraint": {}, "chat_read_state_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_insert_input": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_max_fields": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_min_fields": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_mutation_response": { @@ -7226,64 +7240,64 @@ export default { 41 ], "returning": [ - 314 + 315 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_on_conflict": { "constraint": [ - 319 + 320 ], "update_columns": [ - 336 + 337 ], "where": [ - 318 + 319 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_order_by": { "last_read_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "thread": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_pk_columns_input": { "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_select_column": {}, "chat_read_state_set_input": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_stddev_fields": { @@ -7291,7 +7305,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_stddev_pop_fields": { @@ -7299,7 +7313,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_stddev_samp_fields": { @@ -7307,55 +7321,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_stream_cursor_input": { "initial_value": [ - 334 + 335 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_stream_cursor_value_input": { "last_read_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "thread": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_update_column": {}, "chat_read_state_updates": { "_inc": [ - 320 + 321 ], "_set": [ - 329 + 330 ], "where": [ - 318 + 319 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_var_pop_fields": { @@ -7363,7 +7377,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_var_samp_fields": { @@ -7371,7 +7385,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "chat_read_state_variance_fields": { @@ -7379,175 +7393,175 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs": { "clip": [ - 2839 + 2863 ], "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map": [ - 3134 + 3158 ], "match_map_demo": [ - 3014 + 3038 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "status": [ - 84 + 85 ], "status_history": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "user": [ - 4492 + 4516 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 347 + 348 ], "nodes": [ - 341 + 342 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 344 + 345 ], "bool_or": [ - 345 + 346 ], "count": [ - 346 + 347 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 370 + 371 ], "distinct": [ 6 ], "filter": [ - 353 + 354 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 371 + 372 ], "distinct": [ 6 ], "filter": [ - 353 + 354 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 369 + 370 ], "distinct": [ 6 ], "filter": [ - 353 + 354 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 351 + 352 ], "count": [ 41, { "columns": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -7556,94 +7570,94 @@ export default { } ], "max": [ - 360 + 361 ], "min": [ - 362 + 363 ], "stddev": [ - 373 + 374 ], "stddev_pop": [ - 375 + 376 ], "stddev_samp": [ - 377 + 378 ], "sum": [ - 381 + 382 ], "var_pop": [ - 385 + 386 ], "var_samp": [ - 387 + 388 ], "variance": [ - 389 + 390 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 352 + 353 ], "count": [ - 3534 + 3558 ], "max": [ - 361 + 362 ], "min": [ - 363 + 364 ], "stddev": [ - 374 + 375 ], "stddev_pop": [ - 376 + 377 ], "stddev_samp": [ - 378 + 379 ], "sum": [ - 382 + 383 ], "var_pop": [ - 386 + 387 ], "var_samp": [ - 388 + 389 ], "variance": [ - 390 + 391 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_append_input": { "spec": [ - 2348 + 2349 ], "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 359 + 360 ], "on_conflict": [ - 365 + 366 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_avg_fields": { @@ -7657,113 +7671,113 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 353 + 354 ], "_not": [ - 353 + 354 ], "_or": [ - 353 + 354 ], "clip": [ - 2848 + 2872 ], "clip_id": [ - 6343 + 6367 ], "created_at": [ - 5130 + 5154 ], "error_message": [ - 86 + 87 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "k8s_job_name": [ - 86 + 87 ], "last_status_at": [ - 5130 + 5154 ], "match_map": [ - 3143 + 3167 ], "match_map_demo": [ - 3026 + 3050 ], "match_map_demo_id": [ - 6343 + 6367 ], "match_map_id": [ - 6343 + 6367 ], "paused": [ 7 ], "progress": [ - 3533 + 3557 ], "session_token": [ - 86 + 87 ], "sort_index": [ 42 ], "spec": [ - 2350 + 2351 ], "status": [ - 86 + 87 ], "status_history": [ - 2350 + 2351 ], "user": [ - 4496 + 4520 ], "user_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 84 + 85 ], "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_delete_elem_input": { @@ -7774,291 +7788,291 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 84 + 85 ], "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_inc_input": { "progress": [ - 3532 + 3556 ], "sort_index": [ 41 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_insert_input": { "clip": [ - 2857 + 2881 ], "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map": [ - 3152 + 3176 ], "match_map_demo": [ - 3038 + 3062 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "user": [ - 4503 + 4527 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "status": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "status": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_mutation_response": { @@ -8066,114 +8080,114 @@ export default { 41 ], "returning": [ - 341 + 342 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 354 + 355 ], "update_columns": [ - 383 + 384 ], "where": [ - 353 + 354 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_order_by": { "clip": [ - 2859 + 2883 ], "clip_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_demo": [ - 3040 + 3064 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "paused": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "spec": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "status_history": [ - 3534 + 3558 ], "user": [ - 4505 + 4529 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 2348 + 2349 ], "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_select_column": {}, @@ -8181,58 +8195,58 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_fields": { @@ -8246,21 +8260,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_pop_fields": { @@ -8274,21 +8288,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_samp_fields": { @@ -8302,146 +8316,146 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 380 + 381 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "session_token": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 3532 + 3556 ], "sort_index": [ 41 ], "user_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 349 + 350 ], "_delete_at_path": [ - 355 + 356 ], "_delete_elem": [ - 356 + 357 ], "_delete_key": [ - 357 + 358 ], "_inc": [ - 358 + 359 ], "_prepend": [ - 368 + 369 ], "_set": [ - 372 + 373 ], "where": [ - 353 + 354 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_var_pop_fields": { @@ -8455,21 +8469,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_var_samp_fields": { @@ -8483,21 +8497,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_variance_fields": { @@ -8511,41 +8525,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "clone_league_season_args": { "_league_season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "cursor_ordering": {}, "custom_pages": { "created_at": [ - 5129 + 5153 ], "deployments": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -8553,74 +8567,74 @@ export default { 6 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_default": [ 6 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "required_role": [ - 1283 + 1284 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_aggregate": { "aggregate": [ - 395 + 396 ], "nodes": [ - 393 + 394 ], "__typename": [ - 84 + 85 ] }, "custom_pages_aggregate_fields": { "avg": [ - 397 + 398 ], "count": [ 41, { "columns": [ - 412, + 413, "[custom_pages_select_column!]" ], "distinct": [ @@ -8629,42 +8643,42 @@ export default { } ], "max": [ - 405 + 406 ], "min": [ - 406 + 407 ], "stddev": [ - 414 + 415 ], "stddev_pop": [ - 415 + 416 ], "stddev_samp": [ - 416 + 417 ], "sum": [ - 419 + 420 ], "var_pop": [ - 422 + 423 ], "var_samp": [ - 423 + 424 ], "variance": [ - 424 + 425 ], "__typename": [ - 84 + 85 ] }, "custom_pages_append_input": { "deployments": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "custom_pages_avg_fields": { @@ -8672,84 +8686,84 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_bool_exp": { "_and": [ - 398 + 399 ], "_not": [ - 398 + 399 ], "_or": [ - 398 + 399 ], "created_at": [ - 5130 + 5154 ], "deployments": [ - 2350 + 2351 ], "enabled": [ 7 ], "exposed_module": [ - 86 + 87 ], "icon": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "is_default": [ 7 ], "manifest_url": [ - 86 + 87 ], "nav_group": [ - 86 + 87 ], "nav_order": [ 42 ], "plugin_slug": [ - 86 + 87 ], "profile_tab_label": [ - 86 + 87 ], "remote_entry_url": [ - 86 + 87 ], "remote_scope": [ - 86 + 87 ], "required_role": [ - 1284 + 1285 ], "slug": [ - 86 + 87 ], "title": [ - 86 + 87 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "custom_pages_constraint": {}, "custom_pages_delete_at_path_input": { "deployments": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "custom_pages_delete_elem_input": { @@ -8757,15 +8771,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "custom_pages_delete_key_input": { "deployments": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "custom_pages_inc_input": { @@ -8773,160 +8787,160 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "custom_pages_insert_input": { "created_at": [ - 5129 + 5153 ], "deployments": [ - 2348 + 2349 ], "enabled": [ 6 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_default": [ 6 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "required_role": [ - 1283 + 1284 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_max_fields": { "created_at": [ - 5129 + 5153 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_min_fields": { "created_at": [ - 5129 + 5153 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_mutation_response": { @@ -8934,159 +8948,159 @@ export default { 41 ], "returning": [ - 393 + 394 ], "__typename": [ - 84 + 85 ] }, "custom_pages_on_conflict": { "constraint": [ - 399 + 400 ], "update_columns": [ - 420 + 421 ], "where": [ - 398 + 399 ], "__typename": [ - 84 + 85 ] }, "custom_pages_order_by": { "created_at": [ - 3534 + 3558 ], "deployments": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "exposed_module": [ - 3534 + 3558 ], "icon": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_default": [ - 3534 + 3558 ], "manifest_url": [ - 3534 + 3558 ], "nav_group": [ - 3534 + 3558 ], "nav_order": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "profile_tab_label": [ - 3534 + 3558 ], "remote_entry_url": [ - 3534 + 3558 ], "remote_scope": [ - 3534 + 3558 ], "required_role": [ - 3534 + 3558 ], "slug": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "custom_pages_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "custom_pages_prepend_input": { "deployments": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "custom_pages_select_column": {}, "custom_pages_set_input": { "created_at": [ - 5129 + 5153 ], "deployments": [ - 2348 + 2349 ], "enabled": [ 6 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_default": [ 6 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "required_role": [ - 1283 + 1284 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_stddev_fields": { @@ -9094,7 +9108,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_stddev_pop_fields": { @@ -9102,7 +9116,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_stddev_samp_fields": { @@ -9110,77 +9124,77 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_stream_cursor_input": { "initial_value": [ - 418 + 419 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "custom_pages_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "deployments": [ - 2348 + 2349 ], "enabled": [ 6 ], "exposed_module": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_default": [ 6 ], "manifest_url": [ - 84 + 85 ], "nav_group": [ - 84 + 85 ], "nav_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "profile_tab_label": [ - 84 + 85 ], "remote_entry_url": [ - 84 + 85 ], "remote_scope": [ - 84 + 85 ], "required_role": [ - 1283 + 1284 ], "slug": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "custom_pages_sum_fields": { @@ -9188,37 +9202,37 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "custom_pages_update_column": {}, "custom_pages_updates": { "_append": [ - 396 + 397 ], "_delete_at_path": [ - 400 + 401 ], "_delete_elem": [ - 401 + 402 ], "_delete_key": [ - 402 + 403 ], "_inc": [ - 403 + 404 ], "_prepend": [ - 411 + 412 ], "_set": [ - 413 + 414 ], "where": [ - 398 + 399 ], "__typename": [ - 84 + 85 ] }, "custom_pages_var_pop_fields": { @@ -9226,7 +9240,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_var_samp_fields": { @@ -9234,7 +9248,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "custom_pages_variance_fields": { @@ -9242,46 +9256,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_aggregate": { "aggregate": [ - 427 + 428 ], "nodes": [ - 425 + 426 ], "__typename": [ - 84 + 85 ] }, "db_backups_aggregate_fields": { "avg": [ - 428 + 429 ], "count": [ 41, { "columns": [ - 439, + 440, "[db_backups_select_column!]" ], "distinct": [ @@ -9290,34 +9304,34 @@ export default { } ], "max": [ - 433 + 434 ], "min": [ - 434 + 435 ], "stddev": [ - 441 + 442 ], "stddev_pop": [ - 442 + 443 ], "stddev_samp": [ - 443 + 444 ], "sum": [ - 446 + 447 ], "var_pop": [ - 449 + 450 ], "var_samp": [ - 450 + 451 ], "variance": [ - 451 + 452 ], "__typename": [ - 84 + 85 ] }, "db_backups_avg_fields": { @@ -9325,33 +9339,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_bool_exp": { "_and": [ - 429 + 430 ], "_not": [ - 429 + 430 ], "_or": [ - 429 + 430 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "name": [ - 86 + 87 ], "size": [ 42 ], "__typename": [ - 84 + 85 ] }, "db_backups_constraint": {}, @@ -9360,58 +9374,58 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_mutation_response": { @@ -9419,67 +9433,67 @@ export default { 41 ], "returning": [ - 425 + 426 ], "__typename": [ - 84 + 85 ] }, "db_backups_on_conflict": { "constraint": [ - 430 + 431 ], "update_columns": [ - 447 + 448 ], "where": [ - 429 + 430 ], "__typename": [ - 84 + 85 ] }, "db_backups_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "db_backups_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_stddev_fields": { @@ -9487,7 +9501,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_stddev_pop_fields": { @@ -9495,7 +9509,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_stddev_samp_fields": { @@ -9503,35 +9517,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 445 + 446 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "size": [ 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_sum_fields": { @@ -9539,22 +9553,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 431 + 432 ], "_set": [ - 440 + 441 ], "where": [ - 429 + 430 ], "__typename": [ - 84 + 85 ] }, "db_backups_var_pop_fields": { @@ -9562,7 +9576,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_var_samp_fields": { @@ -9570,7 +9584,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "db_backups_variance_fields": { @@ -9578,7 +9592,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations": { @@ -9586,41 +9600,41 @@ export default { 6 ], "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_aggregate": { "aggregate": [ - 454 + 455 ], "nodes": [ - 452 + 453 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_aggregate_fields": { "avg": [ - 455 + 456 ], "count": [ 41, { "columns": [ - 466, + 467, "[direct_conversations_select_column!]" ], "distinct": [ @@ -9629,34 +9643,34 @@ export default { } ], "max": [ - 460 + 461 ], "min": [ - 461 + 462 ], "stddev": [ - 468 + 469 ], "stddev_pop": [ - 469 + 470 ], "stddev_samp": [ - 470 + 471 ], "sum": [ - 473 + 474 ], "var_pop": [ - 476 + 477 ], "var_samp": [ - 477 + 478 ], "variance": [ - 478 + 479 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_avg_fields": { @@ -9667,36 +9681,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_bool_exp": { "_and": [ - 456 + 457 ], "_not": [ - 456 + 457 ], "_or": [ - 456 + 457 ], "is_open": [ 7 ], "last_message_at": [ - 5130 + 5154 ], "position": [ 42 ], "room_id": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_constraint": {}, @@ -9705,10 +9719,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_insert_input": { @@ -9716,53 +9730,53 @@ export default { 6 ], "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_max_fields": { "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_min_fields": { "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_mutation_response": { @@ -9770,55 +9784,55 @@ export default { 41 ], "returning": [ - 452 + 453 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_on_conflict": { "constraint": [ - 457 + 458 ], "update_columns": [ - 474 + 475 ], "where": [ - 456 + 457 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_order_by": { "is_open": [ - 3534 + 3558 ], "last_message_at": [ - 3534 + 3558 ], "position": [ - 3534 + 3558 ], "room_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_pk_columns_input": { "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_select_column": {}, @@ -9827,19 +9841,19 @@ export default { 6 ], "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_stddev_fields": { @@ -9850,7 +9864,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_stddev_pop_fields": { @@ -9861,7 +9875,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_stddev_samp_fields": { @@ -9872,18 +9886,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_stream_cursor_input": { "initial_value": [ - 472 + 473 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_stream_cursor_value_input": { @@ -9891,19 +9905,19 @@ export default { 6 ], "last_message_at": [ - 5129 + 5153 ], "position": [ 41 ], "room_id": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_sum_fields": { @@ -9911,25 +9925,25 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_update_column": {}, "direct_conversations_updates": { "_inc": [ - 458 + 459 ], "_set": [ - 467 + 468 ], "where": [ - 456 + 457 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_var_pop_fields": { @@ -9940,7 +9954,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_var_samp_fields": { @@ -9951,7 +9965,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_conversations_variance_fields": { @@ -9962,52 +9976,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_aggregate": { "aggregate": [ - 481 + 482 ], "nodes": [ - 479 + 480 ], "__typename": [ - 84 + 85 ] }, "direct_messages_aggregate_fields": { "avg": [ - 482 + 483 ], "count": [ 41, { "columns": [ - 493, + 494, "[direct_messages_select_column!]" ], "distinct": [ @@ -10016,34 +10030,34 @@ export default { } ], "max": [ - 487 + 488 ], "min": [ - 488 + 489 ], "stddev": [ - 495 + 496 ], "stddev_pop": [ - 496 + 497 ], "stddev_samp": [ - 497 + 498 ], "sum": [ - 500 + 501 ], "var_pop": [ - 503 + 504 ], "var_samp": [ - 504 + 505 ], "variance": [ - 505 + 506 ], "__typename": [ - 84 + 85 ] }, "direct_messages_avg_fields": { @@ -10054,120 +10068,120 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_bool_exp": { "_and": [ - 483 + 484 ], "_not": [ - 483 + 484 ], "_or": [ - 483 + 484 ], "created_at": [ - 5130 + 5154 ], "from_steam_id": [ - 311 + 312 ], "id": [ - 6343 + 6367 ], "message": [ - 86 + 87 ], "room_id": [ - 86 + 87 ], "seq": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "direct_messages_constraint": {}, "direct_messages_inc_input": { "from_steam_id": [ - 309 + 310 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_insert_input": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_max_fields": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_min_fields": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_mutation_response": { @@ -10175,79 +10189,79 @@ export default { 41 ], "returning": [ - 479 + 480 ], "__typename": [ - 84 + 85 ] }, "direct_messages_on_conflict": { "constraint": [ - 484 + 485 ], "update_columns": [ - 501 + 502 ], "where": [ - 483 + 484 ], "__typename": [ - 84 + 85 ] }, "direct_messages_order_by": { "created_at": [ - 3534 + 3558 ], "from_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "room_id": [ - 3534 + 3558 ], "seq": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "direct_messages_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "direct_messages_select_column": {}, "direct_messages_set_input": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_stddev_fields": { @@ -10258,7 +10272,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_stddev_pop_fields": { @@ -10269,7 +10283,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_stddev_samp_fields": { @@ -10280,67 +10294,67 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_stream_cursor_input": { "initial_value": [ - 499 + 500 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "direct_messages_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "from_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "room_id": [ - 84 + 85 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_sum_fields": { "from_steam_id": [ - 309 + 310 ], "seq": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "direct_messages_update_column": {}, "direct_messages_updates": { "_inc": [ - 485 + 486 ], "_set": [ - 494 + 495 ], "where": [ - 483 + 484 ], "__typename": [ - 84 + 85 ] }, "direct_messages_var_pop_fields": { @@ -10351,7 +10365,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_var_samp_fields": { @@ -10362,7 +10376,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "direct_messages_variance_fields": { @@ -10373,7 +10387,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks": { @@ -10381,22 +10395,22 @@ export default { 6 ], "captain": [ - 4492 + 4516 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game": [ - 596 + 597 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "is_organizer": [ 6 @@ -10405,100 +10419,100 @@ export default { 41 ], "picked": [ - 4492 + 4516 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate": { "aggregate": [ - 512 + 513 ], "nodes": [ - 506 + 507 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate_bool_exp": { "bool_and": [ - 509 + 510 ], "bool_or": [ - 510 + 511 ], "count": [ - 511 + 512 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 530 + 531 ], "distinct": [ 6 ], "filter": [ - 517 + 518 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 531 + 532 ], "distinct": [ 6 ], "filter": [ - 517 + 518 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate_bool_exp_count": { "arguments": [ - 529 + 530 ], "distinct": [ 6 ], "filter": [ - 517 + 518 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_aggregate_fields": { "avg": [ - 515 + 516 ], "count": [ 41, { "columns": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "distinct": [ @@ -10506,44 +10520,6 @@ export default { ] } ], - "max": [ - 521 - ], - "min": [ - 523 - ], - "stddev": [ - 533 - ], - "stddev_pop": [ - 535 - ], - "stddev_samp": [ - 537 - ], - "sum": [ - 541 - ], - "var_pop": [ - 545 - ], - "var_samp": [ - 547 - ], - "variance": [ - 549 - ], - "__typename": [ - 84 - ] - }, - "draft_game_picks_aggregate_order_by": { - "avg": [ - 516 - ], - "count": [ - 3534 - ], "max": [ 522 ], @@ -10572,18 +10548,56 @@ export default { 550 ], "__typename": [ - 84 + 85 + ] + }, + "draft_game_picks_aggregate_order_by": { + "avg": [ + 517 + ], + "count": [ + 3558 + ], + "max": [ + 523 + ], + "min": [ + 525 + ], + "stddev": [ + 535 + ], + "stddev_pop": [ + 537 + ], + "stddev_samp": [ + 539 + ], + "sum": [ + 543 + ], + "var_pop": [ + 547 + ], + "var_samp": [ + 549 + ], + "variance": [ + 551 + ], + "__typename": [ + 85 ] }, "draft_game_picks_arr_rel_insert_input": { "data": [ - 520 + 521 ], "on_conflict": [ - 526 + 527 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_avg_fields": { @@ -10597,53 +10611,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_bool_exp": { "_and": [ - 517 + 518 ], "_not": [ - 517 + 518 ], "_or": [ - 517 + 518 ], "auto_picked": [ 7 ], "captain": [ - 4496 + 4520 ], "captain_steam_id": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "draft_game": [ - 607 + 608 ], "draft_game_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "is_organizer": [ 7 @@ -10652,28 +10666,28 @@ export default { 42 ], "picked": [ - 4496 + 4520 ], "picked_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_constraint": {}, "draft_game_picks_inc_input": { "captain_steam_id": [ - 309 + 310 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_insert_input": { @@ -10681,126 +10695,126 @@ export default { 6 ], "captain": [ - 4503 + 4527 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game": [ - 616 + 617 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "lineup": [ 41 ], "picked": [ - 4503 + 4527 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_max_fields": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "draft_game_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_min_fields": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "draft_game_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_mutation_response": { @@ -10808,70 +10822,70 @@ export default { 41 ], "returning": [ - 506 + 507 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_on_conflict": { "constraint": [ - 518 + 519 ], "update_columns": [ - 543 + 544 ], "where": [ - 517 + 518 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_order_by": { "auto_picked": [ - 3534 + 3558 ], "captain": [ - 4505 + 4529 ], "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "draft_game": [ - 618 + 619 ], "draft_game_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked": [ - 4505 + 4529 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_select_column": {}, @@ -10882,25 +10896,25 @@ export default { 6 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_fields": { @@ -10914,21 +10928,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_pop_fields": { @@ -10942,21 +10956,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_samp_fields": { @@ -10970,32 +10984,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stream_cursor_input": { "initial_value": [ - 540 + 541 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_stream_cursor_value_input": { @@ -11003,68 +11017,68 @@ export default { 6 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "draft_game_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_sum_fields": { "captain_steam_id": [ - 309 + 310 ], "lineup": [ 41 ], "picked_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_update_column": {}, "draft_game_picks_updates": { "_inc": [ - 519 + 520 ], "_set": [ - 532 + 533 ], "where": [ - 517 + 518 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_var_pop_fields": { @@ -11078,21 +11092,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_var_samp_fields": { @@ -11106,21 +11120,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_variance_fields": { @@ -11134,32 +11148,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "picked_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players": { "draft_game": [ - 596 + 597 ], "draft_game_id": [ - 6341 + 6365 ], "e_draft_game_player_status": [ - 765 + 766 ], "elo_snapshot": [ 41 @@ -11171,7 +11185,7 @@ export default { 6 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11180,103 +11194,103 @@ export default { 41 ], "player": [ - 4492 + 4516 ], "status": [ - 770 + 771 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate": { "aggregate": [ - 557 + 558 ], "nodes": [ - 551 + 552 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate_bool_exp": { "bool_and": [ - 554 + 555 ], "bool_or": [ - 555 + 556 ], "count": [ - 556 + 557 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate_bool_exp_bool_and": { "arguments": [ - 575 + 576 ], "distinct": [ 6 ], "filter": [ - 562 + 563 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate_bool_exp_bool_or": { "arguments": [ - 576 + 577 ], "distinct": [ 6 ], "filter": [ - 562 + 563 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate_bool_exp_count": { "arguments": [ - 574 + 575 ], "distinct": [ 6 ], "filter": [ - 562 + 563 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_aggregate_fields": { "avg": [ - 560 + 561 ], "count": [ 41, { "columns": [ - 574, + 575, "[draft_game_players_select_column!]" ], "distinct": [ @@ -11284,44 +11298,6 @@ export default { ] } ], - "max": [ - 566 - ], - "min": [ - 568 - ], - "stddev": [ - 578 - ], - "stddev_pop": [ - 580 - ], - "stddev_samp": [ - 582 - ], - "sum": [ - 586 - ], - "var_pop": [ - 590 - ], - "var_samp": [ - 592 - ], - "variance": [ - 594 - ], - "__typename": [ - 84 - ] - }, - "draft_game_players_aggregate_order_by": { - "avg": [ - 561 - ], - "count": [ - 3534 - ], "max": [ 567 ], @@ -11350,18 +11326,56 @@ export default { 595 ], "__typename": [ - 84 + 85 + ] + }, + "draft_game_players_aggregate_order_by": { + "avg": [ + 562 + ], + "count": [ + 3558 + ], + "max": [ + 568 + ], + "min": [ + 570 + ], + "stddev": [ + 580 + ], + "stddev_pop": [ + 582 + ], + "stddev_samp": [ + 584 + ], + "sum": [ + 588 + ], + "var_pop": [ + 592 + ], + "var_samp": [ + 594 + ], + "variance": [ + 596 + ], + "__typename": [ + 85 ] }, "draft_game_players_arr_rel_insert_input": { "data": [ - 565 + 566 ], "on_conflict": [ - 571 + 572 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_avg_fields": { @@ -11378,44 +11392,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_bool_exp": { "_and": [ - 562 + 563 ], "_not": [ - 562 + 563 ], "_or": [ - 562 + 563 ], "draft_game": [ - 607 + 608 ], "draft_game_id": [ - 6343 + 6367 ], "e_draft_game_player_status": [ - 768 + 769 ], "elo_snapshot": [ 42 @@ -11427,7 +11441,7 @@ export default { 7 ], "joined_at": [ - 5130 + 5154 ], "lineup": [ 42 @@ -11436,16 +11450,16 @@ export default { 42 ], "player": [ - 4496 + 4520 ], "status": [ - 771 + 772 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_constraint": {}, @@ -11460,21 +11474,21 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_insert_input": { "draft_game": [ - 616 + 617 ], "draft_game_id": [ - 6341 + 6365 ], "e_draft_game_player_status": [ - 776 + 777 ], "elo_snapshot": [ 41 @@ -11483,7 +11497,7 @@ export default { 6 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11492,27 +11506,27 @@ export default { 41 ], "player": [ - 4503 + 4527 ], "status": [ - 770 + 771 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_max_fields": { "draft_game_id": [ - 6341 + 6365 ], "elo_snapshot": [ 41 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11521,44 +11535,44 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_max_order_by": { "draft_game_id": [ - 3534 + 3558 ], "elo_snapshot": [ - 3534 + 3558 ], "joined_at": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_min_fields": { "draft_game_id": [ - 6341 + 6365 ], "elo_snapshot": [ 41 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11567,33 +11581,33 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_min_order_by": { "draft_game_id": [ - 3534 + 3558 ], "elo_snapshot": [ - 3534 + 3558 ], "joined_at": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_mutation_response": { @@ -11601,76 +11615,76 @@ export default { 41 ], "returning": [ - 551 + 552 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_on_conflict": { "constraint": [ - 563 + 564 ], "update_columns": [ - 588 + 589 ], "where": [ - 562 + 563 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_order_by": { "draft_game": [ - 618 + 619 ], "draft_game_id": [ - 3534 + 3558 ], "e_draft_game_player_status": [ - 778 + 779 ], "elo_snapshot": [ - 3534 + 3558 ], "is_captain": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "joined_at": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "status": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_select_column": {}, @@ -11678,7 +11692,7 @@ export default { "draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_game_players_set_input": { "draft_game_id": [ - 6341 + 6365 ], "elo_snapshot": [ 41 @@ -11687,7 +11701,7 @@ export default { 6 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11696,13 +11710,13 @@ export default { 41 ], "status": [ - 770 + 771 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_fields": { @@ -11719,24 +11733,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_pop_fields": { @@ -11753,24 +11767,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_samp_fields": { @@ -11787,40 +11801,40 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stream_cursor_input": { "initial_value": [ - 585 + 586 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 6341 + 6365 ], "elo_snapshot": [ 41 @@ -11829,7 +11843,7 @@ export default { 6 ], "joined_at": [ - 5129 + 5153 ], "lineup": [ 41 @@ -11838,13 +11852,13 @@ export default { 41 ], "status": [ - 770 + 771 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_sum_fields": { @@ -11858,42 +11872,42 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_update_column": {}, "draft_game_players_updates": { "_inc": [ - 564 + 565 ], "_set": [ - 577 + 578 ], "where": [ - 562 + 563 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_var_pop_fields": { @@ -11910,24 +11924,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_var_samp_fields": { @@ -11944,24 +11958,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_variance_fields": { @@ -11978,95 +11992,95 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 3534 + 3558 ], "lineup": [ - 3534 + 3558 ], "pick_order": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games": { "access": [ - 1058 + 1059 ], "capacity": [ 41 ], "captain_selection": [ - 707 + 708 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 728 + 729 ], "e_draft_game_captain_selection": [ - 702 + 703 ], "e_draft_game_draft_order": [ - 723 + 724 ], "e_draft_game_mode": [ - 744 + 745 ], "e_draft_game_status": [ - 786 + 787 ], "e_lobby_access": [ - 1053 + 1054 ], "expires_at": [ - 5129 + 5153 ], "host": [ - 4492 + 4516 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "inner_squad": [ 6 ], "invite_code": [ - 6341 + 6365 ], "is_organizer": [ 6 ], "map_pool": [ - 2791 + 2815 ], "map_pool_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -12075,27 +12089,27 @@ export default { 41 ], "mode": [ - 749 + 750 ], "options": [ - 3176 + 3200 ], "pattern": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "pick_deadline": [ - 5129 + 5153 ], "picks": [ - 506, + 507, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -12105,19 +12119,19 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "picks_aggregate": [ - 507, + 508, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -12127,19 +12141,19 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "players": [ - 551, + 552, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -12149,19 +12163,19 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "players_aggregate": [ - 552, + 553, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -12171,133 +12185,133 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "regions": [ - 84 + 85 ], "require_approval": [ 6 ], "scheduled_at": [ - 5129 + 5153 ], "status": [ - 791 + 792 ], "team_1": [ - 5080 + 5104 ], "team_1_id": [ - 6341 + 6365 ], "team_2": [ - 5080 + 5104 ], "team_2_id": [ - 6341 + 6365 ], "type": [ - 1222 + 1223 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate": { "aggregate": [ - 602 + 603 ], "nodes": [ - 596 + 597 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate_bool_exp": { "bool_and": [ - 599 + 600 ], "bool_or": [ - 600 + 601 ], "count": [ - 601 + 602 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate_bool_exp_bool_and": { "arguments": [ - 621 + 622 ], "distinct": [ 6 ], "filter": [ - 607 + 608 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate_bool_exp_bool_or": { "arguments": [ - 622 + 623 ], "distinct": [ 6 ], "filter": [ - 607 + 608 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate_bool_exp_count": { "arguments": [ - 620 + 621 ], "distinct": [ 6 ], "filter": [ - 607 + 608 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "draft_games_aggregate_fields": { "avg": [ - 605 + 606 ], "count": [ 41, { "columns": [ - 620, + 621, "[draft_games_select_column!]" ], "distinct": [ @@ -12305,44 +12319,6 @@ export default { ] } ], - "max": [ - 611 - ], - "min": [ - 613 - ], - "stddev": [ - 624 - ], - "stddev_pop": [ - 626 - ], - "stddev_samp": [ - 628 - ], - "sum": [ - 632 - ], - "var_pop": [ - 636 - ], - "var_samp": [ - 638 - ], - "variance": [ - 640 - ], - "__typename": [ - 84 - ] - }, - "draft_games_aggregate_order_by": { - "avg": [ - 606 - ], - "count": [ - 3534 - ], "max": [ 612 ], @@ -12371,18 +12347,56 @@ export default { 641 ], "__typename": [ - 84 + 85 + ] + }, + "draft_games_aggregate_order_by": { + "avg": [ + 607 + ], + "count": [ + 3558 + ], + "max": [ + 613 + ], + "min": [ + 615 + ], + "stddev": [ + 626 + ], + "stddev_pop": [ + 628 + ], + "stddev_samp": [ + 630 + ], + "sum": [ + 634 + ], + "var_pop": [ + 638 + ], + "var_samp": [ + 640 + ], + "variance": [ + 642 + ], + "__typename": [ + 85 ] }, "draft_games_arr_rel_insert_input": { "data": [ - 610 + 611 ], "on_conflict": [ - 617 + 618 ], "__typename": [ - 84 + 85 ] }, "draft_games_avg_fields": { @@ -12402,107 +12416,107 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_avg_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_bool_exp": { "_and": [ - 607 + 608 ], "_not": [ - 607 + 608 ], "_or": [ - 607 + 608 ], "access": [ - 1059 + 1060 ], "capacity": [ 42 ], "captain_selection": [ - 708 + 709 ], "created_at": [ - 5130 + 5154 ], "current_pick_lineup": [ 42 ], "draft_order": [ - 729 + 730 ], "e_draft_game_captain_selection": [ - 705 + 706 ], "e_draft_game_draft_order": [ - 726 + 727 ], "e_draft_game_mode": [ - 747 + 748 ], "e_draft_game_status": [ - 789 + 790 ], "e_lobby_access": [ - 1056 + 1057 ], "expires_at": [ - 5130 + 5154 ], "host": [ - 4496 + 4520 ], "host_steam_id": [ - 311 + 312 ], "id": [ - 6343 + 6367 ], "inner_squad": [ 7 ], "invite_code": [ - 6343 + 6367 ], "is_organizer": [ 7 ], "map_pool": [ - 2794 + 2818 ], "map_pool_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_options_id": [ - 6343 + 6367 ], "max_elo": [ 42 @@ -12511,61 +12525,61 @@ export default { 42 ], "mode": [ - 750 + 751 ], "options": [ - 3187 + 3211 ], "pattern": [ - 2350 + 2351 ], "pick_deadline": [ - 5130 + 5154 ], "picks": [ - 517 + 518 ], "picks_aggregate": [ - 508 + 509 ], "players": [ - 562 + 563 ], "players_aggregate": [ - 553 + 554 ], "regions": [ - 85 + 86 ], "require_approval": [ 7 ], "scheduled_at": [ - 5130 + 5154 ], "status": [ - 792 + 793 ], "team_1": [ - 5091 + 5115 ], "team_1_id": [ - 6343 + 6367 ], "team_2": [ - 5091 + 5115 ], "team_2_id": [ - 6343 + 6367 ], "type": [ - 1223 + 1224 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "draft_games_constraint": {}, @@ -12577,7 +12591,7 @@ export default { 41 ], "host_steam_id": [ - 309 + 310 ], "max_elo": [ 41 @@ -12586,75 +12600,75 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "draft_games_insert_input": { "access": [ - 1058 + 1059 ], "capacity": [ 41 ], "captain_selection": [ - 707 + 708 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 728 + 729 ], "e_draft_game_captain_selection": [ - 713 + 714 ], "e_draft_game_draft_order": [ - 734 + 735 ], "e_draft_game_mode": [ - 755 + 756 ], "e_draft_game_status": [ - 797 + 798 ], "e_lobby_access": [ - 1064 + 1065 ], "expires_at": [ - 5129 + 5153 ], "host": [ - 4503 + 4527 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "inner_squad": [ 6 ], "invite_code": [ - 6341 + 6365 ], "map_pool": [ - 2800 + 2824 ], "map_pool_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -12663,52 +12677,52 @@ export default { 41 ], "mode": [ - 749 + 750 ], "options": [ - 3196 + 3220 ], "pick_deadline": [ - 5129 + 5153 ], "picks": [ - 514 + 515 ], "players": [ - 559 + 560 ], "regions": [ - 84 + 85 ], "require_approval": [ 6 ], "scheduled_at": [ - 5129 + 5153 ], "status": [ - 791 + 792 ], "team_1": [ - 5100 + 5124 ], "team_1_id": [ - 6341 + 6365 ], "team_2": [ - 5100 + 5124 ], "team_2_id": [ - 6341 + 6365 ], "type": [ - 1222 + 1223 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_max_fields": { @@ -12716,31 +12730,31 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "expires_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -12749,84 +12763,84 @@ export default { 41 ], "pick_deadline": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "scheduled_at": [ - 5129 + 5153 ], "team_1_id": [ - 6341 + 6365 ], "team_2_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_max_order_by": { "capacity": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "pick_deadline": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "team_1_id": [ - 3534 + 3558 ], "team_2_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_min_fields": { @@ -12834,31 +12848,31 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "expires_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -12867,84 +12881,84 @@ export default { 41 ], "pick_deadline": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "scheduled_at": [ - 5129 + 5153 ], "team_1_id": [ - 6341 + 6365 ], "team_2_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_min_order_by": { "capacity": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "pick_deadline": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "team_1_id": [ - 3534 + 3558 ], "team_2_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_mutation_response": { @@ -12952,171 +12966,171 @@ export default { 41 ], "returning": [ - 596 + 597 ], "__typename": [ - 84 + 85 ] }, "draft_games_obj_rel_insert_input": { "data": [ - 610 + 611 ], "on_conflict": [ - 617 + 618 ], "__typename": [ - 84 + 85 ] }, "draft_games_on_conflict": { "constraint": [ - 608 + 609 ], "update_columns": [ - 634 + 635 ], "where": [ - 607 + 608 ], "__typename": [ - 84 + 85 ] }, "draft_games_order_by": { "access": [ - 3534 + 3558 ], "capacity": [ - 3534 + 3558 ], "captain_selection": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "draft_order": [ - 3534 + 3558 ], "e_draft_game_captain_selection": [ - 715 + 716 ], "e_draft_game_draft_order": [ - 736 + 737 ], "e_draft_game_mode": [ - 757 + 758 ], "e_draft_game_status": [ - 799 + 800 ], "e_lobby_access": [ - 1066 + 1067 ], "expires_at": [ - 3534 + 3558 ], "host": [ - 4505 + 4529 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "inner_squad": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "map_pool": [ - 2802 + 2826 ], "map_pool_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "mode": [ - 3534 + 3558 ], "options": [ - 3198 + 3222 ], "pattern": [ - 3534 + 3558 ], "pick_deadline": [ - 3534 + 3558 ], "picks_aggregate": [ - 513 + 514 ], "players_aggregate": [ - 558 + 559 ], "regions": [ - 3534 + 3558 ], "require_approval": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team_1": [ - 5102 + 5126 ], "team_1_id": [ - 3534 + 3558 ], "team_2": [ - 5102 + 5126 ], "team_2_id": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "draft_games_select_column": {}, @@ -13124,46 +13138,46 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 1058 + 1059 ], "capacity": [ 41 ], "captain_selection": [ - 707 + 708 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 728 + 729 ], "expires_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "inner_squad": [ 6 ], "invite_code": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -13172,37 +13186,37 @@ export default { 41 ], "mode": [ - 749 + 750 ], "pick_deadline": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "require_approval": [ 6 ], "scheduled_at": [ - 5129 + 5153 ], "status": [ - 791 + 792 ], "team_1_id": [ - 6341 + 6365 ], "team_2_id": [ - 6341 + 6365 ], "type": [ - 1222 + 1223 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_fields": { @@ -13222,27 +13236,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_pop_fields": { @@ -13262,27 +13276,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_pop_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_samp_fields": { @@ -13302,82 +13316,82 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_stddev_samp_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_stream_cursor_input": { "initial_value": [ - 631 + 632 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "draft_games_stream_cursor_value_input": { "access": [ - 1058 + 1059 ], "capacity": [ 41 ], "captain_selection": [ - 707 + 708 ], "created_at": [ - 5129 + 5153 ], "current_pick_lineup": [ 41 ], "draft_order": [ - 728 + 729 ], "expires_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "inner_squad": [ 6 ], "invite_code": [ - 6341 + 6365 ], "map_pool_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_elo": [ 41 @@ -13386,37 +13400,37 @@ export default { 41 ], "mode": [ - 749 + 750 ], "pick_deadline": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "require_approval": [ 6 ], "scheduled_at": [ - 5129 + 5153 ], "status": [ - 791 + 792 ], "team_1_id": [ - 6341 + 6365 ], "team_2_id": [ - 6341 + 6365 ], "type": [ - 1222 + 1223 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "draft_games_sum_fields": { @@ -13427,7 +13441,7 @@ export default { 41 ], "host_steam_id": [ - 309 + 310 ], "max_elo": [ 41 @@ -13436,42 +13450,42 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "draft_games_sum_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_update_column": {}, "draft_games_updates": { "_inc": [ - 609 + 610 ], "_set": [ - 623 + 624 ], "where": [ - 607 + 608 ], "__typename": [ - 84 + 85 ] }, "draft_games_var_pop_fields": { @@ -13491,27 +13505,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_var_pop_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_var_samp_fields": { @@ -13531,27 +13545,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_var_samp_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "draft_games_variance_fields": { @@ -13571,49 +13585,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "draft_games_variance_order_by": { "capacity": [ - 3534 + 3558 ], "current_pick_lineup": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_award_sources": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_aggregate": { "aggregate": [ - 644 + 645 ], "nodes": [ - 642 + 643 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_aggregate_fields": { @@ -13621,7 +13635,7 @@ export default { 41, { "columns": [ - 656, + 657, "[e_award_sources_select_column!]" ], "distinct": [ @@ -13630,88 +13644,88 @@ export default { } ], "max": [ - 650 + 651 ], "min": [ - 651 + 652 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_bool_exp": { "_and": [ - 645 + 646 ], "_not": [ - 645 + 646 ], "_or": [ - 645 + 646 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_constraint": {}, "e_award_sources_enum": {}, "e_award_sources_enum_comparison_exp": { "_eq": [ - 647 + 648 ], "_in": [ - 647 + 648 ], "_is_null": [ 6 ], "_neq": [ - 647 + 648 ], "_nin": [ - 647 + 648 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_mutation_response": { @@ -13719,111 +13733,111 @@ export default { 41 ], "returning": [ - 642 + 643 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_on_conflict": { "constraint": [ - 646 + 647 ], "update_columns": [ - 660 + 661 ], "where": [ - 645 + 646 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_select_column": {}, "e_award_sources_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_stream_cursor_input": { "initial_value": [ - 659 + 660 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_sources_update_column": {}, "e_award_sources_updates": { "_set": [ - 657 + 658 ], "where": [ - 645 + 646 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_aggregate": { "aggregate": [ - 664 + 665 ], "nodes": [ - 662 + 663 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_aggregate_fields": { @@ -13831,7 +13845,7 @@ export default { 41, { "columns": [ - 676, + 677, "[e_award_tiers_select_column!]" ], "distinct": [ @@ -13840,88 +13854,88 @@ export default { } ], "max": [ - 670 + 671 ], "min": [ - 671 + 672 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_bool_exp": { "_and": [ - 665 + 666 ], "_not": [ - 665 + 666 ], "_or": [ - 665 + 666 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_constraint": {}, "e_award_tiers_enum": {}, "e_award_tiers_enum_comparison_exp": { "_eq": [ - 667 + 668 ], "_in": [ - 667 + 668 ], "_is_null": [ 6 ], "_neq": [ - 667 + 668 ], "_nin": [ - 667 + 668 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_mutation_response": { @@ -13929,111 +13943,111 @@ export default { 41 ], "returning": [ - 662 + 663 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_on_conflict": { "constraint": [ - 666 + 667 ], "update_columns": [ - 680 + 681 ], "where": [ - 665 + 666 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_select_column": {}, "e_award_tiers_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_stream_cursor_input": { "initial_value": [ - 679 + 680 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_award_tiers_update_column": {}, "e_award_tiers_updates": { "_set": [ - 677 + 678 ], "where": [ - 665 + 666 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_aggregate": { "aggregate": [ - 684 + 685 ], "nodes": [ - 682 + 683 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_aggregate_fields": { @@ -14041,7 +14055,7 @@ export default { 41, { "columns": [ - 696, + 697, "[e_check_in_settings_select_column!]" ], "distinct": [ @@ -14050,88 +14064,88 @@ export default { } ], "max": [ - 690 + 691 ], "min": [ - 691 + 692 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_bool_exp": { "_and": [ - 685 + 686 ], "_not": [ - 685 + 686 ], "_or": [ - 685 + 686 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_constraint": {}, "e_check_in_settings_enum": {}, "e_check_in_settings_enum_comparison_exp": { "_eq": [ - 687 + 688 ], "_in": [ - 687 + 688 ], "_is_null": [ 6 ], "_neq": [ - 687 + 688 ], "_nin": [ - 687 + 688 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_mutation_response": { @@ -14139,111 +14153,111 @@ export default { 41 ], "returning": [ - 682 + 683 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_on_conflict": { "constraint": [ - 686 + 687 ], "update_columns": [ - 700 + 701 ], "where": [ - 685 + 686 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_select_column": {}, "e_check_in_settings_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_stream_cursor_input": { "initial_value": [ - 699 + 700 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_check_in_settings_update_column": {}, "e_check_in_settings_updates": { "_set": [ - 697 + 698 ], "where": [ - 685 + 686 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_aggregate": { "aggregate": [ - 704 + 705 ], "nodes": [ - 702 + 703 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_aggregate_fields": { @@ -14251,7 +14265,7 @@ export default { 41, { "columns": [ - 717, + 718, "[e_draft_game_captain_selection_select_column!]" ], "distinct": [ @@ -14260,88 +14274,88 @@ export default { } ], "max": [ - 710 + 711 ], "min": [ - 711 + 712 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_bool_exp": { "_and": [ - 705 + 706 ], "_not": [ - 705 + 706 ], "_or": [ - 705 + 706 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_constraint": {}, "e_draft_game_captain_selection_enum": {}, "e_draft_game_captain_selection_enum_comparison_exp": { "_eq": [ - 707 + 708 ], "_in": [ - 707 + 708 ], "_is_null": [ 6 ], "_neq": [ - 707 + 708 ], "_nin": [ - 707 + 708 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_mutation_response": { @@ -14349,122 +14363,122 @@ export default { 41 ], "returning": [ - 702 + 703 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_obj_rel_insert_input": { "data": [ - 709 + 710 ], "on_conflict": [ - 714 + 715 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_on_conflict": { "constraint": [ - 706 + 707 ], "update_columns": [ - 721 + 722 ], "where": [ - 705 + 706 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_select_column": {}, "e_draft_game_captain_selection_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_stream_cursor_input": { "initial_value": [ - 720 + 721 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_captain_selection_update_column": {}, "e_draft_game_captain_selection_updates": { "_set": [ - 718 + 719 ], "where": [ - 705 + 706 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_aggregate": { "aggregate": [ - 725 + 726 ], "nodes": [ - 723 + 724 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_aggregate_fields": { @@ -14472,7 +14486,7 @@ export default { 41, { "columns": [ - 738, + 739, "[e_draft_game_draft_order_select_column!]" ], "distinct": [ @@ -14481,88 +14495,88 @@ export default { } ], "max": [ - 731 + 732 ], "min": [ - 732 + 733 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_bool_exp": { "_and": [ - 726 + 727 ], "_not": [ - 726 + 727 ], "_or": [ - 726 + 727 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_constraint": {}, "e_draft_game_draft_order_enum": {}, "e_draft_game_draft_order_enum_comparison_exp": { "_eq": [ - 728 + 729 ], "_in": [ - 728 + 729 ], "_is_null": [ 6 ], "_neq": [ - 728 + 729 ], "_nin": [ - 728 + 729 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_mutation_response": { @@ -14570,122 +14584,122 @@ export default { 41 ], "returning": [ - 723 + 724 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_obj_rel_insert_input": { "data": [ - 730 + 731 ], "on_conflict": [ - 735 + 736 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_on_conflict": { "constraint": [ - 727 + 728 ], "update_columns": [ - 742 + 743 ], "where": [ - 726 + 727 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_select_column": {}, "e_draft_game_draft_order_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_stream_cursor_input": { "initial_value": [ - 741 + 742 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_draft_order_update_column": {}, "e_draft_game_draft_order_updates": { "_set": [ - 739 + 740 ], "where": [ - 726 + 727 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_aggregate": { "aggregate": [ - 746 + 747 ], "nodes": [ - 744 + 745 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_aggregate_fields": { @@ -14693,7 +14707,7 @@ export default { 41, { "columns": [ - 759, + 760, "[e_draft_game_mode_select_column!]" ], "distinct": [ @@ -14702,88 +14716,88 @@ export default { } ], "max": [ - 752 + 753 ], "min": [ - 753 + 754 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_bool_exp": { "_and": [ - 747 + 748 ], "_not": [ - 747 + 748 ], "_or": [ - 747 + 748 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_constraint": {}, "e_draft_game_mode_enum": {}, "e_draft_game_mode_enum_comparison_exp": { "_eq": [ - 749 + 750 ], "_in": [ - 749 + 750 ], "_is_null": [ 6 ], "_neq": [ - 749 + 750 ], "_nin": [ - 749 + 750 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_mutation_response": { @@ -14791,122 +14805,122 @@ export default { 41 ], "returning": [ - 744 + 745 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_obj_rel_insert_input": { "data": [ - 751 + 752 ], "on_conflict": [ - 756 + 757 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_on_conflict": { "constraint": [ - 748 + 749 ], "update_columns": [ - 763 + 764 ], "where": [ - 747 + 748 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_select_column": {}, "e_draft_game_mode_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_stream_cursor_input": { "initial_value": [ - 762 + 763 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_mode_update_column": {}, "e_draft_game_mode_updates": { "_set": [ - 760 + 761 ], "where": [ - 747 + 748 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_aggregate": { "aggregate": [ - 767 + 768 ], "nodes": [ - 765 + 766 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_aggregate_fields": { @@ -14914,7 +14928,7 @@ export default { 41, { "columns": [ - 780, + 781, "[e_draft_game_player_status_select_column!]" ], "distinct": [ @@ -14923,88 +14937,88 @@ export default { } ], "max": [ - 773 + 774 ], "min": [ - 774 + 775 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_bool_exp": { "_and": [ - 768 + 769 ], "_not": [ - 768 + 769 ], "_or": [ - 768 + 769 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_constraint": {}, "e_draft_game_player_status_enum": {}, "e_draft_game_player_status_enum_comparison_exp": { "_eq": [ - 770 + 771 ], "_in": [ - 770 + 771 ], "_is_null": [ 6 ], "_neq": [ - 770 + 771 ], "_nin": [ - 770 + 771 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_mutation_response": { @@ -15012,122 +15026,122 @@ export default { 41 ], "returning": [ - 765 + 766 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_obj_rel_insert_input": { "data": [ - 772 + 773 ], "on_conflict": [ - 777 + 778 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_on_conflict": { "constraint": [ - 769 + 770 ], "update_columns": [ - 784 + 785 ], "where": [ - 768 + 769 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_select_column": {}, "e_draft_game_player_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_stream_cursor_input": { "initial_value": [ - 783 + 784 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_player_status_update_column": {}, "e_draft_game_player_status_updates": { "_set": [ - 781 + 782 ], "where": [ - 768 + 769 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_aggregate": { "aggregate": [ - 788 + 789 ], "nodes": [ - 786 + 787 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_aggregate_fields": { @@ -15135,7 +15149,7 @@ export default { 41, { "columns": [ - 801, + 802, "[e_draft_game_status_select_column!]" ], "distinct": [ @@ -15144,88 +15158,88 @@ export default { } ], "max": [ - 794 + 795 ], "min": [ - 795 + 796 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_bool_exp": { "_and": [ - 789 + 790 ], "_not": [ - 789 + 790 ], "_or": [ - 789 + 790 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_constraint": {}, "e_draft_game_status_enum": {}, "e_draft_game_status_enum_comparison_exp": { "_eq": [ - 791 + 792 ], "_in": [ - 791 + 792 ], "_is_null": [ 6 ], "_neq": [ - 791 + 792 ], "_nin": [ - 791 + 792 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_mutation_response": { @@ -15233,122 +15247,122 @@ export default { 41 ], "returning": [ - 786 + 787 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_obj_rel_insert_input": { "data": [ - 793 + 794 ], "on_conflict": [ - 798 + 799 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_on_conflict": { "constraint": [ - 790 + 791 ], "update_columns": [ - 805 + 806 ], "where": [ - 789 + 790 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_select_column": {}, "e_draft_game_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_stream_cursor_input": { "initial_value": [ - 804 + 805 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_draft_game_status_update_column": {}, "e_draft_game_status_updates": { "_set": [ - 802 + 803 ], "where": [ - 789 + 790 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_aggregate": { "aggregate": [ - 809 + 810 ], "nodes": [ - 807 + 808 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_aggregate_fields": { @@ -15356,7 +15370,7 @@ export default { 41, { "columns": [ - 821, + 822, "[e_event_media_access_select_column!]" ], "distinct": [ @@ -15365,88 +15379,88 @@ export default { } ], "max": [ - 815 + 816 ], "min": [ - 816 + 817 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_bool_exp": { "_and": [ - 810 + 811 ], "_not": [ - 810 + 811 ], "_or": [ - 810 + 811 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_constraint": {}, "e_event_media_access_enum": {}, "e_event_media_access_enum_comparison_exp": { "_eq": [ - 812 + 813 ], "_in": [ - 812 + 813 ], "_is_null": [ 6 ], "_neq": [ - 812 + 813 ], "_nin": [ - 812 + 813 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_mutation_response": { @@ -15454,111 +15468,111 @@ export default { 41 ], "returning": [ - 807 + 808 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_on_conflict": { "constraint": [ - 811 + 812 ], "update_columns": [ - 825 + 826 ], "where": [ - 810 + 811 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_select_column": {}, "e_event_media_access_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_stream_cursor_input": { "initial_value": [ - 824 + 825 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_media_access_update_column": {}, "e_event_media_access_updates": { "_set": [ - 822 + 823 ], "where": [ - 810 + 811 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_aggregate": { "aggregate": [ - 829 + 830 ], "nodes": [ - 827 + 828 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_aggregate_fields": { @@ -15566,7 +15580,7 @@ export default { 41, { "columns": [ - 841, + 842, "[e_event_visibility_select_column!]" ], "distinct": [ @@ -15575,88 +15589,88 @@ export default { } ], "max": [ - 835 + 836 ], "min": [ - 836 + 837 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_bool_exp": { "_and": [ - 830 + 831 ], "_not": [ - 830 + 831 ], "_or": [ - 830 + 831 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_constraint": {}, "e_event_visibility_enum": {}, "e_event_visibility_enum_comparison_exp": { "_eq": [ - 832 + 833 ], "_in": [ - 832 + 833 ], "_is_null": [ 6 ], "_neq": [ - 832 + 833 ], "_nin": [ - 832 + 833 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_mutation_response": { @@ -15664,111 +15678,111 @@ export default { 41 ], "returning": [ - 827 + 828 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_on_conflict": { "constraint": [ - 831 + 832 ], "update_columns": [ - 845 + 846 ], "where": [ - 830 + 831 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_select_column": {}, "e_event_visibility_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_stream_cursor_input": { "initial_value": [ - 844 + 845 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_event_visibility_update_column": {}, "e_event_visibility_updates": { "_set": [ - 842 + 843 ], "where": [ - 830 + 831 ], "__typename": [ - 84 + 85 ] }, "e_friend_status": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_aggregate": { "aggregate": [ - 849 + 850 ], "nodes": [ - 847 + 848 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_aggregate_fields": { @@ -15776,7 +15790,7 @@ export default { 41, { "columns": [ - 862, + 863, "[e_friend_status_select_column!]" ], "distinct": [ @@ -15785,88 +15799,88 @@ export default { } ], "max": [ - 855 + 856 ], "min": [ - 856 + 857 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_bool_exp": { "_and": [ - 850 + 851 ], "_not": [ - 850 + 851 ], "_or": [ - 850 + 851 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_constraint": {}, "e_friend_status_enum": {}, "e_friend_status_enum_comparison_exp": { "_eq": [ - 852 + 853 ], "_in": [ - 852 + 853 ], "_is_null": [ 6 ], "_neq": [ - 852 + 853 ], "_nin": [ - 852 + 853 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_mutation_response": { @@ -15874,122 +15888,122 @@ export default { 41 ], "returning": [ - 847 + 848 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_obj_rel_insert_input": { "data": [ - 854 + 855 ], "on_conflict": [ - 859 + 860 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_on_conflict": { "constraint": [ - 851 + 852 ], "update_columns": [ - 866 + 867 ], "where": [ - 850 + 851 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_select_column": {}, "e_friend_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 865 + 866 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 863 + 864 ], "where": [ - 850 + 851 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_aggregate": { "aggregate": [ - 870 + 871 ], "nodes": [ - 868 + 869 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_aggregate_fields": { @@ -15997,7 +16011,7 @@ export default { 41, { "columns": [ - 882, + 883, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -16006,88 +16020,88 @@ export default { } ], "max": [ - 876 + 877 ], "min": [ - 877 + 878 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_bool_exp": { "_and": [ - 871 + 872 ], "_not": [ - 871 + 872 ], "_or": [ - 871 + 872 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_constraint": {}, "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 873 + 874 ], "_in": [ - 873 + 874 ], "_is_null": [ 6 ], "_neq": [ - 873 + 874 ], "_nin": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_mutation_response": { @@ -16095,111 +16109,111 @@ export default { 41 ], "returning": [ - 868 + 869 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_on_conflict": { "constraint": [ - 872 + 873 ], "update_columns": [ - 886 + 887 ], "where": [ - 871 + 872 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_select_column": {}, "e_game_cfg_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 885 + 886 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 883 + 884 ], "where": [ - 871 + 872 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_aggregate": { "aggregate": [ - 890 + 891 ], "nodes": [ - 888 + 889 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_aggregate_fields": { @@ -16207,7 +16221,7 @@ export default { 41, { "columns": [ - 902, + 903, "[e_game_plugin_channels_select_column!]" ], "distinct": [ @@ -16216,88 +16230,88 @@ export default { } ], "max": [ - 896 + 897 ], "min": [ - 897 + 898 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_bool_exp": { "_and": [ - 891 + 892 ], "_not": [ - 891 + 892 ], "_or": [ - 891 + 892 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_constraint": {}, "e_game_plugin_channels_enum": {}, "e_game_plugin_channels_enum_comparison_exp": { "_eq": [ - 893 + 894 ], "_in": [ - 893 + 894 ], "_is_null": [ 6 ], "_neq": [ - 893 + 894 ], "_nin": [ - 893 + 894 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_mutation_response": { @@ -16305,111 +16319,111 @@ export default { 41 ], "returning": [ - 888 + 889 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_on_conflict": { "constraint": [ - 892 + 893 ], "update_columns": [ - 906 + 907 ], "where": [ - 891 + 892 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_select_column": {}, "e_game_plugin_channels_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_stream_cursor_input": { "initial_value": [ - 905 + 906 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_channels_update_column": {}, "e_game_plugin_channels_updates": { "_set": [ - 903 + 904 ], "where": [ - 891 + 892 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_aggregate": { "aggregate": [ - 910 + 911 ], "nodes": [ - 908 + 909 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_aggregate_fields": { @@ -16417,7 +16431,7 @@ export default { 41, { "columns": [ - 922, + 923, "[e_game_plugin_install_statuses_select_column!]" ], "distinct": [ @@ -16426,88 +16440,88 @@ export default { } ], "max": [ - 916 + 917 ], "min": [ - 917 + 918 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_bool_exp": { "_and": [ - 911 + 912 ], "_not": [ - 911 + 912 ], "_or": [ - 911 + 912 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_constraint": {}, "e_game_plugin_install_statuses_enum": {}, "e_game_plugin_install_statuses_enum_comparison_exp": { "_eq": [ - 913 + 914 ], "_in": [ - 913 + 914 ], "_is_null": [ 6 ], "_neq": [ - 913 + 914 ], "_nin": [ - 913 + 914 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_mutation_response": { @@ -16515,111 +16529,111 @@ export default { 41 ], "returning": [ - 908 + 909 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_on_conflict": { "constraint": [ - 912 + 913 ], "update_columns": [ - 926 + 927 ], "where": [ - 911 + 912 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_select_column": {}, "e_game_plugin_install_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_stream_cursor_input": { "initial_value": [ - 925 + 926 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_install_statuses_update_column": {}, "e_game_plugin_install_statuses_updates": { "_set": [ - 923 + 924 ], "where": [ - 911 + 912 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_aggregate": { "aggregate": [ - 930 + 931 ], "nodes": [ - 928 + 929 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_aggregate_fields": { @@ -16627,7 +16641,7 @@ export default { 41, { "columns": [ - 942, + 943, "[e_game_plugin_kinds_select_column!]" ], "distinct": [ @@ -16636,88 +16650,88 @@ export default { } ], "max": [ - 936 + 937 ], "min": [ - 937 + 938 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_bool_exp": { "_and": [ - 931 + 932 ], "_not": [ - 931 + 932 ], "_or": [ - 931 + 932 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_constraint": {}, "e_game_plugin_kinds_enum": {}, "e_game_plugin_kinds_enum_comparison_exp": { "_eq": [ - 933 + 934 ], "_in": [ - 933 + 934 ], "_is_null": [ 6 ], "_neq": [ - 933 + 934 ], "_nin": [ - 933 + 934 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_mutation_response": { @@ -16725,111 +16739,111 @@ export default { 41 ], "returning": [ - 928 + 929 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_on_conflict": { "constraint": [ - 932 + 933 ], "update_columns": [ - 946 + 947 ], "where": [ - 931 + 932 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_select_column": {}, "e_game_plugin_kinds_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_stream_cursor_input": { "initial_value": [ - 945 + 946 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_plugin_kinds_update_column": {}, "e_game_plugin_kinds_updates": { "_set": [ - 943 + 944 ], "where": [ - 931 + 932 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 950 + 951 ], "nodes": [ - 948 + 949 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_aggregate_fields": { @@ -16837,7 +16851,7 @@ export default { 41, { "columns": [ - 963, + 964, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -16846,88 +16860,88 @@ export default { } ], "max": [ - 956 + 957 ], "min": [ - 957 + 958 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 951 + 952 ], "_not": [ - 951 + 952 ], "_or": [ - 951 + 952 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_constraint": {}, "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 953 + 954 ], "_in": [ - 953 + 954 ], "_is_null": [ 6 ], "_neq": [ - 953 + 954 ], "_nin": [ - 953 + 954 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_mutation_response": { @@ -16935,122 +16949,122 @@ export default { 41 ], "returning": [ - 948 + 949 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 955 + 956 ], "on_conflict": [ - 960 + 961 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 952 + 953 ], "update_columns": [ - 967 + 968 ], "where": [ - 951 + 952 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_select_column": {}, "e_game_server_node_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 966 + 967 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 964 + 965 ], "where": [ - 951 + 952 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_aggregate": { "aggregate": [ - 971 + 972 ], "nodes": [ - 969 + 970 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_aggregate_fields": { @@ -17058,7 +17072,7 @@ export default { 41, { "columns": [ - 984, + 985, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -17067,88 +17081,88 @@ export default { } ], "max": [ - 977 + 978 ], "min": [ - 978 + 979 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_bool_exp": { "_and": [ - 972 + 973 ], "_not": [ - 972 + 973 ], "_or": [ - 972 + 973 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_constraint": {}, "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 974 + 975 ], "_in": [ - 974 + 975 ], "_is_null": [ 6 ], "_neq": [ - 974 + 975 ], "_nin": [ - 974 + 975 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_mutation_response": { @@ -17156,122 +17170,122 @@ export default { 41 ], "returning": [ - 969 + 970 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 976 + 977 ], "on_conflict": [ - 981 + 982 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_on_conflict": { "constraint": [ - 973 + 974 ], "update_columns": [ - 988 + 989 ], "where": [ - 972 + 973 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_select_column": {}, "e_league_movement_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 987 + 988 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 985 + 986 ], "where": [ - 972 + 973 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 992 + 993 ], "nodes": [ - 990 + 991 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_aggregate_fields": { @@ -17279,7 +17293,7 @@ export default { 41, { "columns": [ - 1005, + 1006, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -17288,88 +17302,88 @@ export default { } ], "max": [ - 998 + 999 ], "min": [ - 999 + 1000 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 993 + 994 ], "_not": [ - 993 + 994 ], "_or": [ - 993 + 994 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_constraint": {}, "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 995 + 996 ], "_in": [ - 995 + 996 ], "_is_null": [ 6 ], "_neq": [ - 995 + 996 ], "_nin": [ - 995 + 996 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_mutation_response": { @@ -17377,122 +17391,122 @@ export default { 41 ], "returning": [ - 990 + 991 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 997 + 998 ], "on_conflict": [ - 1002 + 1003 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 994 + 995 ], "update_columns": [ - 1009 + 1010 ], "where": [ - 993 + 994 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_select_column": {}, "e_league_proposal_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 1008 + 1009 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 1006 + 1007 ], "where": [ - 993 + 994 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 1013 + 1014 ], "nodes": [ - 1011 + 1012 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_aggregate_fields": { @@ -17500,7 +17514,7 @@ export default { 41, { "columns": [ - 1026, + 1027, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -17509,88 +17523,88 @@ export default { } ], "max": [ - 1019 + 1020 ], "min": [ - 1020 + 1021 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_bool_exp": { "_and": [ - 1014 + 1015 ], "_not": [ - 1014 + 1015 ], "_or": [ - 1014 + 1015 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_constraint": {}, "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 1016 + 1017 ], "_in": [ - 1016 + 1017 ], "_is_null": [ 6 ], "_neq": [ - 1016 + 1017 ], "_nin": [ - 1016 + 1017 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_mutation_response": { @@ -17598,122 +17612,122 @@ export default { 41 ], "returning": [ - 1011 + 1012 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 1018 + 1019 ], "on_conflict": [ - 1023 + 1024 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 1015 + 1016 ], "update_columns": [ - 1030 + 1031 ], "where": [ - 1014 + 1015 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_select_column": {}, "e_league_registration_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 1029 + 1030 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 1027 + 1028 ], "where": [ - 1014 + 1015 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_aggregate": { "aggregate": [ - 1034 + 1035 ], "nodes": [ - 1032 + 1033 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_aggregate_fields": { @@ -17721,7 +17735,7 @@ export default { 41, { "columns": [ - 1047, + 1048, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -17730,88 +17744,88 @@ export default { } ], "max": [ - 1040 + 1041 ], "min": [ - 1041 + 1042 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_bool_exp": { "_and": [ - 1035 + 1036 ], "_not": [ - 1035 + 1036 ], "_or": [ - 1035 + 1036 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_constraint": {}, "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 1037 + 1038 ], "_in": [ - 1037 + 1038 ], "_is_null": [ 6 ], "_neq": [ - 1037 + 1038 ], "_nin": [ - 1037 + 1038 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_mutation_response": { @@ -17819,122 +17833,122 @@ export default { 41 ], "returning": [ - 1032 + 1033 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 1039 + 1040 ], "on_conflict": [ - 1044 + 1045 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_on_conflict": { "constraint": [ - 1036 + 1037 ], "update_columns": [ - 1051 + 1052 ], "where": [ - 1035 + 1036 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_select_column": {}, "e_league_season_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 1050 + 1051 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 1048 + 1049 ], "where": [ - 1035 + 1036 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_aggregate": { "aggregate": [ - 1055 + 1056 ], "nodes": [ - 1053 + 1054 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_aggregate_fields": { @@ -17942,7 +17956,7 @@ export default { 41, { "columns": [ - 1068, + 1069, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -17951,88 +17965,88 @@ export default { } ], "max": [ - 1061 + 1062 ], "min": [ - 1062 + 1063 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_bool_exp": { "_and": [ - 1056 + 1057 ], "_not": [ - 1056 + 1057 ], "_or": [ - 1056 + 1057 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_constraint": {}, "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 1058 + 1059 ], "_in": [ - 1058 + 1059 ], "_is_null": [ 6 ], "_neq": [ - 1058 + 1059 ], "_nin": [ - 1058 + 1059 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_mutation_response": { @@ -18040,122 +18054,122 @@ export default { 41 ], "returning": [ - 1053 + 1054 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 1060 + 1061 ], "on_conflict": [ - 1065 + 1066 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_on_conflict": { "constraint": [ - 1057 + 1058 ], "update_columns": [ - 1072 + 1073 ], "where": [ - 1056 + 1057 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_select_column": {}, "e_lobby_access_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 1071 + 1072 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 1069 + 1070 ], "where": [ - 1056 + 1057 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_aggregate": { "aggregate": [ - 1076 + 1077 ], "nodes": [ - 1074 + 1075 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_aggregate_fields": { @@ -18163,7 +18177,7 @@ export default { 41, { "columns": [ - 1088, + 1089, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -18172,88 +18186,88 @@ export default { } ], "max": [ - 1082 + 1083 ], "min": [ - 1083 + 1084 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_bool_exp": { "_and": [ - 1077 + 1078 ], "_not": [ - 1077 + 1078 ], "_or": [ - 1077 + 1078 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_constraint": {}, "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 1079 + 1080 ], "_in": [ - 1079 + 1080 ], "_is_null": [ 6 ], "_neq": [ - 1079 + 1080 ], "_nin": [ - 1079 + 1080 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_mutation_response": { @@ -18261,111 +18275,111 @@ export default { 41 ], "returning": [ - 1074 + 1075 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_on_conflict": { "constraint": [ - 1078 + 1079 ], "update_columns": [ - 1092 + 1093 ], "where": [ - 1077 + 1078 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_select_column": {}, "e_lobby_player_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 1091 + 1092 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 1089 + 1090 ], "where": [ - 1077 + 1078 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_aggregate": { "aggregate": [ - 1096 + 1097 ], "nodes": [ - 1094 + 1095 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_aggregate_fields": { @@ -18373,7 +18387,7 @@ export default { 41, { "columns": [ - 1109, + 1110, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -18382,88 +18396,88 @@ export default { } ], "max": [ - 1102 + 1103 ], "min": [ - 1103 + 1104 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_bool_exp": { "_and": [ - 1097 + 1098 ], "_not": [ - 1097 + 1098 ], "_or": [ - 1097 + 1098 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_constraint": {}, "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 1099 + 1100 ], "_in": [ - 1099 + 1100 ], "_is_null": [ 6 ], "_neq": [ - 1099 + 1100 ], "_nin": [ - 1099 + 1100 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_mutation_response": { @@ -18471,111 +18485,111 @@ export default { 41 ], "returning": [ - 1094 + 1095 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 1101 + 1102 ], "on_conflict": [ - 1106 + 1107 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_on_conflict": { "constraint": [ - 1098 + 1099 ], "update_columns": [ - 1113 + 1114 ], "where": [ - 1097 + 1098 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_select_column": {}, "e_map_pool_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 1112 + 1113 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 1110 + 1111 ], "where": [ - 1097 + 1098 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility": { "description": [ - 84 + 85 ], "match_clips": [ - 2839, + 2863, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -18585,19 +18599,19 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_aggregate": [ - 2840, + 2864, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -18607,30 +18621,30 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 1117 + 1118 ], "nodes": [ - 1115 + 1116 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_aggregate_fields": { @@ -18638,7 +18652,7 @@ export default { 41, { "columns": [ - 1129, + 1130, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -18647,97 +18661,97 @@ export default { } ], "max": [ - 1123 + 1124 ], "min": [ - 1124 + 1125 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_bool_exp": { "_and": [ - 1118 + 1119 ], "_not": [ - 1118 + 1119 ], "_or": [ - 1118 + 1119 ], "description": [ - 86 + 87 ], "match_clips": [ - 2848 + 2872 ], "match_clips_aggregate": [ - 2841 + 2865 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_constraint": {}, "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 1120 + 1121 ], "_in": [ - 1120 + 1121 ], "_is_null": [ 6 ], "_neq": [ - 1120 + 1121 ], "_nin": [ - 1120 + 1121 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_insert_input": { "description": [ - 84 + 85 ], "match_clips": [ - 2845 + 2869 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_mutation_response": { @@ -18745,103 +18759,103 @@ export default { 41 ], "returning": [ - 1115 + 1116 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 1119 + 1120 ], "update_columns": [ - 1133 + 1134 ], "where": [ - 1118 + 1119 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_order_by": { "description": [ - 3534 + 3558 ], "match_clips_aggregate": [ - 2844 + 2868 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_select_column": {}, "e_match_clip_visibility_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 1132 + 1133 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 1130 + 1131 ], "where": [ - 1118 + 1119 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status": { "description": [ - 84 + 85 ], "match_maps": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -18851,19 +18865,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -18873,30 +18887,30 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_aggregate": { "aggregate": [ - 1137 + 1138 ], "nodes": [ - 1135 + 1136 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_aggregate_fields": { @@ -18904,7 +18918,7 @@ export default { 41, { "columns": [ - 1150, + 1151, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -18913,97 +18927,97 @@ export default { } ], "max": [ - 1143 + 1144 ], "min": [ - 1144 + 1145 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_bool_exp": { "_and": [ - 1138 + 1139 ], "_not": [ - 1138 + 1139 ], "_or": [ - 1138 + 1139 ], "description": [ - 86 + 87 ], "match_maps": [ - 3143 + 3167 ], "match_maps_aggregate": [ - 3136 + 3160 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_constraint": {}, "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 1140 + 1141 ], "_in": [ - 1140 + 1141 ], "_is_null": [ 6 ], "_neq": [ - 1140 + 1141 ], "_nin": [ - 1140 + 1141 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_insert_input": { "description": [ - 84 + 85 ], "match_maps": [ - 3140 + 3164 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_mutation_response": { @@ -19011,125 +19025,125 @@ export default { 41 ], "returning": [ - 1135 + 1136 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 1142 + 1143 ], "on_conflict": [ - 1147 + 1148 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_on_conflict": { "constraint": [ - 1139 + 1140 ], "update_columns": [ - 1154 + 1155 ], "where": [ - 1138 + 1139 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_order_by": { "description": [ - 3534 + 3558 ], "match_maps_aggregate": [ - 3139 + 3163 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_select_column": {}, "e_match_map_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 1153 + 1154 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 1151 + 1152 ], "where": [ - 1138 + 1139 ], "__typename": [ - 84 + 85 ] }, "e_match_mode": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_aggregate": { "aggregate": [ - 1158 + 1159 ], "nodes": [ - 1156 + 1157 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_aggregate_fields": { @@ -19137,7 +19151,7 @@ export default { 41, { "columns": [ - 1170, + 1171, "[e_match_mode_select_column!]" ], "distinct": [ @@ -19146,88 +19160,88 @@ export default { } ], "max": [ - 1164 + 1165 ], "min": [ - 1165 + 1166 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_bool_exp": { "_and": [ - 1159 + 1160 ], "_not": [ - 1159 + 1160 ], "_or": [ - 1159 + 1160 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_constraint": {}, "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 1161 + 1162 ], "_in": [ - 1161 + 1162 ], "_is_null": [ 6 ], "_neq": [ - 1161 + 1162 ], "_nin": [ - 1161 + 1162 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_mutation_response": { @@ -19235,100 +19249,100 @@ export default { 41 ], "returning": [ - 1156 + 1157 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_on_conflict": { "constraint": [ - 1160 + 1161 ], "update_columns": [ - 1174 + 1175 ], "where": [ - 1159 + 1160 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 1173 + 1174 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 1171 + 1172 ], "where": [ - 1159 + 1160 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources": { "description": [ - 84 + 85 ], "match_lineup_players": [ - 2927, + 2951, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -19338,19 +19352,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match_lineup_players_aggregate": [ - 2928, + 2952, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -19360,30 +19374,30 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_aggregate": { "aggregate": [ - 1178 + 1179 ], "nodes": [ - 1176 + 1177 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_aggregate_fields": { @@ -19391,7 +19405,7 @@ export default { 41, { "columns": [ - 1190, + 1191, "[e_match_party_sources_select_column!]" ], "distinct": [ @@ -19400,97 +19414,97 @@ export default { } ], "max": [ - 1184 + 1185 ], "min": [ - 1185 + 1186 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_bool_exp": { "_and": [ - 1179 + 1180 ], "_not": [ - 1179 + 1180 ], "_or": [ - 1179 + 1180 ], "description": [ - 86 + 87 ], "match_lineup_players": [ - 2938 + 2962 ], "match_lineup_players_aggregate": [ - 2929 + 2953 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_constraint": {}, "e_match_party_sources_enum": {}, "e_match_party_sources_enum_comparison_exp": { "_eq": [ - 1181 + 1182 ], "_in": [ - 1181 + 1182 ], "_is_null": [ 6 ], "_neq": [ - 1181 + 1182 ], "_nin": [ - 1181 + 1182 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_insert_input": { "description": [ - 84 + 85 ], "match_lineup_players": [ - 2935 + 2959 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_mutation_response": { @@ -19498,103 +19512,103 @@ export default { 41 ], "returning": [ - 1176 + 1177 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_on_conflict": { "constraint": [ - 1180 + 1181 ], "update_columns": [ - 1194 + 1195 ], "where": [ - 1179 + 1180 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_order_by": { "description": [ - 3534 + 3558 ], "match_lineup_players_aggregate": [ - 2934 + 2958 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_select_column": {}, "e_match_party_sources_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_stream_cursor_input": { "initial_value": [ - 1193 + 1194 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_party_sources_update_column": {}, "e_match_party_sources_updates": { "_set": [ - 1191 + 1192 ], "where": [ - 1179 + 1180 ], "__typename": [ - 84 + 85 ] }, "e_match_status": { "description": [ - 84 + 85 ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -19604,19 +19618,19 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_aggregate": [ - 3319, + 3343, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -19626,30 +19640,30 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_aggregate": { "aggregate": [ - 1198 + 1199 ], "nodes": [ - 1196 + 1197 ], "__typename": [ - 84 + 85 ] }, "e_match_status_aggregate_fields": { @@ -19657,7 +19671,7 @@ export default { 41, { "columns": [ - 1211, + 1212, "[e_match_status_select_column!]" ], "distinct": [ @@ -19666,97 +19680,97 @@ export default { } ], "max": [ - 1204 + 1205 ], "min": [ - 1205 + 1206 ], "__typename": [ - 84 + 85 ] }, "e_match_status_bool_exp": { "_and": [ - 1199 + 1200 ], "_not": [ - 1199 + 1200 ], "_or": [ - 1199 + 1200 ], "description": [ - 86 + 87 ], "matches": [ - 3329 + 3353 ], "matches_aggregate": [ - 3320 + 3344 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 1201 + 1202 ], "_in": [ - 1201 + 1202 ], "_is_null": [ 6 ], "_neq": [ - 1201 + 1202 ], "_nin": [ - 1201 + 1202 ], "__typename": [ - 84 + 85 ] }, "e_match_status_insert_input": { "description": [ - 84 + 85 ], "matches": [ - 3326 + 3350 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_mutation_response": { @@ -19764,114 +19778,114 @@ export default { 41 ], "returning": [ - 1196 + 1197 ], "__typename": [ - 84 + 85 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 1203 + 1204 ], "on_conflict": [ - 1208 + 1209 ], "__typename": [ - 84 + 85 ] }, "e_match_status_on_conflict": { "constraint": [ - 1200 + 1201 ], "update_columns": [ - 1215 + 1216 ], "where": [ - 1199 + 1200 ], "__typename": [ - 84 + 85 ] }, "e_match_status_order_by": { "description": [ - 3534 + 3558 ], "matches_aggregate": [ - 3325 + 3349 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 1214 + 1215 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 1212 + 1213 ], "where": [ - 1199 + 1200 ], "__typename": [ - 84 + 85 ] }, "e_match_types": { "description": [ - 84 + 85 ], "maps": [ - 2810, + 2834, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -19881,19 +19895,19 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "maps_aggregate": [ - 2811, + 2835, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -19903,30 +19917,30 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_aggregate": { "aggregate": [ - 1219 + 1220 ], "nodes": [ - 1217 + 1218 ], "__typename": [ - 84 + 85 ] }, "e_match_types_aggregate_fields": { @@ -19934,7 +19948,7 @@ export default { 41, { "columns": [ - 1232, + 1233, "[e_match_types_select_column!]" ], "distinct": [ @@ -19943,97 +19957,97 @@ export default { } ], "max": [ - 1225 + 1226 ], "min": [ - 1226 + 1227 ], "__typename": [ - 84 + 85 ] }, "e_match_types_bool_exp": { "_and": [ - 1220 + 1221 ], "_not": [ - 1220 + 1221 ], "_or": [ - 1220 + 1221 ], "description": [ - 86 + 87 ], "maps": [ - 2819 + 2843 ], "maps_aggregate": [ - 2812 + 2836 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 1222 + 1223 ], "_in": [ - 1222 + 1223 ], "_is_null": [ 6 ], "_neq": [ - 1222 + 1223 ], "_nin": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "e_match_types_insert_input": { "description": [ - 84 + 85 ], "maps": [ - 2818 + 2842 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_mutation_response": { @@ -20041,125 +20055,125 @@ export default { 41 ], "returning": [ - 1217 + 1218 ], "__typename": [ - 84 + 85 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 1224 + 1225 ], "on_conflict": [ - 1229 + 1230 ], "__typename": [ - 84 + 85 ] }, "e_match_types_on_conflict": { "constraint": [ - 1221 + 1222 ], "update_columns": [ - 1236 + 1237 ], "where": [ - 1220 + 1221 ], "__typename": [ - 84 + 85 ] }, "e_match_types_order_by": { "description": [ - 3534 + 3558 ], "maps_aggregate": [ - 2817 + 2841 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_match_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 1235 + 1236 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 1233 + 1234 ], "where": [ - 1220 + 1221 ], "__typename": [ - 84 + 85 ] }, "e_notification_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_aggregate": { "aggregate": [ - 1240 + 1241 ], "nodes": [ - 1238 + 1239 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_aggregate_fields": { @@ -20167,7 +20181,7 @@ export default { 41, { "columns": [ - 1252, + 1253, "[e_notification_types_select_column!]" ], "distinct": [ @@ -20176,88 +20190,88 @@ export default { } ], "max": [ - 1246 + 1247 ], "min": [ - 1247 + 1248 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_bool_exp": { "_and": [ - 1241 + 1242 ], "_not": [ - 1241 + 1242 ], "_or": [ - 1241 + 1242 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 1243 + 1244 ], "_in": [ - 1243 + 1244 ], "_is_null": [ 6 ], "_neq": [ - 1243 + 1244 ], "_nin": [ - 1243 + 1244 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_mutation_response": { @@ -20265,100 +20279,100 @@ export default { 41 ], "returning": [ - 1238 + 1239 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_on_conflict": { "constraint": [ - 1242 + 1243 ], "update_columns": [ - 1256 + 1257 ], "where": [ - 1241 + 1242 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 1255 + 1256 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 1253 + 1254 ], "where": [ - 1241 + 1242 ], "__typename": [ - 84 + 85 ] }, "e_objective_types": { "description": [ - 84 + 85 ], "player_objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -20368,19 +20382,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -20390,30 +20404,30 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_aggregate": { "aggregate": [ - 1260 + 1261 ], "nodes": [ - 1258 + 1259 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_aggregate_fields": { @@ -20421,7 +20435,7 @@ export default { 41, { "columns": [ - 1272, + 1273, "[e_objective_types_select_column!]" ], "distinct": [ @@ -20430,97 +20444,97 @@ export default { } ], "max": [ - 1266 + 1267 ], "min": [ - 1267 + 1268 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_bool_exp": { "_and": [ - 1261 + 1262 ], "_not": [ - 1261 + 1262 ], "_or": [ - 1261 + 1262 ], "description": [ - 86 + 87 ], "player_objectives": [ - 4099 + 4123 ], "player_objectives_aggregate": [ - 4092 + 4116 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 1263 + 1264 ], "_in": [ - 1263 + 1264 ], "_is_null": [ 6 ], "_neq": [ - 1263 + 1264 ], "_nin": [ - 1263 + 1264 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_insert_input": { "description": [ - 84 + 85 ], "player_objectives": [ - 4096 + 4120 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_mutation_response": { @@ -20528,114 +20542,114 @@ export default { 41 ], "returning": [ - 1258 + 1259 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_on_conflict": { "constraint": [ - 1262 + 1263 ], "update_columns": [ - 1276 + 1277 ], "where": [ - 1261 + 1262 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_order_by": { "description": [ - 3534 + 3558 ], "player_objectives_aggregate": [ - 4095 + 4119 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 1275 + 1276 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 1273 + 1274 ], "where": [ - 1261 + 1262 ], "__typename": [ - 84 + 85 ] }, "e_player_roles": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_aggregate": { "aggregate": [ - 1280 + 1281 ], "nodes": [ - 1278 + 1279 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_aggregate_fields": { @@ -20643,7 +20657,7 @@ export default { 41, { "columns": [ - 1292, + 1293, "[e_player_roles_select_column!]" ], "distinct": [ @@ -20652,88 +20666,88 @@ export default { } ], "max": [ - 1286 + 1287 ], "min": [ - 1287 + 1288 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_bool_exp": { "_and": [ - 1281 + 1282 ], "_not": [ - 1281 + 1282 ], "_or": [ - 1281 + 1282 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 1283 + 1284 ], "_in": [ - 1283 + 1284 ], "_is_null": [ 6 ], "_neq": [ - 1283 + 1284 ], "_nin": [ - 1283 + 1284 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_mutation_response": { @@ -20741,111 +20755,111 @@ export default { 41 ], "returning": [ - 1278 + 1279 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_on_conflict": { "constraint": [ - 1282 + 1283 ], "update_columns": [ - 1296 + 1297 ], "where": [ - 1281 + 1282 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 1295 + 1296 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 1293 + 1294 ], "where": [ - 1281 + 1282 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 1300 + 1301 ], "nodes": [ - 1298 + 1299 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_aggregate_fields": { @@ -20853,7 +20867,7 @@ export default { 41, { "columns": [ - 1312, + 1313, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -20862,88 +20876,88 @@ export default { } ], "max": [ - 1306 + 1307 ], "min": [ - 1307 + 1308 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_bool_exp": { "_and": [ - 1301 + 1302 ], "_not": [ - 1301 + 1302 ], "_or": [ - 1301 + 1302 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_constraint": {}, "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 1303 + 1304 ], "_in": [ - 1303 + 1304 ], "_is_null": [ 6 ], "_neq": [ - 1303 + 1304 ], "_nin": [ - 1303 + 1304 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_mutation_response": { @@ -20951,111 +20965,111 @@ export default { 41 ], "returning": [ - 1298 + 1299 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 1302 + 1303 ], "update_columns": [ - 1316 + 1317 ], "where": [ - 1301 + 1302 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_select_column": {}, "e_plugin_runtimes_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 1315 + 1316 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 1313 + 1314 ], "where": [ - 1301 + 1302 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 1320 + 1321 ], "nodes": [ - 1318 + 1319 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_aggregate_fields": { @@ -21063,7 +21077,7 @@ export default { 41, { "columns": [ - 1332, + 1333, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -21072,88 +21086,88 @@ export default { } ], "max": [ - 1326 + 1327 ], "min": [ - 1327 + 1328 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_bool_exp": { "_and": [ - 1321 + 1322 ], "_not": [ - 1321 + 1322 ], "_or": [ - 1321 + 1322 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 1323 + 1324 ], "_in": [ - 1323 + 1324 ], "_is_null": [ 6 ], "_neq": [ - 1323 + 1324 ], "_nin": [ - 1323 + 1324 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_mutation_response": { @@ -21161,111 +21175,111 @@ export default { 41 ], "returning": [ - 1318 + 1319 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 1322 + 1323 ], "update_columns": [ - 1336 + 1337 ], "where": [ - 1321 + 1322 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 1335 + 1336 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 1333 + 1334 ], "where": [ - 1321 + 1322 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 1340 + 1341 ], "nodes": [ - 1338 + 1339 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_aggregate_fields": { @@ -21273,7 +21287,7 @@ export default { 41, { "columns": [ - 1353, + 1354, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -21282,88 +21296,88 @@ export default { } ], "max": [ - 1346 + 1347 ], "min": [ - 1347 + 1348 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_bool_exp": { "_and": [ - 1341 + 1342 ], "_not": [ - 1341 + 1342 ], "_or": [ - 1341 + 1342 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 1343 + 1344 ], "_in": [ - 1343 + 1344 ], "_is_null": [ 6 ], "_neq": [ - 1343 + 1344 ], "_nin": [ - 1343 + 1344 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_mutation_response": { @@ -21371,111 +21385,111 @@ export default { 41 ], "returning": [ - 1338 + 1339 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 1345 + 1346 ], "on_conflict": [ - 1350 + 1351 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 1342 + 1343 ], "update_columns": [ - 1357 + 1358 ], "where": [ - 1341 + 1342 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 1356 + 1357 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 1354 + 1355 ], "where": [ - 1341 + 1342 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses": { "description": [ - 84 + 85 ], "scrim_requests": [ - 4979, + 5003, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -21485,19 +21499,19 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "scrim_requests_aggregate": [ - 4980, + 5004, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -21507,30 +21521,30 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 1361 + 1362 ], "nodes": [ - 1359 + 1360 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_aggregate_fields": { @@ -21538,7 +21552,7 @@ export default { 41, { "columns": [ - 1373, + 1374, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -21547,97 +21561,97 @@ export default { } ], "max": [ - 1367 + 1368 ], "min": [ - 1368 + 1369 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 1362 + 1363 ], "_not": [ - 1362 + 1363 ], "_or": [ - 1362 + 1363 ], "description": [ - 86 + 87 ], "scrim_requests": [ - 4990 + 5014 ], "scrim_requests_aggregate": [ - 4981 + 5005 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_constraint": {}, "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 1364 + 1365 ], "_in": [ - 1364 + 1365 ], "_is_null": [ 6 ], "_neq": [ - 1364 + 1365 ], "_nin": [ - 1364 + 1365 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_insert_input": { "description": [ - 84 + 85 ], "scrim_requests": [ - 4987 + 5011 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_mutation_response": { @@ -21645,103 +21659,103 @@ export default { 41 ], "returning": [ - 1359 + 1360 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 1363 + 1364 ], "update_columns": [ - 1377 + 1378 ], "where": [ - 1362 + 1363 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_order_by": { "description": [ - 3534 + 3558 ], "scrim_requests_aggregate": [ - 4986 + 5010 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_select_column": {}, "e_scrim_request_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 1376 + 1377 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 1374 + 1375 ], "where": [ - 1362 + 1363 ], "__typename": [ - 84 + 85 ] }, "e_server_types": { "description": [ - 84 + 85 ], "servers": [ - 4647, + 4671, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -21751,19 +21765,19 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_aggregate": [ - 4648, + 4672, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -21773,30 +21787,30 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_aggregate": { "aggregate": [ - 1381 + 1382 ], "nodes": [ - 1379 + 1380 ], "__typename": [ - 84 + 85 ] }, "e_server_types_aggregate_fields": { @@ -21804,7 +21818,7 @@ export default { 41, { "columns": [ - 1393, + 1394, "[e_server_types_select_column!]" ], "distinct": [ @@ -21813,97 +21827,97 @@ export default { } ], "max": [ - 1387 + 1388 ], "min": [ - 1388 + 1389 ], "__typename": [ - 84 + 85 ] }, "e_server_types_bool_exp": { "_and": [ - 1382 + 1383 ], "_not": [ - 1382 + 1383 ], "_or": [ - 1382 + 1383 ], "description": [ - 86 + 87 ], "servers": [ - 4659 + 4683 ], "servers_aggregate": [ - 4649 + 4673 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1384 + 1385 ], "_in": [ - 1384 + 1385 ], "_is_null": [ 6 ], "_neq": [ - 1384 + 1385 ], "_nin": [ - 1384 + 1385 ], "__typename": [ - 84 + 85 ] }, "e_server_types_insert_input": { "description": [ - 84 + 85 ], "servers": [ - 4656 + 4680 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_mutation_response": { @@ -21911,103 +21925,103 @@ export default { 41 ], "returning": [ - 1379 + 1380 ], "__typename": [ - 84 + 85 ] }, "e_server_types_on_conflict": { "constraint": [ - 1383 + 1384 ], "update_columns": [ - 1397 + 1398 ], "where": [ - 1382 + 1383 ], "__typename": [ - 84 + 85 ] }, "e_server_types_order_by": { "description": [ - 3534 + 3558 ], "servers_aggregate": [ - 4654 + 4678 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_server_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1396 + 1397 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1394 + 1395 ], "where": [ - 1382 + 1383 ], "__typename": [ - 84 + 85 ] }, "e_sides": { "description": [ - 84 + 85 ], "match_map_lineup_1": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -22017,19 +22031,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_map_lineup_1_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -22039,19 +22053,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_map_lineup_2": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -22061,19 +22075,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_map_lineup_2_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -22083,30 +22097,30 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_aggregate": { "aggregate": [ - 1401 + 1402 ], "nodes": [ - 1399 + 1400 ], "__typename": [ - 84 + 85 ] }, "e_sides_aggregate_fields": { @@ -22114,7 +22128,7 @@ export default { 41, { "columns": [ - 1413, + 1414, "[e_sides_select_column!]" ], "distinct": [ @@ -22123,106 +22137,106 @@ export default { } ], "max": [ - 1407 + 1408 ], "min": [ - 1408 + 1409 ], "__typename": [ - 84 + 85 ] }, "e_sides_bool_exp": { "_and": [ - 1402 + 1403 ], "_not": [ - 1402 + 1403 ], "_or": [ - 1402 + 1403 ], "description": [ - 86 + 87 ], "match_map_lineup_1": [ - 3143 + 3167 ], "match_map_lineup_1_aggregate": [ - 3136 + 3160 ], "match_map_lineup_2": [ - 3143 + 3167 ], "match_map_lineup_2_aggregate": [ - 3136 + 3160 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1404 + 1405 ], "_in": [ - 1404 + 1405 ], "_is_null": [ 6 ], "_neq": [ - 1404 + 1405 ], "_nin": [ - 1404 + 1405 ], "__typename": [ - 84 + 85 ] }, "e_sides_insert_input": { "description": [ - 84 + 85 ], "match_map_lineup_1": [ - 3140 + 3164 ], "match_map_lineup_2": [ - 3140 + 3164 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_mutation_response": { @@ -22230,117 +22244,117 @@ export default { 41 ], "returning": [ - 1399 + 1400 ], "__typename": [ - 84 + 85 ] }, "e_sides_on_conflict": { "constraint": [ - 1403 + 1404 ], "update_columns": [ - 1417 + 1418 ], "where": [ - 1402 + 1403 ], "__typename": [ - 84 + 85 ] }, "e_sides_order_by": { "description": [ - 3534 + 3558 ], "match_map_lineup_1_aggregate": [ - 3139 + 3163 ], "match_map_lineup_2_aggregate": [ - 3139 + 3163 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_sides_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 1416 + 1417 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1414 + 1415 ], "where": [ - 1402 + 1403 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_aggregate": { "aggregate": [ - 1421 + 1422 ], "nodes": [ - 1419 + 1420 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_aggregate_fields": { @@ -22348,7 +22362,7 @@ export default { 41, { "columns": [ - 1433, + 1434, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -22357,88 +22371,88 @@ export default { } ], "max": [ - 1427 + 1428 ], "min": [ - 1428 + 1429 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_bool_exp": { "_and": [ - 1422 + 1423 ], "_not": [ - 1422 + 1423 ], "_or": [ - 1422 + 1423 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_constraint": {}, "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1424 + 1425 ], "_in": [ - 1424 + 1425 ], "_is_null": [ 6 ], "_neq": [ - 1424 + 1425 ], "_nin": [ - 1424 + 1425 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_mutation_response": { @@ -22446,100 +22460,100 @@ export default { 41 ], "returning": [ - 1419 + 1420 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_on_conflict": { "constraint": [ - 1423 + 1424 ], "update_columns": [ - 1437 + 1438 ], "where": [ - 1422 + 1423 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_select_column": {}, "e_system_alert_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1436 + 1437 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1434 + 1435 ], "where": [ - 1422 + 1423 ], "__typename": [ - 84 + 85 ] }, "e_team_roles": { "description": [ - 84 + 85 ], "team_rosters": [ - 4838, + 4862, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -22549,19 +22563,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_rosters_aggregate": [ - 4839, + 4863, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -22571,19 +22585,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "tournament_team_rosters": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -22593,19 +22607,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_team_rosters_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -22615,30 +22629,30 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_aggregate": { "aggregate": [ - 1441 + 1442 ], "nodes": [ - 1439 + 1440 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_aggregate_fields": { @@ -22646,7 +22660,7 @@ export default { 41, { "columns": [ - 1454, + 1455, "[e_team_roles_select_column!]" ], "distinct": [ @@ -22655,106 +22669,106 @@ export default { } ], "max": [ - 1447 + 1448 ], "min": [ - 1448 + 1449 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_bool_exp": { "_and": [ - 1442 + 1443 ], "_not": [ - 1442 + 1443 ], "_or": [ - 1442 + 1443 ], "description": [ - 86 + 87 ], "team_rosters": [ - 4849 + 4873 ], "team_rosters_aggregate": [ - 4840 + 4864 ], "tournament_team_rosters": [ - 5491 + 5515 ], "tournament_team_rosters_aggregate": [ - 5484 + 5508 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1444 + 1445 ], "_in": [ - 1444 + 1445 ], "_is_null": [ 6 ], "_neq": [ - 1444 + 1445 ], "_nin": [ - 1444 + 1445 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_insert_input": { "description": [ - 84 + 85 ], "team_rosters": [ - 4846 + 4870 ], "tournament_team_rosters": [ - 5488 + 5512 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_mutation_response": { @@ -22762,128 +22776,128 @@ export default { 41 ], "returning": [ - 1439 + 1440 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1446 + 1447 ], "on_conflict": [ - 1451 + 1452 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_on_conflict": { "constraint": [ - 1443 + 1444 ], "update_columns": [ - 1458 + 1459 ], "where": [ - 1442 + 1443 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_order_by": { "description": [ - 3534 + 3558 ], "team_rosters_aggregate": [ - 4845 + 4869 ], "tournament_team_rosters_aggregate": [ - 5487 + 5511 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1457 + 1458 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1455 + 1456 ], "where": [ - 1442 + 1443 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1462 + 1463 ], "nodes": [ - 1460 + 1461 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_aggregate_fields": { @@ -22891,7 +22905,7 @@ export default { 41, { "columns": [ - 1474, + 1475, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -22900,88 +22914,88 @@ export default { } ], "max": [ - 1468 + 1469 ], "min": [ - 1469 + 1470 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1463 + 1464 ], "_not": [ - 1463 + 1464 ], "_or": [ - 1463 + 1464 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1465 + 1466 ], "_in": [ - 1465 + 1466 ], "_is_null": [ 6 ], "_neq": [ - 1465 + 1466 ], "_nin": [ - 1465 + 1466 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_mutation_response": { @@ -22989,111 +23003,111 @@ export default { 41 ], "returning": [ - 1460 + 1461 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1464 + 1465 ], "update_columns": [ - 1478 + 1479 ], "where": [ - 1463 + 1464 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1477 + 1478 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1475 + 1476 ], "where": [ - 1463 + 1464 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 1482 + 1483 ], "nodes": [ - 1480 + 1481 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_aggregate_fields": { @@ -23101,7 +23115,7 @@ export default { 41, { "columns": [ - 1494, + 1495, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -23110,88 +23124,88 @@ export default { } ], "max": [ - 1488 + 1489 ], "min": [ - 1489 + 1490 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 1483 + 1484 ], "_not": [ - 1483 + 1484 ], "_or": [ - 1483 + 1484 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1485 + 1486 ], "_in": [ - 1485 + 1486 ], "_is_null": [ 6 ], "_neq": [ - 1485 + 1486 ], "_nin": [ - 1485 + 1486 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_mutation_response": { @@ -23199,100 +23213,100 @@ export default { 41 ], "returning": [ - 1480 + 1481 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 1484 + 1485 ], "update_columns": [ - 1498 + 1499 ], "where": [ - 1483 + 1484 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1497 + 1498 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1495 + 1496 ], "where": [ - 1483 + 1484 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories": { "description": [ - 84 + 85 ], "tournament_categories": [ - 5219, + 5243, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -23302,19 +23316,19 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "tournament_categories_aggregate": [ - 5220, + 5244, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -23324,30 +23338,30 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_aggregate": { "aggregate": [ - 1502 + 1503 ], "nodes": [ - 1500 + 1501 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_aggregate_fields": { @@ -23355,7 +23369,7 @@ export default { 41, { "columns": [ - 1515, + 1516, "[e_tournament_categories_select_column!]" ], "distinct": [ @@ -23364,97 +23378,97 @@ export default { } ], "max": [ - 1508 + 1509 ], "min": [ - 1509 + 1510 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_bool_exp": { "_and": [ - 1503 + 1504 ], "_not": [ - 1503 + 1504 ], "_or": [ - 1503 + 1504 ], "description": [ - 86 + 87 ], "tournament_categories": [ - 5226 + 5250 ], "tournament_categories_aggregate": [ - 5221 + 5245 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_constraint": {}, "e_tournament_categories_enum": {}, "e_tournament_categories_enum_comparison_exp": { "_eq": [ - 1505 + 1506 ], "_in": [ - 1505 + 1506 ], "_is_null": [ 6 ], "_neq": [ - 1505 + 1506 ], "_nin": [ - 1505 + 1506 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_insert_input": { "description": [ - 84 + 85 ], "tournament_categories": [ - 5225 + 5249 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_mutation_response": { @@ -23462,114 +23476,114 @@ export default { 41 ], "returning": [ - 1500 + 1501 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_obj_rel_insert_input": { "data": [ - 1507 + 1508 ], "on_conflict": [ - 1512 + 1513 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_on_conflict": { "constraint": [ - 1504 + 1505 ], "update_columns": [ - 1519 + 1520 ], "where": [ - 1503 + 1504 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_order_by": { "description": [ - 3534 + 3558 ], "tournament_categories_aggregate": [ - 5224 + 5248 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_select_column": {}, "e_tournament_categories_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_stream_cursor_input": { "initial_value": [ - 1518 + 1519 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_categories_update_column": {}, "e_tournament_categories_updates": { "_set": [ - 1516 + 1517 ], "where": [ - 1503 + 1504 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types": { "description": [ - 84 + 85 ], "tournament_stages": [ - 5390, + 5414, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -23579,19 +23593,19 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "tournament_stages_aggregate": [ - 5391, + 5415, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -23601,30 +23615,30 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1523 + 1524 ], "nodes": [ - 1521 + 1522 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_aggregate_fields": { @@ -23632,7 +23646,7 @@ export default { 41, { "columns": [ - 1536, + 1537, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -23641,97 +23655,97 @@ export default { } ], "max": [ - 1529 + 1530 ], "min": [ - 1530 + 1531 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1524 + 1525 ], "_not": [ - 1524 + 1525 ], "_or": [ - 1524 + 1525 ], "description": [ - 86 + 87 ], "tournament_stages": [ - 5402 + 5426 ], "tournament_stages_aggregate": [ - 5392 + 5416 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1526 + 1527 ], "_in": [ - 1526 + 1527 ], "_is_null": [ 6 ], "_neq": [ - 1526 + 1527 ], "_nin": [ - 1526 + 1527 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 84 + 85 ], "tournament_stages": [ - 5399 + 5423 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_mutation_response": { @@ -23739,114 +23753,114 @@ export default { 41 ], "returning": [ - 1521 + 1522 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1528 + 1529 ], "on_conflict": [ - 1533 + 1534 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1525 + 1526 ], "update_columns": [ - 1540 + 1541 ], "where": [ - 1524 + 1525 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_order_by": { "description": [ - 3534 + 3558 ], "tournament_stages_aggregate": [ - 5397 + 5421 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1539 + 1540 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1537 + 1538 ], "where": [ - 1524 + 1525 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status": { "description": [ - 84 + 85 ], "tournaments": [ - 5565, + 5589, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -23856,19 +23870,19 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_aggregate": [ - 5566, + 5590, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -23878,30 +23892,30 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 1544 + 1545 ], "nodes": [ - 1542 + 1543 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_aggregate_fields": { @@ -23909,7 +23923,7 @@ export default { 41, { "columns": [ - 1557, + 1558, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -23918,97 +23932,97 @@ export default { } ], "max": [ - 1550 + 1551 ], "min": [ - 1551 + 1552 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_bool_exp": { "_and": [ - 1545 + 1546 ], "_not": [ - 1545 + 1546 ], "_or": [ - 1545 + 1546 ], "description": [ - 86 + 87 ], "tournaments": [ - 5586 + 5610 ], "tournaments_aggregate": [ - 5567 + 5591 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1547 + 1548 ], "_in": [ - 1547 + 1548 ], "_is_null": [ 6 ], "_neq": [ - 1547 + 1548 ], "_nin": [ - 1547 + 1548 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_insert_input": { "description": [ - 84 + 85 ], "tournaments": [ - 5583 + 5607 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_mutation_response": { @@ -24016,114 +24030,114 @@ export default { 41 ], "returning": [ - 1542 + 1543 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1549 + 1550 ], "on_conflict": [ - 1554 + 1555 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 1546 + 1547 ], "update_columns": [ - 1561 + 1562 ], "where": [ - 1545 + 1546 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_order_by": { "description": [ - 3534 + 3558 ], "tournaments_aggregate": [ - 5582 + 5606 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1560 + 1561 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1558 + 1559 ], "where": [ - 1545 + 1546 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access": { "description": [ - 84 + 85 ], "utility_practice_sessions": [ - 6295, + 6319, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -24133,19 +24147,19 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_aggregate": [ - 6296, + 6320, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -24155,30 +24169,30 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_aggregate": { "aggregate": [ - 1565 + 1566 ], "nodes": [ - 1563 + 1564 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_aggregate_fields": { @@ -24186,7 +24200,7 @@ export default { 41, { "columns": [ - 1577, + 1578, "[e_utility_practice_access_select_column!]" ], "distinct": [ @@ -24195,97 +24209,97 @@ export default { } ], "max": [ - 1571 + 1572 ], "min": [ - 1572 + 1573 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_bool_exp": { "_and": [ - 1566 + 1567 ], "_not": [ - 1566 + 1567 ], "_or": [ - 1566 + 1567 ], "description": [ - 86 + 87 ], "utility_practice_sessions": [ - 6306 + 6330 ], "utility_practice_sessions_aggregate": [ - 6297 + 6321 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_constraint": {}, "e_utility_practice_access_enum": {}, "e_utility_practice_access_enum_comparison_exp": { "_eq": [ - 1568 + 1569 ], "_in": [ - 1568 + 1569 ], "_is_null": [ 6 ], "_neq": [ - 1568 + 1569 ], "_nin": [ - 1568 + 1569 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_insert_input": { "description": [ - 84 + 85 ], "utility_practice_sessions": [ - 6303 + 6327 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_mutation_response": { @@ -24293,103 +24307,103 @@ export default { 41 ], "returning": [ - 1563 + 1564 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_on_conflict": { "constraint": [ - 1567 + 1568 ], "update_columns": [ - 1581 + 1582 ], "where": [ - 1566 + 1567 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_order_by": { "description": [ - 3534 + 3558 ], "utility_practice_sessions_aggregate": [ - 6302 + 6326 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_select_column": {}, "e_utility_practice_access_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_stream_cursor_input": { "initial_value": [ - 1580 + 1581 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_access_update_column": {}, "e_utility_practice_access_updates": { "_set": [ - 1578 + 1579 ], "where": [ - 1566 + 1567 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses": { "description": [ - 84 + 85 ], "utility_practice_sessions": [ - 6295, + 6319, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -24399,19 +24413,19 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_aggregate": [ - 6296, + 6320, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -24421,30 +24435,30 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_aggregate": { "aggregate": [ - 1585 + 1586 ], "nodes": [ - 1583 + 1584 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_aggregate_fields": { @@ -24452,7 +24466,7 @@ export default { 41, { "columns": [ - 1598, + 1599, "[e_utility_practice_statuses_select_column!]" ], "distinct": [ @@ -24461,97 +24475,97 @@ export default { } ], "max": [ - 1591 + 1592 ], "min": [ - 1592 + 1593 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_bool_exp": { "_and": [ - 1586 + 1587 ], "_not": [ - 1586 + 1587 ], "_or": [ - 1586 + 1587 ], "description": [ - 86 + 87 ], "utility_practice_sessions": [ - 6306 + 6330 ], "utility_practice_sessions_aggregate": [ - 6297 + 6321 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_constraint": {}, "e_utility_practice_statuses_enum": {}, "e_utility_practice_statuses_enum_comparison_exp": { "_eq": [ - 1588 + 1589 ], "_in": [ - 1588 + 1589 ], "_is_null": [ 6 ], "_neq": [ - 1588 + 1589 ], "_nin": [ - 1588 + 1589 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_insert_input": { "description": [ - 84 + 85 ], "utility_practice_sessions": [ - 6303 + 6327 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_mutation_response": { @@ -24559,114 +24573,114 @@ export default { 41 ], "returning": [ - 1583 + 1584 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_obj_rel_insert_input": { "data": [ - 1590 + 1591 ], "on_conflict": [ - 1595 + 1596 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_on_conflict": { "constraint": [ - 1587 + 1588 ], "update_columns": [ - 1602 + 1603 ], "where": [ - 1586 + 1587 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_order_by": { "description": [ - 3534 + 3558 ], "utility_practice_sessions_aggregate": [ - 6302 + 6326 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_select_column": {}, "e_utility_practice_statuses_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_stream_cursor_input": { "initial_value": [ - 1601 + 1602 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_practice_statuses_update_column": {}, "e_utility_practice_statuses_updates": { "_set": [ - 1599 + 1600 ], "where": [ - 1586 + 1587 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -24676,19 +24690,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -24698,30 +24712,30 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_aggregate": { "aggregate": [ - 1606 + 1607 ], "nodes": [ - 1604 + 1605 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_aggregate_fields": { @@ -24729,7 +24743,7 @@ export default { 41, { "columns": [ - 1618, + 1619, "[e_utility_sources_select_column!]" ], "distinct": [ @@ -24738,97 +24752,97 @@ export default { } ], "max": [ - 1612 + 1613 ], "min": [ - 1613 + 1614 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_bool_exp": { "_and": [ - 1607 + 1608 ], "_not": [ - 1607 + 1608 ], "_or": [ - 1607 + 1608 ], "description": [ - 86 + 87 ], "utility_lineups": [ - 6111 + 6135 ], "utility_lineups_aggregate": [ - 6091 + 6115 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_constraint": {}, "e_utility_sources_enum": {}, "e_utility_sources_enum_comparison_exp": { "_eq": [ - 1609 + 1610 ], "_in": [ - 1609 + 1610 ], "_is_null": [ 6 ], "_neq": [ - 1609 + 1610 ], "_nin": [ - 1609 + 1610 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_insert_input": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6108 + 6132 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_mutation_response": { @@ -24836,103 +24850,103 @@ export default { 41 ], "returning": [ - 1604 + 1605 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_on_conflict": { "constraint": [ - 1608 + 1609 ], "update_columns": [ - 1622 + 1623 ], "where": [ - 1607 + 1608 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_order_by": { "description": [ - 3534 + 3558 ], "utility_lineups_aggregate": [ - 6106 + 6130 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_select_column": {}, "e_utility_sources_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_stream_cursor_input": { "initial_value": [ - 1621 + 1622 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_sources_update_column": {}, "e_utility_sources_updates": { "_set": [ - 1619 + 1620 ], "where": [ - 1607 + 1608 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -24942,19 +24956,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -24964,30 +24978,30 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_aggregate": { "aggregate": [ - 1626 + 1627 ], "nodes": [ - 1624 + 1625 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_aggregate_fields": { @@ -24995,7 +25009,7 @@ export default { 41, { "columns": [ - 1638, + 1639, "[e_utility_techniques_select_column!]" ], "distinct": [ @@ -25004,97 +25018,97 @@ export default { } ], "max": [ - 1632 + 1633 ], "min": [ - 1633 + 1634 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_bool_exp": { "_and": [ - 1627 + 1628 ], "_not": [ - 1627 + 1628 ], "_or": [ - 1627 + 1628 ], "description": [ - 86 + 87 ], "utility_lineups": [ - 6111 + 6135 ], "utility_lineups_aggregate": [ - 6091 + 6115 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_constraint": {}, "e_utility_techniques_enum": {}, "e_utility_techniques_enum_comparison_exp": { "_eq": [ - 1629 + 1630 ], "_in": [ - 1629 + 1630 ], "_is_null": [ 6 ], "_neq": [ - 1629 + 1630 ], "_nin": [ - 1629 + 1630 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_insert_input": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6108 + 6132 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_mutation_response": { @@ -25102,103 +25116,103 @@ export default { 41 ], "returning": [ - 1624 + 1625 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_on_conflict": { "constraint": [ - 1628 + 1629 ], "update_columns": [ - 1642 + 1643 ], "where": [ - 1627 + 1628 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_order_by": { "description": [ - 3534 + 3558 ], "utility_lineups_aggregate": [ - 6106 + 6130 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_select_column": {}, "e_utility_techniques_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_stream_cursor_input": { "initial_value": [ - 1641 + 1642 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_techniques_update_column": {}, "e_utility_techniques_updates": { "_set": [ - 1639 + 1640 ], "where": [ - 1627 + 1628 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -25208,19 +25222,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -25230,30 +25244,30 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_aggregate": { "aggregate": [ - 1646 + 1647 ], "nodes": [ - 1644 + 1645 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_aggregate_fields": { @@ -25261,7 +25275,7 @@ export default { 41, { "columns": [ - 1658, + 1659, "[e_utility_throw_strengths_select_column!]" ], "distinct": [ @@ -25270,97 +25284,97 @@ export default { } ], "max": [ - 1652 + 1653 ], "min": [ - 1653 + 1654 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_bool_exp": { "_and": [ - 1647 + 1648 ], "_not": [ - 1647 + 1648 ], "_or": [ - 1647 + 1648 ], "description": [ - 86 + 87 ], "utility_lineups": [ - 6111 + 6135 ], "utility_lineups_aggregate": [ - 6091 + 6115 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_constraint": {}, "e_utility_throw_strengths_enum": {}, "e_utility_throw_strengths_enum_comparison_exp": { "_eq": [ - 1649 + 1650 ], "_in": [ - 1649 + 1650 ], "_is_null": [ 6 ], "_neq": [ - 1649 + 1650 ], "_nin": [ - 1649 + 1650 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_insert_input": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6108 + 6132 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_mutation_response": { @@ -25368,103 +25382,103 @@ export default { 41 ], "returning": [ - 1644 + 1645 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_on_conflict": { "constraint": [ - 1648 + 1649 ], "update_columns": [ - 1662 + 1663 ], "where": [ - 1647 + 1648 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_order_by": { "description": [ - 3534 + 3558 ], "utility_lineups_aggregate": [ - 6106 + 6130 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_select_column": {}, "e_utility_throw_strengths_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_stream_cursor_input": { "initial_value": [ - 1661 + 1662 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_throw_strengths_update_column": {}, "e_utility_throw_strengths_updates": { "_set": [ - 1659 + 1660 ], "where": [ - 1647 + 1648 ], "__typename": [ - 84 + 85 ] }, "e_utility_types": { "description": [ - 84 + 85 ], "player_utilities": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -25474,19 +25488,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utilities_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -25496,30 +25510,30 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_aggregate": { "aggregate": [ - 1666 + 1667 ], "nodes": [ - 1664 + 1665 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_aggregate_fields": { @@ -25527,7 +25541,7 @@ export default { 41, { "columns": [ - 1678, + 1679, "[e_utility_types_select_column!]" ], "distinct": [ @@ -25536,97 +25550,97 @@ export default { } ], "max": [ - 1672 + 1673 ], "min": [ - 1673 + 1674 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_bool_exp": { "_and": [ - 1667 + 1668 ], "_not": [ - 1667 + 1668 ], "_or": [ - 1667 + 1668 ], "description": [ - 86 + 87 ], "player_utilities": [ - 4427 + 4451 ], "player_utilities_aggregate": [ - 4420 + 4444 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1669 + 1670 ], "_in": [ - 1669 + 1670 ], "_is_null": [ 6 ], "_neq": [ - 1669 + 1670 ], "_nin": [ - 1669 + 1670 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_insert_input": { "description": [ - 84 + 85 ], "player_utilities": [ - 4424 + 4448 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_mutation_response": { @@ -25634,103 +25648,103 @@ export default { 41 ], "returning": [ - 1664 + 1665 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_on_conflict": { "constraint": [ - 1668 + 1669 ], "update_columns": [ - 1682 + 1683 ], "where": [ - 1667 + 1668 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_order_by": { "description": [ - 3534 + 3558 ], "player_utilities_aggregate": [ - 4423 + 4447 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1681 + 1682 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1679 + 1680 ], "where": [ - 1667 + 1668 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -25740,19 +25754,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -25762,30 +25776,30 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_aggregate": { "aggregate": [ - 1686 + 1687 ], "nodes": [ - 1684 + 1685 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_aggregate_fields": { @@ -25793,7 +25807,7 @@ export default { 41, { "columns": [ - 1698, + 1699, "[e_utility_visibility_select_column!]" ], "distinct": [ @@ -25802,97 +25816,97 @@ export default { } ], "max": [ - 1692 + 1693 ], "min": [ - 1693 + 1694 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_bool_exp": { "_and": [ - 1687 + 1688 ], "_not": [ - 1687 + 1688 ], "_or": [ - 1687 + 1688 ], "description": [ - 86 + 87 ], "utility_lineups": [ - 6111 + 6135 ], "utility_lineups_aggregate": [ - 6091 + 6115 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_constraint": {}, "e_utility_visibility_enum": {}, "e_utility_visibility_enum_comparison_exp": { "_eq": [ - 1689 + 1690 ], "_in": [ - 1689 + 1690 ], "_is_null": [ 6 ], "_neq": [ - 1689 + 1690 ], "_nin": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_insert_input": { "description": [ - 84 + 85 ], "utility_lineups": [ - 6108 + 6132 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_mutation_response": { @@ -25900,103 +25914,103 @@ export default { 41 ], "returning": [ - 1684 + 1685 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_on_conflict": { "constraint": [ - 1688 + 1689 ], "update_columns": [ - 1702 + 1703 ], "where": [ - 1687 + 1688 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_order_by": { "description": [ - 3534 + 3558 ], "utility_lineups_aggregate": [ - 6106 + 6130 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_select_column": {}, "e_utility_visibility_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_stream_cursor_input": { "initial_value": [ - 1701 + 1702 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_utility_visibility_update_column": {}, "e_utility_visibility_updates": { "_set": [ - 1699 + 1700 ], "where": [ - 1687 + 1688 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types": { "description": [ - 84 + 85 ], "match_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -26006,19 +26020,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -26028,30 +26042,30 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1706 + 1707 ], "nodes": [ - 1704 + 1705 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_aggregate_fields": { @@ -26059,7 +26073,7 @@ export default { 41, { "columns": [ - 1718, + 1719, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -26068,97 +26082,97 @@ export default { } ], "max": [ - 1712 + 1713 ], "min": [ - 1713 + 1714 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 1707 + 1708 ], "_not": [ - 1707 + 1708 ], "_or": [ - 1707 + 1708 ], "description": [ - 86 + 87 ], "match_veto_picks": [ - 3115 + 3139 ], "match_veto_picks_aggregate": [ - 3108 + 3132 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1709 + 1710 ], "_in": [ - 1709 + 1710 ], "_is_null": [ 6 ], "_neq": [ - 1709 + 1710 ], "_nin": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_insert_input": { "description": [ - 84 + 85 ], "match_veto_picks": [ - 3114 + 3138 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_mutation_response": { @@ -26166,114 +26180,114 @@ export default { 41 ], "returning": [ - 1704 + 1705 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1708 + 1709 ], "update_columns": [ - 1722 + 1723 ], "where": [ - 1707 + 1708 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_order_by": { "description": [ - 3534 + 3558 ], "match_veto_picks_aggregate": [ - 3113 + 3137 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1721 + 1722 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1719 + 1720 ], "where": [ - 1707 + 1708 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 1726 + 1727 ], "nodes": [ - 1724 + 1725 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_aggregate_fields": { @@ -26281,7 +26295,7 @@ export default { 41, { "columns": [ - 1738, + 1739, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -26290,88 +26304,88 @@ export default { } ], "max": [ - 1732 + 1733 ], "min": [ - 1733 + 1734 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 1727 + 1728 ], "_not": [ - 1727 + 1728 ], "_or": [ - 1727 + 1728 ], "description": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1729 + 1730 ], "_in": [ - 1729 + 1730 ], "_is_null": [ 6 ], "_neq": [ - 1729 + 1730 ], "_nin": [ - 1729 + 1730 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_insert_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_max_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_min_fields": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_mutation_response": { @@ -26379,120 +26393,120 @@ export default { 41 ], "returning": [ - 1724 + 1725 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 1728 + 1729 ], "update_columns": [ - 1742 + 1743 ], "where": [ - 1727 + 1728 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_order_by": { "description": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1741 + 1742 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1739 + 1740 ], "where": [ - 1727 + 1728 ], "__typename": [ - 84 + 85 ] }, "event_match_links": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_aggregate": { "aggregate": [ - 1746 + 1747 ], "nodes": [ - 1744 + 1745 ], "__typename": [ - 84 + 85 ] }, "event_match_links_aggregate_fields": { @@ -26500,7 +26514,7 @@ export default { 41, { "columns": [ - 1756, + 1757, "[event_match_links_select_column!]" ], "distinct": [ @@ -26509,91 +26523,91 @@ export default { } ], "max": [ - 1750 + 1751 ], "min": [ - 1751 + 1752 ], "__typename": [ - 84 + 85 ] }, "event_match_links_bool_exp": { "_and": [ - 1747 + 1748 ], "_not": [ - 1747 + 1748 ], "_or": [ - 1747 + 1748 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "event_match_links_constraint": {}, "event_match_links_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_mutation_response": { @@ -26601,136 +26615,136 @@ export default { 41 ], "returning": [ - 1744 + 1745 ], "__typename": [ - 84 + 85 ] }, "event_match_links_on_conflict": { "constraint": [ - 1748 + 1749 ], "update_columns": [ - 1760 + 1761 ], "where": [ - 1747 + 1748 ], "__typename": [ - 84 + 85 ] }, "event_match_links_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_match_links_pk_columns_input": { "event_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_select_column": {}, "event_match_links_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_stream_cursor_input": { "initial_value": [ - 1759 + 1760 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_match_links_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_match_links_update_column": {}, "event_match_links_updates": { "_set": [ - 1757 + 1758 ], "where": [ - 1747 + 1748 ], "__typename": [ - 84 + 85 ] }, "event_media": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "players": [ - 1784, + 1785, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -26740,19 +26754,19 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "players_aggregate": [ - 1785, + 1786, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -26762,78 +26776,78 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader": [ - 4492 + 4516 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_aggregate": { "aggregate": [ - 1766 + 1767 ], "nodes": [ - 1762 + 1763 ], "__typename": [ - 84 + 85 ] }, "event_media_aggregate_bool_exp": { "count": [ - 1765 + 1766 ], "__typename": [ - 84 + 85 ] }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1825 + 1826 ], "distinct": [ 6 ], "filter": [ - 1771 + 1772 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_media_aggregate_fields": { "avg": [ - 1769 + 1770 ], "count": [ 41, { "columns": [ - 1825, + 1826, "[event_media_select_column!]" ], "distinct": [ @@ -26841,44 +26855,6 @@ export default { ] } ], - "max": [ - 1775 - ], - "min": [ - 1777 - ], - "stddev": [ - 1827 - ], - "stddev_pop": [ - 1829 - ], - "stddev_samp": [ - 1831 - ], - "sum": [ - 1835 - ], - "var_pop": [ - 1839 - ], - "var_samp": [ - 1841 - ], - "variance": [ - 1843 - ], - "__typename": [ - 84 - ] - }, - "event_media_aggregate_order_by": { - "avg": [ - 1770 - ], - "count": [ - 3534 - ], "max": [ 1776 ], @@ -26907,18 +26883,56 @@ export default { 1844 ], "__typename": [ - 84 + 85 + ] + }, + "event_media_aggregate_order_by": { + "avg": [ + 1771 + ], + "count": [ + 3558 + ], + "max": [ + 1777 + ], + "min": [ + 1779 + ], + "stddev": [ + 1829 + ], + "stddev_pop": [ + 1831 + ], + "stddev_samp": [ + 1833 + ], + "sum": [ + 1837 + ], + "var_pop": [ + 1841 + ], + "var_samp": [ + 1843 + ], + "variance": [ + 1845 + ], + "__typename": [ + 85 ] }, "event_media_arr_rel_insert_input": { "data": [ - 1774 + 1775 ], "on_conflict": [ - 1781 + 1782 ], "__typename": [ - 84 + 85 ] }, "event_media_avg_fields": { @@ -26929,270 +26943,270 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_avg_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_bool_exp": { "_and": [ - 1771 + 1772 ], "_not": [ - 1771 + 1772 ], "_or": [ - 1771 + 1772 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "external_url": [ - 86 + 87 ], "filename": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "mime_type": [ - 86 + 87 ], "players": [ - 1793 + 1794 ], "players_aggregate": [ - 1786 + 1787 ], "size": [ - 311 + 312 ], "thumbnail_filename": [ - 86 + 87 ], "title": [ - 86 + 87 ], "uploader": [ - 4496 + 4520 ], "uploader_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "event_media_constraint": {}, "event_media_inc_input": { "size": [ - 309 + 310 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "players": [ - 1790 + 1791 ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader": [ - 4503 + 4527 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_max_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "external_url": [ - 3534 + 3558 ], "filename": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "mime_type": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "thumbnail_filename": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_min_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "external_url": [ - 3534 + 3558 ], "filename": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "mime_type": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "thumbnail_filename": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_mutation_response": { @@ -27200,154 +27214,154 @@ export default { 41 ], "returning": [ - 1762 + 1763 ], "__typename": [ - 84 + 85 ] }, "event_media_obj_rel_insert_input": { "data": [ - 1774 + 1775 ], "on_conflict": [ - 1781 + 1782 ], "__typename": [ - 84 + 85 ] }, "event_media_on_conflict": { "constraint": [ - 1772 + 1773 ], "update_columns": [ - 1837 + 1838 ], "where": [ - 1771 + 1772 ], "__typename": [ - 84 + 85 ] }, "event_media_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "external_url": [ - 3534 + 3558 ], "filename": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "mime_type": [ - 3534 + 3558 ], "players_aggregate": [ - 1789 + 1790 ], "size": [ - 3534 + 3558 ], "thumbnail_filename": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "uploader": [ - 4505 + 4529 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_media_players": { "created_at": [ - 5129 + 5153 ], "media": [ - 1762 + 1763 ], "media_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_aggregate": { "aggregate": [ - 1788 + 1789 ], "nodes": [ - 1784 + 1785 ], "__typename": [ - 84 + 85 ] }, "event_media_players_aggregate_bool_exp": { "count": [ - 1787 + 1788 ], "__typename": [ - 84 + 85 ] }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1805 + 1806 ], "distinct": [ 6 ], "filter": [ - 1793 + 1794 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_media_players_aggregate_fields": { "avg": [ - 1791 + 1792 ], "count": [ 41, { "columns": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "distinct": [ @@ -27356,83 +27370,83 @@ export default { } ], "max": [ - 1797 + 1798 ], "min": [ - 1799 + 1800 ], "stddev": [ - 1807 + 1808 ], "stddev_pop": [ - 1809 + 1810 ], "stddev_samp": [ - 1811 + 1812 ], "sum": [ - 1815 + 1816 ], "var_pop": [ - 1819 + 1820 ], "var_samp": [ - 1821 + 1822 ], "variance": [ - 1823 + 1824 ], "__typename": [ - 84 + 85 ] }, "event_media_players_aggregate_order_by": { "avg": [ - 1792 + 1793 ], "count": [ - 3534 + 3558 ], "max": [ - 1798 + 1799 ], "min": [ - 1800 + 1801 ], "stddev": [ - 1808 + 1809 ], "stddev_pop": [ - 1810 + 1811 ], "stddev_samp": [ - 1812 + 1813 ], "sum": [ - 1816 + 1817 ], "var_pop": [ - 1820 + 1821 ], "var_samp": [ - 1822 + 1823 ], "variance": [ - 1824 + 1825 ], "__typename": [ - 84 + 85 ] }, "event_media_players_arr_rel_insert_input": { "data": [ - 1796 + 1797 ], "on_conflict": [ - 1802 + 1803 ], "__typename": [ - 84 + 85 ] }, "event_media_players_avg_fields": { @@ -27440,129 +27454,129 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_bool_exp": { "_and": [ - 1793 + 1794 ], "_not": [ - 1793 + 1794 ], "_or": [ - 1793 + 1794 ], "created_at": [ - 5130 + 5154 ], "media": [ - 1771 + 1772 ], "media_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "event_media_players_constraint": {}, "event_media_players_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_insert_input": { "created_at": [ - 5129 + 5153 ], "media": [ - 1780 + 1781 ], "media_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_max_fields": { "created_at": [ - 5129 + 5153 ], "media_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_max_order_by": { "created_at": [ - 3534 + 3558 ], "media_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_min_fields": { "created_at": [ - 5129 + 5153 ], "media_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_min_order_by": { "created_at": [ - 3534 + 3558 ], "media_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_mutation_response": { @@ -27570,70 +27584,70 @@ export default { 41 ], "returning": [ - 1784 + 1785 ], "__typename": [ - 84 + 85 ] }, "event_media_players_on_conflict": { "constraint": [ - 1794 + 1795 ], "update_columns": [ - 1817 + 1818 ], "where": [ - 1793 + 1794 ], "__typename": [ - 84 + 85 ] }, "event_media_players_order_by": { "created_at": [ - 3534 + 3558 ], "media": [ - 1782 + 1783 ], "media_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_pk_columns_input": { "media_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 5129 + 5153 ], "media_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_fields": { @@ -27641,15 +27655,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_pop_fields": { @@ -27657,15 +27671,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_samp_fields": { @@ -27673,71 +27687,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1814 + 1815 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "media_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_players_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1795 + 1796 ], "_set": [ - 1806 + 1807 ], "where": [ - 1793 + 1794 ], "__typename": [ - 84 + 85 ] }, "event_media_players_var_pop_fields": { @@ -27745,15 +27759,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_var_samp_fields": { @@ -27761,15 +27775,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_players_variance_fields": { @@ -27777,51 +27791,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_players_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_fields": { @@ -27832,18 +27846,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_pop_fields": { @@ -27854,18 +27868,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_pop_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_samp_fields": { @@ -27876,101 +27890,101 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_stddev_samp_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_stream_cursor_input": { "initial_value": [ - 1834 + 1835 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_media_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "external_url": [ - 84 + 85 ], "filename": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "mime_type": [ - 84 + 85 ], "size": [ - 309 + 310 ], "thumbnail_filename": [ - 84 + 85 ], "title": [ - 84 + 85 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_sum_fields": { "size": [ - 309 + 310 ], "uploader_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_media_sum_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1773 + 1774 ], "_set": [ - 1826 + 1827 ], "where": [ - 1771 + 1772 ], "__typename": [ - 84 + 85 ] }, "event_media_var_pop_fields": { @@ -27981,18 +27995,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_var_pop_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_var_samp_fields": { @@ -28003,18 +28017,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_var_samp_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_media_variance_fields": { @@ -28025,85 +28039,85 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_media_variance_order_by": { "size": [ - 3534 + 3558 ], "uploader_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "organizer": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_aggregate": { "aggregate": [ - 1849 + 1850 ], "nodes": [ - 1845 + 1846 ], "__typename": [ - 84 + 85 ] }, "event_organizers_aggregate_bool_exp": { "count": [ - 1848 + 1849 ], "__typename": [ - 84 + 85 ] }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1866 + 1867 ], "distinct": [ 6 ], "filter": [ - 1854 + 1855 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_organizers_aggregate_fields": { "avg": [ - 1852 + 1853 ], "count": [ 41, { "columns": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "distinct": [ @@ -28112,83 +28126,83 @@ export default { } ], "max": [ - 1858 + 1859 ], "min": [ - 1860 + 1861 ], "stddev": [ - 1868 + 1869 ], "stddev_pop": [ - 1870 + 1871 ], "stddev_samp": [ - 1872 + 1873 ], "sum": [ - 1876 + 1877 ], "var_pop": [ - 1880 + 1881 ], "var_samp": [ - 1882 + 1883 ], "variance": [ - 1884 + 1885 ], "__typename": [ - 84 + 85 ] }, "event_organizers_aggregate_order_by": { "avg": [ - 1853 + 1854 ], "count": [ - 3534 + 3558 ], "max": [ - 1859 + 1860 ], "min": [ - 1861 + 1862 ], "stddev": [ - 1869 + 1870 ], "stddev_pop": [ - 1871 + 1872 ], "stddev_samp": [ - 1873 + 1874 ], "sum": [ - 1877 + 1878 ], "var_pop": [ - 1881 + 1882 ], "var_samp": [ - 1883 + 1884 ], "variance": [ - 1885 + 1886 ], "__typename": [ - 84 + 85 ] }, "event_organizers_arr_rel_insert_input": { "data": [ - 1857 + 1858 ], "on_conflict": [ - 1863 + 1864 ], "__typename": [ - 84 + 85 ] }, "event_organizers_avg_fields": { @@ -28196,129 +28210,129 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_bool_exp": { "_and": [ - 1854 + 1855 ], "_not": [ - 1854 + 1855 ], "_or": [ - 1854 + 1855 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "organizer": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "event_organizers_constraint": {}, "event_organizers_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "organizer": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_max_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_min_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_mutation_response": { @@ -28326,70 +28340,70 @@ export default { 41 ], "returning": [ - 1845 + 1846 ], "__typename": [ - 84 + 85 ] }, "event_organizers_on_conflict": { "constraint": [ - 1855 + 1856 ], "update_columns": [ - 1878 + 1879 ], "where": [ - 1854 + 1855 ], "__typename": [ - 84 + 85 ] }, "event_organizers_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "organizer": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_pk_columns_input": { "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_fields": { @@ -28397,15 +28411,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_pop_fields": { @@ -28413,15 +28427,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_samp_fields": { @@ -28429,71 +28443,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1875 + 1876 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_organizers_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1856 + 1857 ], "_set": [ - 1867 + 1868 ], "where": [ - 1854 + 1855 ], "__typename": [ - 84 + 85 ] }, "event_organizers_var_pop_fields": { @@ -28501,15 +28515,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_var_samp_fields": { @@ -28517,15 +28531,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_organizers_variance_fields": { @@ -28533,82 +28547,82 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_organizers_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_aggregate": { "aggregate": [ - 1890 + 1891 ], "nodes": [ - 1886 + 1887 ], "__typename": [ - 84 + 85 ] }, "event_players_aggregate_bool_exp": { "count": [ - 1889 + 1890 ], "__typename": [ - 84 + 85 ] }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1907 + 1908 ], "distinct": [ 6 ], "filter": [ - 1895 + 1896 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_players_aggregate_fields": { "avg": [ - 1893 + 1894 ], "count": [ 41, { "columns": [ - 1907, + 1908, "[event_players_select_column!]" ], "distinct": [ @@ -28617,83 +28631,83 @@ export default { } ], "max": [ - 1899 + 1900 ], "min": [ - 1901 + 1902 ], "stddev": [ - 1909 + 1910 ], "stddev_pop": [ - 1911 + 1912 ], "stddev_samp": [ - 1913 + 1914 ], "sum": [ - 1917 + 1918 ], "var_pop": [ - 1921 + 1922 ], "var_samp": [ - 1923 + 1924 ], "variance": [ - 1925 + 1926 ], "__typename": [ - 84 + 85 ] }, "event_players_aggregate_order_by": { "avg": [ - 1894 + 1895 ], "count": [ - 3534 + 3558 ], "max": [ - 1900 + 1901 ], "min": [ - 1902 + 1903 ], "stddev": [ - 1910 + 1911 ], "stddev_pop": [ - 1912 + 1913 ], "stddev_samp": [ - 1914 + 1915 ], "sum": [ - 1918 + 1919 ], "var_pop": [ - 1922 + 1923 ], "var_samp": [ - 1924 + 1925 ], "variance": [ - 1926 + 1927 ], "__typename": [ - 84 + 85 ] }, "event_players_arr_rel_insert_input": { "data": [ - 1898 + 1899 ], "on_conflict": [ - 1904 + 1905 ], "__typename": [ - 84 + 85 ] }, "event_players_avg_fields": { @@ -28701,129 +28715,129 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_bool_exp": { "_and": [ - 1895 + 1896 ], "_not": [ - 1895 + 1896 ], "_or": [ - 1895 + 1896 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "event_players_constraint": {}, "event_players_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_max_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_min_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_mutation_response": { @@ -28831,70 +28845,70 @@ export default { 41 ], "returning": [ - 1886 + 1887 ], "__typename": [ - 84 + 85 ] }, "event_players_on_conflict": { "constraint": [ - 1896 + 1897 ], "update_columns": [ - 1919 + 1920 ], "where": [ - 1895 + 1896 ], "__typename": [ - 84 + 85 ] }, "event_players_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_pk_columns_input": { "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_fields": { @@ -28902,15 +28916,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_pop_fields": { @@ -28918,15 +28932,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_samp_fields": { @@ -28934,71 +28948,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_stream_cursor_input": { "initial_value": [ - 1916 + 1917 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_players_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "event_players_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1897 + 1898 ], "_set": [ - 1908 + 1909 ], "where": [ - 1895 + 1896 ], "__typename": [ - 84 + 85 ] }, "event_players_var_pop_fields": { @@ -29006,15 +29020,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_var_samp_fields": { @@ -29022,15 +29036,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_players_variance_fields": { @@ -29038,71 +29052,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "event_players_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_teams": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_aggregate": { "aggregate": [ - 1931 + 1932 ], "nodes": [ - 1927 + 1928 ], "__typename": [ - 84 + 85 ] }, "event_teams_aggregate_bool_exp": { "count": [ - 1930 + 1931 ], "__typename": [ - 84 + 85 ] }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1945 + 1946 ], "distinct": [ 6 ], "filter": [ - 1934 + 1935 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_teams_aggregate_fields": { @@ -29110,7 +29124,7 @@ export default { 41, { "columns": [ - 1945, + 1946, "[event_teams_select_column!]" ], "distinct": [ @@ -29119,144 +29133,144 @@ export default { } ], "max": [ - 1937 + 1938 ], "min": [ - 1939 + 1940 ], "__typename": [ - 84 + 85 ] }, "event_teams_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 1938 + 1939 ], "min": [ - 1940 + 1941 ], "__typename": [ - 84 + 85 ] }, "event_teams_arr_rel_insert_input": { "data": [ - 1936 + 1937 ], "on_conflict": [ - 1942 + 1943 ], "__typename": [ - 84 + 85 ] }, "event_teams_bool_exp": { "_and": [ - 1934 + 1935 ], "_not": [ - 1934 + 1935 ], "_or": [ - 1934 + 1935 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_max_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_teams_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_min_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_teams_mutation_response": { @@ -29264,163 +29278,163 @@ export default { 41 ], "returning": [ - 1927 + 1928 ], "__typename": [ - 84 + 85 ] }, "event_teams_on_conflict": { "constraint": [ - 1935 + 1936 ], "update_columns": [ - 1949 + 1950 ], "where": [ - 1934 + 1935 ], "__typename": [ - 84 + 85 ] }, "event_teams_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_teams_pk_columns_input": { "event_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_stream_cursor_input": { "initial_value": [ - 1948 + 1949 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_teams_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1946 + 1947 ], "where": [ - 1934 + 1935 ], "__typename": [ - 84 + 85 ] }, "event_tournaments": { "created_at": [ - 5129 + 5153 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_aggregate": { "aggregate": [ - 1955 + 1956 ], "nodes": [ - 1951 + 1952 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1954 + 1955 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1969 + 1970 ], "distinct": [ 6 ], "filter": [ - 1958 + 1959 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_aggregate_fields": { @@ -29428,7 +29442,7 @@ export default { 41, { "columns": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "distinct": [ @@ -29437,144 +29451,144 @@ export default { } ], "max": [ - 1961 + 1962 ], "min": [ - 1963 + 1964 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 1962 + 1963 ], "min": [ - 1964 + 1965 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1960 + 1961 ], "on_conflict": [ - 1966 + 1967 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_bool_exp": { "_and": [ - 1958 + 1959 ], "_not": [ - 1958 + 1959 ], "_or": [ - 1958 + 1959 ], "created_at": [ - 5130 + 5154 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 5129 + 5153 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_max_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_max_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_min_fields": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_min_order_by": { "created_at": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_mutation_response": { @@ -29582,115 +29596,115 @@ export default { 41 ], "returning": [ - 1951 + 1952 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_on_conflict": { "constraint": [ - 1959 + 1960 ], "update_columns": [ - 1973 + 1974 ], "where": [ - 1958 + 1959 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_order_by": { "created_at": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_pk_columns_input": { "event_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1972 + 1973 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "event_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1970 + 1971 ], "where": [ - 1958 + 1959 ], "__typename": [ - 84 + 85 ] }, "events": { "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -29700,19 +29714,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -29722,19 +29736,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "banner": [ - 1762 + 1763 ], "banner_media_id": [ - 6341 + 6365 ], "can_upload_media": [ 6 @@ -29743,28 +29757,28 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "hide_creator_organizer": [ 6 ], "id": [ - 6341 + 6365 ], "is_organizer": [ 6 ], "media": [ - 1762, + 1763, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -29774,22 +29788,22 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "media_access": [ - 812 + 813 ], "media_aggregate": [ - 1763, + 1764, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -29799,28 +29813,28 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "name": [ - 84 + 85 ], "organizer": [ - 4492 + 4516 ], "organizer_steam_id": [ - 309 + 310 ], "organizers": [ - 1845, + 1846, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -29830,19 +29844,19 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "organizers_aggregate": [ - 1846, + 1847, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -29852,19 +29866,19 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "player_stats": [ - 6344, + 6368, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -29874,19 +29888,19 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "player_stats_aggregate": [ - 6345, + 6369, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -29896,19 +29910,19 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "players": [ - 1886, + 1887, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -29918,19 +29932,19 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "players_aggregate": [ - 1887, + 1888, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -29940,22 +29954,22 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "starts_at": [ - 5129 + 5153 ], "teams": [ - 1927, + 1928, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -29965,19 +29979,19 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "teams_aggregate": [ - 1928, + 1929, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -29987,19 +30001,19 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "tournaments": [ - 1951, + 1952, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -30009,19 +30023,19 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "tournaments_aggregate": [ - 1952, + 1953, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -30031,41 +30045,41 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "visibility": [ - 832 + 833 ], "__typename": [ - 84 + 85 ] }, "events_aggregate": { "aggregate": [ - 1977 + 1978 ], "nodes": [ - 1975 + 1976 ], "__typename": [ - 84 + 85 ] }, "events_aggregate_fields": { "avg": [ - 1978 + 1979 ], "count": [ 41, { "columns": [ - 1990, + 1991, "[events_select_column!]" ], "distinct": [ @@ -30074,34 +30088,34 @@ export default { } ], "max": [ - 1983 + 1984 ], "min": [ - 1984 + 1985 ], "stddev": [ - 1992 + 1993 ], "stddev_pop": [ - 1993 + 1994 ], "stddev_samp": [ - 1994 + 1995 ], "sum": [ - 1997 + 1998 ], "var_pop": [ - 2000 + 2001 ], "var_samp": [ - 2001 + 2002 ], "variance": [ - 2002 + 2003 ], "__typename": [ - 84 + 85 ] }, "events_avg_fields": { @@ -30109,30 +30123,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_bool_exp": { "_and": [ - 1979 + 1980 ], "_not": [ - 1979 + 1980 ], "_or": [ - 1979 + 1980 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "banner": [ - 1771 + 1772 ], "banner_media_id": [ - 6343 + 6367 ], "can_upload_media": [ 7 @@ -30141,211 +30155,211 @@ export default { 7 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "ends_at": [ - 5130 + 5154 ], "hide_creator_organizer": [ 7 ], "id": [ - 6343 + 6367 ], "is_organizer": [ 7 ], "media": [ - 1771 + 1772 ], "media_access": [ - 813 + 814 ], "media_aggregate": [ - 1764 + 1765 ], "name": [ - 86 + 87 ], "organizer": [ - 4496 + 4520 ], "organizer_steam_id": [ - 311 + 312 ], "organizers": [ - 1854 + 1855 ], "organizers_aggregate": [ - 1847 + 1848 ], "player_stats": [ - 6363 + 6387 ], "player_stats_aggregate": [ - 6346 + 6370 ], "players": [ - 1895 + 1896 ], "players_aggregate": [ - 1888 + 1889 ], "starts_at": [ - 5130 + 5154 ], "teams": [ - 1934 + 1935 ], "teams_aggregate": [ - 1929 + 1930 ], "tournaments": [ - 1958 + 1959 ], "tournaments_aggregate": [ - 1953 + 1954 ], "visibility": [ - 833 + 834 ], "__typename": [ - 84 + 85 ] }, "events_constraint": {}, "events_inc_input": { "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "events_insert_input": { "awards": [ - 246 + 247 ], "banner": [ - 1780 + 1781 ], "banner_media_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "hide_creator_organizer": [ 6 ], "id": [ - 6341 + 6365 ], "media": [ - 1768 + 1769 ], "media_access": [ - 812 + 813 ], "name": [ - 84 + 85 ], "organizer": [ - 4503 + 4527 ], "organizer_steam_id": [ - 309 + 310 ], "organizers": [ - 1851 + 1852 ], "player_stats": [ - 6360 + 6384 ], "players": [ - 1892 + 1893 ], "starts_at": [ - 5129 + 5153 ], "teams": [ - 1933 + 1934 ], "tournaments": [ - 1957 + 1958 ], "visibility": [ - 832 + 833 ], "__typename": [ - 84 + 85 ] }, "events_max_fields": { "banner_media_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "events_min_fields": { "banner_media_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "events_mutation_response": { @@ -30353,156 +30367,156 @@ export default { 41 ], "returning": [ - 1975 + 1976 ], "__typename": [ - 84 + 85 ] }, "events_obj_rel_insert_input": { "data": [ - 1982 + 1983 ], "on_conflict": [ - 1987 + 1988 ], "__typename": [ - 84 + 85 ] }, "events_on_conflict": { "constraint": [ - 1980 + 1981 ], "update_columns": [ - 1998 + 1999 ], "where": [ - 1979 + 1980 ], "__typename": [ - 84 + 85 ] }, "events_order_by": { "awards_aggregate": [ - 245 + 246 ], "banner": [ - 1782 + 1783 ], "banner_media_id": [ - 3534 + 3558 ], "can_upload_media": [ - 3534 + 3558 ], "can_view": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "ends_at": [ - 3534 + 3558 ], "hide_creator_organizer": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "media_access": [ - 3534 + 3558 ], "media_aggregate": [ - 1767 + 1768 ], "name": [ - 3534 + 3558 ], "organizer": [ - 4505 + 4529 ], "organizer_steam_id": [ - 3534 + 3558 ], "organizers_aggregate": [ - 1850 + 1851 ], "player_stats_aggregate": [ - 6359 + 6383 ], "players_aggregate": [ - 1891 + 1892 ], "starts_at": [ - 3534 + 3558 ], "teams_aggregate": [ - 1932 + 1933 ], "tournaments_aggregate": [ - 1956 + 1957 ], "visibility": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "events_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "hide_creator_organizer": [ 6 ], "id": [ - 6341 + 6365 ], "media_access": [ - 812 + 813 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "starts_at": [ - 5129 + 5153 ], "visibility": [ - 832 + 833 ], "__typename": [ - 84 + 85 ] }, "events_stddev_fields": { @@ -30510,7 +30524,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_stddev_pop_fields": { @@ -30518,7 +30532,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_stddev_samp_fields": { @@ -30526,79 +30540,79 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_stream_cursor_input": { "initial_value": [ - 1996 + 1997 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "events_stream_cursor_value_input": { "banner_media_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "hide_creator_organizer": [ 6 ], "id": [ - 6341 + 6365 ], "media_access": [ - 812 + 813 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "starts_at": [ - 5129 + 5153 ], "visibility": [ - 832 + 833 ], "__typename": [ - 84 + 85 ] }, "events_sum_fields": { "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "events_update_column": {}, "events_updates": { "_inc": [ - 1981 + 1982 ], "_set": [ - 1991 + 1992 ], "where": [ - 1979 + 1980 ], "__typename": [ - 84 + 85 ] }, "events_var_pop_fields": { @@ -30606,7 +30620,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_var_samp_fields": { @@ -30614,7 +30628,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "events_variance_fields": { @@ -30622,79 +30636,79 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 2003 + 2004 ], "_gt": [ - 2003 + 2004 ], "_gte": [ - 2003 + 2004 ], "_in": [ - 2003 + 2004 ], "_is_null": [ 6 ], "_lt": [ - 2003 + 2004 ], "_lte": [ - 2003 + 2004 ], "_neq": [ - 2003 + 2004 ], "_nin": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "friends": { "e_status": [ - 847 + 848 ], "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "status": [ - 852 + 853 ], "__typename": [ - 84 + 85 ] }, "friends_aggregate": { "aggregate": [ - 2007 + 2008 ], "nodes": [ - 2005 + 2006 ], "__typename": [ - 84 + 85 ] }, "friends_aggregate_fields": { "avg": [ - 2008 + 2009 ], "count": [ 41, { "columns": [ - 2019, + 2020, "[friends_select_column!]" ], "distinct": [ @@ -30703,34 +30717,34 @@ export default { } ], "max": [ - 2013 + 2014 ], "min": [ - 2014 + 2015 ], "stddev": [ - 2021 + 2022 ], "stddev_pop": [ - 2022 + 2023 ], "stddev_samp": [ - 2023 + 2024 ], "sum": [ - 2026 + 2027 ], "var_pop": [ - 2029 + 2030 ], "var_samp": [ - 2030 + 2031 ], "variance": [ - 2031 + 2032 ], "__typename": [ - 84 + 85 ] }, "friends_avg_fields": { @@ -30741,84 +30755,84 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_bool_exp": { "_and": [ - 2009 + 2010 ], "_not": [ - 2009 + 2010 ], "_or": [ - 2009 + 2010 ], "e_status": [ - 850 + 851 ], "other_player_steam_id": [ - 311 + 312 ], "player_steam_id": [ - 311 + 312 ], "status": [ - 853 + 854 ], "__typename": [ - 84 + 85 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "friends_insert_input": { "e_status": [ - 858 + 859 ], "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "status": [ - 852 + 853 ], "__typename": [ - 84 + 85 ] }, "friends_max_fields": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "friends_min_fields": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "friends_mutation_response": { @@ -30826,67 +30840,67 @@ export default { 41 ], "returning": [ - 2005 + 2006 ], "__typename": [ - 84 + 85 ] }, "friends_on_conflict": { "constraint": [ - 2010 + 2011 ], "update_columns": [ - 2027 + 2028 ], "where": [ - 2009 + 2010 ], "__typename": [ - 84 + 85 ] }, "friends_order_by": { "e_status": [ - 860 + 861 ], "other_player_steam_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "status": [ - 852 + 853 ], "__typename": [ - 84 + 85 ] }, "friends_stddev_fields": { @@ -30897,7 +30911,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_stddev_pop_fields": { @@ -30908,7 +30922,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_stddev_samp_fields": { @@ -30919,58 +30933,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_stream_cursor_input": { "initial_value": [ - 2025 + 2026 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "status": [ - 852 + 853 ], "__typename": [ - 84 + 85 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 2011 + 2012 ], "_set": [ - 2020 + 2021 ], "where": [ - 2009 + 2010 ], "__typename": [ - 84 + 85 ] }, "friends_var_pop_fields": { @@ -30981,7 +30995,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_var_samp_fields": { @@ -30992,7 +31006,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "friends_variance_fields": { @@ -31003,125 +31017,125 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins": { "config": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "game_mode": [ - 2082 + 2083 ], "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin": [ - 2164 + 2165 ], "plugin_slug": [ - 84 + 85 ], "required": [ 6 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate": { "aggregate": [ - 2038 + 2039 ], "nodes": [ - 2032 + 2033 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate_bool_exp": { "bool_and": [ - 2035 + 2036 ], "bool_or": [ - 2036 + 2037 ], "count": [ - 2037 + 2038 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate_bool_exp_bool_and": { "arguments": [ - 2061 + 2062 ], "distinct": [ 6 ], "filter": [ - 2044 + 2045 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate_bool_exp_bool_or": { "arguments": [ - 2062 + 2063 ], "distinct": [ 6 ], "filter": [ - 2044 + 2045 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate_bool_exp_count": { "arguments": [ - 2060 + 2061 ], "distinct": [ 6 ], "filter": [ - 2044 + 2045 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_aggregate_fields": { "avg": [ - 2042 + 2043 ], "count": [ 41, { "columns": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "distinct": [ @@ -31129,44 +31143,6 @@ export default { ] } ], - "max": [ - 2051 - ], - "min": [ - 2053 - ], - "stddev": [ - 2064 - ], - "stddev_pop": [ - 2066 - ], - "stddev_samp": [ - 2068 - ], - "sum": [ - 2072 - ], - "var_pop": [ - 2076 - ], - "var_samp": [ - 2078 - ], - "variance": [ - 2080 - ], - "__typename": [ - 84 - ] - }, - "game_mode_plugins_aggregate_order_by": { - "avg": [ - 2043 - ], - "count": [ - 3534 - ], "max": [ 2052 ], @@ -31195,26 +31171,64 @@ export default { 2081 ], "__typename": [ - 84 + 85 + ] + }, + "game_mode_plugins_aggregate_order_by": { + "avg": [ + 2044 + ], + "count": [ + 3558 + ], + "max": [ + 2053 + ], + "min": [ + 2055 + ], + "stddev": [ + 2066 + ], + "stddev_pop": [ + 2068 + ], + "stddev_samp": [ + 2070 + ], + "sum": [ + 2074 + ], + "var_pop": [ + 2078 + ], + "var_samp": [ + 2080 + ], + "variance": [ + 2082 + ], + "__typename": [ + 85 ] }, "game_mode_plugins_append_input": { "config": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_arr_rel_insert_input": { "data": [ - 2050 + 2051 ], "on_conflict": [ - 2056 + 2057 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_avg_fields": { @@ -31222,59 +31236,59 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_avg_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_bool_exp": { "_and": [ - 2044 + 2045 ], "_not": [ - 2044 + 2045 ], "_or": [ - 2044 + 2045 ], "config": [ - 2350 + 2351 ], "game_mode": [ - 2085 + 2086 ], "game_mode_id": [ - 6343 + 6367 ], "load_order": [ 42 ], "plugin": [ - 2169 + 2170 ], "plugin_slug": [ - 86 + 87 ], "required": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_constraint": {}, "game_mode_plugins_delete_at_path_input": { "config": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_delete_elem_input": { @@ -31282,15 +31296,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_delete_key_input": { "config": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_inc_input": { @@ -31298,89 +31312,89 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_insert_input": { "config": [ - 2348 + 2349 ], "game_mode": [ - 2091 + 2092 ], "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin": [ - 2178 + 2179 ], "plugin_slug": [ - 84 + 85 ], "required": [ 6 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_max_fields": { "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_max_order_by": { "game_mode_id": [ - 3534 + 3558 ], "load_order": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_min_fields": { "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_min_order_by": { "game_mode_id": [ - 3534 + 3558 ], "load_order": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_mutation_response": { @@ -31388,69 +31402,69 @@ export default { 41 ], "returning": [ - 2032 + 2033 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_on_conflict": { "constraint": [ - 2045 + 2046 ], "update_columns": [ - 2074 + 2075 ], "where": [ - 2044 + 2045 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_order_by": { "config": [ - 3534 + 3558 ], "game_mode": [ - 2093 + 2094 ], "game_mode_id": [ - 3534 + 3558 ], "load_order": [ - 3534 + 3558 ], "plugin": [ - 2180 + 2181 ], "plugin_slug": [ - 3534 + 3558 ], "required": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_pk_columns_input": { "game_mode_id": [ - 6341 + 6365 ], "plugin_slug": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_prepend_input": { "config": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_select_column": {}, @@ -31458,22 +31472,22 @@ export default { "game_mode_plugins_select_column_game_mode_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_mode_plugins_set_input": { "config": [ - 2348 + 2349 ], "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "required": [ 6 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_fields": { @@ -31481,15 +31495,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_pop_fields": { @@ -31497,15 +31511,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_pop_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_samp_fields": { @@ -31513,46 +31527,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stddev_samp_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stream_cursor_input": { "initial_value": [ - 2071 + 2072 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_stream_cursor_value_input": { "config": [ - 2348 + 2349 ], "game_mode_id": [ - 6341 + 6365 ], "load_order": [ 41 ], "plugin_slug": [ - 84 + 85 ], "required": [ 6 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_sum_fields": { @@ -31560,45 +31574,45 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_sum_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_update_column": {}, "game_mode_plugins_updates": { "_append": [ - 2040 + 2041 ], "_delete_at_path": [ - 2046 + 2047 ], "_delete_elem": [ - 2047 + 2048 ], "_delete_key": [ - 2048 + 2049 ], "_inc": [ - 2049 + 2050 ], "_prepend": [ - 2059 + 2060 ], "_set": [ - 2063 + 2064 ], "where": [ - 2044 + 2045 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_var_pop_fields": { @@ -31606,15 +31620,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_var_pop_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_var_samp_fields": { @@ -31622,15 +31636,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_var_samp_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_variance_fields": { @@ -31638,50 +31652,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_mode_plugins_variance_order_by": { "load_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_modes": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "competitive_safe": [ 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "enabled": [ 6 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_options": [ - 3176, + 3200, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -31691,19 +31705,19 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "match_options_aggregate": [ - 3177, + 3201, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -31713,22 +31727,22 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "name": [ - 84 + 85 ], "plugins": [ - 2032, + 2033, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -31738,19 +31752,19 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "plugins_aggregate": [ - 2033, + 2034, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -31760,49 +31774,49 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "runtime_conflicts": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "slug": [ - 84 + 85 ], "supported_runtimes": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_aggregate": { "aggregate": [ - 2084 + 2085 ], "nodes": [ - 2082 + 2083 ], "__typename": [ - 84 + 85 ] }, "game_modes_aggregate_fields": { @@ -31810,7 +31824,7 @@ export default { 41, { "columns": [ - 2095, + 2096, "[game_modes_select_column!]" ], "distinct": [ @@ -31819,199 +31833,199 @@ export default { } ], "max": [ - 2088 + 2089 ], "min": [ - 2089 + 2090 ], "__typename": [ - 84 + 85 ] }, "game_modes_bool_exp": { "_and": [ - 2085 + 2086 ], "_not": [ - 2085 + 2086 ], "_or": [ - 2085 + 2086 ], "archived_at": [ - 5130 + 5154 ], "cfg": [ - 86 + 87 ], "competitive_safe": [ 7 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "enabled": [ 7 ], "extra_game_params": [ - 86 + 87 ], "icon": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "match_options": [ - 3187 + 3211 ], "match_options_aggregate": [ - 3178 + 3202 ], "name": [ - 86 + 87 ], "plugins": [ - 2044 + 2045 ], "plugins_aggregate": [ - 2034 + 2035 ], "runtime_conflicts": [ - 2350 + 2351 ], "slug": [ - 86 + 87 ], "supported_runtimes": [ - 2350 + 2351 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "game_modes_constraint": {}, "game_modes_insert_input": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "competitive_safe": [ 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "enabled": [ 6 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_options": [ - 3184 + 3208 ], "name": [ - 84 + 85 ], "plugins": [ - 2041 + 2042 ], "slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_max_fields": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_min_fields": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_mutation_response": { @@ -32019,213 +32033,213 @@ export default { 41 ], "returning": [ - 2082 + 2083 ], "__typename": [ - 84 + 85 ] }, "game_modes_obj_rel_insert_input": { "data": [ - 2087 + 2088 ], "on_conflict": [ - 2092 + 2093 ], "__typename": [ - 84 + 85 ] }, "game_modes_on_conflict": { "constraint": [ - 2086 + 2087 ], "update_columns": [ - 2099 + 2100 ], "where": [ - 2085 + 2086 ], "__typename": [ - 84 + 85 ] }, "game_modes_order_by": { "archived_at": [ - 3534 + 3558 ], "cfg": [ - 3534 + 3558 ], "competitive_safe": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "extra_game_params": [ - 3534 + 3558 ], "icon": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_options_aggregate": [ - 3183 + 3207 ], "name": [ - 3534 + 3558 ], "plugins_aggregate": [ - 2039 + 2040 ], "runtime_conflicts": [ - 3534 + 3558 ], "slug": [ - 3534 + 3558 ], "supported_runtimes": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_modes_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "game_modes_select_column": {}, "game_modes_set_input": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "competitive_safe": [ 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "enabled": [ 6 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_stream_cursor_input": { "initial_value": [ - 2098 + 2099 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_modes_stream_cursor_value_input": { "archived_at": [ - 5129 + 5153 ], "cfg": [ - 84 + 85 ], "competitive_safe": [ 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "enabled": [ 6 ], "extra_game_params": [ - 84 + 85 ], "icon": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "game_modes_update_column": {}, "game_modes_updates": { "_set": [ - 2096 + 2097 ], "where": [ - 2085 + 2086 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs": { "cfg": [ - 84 + 85 ], "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "disable_server_guidelines": [ 6 @@ -32243,30 +32257,30 @@ export default { 6 ], "plugin": [ - 2164 + 2165 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_aggregate": { "aggregate": [ - 2103 + 2104 ], "nodes": [ - 2101 + 2102 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_aggregate_fields": { @@ -32274,7 +32288,7 @@ export default { 41, { "columns": [ - 2113, + 2114, "[game_plugin_installs_select_column!]" ], "distinct": [ @@ -32283,33 +32297,33 @@ export default { } ], "max": [ - 2107 + 2108 ], "min": [ - 2108 + 2109 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_bool_exp": { "_and": [ - 2104 + 2105 ], "_not": [ - 2104 + 2105 ], "_or": [ - 2104 + 2105 ], "cfg": [ - 86 + 87 ], "channel": [ - 894 + 895 ], "created_at": [ - 5130 + 5154 ], "disable_server_guidelines": [ 7 @@ -32327,31 +32341,31 @@ export default { 7 ], "plugin": [ - 2169 + 2170 ], "plugin_slug": [ - 86 + 87 ], "updated_at": [ - 5130 + 5154 ], "version": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_constraint": {}, "game_plugin_installs_insert_input": { "cfg": [ - 84 + 85 ], "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "disable_server_guidelines": [ 6 @@ -32369,59 +32383,59 @@ export default { 6 ], "plugin": [ - 2178 + 2179 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_max_fields": { "cfg": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_min_fields": { "cfg": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_mutation_response": { @@ -32429,85 +32443,85 @@ export default { 41 ], "returning": [ - 2101 + 2102 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_on_conflict": { "constraint": [ - 2105 + 2106 ], "update_columns": [ - 2117 + 2118 ], "where": [ - 2104 + 2105 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_order_by": { "cfg": [ - 3534 + 3558 ], "channel": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "disable_server_guidelines": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "load_custom": [ - 3534 + 3558 ], "load_ranked": [ - 3534 + 3558 ], "load_tournaments": [ - 3534 + 3558 ], "plugin": [ - 2180 + 2181 ], "plugin_slug": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_pk_columns_input": { "plugin_slug": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_select_column": {}, "game_plugin_installs_set_input": { "cfg": [ - 84 + 85 ], "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "disable_server_guidelines": [ 6 @@ -32525,38 +32539,38 @@ export default { 6 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_stream_cursor_input": { "initial_value": [ - 2116 + 2117 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_stream_cursor_value_input": { "cfg": [ - 84 + 85 ], "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "disable_server_guidelines": [ 6 @@ -32574,153 +32588,153 @@ export default { 6 ], "plugin_slug": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_installs_update_column": {}, "game_plugin_installs_updates": { "_set": [ - 2114 + 2115 ], "where": [ - 2104 + 2105 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin": [ - 2164 + 2165 ], "plugin_slug": [ - 84 + 85 ], "prerelease": [ 6 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate": { "aggregate": [ - 2125 + 2126 ], "nodes": [ - 2119 + 2120 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate_bool_exp": { "bool_and": [ - 2122 + 2123 ], "bool_or": [ - 2123 + 2124 ], "count": [ - 2124 + 2125 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate_bool_exp_bool_and": { "arguments": [ - 2143 + 2144 ], "distinct": [ 6 ], "filter": [ - 2130 + 2131 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate_bool_exp_bool_or": { "arguments": [ - 2144 + 2145 ], "distinct": [ 6 ], "filter": [ - 2130 + 2131 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate_bool_exp_count": { "arguments": [ - 2142 + 2143 ], "distinct": [ 6 ], "filter": [ - 2130 + 2131 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_aggregate_fields": { "avg": [ - 2128 + 2129 ], "count": [ 41, { "columns": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "distinct": [ @@ -32728,44 +32742,6 @@ export default { ] } ], - "max": [ - 2134 - ], - "min": [ - 2136 - ], - "stddev": [ - 2146 - ], - "stddev_pop": [ - 2148 - ], - "stddev_samp": [ - 2150 - ], - "sum": [ - 2154 - ], - "var_pop": [ - 2158 - ], - "var_samp": [ - 2160 - ], - "variance": [ - 2162 - ], - "__typename": [ - 84 - ] - }, - "game_plugin_versions_aggregate_order_by": { - "avg": [ - 2129 - ], - "count": [ - 3534 - ], "max": [ 2135 ], @@ -32794,18 +32770,56 @@ export default { 2163 ], "__typename": [ - 84 + 85 + ] + }, + "game_plugin_versions_aggregate_order_by": { + "avg": [ + 2130 + ], + "count": [ + 3558 + ], + "max": [ + 2136 + ], + "min": [ + 2138 + ], + "stddev": [ + 2148 + ], + "stddev_pop": [ + 2150 + ], + "stddev_samp": [ + 2152 + ], + "sum": [ + 2156 + ], + "var_pop": [ + 2160 + ], + "var_samp": [ + 2162 + ], + "variance": [ + 2164 + ], + "__typename": [ + 85 ] }, "game_plugin_versions_arr_rel_insert_input": { "data": [ - 2133 + 2134 ], "on_conflict": [ - 2139 + 2140 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_avg_fields": { @@ -32813,62 +32827,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_avg_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_bool_exp": { "_and": [ - 2130 + 2131 ], "_not": [ - 2130 + 2131 ], "_or": [ - 2130 + 2131 ], "install_path": [ - 86 + 87 ], "layout": [ - 86 + 87 ], "plugin": [ - 2169 + 2170 ], "plugin_slug": [ - 86 + 87 ], "prerelease": [ 7 ], "published_at": [ - 5130 + 5154 ], "runtime": [ - 1304 + 1305 ], "sha256": [ - 86 + 87 ], "size": [ 42 ], "url": [ - 86 + 87 ], "version": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_constraint": {}, @@ -32877,161 +32891,161 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_insert_input": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin": [ - 2178 + 2179 ], "plugin_slug": [ - 84 + 85 ], "prerelease": [ 6 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_max_fields": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "published_at": [ - 5129 + 5153 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_max_order_by": { "install_path": [ - 3534 + 3558 ], "layout": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "published_at": [ - 3534 + 3558 ], "sha256": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "url": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_min_fields": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "published_at": [ - 5129 + 5153 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_min_order_by": { "install_path": [ - 3534 + 3558 ], "layout": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "published_at": [ - 3534 + 3558 ], "sha256": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "url": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_mutation_response": { @@ -33039,76 +33053,76 @@ export default { 41 ], "returning": [ - 2119 + 2120 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_on_conflict": { "constraint": [ - 2131 + 2132 ], "update_columns": [ - 2156 + 2157 ], "where": [ - 2130 + 2131 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_order_by": { "install_path": [ - 3534 + 3558 ], "layout": [ - 3534 + 3558 ], "plugin": [ - 2180 + 2181 ], "plugin_slug": [ - 3534 + 3558 ], "prerelease": [ - 3534 + 3558 ], "published_at": [ - 3534 + 3558 ], "runtime": [ - 3534 + 3558 ], "sha256": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "url": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_pk_columns_input": { "plugin_slug": [ - 84 + 85 ], "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_select_column": {}, @@ -33116,37 +33130,37 @@ export default { "game_plugin_versions_select_column_game_plugin_versions_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_plugin_versions_set_input": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "prerelease": [ 6 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_fields": { @@ -33154,15 +33168,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_pop_fields": { @@ -33170,15 +33184,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_pop_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_samp_fields": { @@ -33186,61 +33200,61 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stddev_samp_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stream_cursor_input": { "initial_value": [ - 2153 + 2154 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_stream_cursor_value_input": { "install_path": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "prerelease": [ 6 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "sha256": [ - 84 + 85 ], "size": [ 41 ], "url": [ - 84 + 85 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_sum_fields": { @@ -33248,30 +33262,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_sum_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_update_column": {}, "game_plugin_versions_updates": { "_inc": [ - 2132 + 2133 ], "_set": [ - 2145 + 2146 ], "where": [ - 2130 + 2131 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_var_pop_fields": { @@ -33279,15 +33293,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_var_pop_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_var_samp_fields": { @@ -33295,15 +33309,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_var_samp_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_variance_fields": { @@ -33311,43 +33325,43 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_plugin_versions_variance_order_by": { "size": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugins": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "config_schema": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "game_modes": [ - 2032, + 2033, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -33357,19 +33371,19 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "game_modes_aggregate": [ - 2033, + 2034, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -33379,37 +33393,37 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "homepage": [ - 84 + 85 ], "hot_swappable": [ 6 ], "install_state": [ - 84 + 85 ], "installed_node_count": [ 41 ], "kind": [ - 933 + 934 ], "name": [ - 84 + 85 ], "node_installs": [ - 2196, + 2197, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -33419,19 +33433,19 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "node_installs_aggregate": [ - 2197, + 2198, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -33441,22 +33455,22 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "pairs_with": [ - 84 + 85 ], "panel": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -33464,19 +33478,19 @@ export default { 6 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "target_node_count": [ 41 @@ -33485,10 +33499,10 @@ export default { 6 ], "versions": [ - 2119, + 2120, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -33498,19 +33512,19 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "versions_aggregate": [ - 2120, + 2121, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -33520,46 +33534,46 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "wiring": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "__typename": [ - 84 + 85 ] }, "game_plugins_aggregate": { "aggregate": [ - 2166 + 2167 ], "nodes": [ - 2164 + 2165 ], "__typename": [ - 84 + 85 ] }, "game_plugins_aggregate_fields": { "avg": [ - 2168 + 2169 ], "count": [ 41, { "columns": [ - 2183, + 2184, "[game_plugins_select_column!]" ], "distinct": [ @@ -33568,48 +33582,48 @@ export default { } ], "max": [ - 2175 + 2176 ], "min": [ - 2176 + 2177 ], "stddev": [ - 2185 + 2186 ], "stddev_pop": [ - 2186 + 2187 ], "stddev_samp": [ - 2187 + 2188 ], "sum": [ - 2190 + 2191 ], "var_pop": [ - 2193 + 2194 ], "var_samp": [ - 2194 + 2195 ], "variance": [ - 2195 + 2196 ], "__typename": [ - 84 + 85 ] }, "game_plugins_append_input": { "config_schema": [ - 2348 + 2349 ], "panel": [ - 2348 + 2349 ], "wiring": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_plugins_avg_fields": { @@ -33620,87 +33634,87 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_bool_exp": { "_and": [ - 2169 + 2170 ], "_not": [ - 2169 + 2170 ], "_or": [ - 2169 + 2170 ], "author": [ - 86 + 87 ], "config_path": [ - 86 + 87 ], "config_schema": [ - 2350 + 2351 ], "cvars": [ - 85 + 86 ], "description": [ - 86 + 87 ], "game_modes": [ - 2044 + 2045 ], "game_modes_aggregate": [ - 2034 + 2035 ], "homepage": [ - 86 + 87 ], "hot_swappable": [ 7 ], "install_state": [ - 86 + 87 ], "installed_node_count": [ 42 ], "kind": [ - 934 + 935 ], "name": [ - 86 + 87 ], "node_installs": [ - 2205 + 2206 ], "node_installs_aggregate": [ - 2198 + 2199 ], "pairs_with": [ - 85 + 86 ], "panel": [ - 2350 + 2351 ], "requires_server_guidelines_disabled": [ 7 ], "requires_service": [ - 86 + 87 ], "slug": [ - 86 + 87 ], "source": [ - 86 + 87 ], "synced_at": [ - 5130 + 5154 ], "tags": [ - 85 + 86 ], "target_node_count": [ 42 @@ -33709,31 +33723,31 @@ export default { 7 ], "versions": [ - 2130 + 2131 ], "versions_aggregate": [ - 2121 + 2122 ], "wiring": [ - 2350 + 2351 ], "__typename": [ - 84 + 85 ] }, "game_plugins_constraint": {}, "game_plugins_delete_at_path_input": { "config_schema": [ - 84 + 85 ], "panel": [ - 84 + 85 ], "wiring": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugins_delete_elem_input": { @@ -33747,192 +33761,192 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_delete_key_input": { "config_schema": [ - 84 + 85 ], "panel": [ - 84 + 85 ], "wiring": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugins_insert_input": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "config_schema": [ - 2348 + 2349 ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "game_modes": [ - 2041 + 2042 ], "homepage": [ - 84 + 85 ], "hot_swappable": [ 6 ], "kind": [ - 933 + 934 ], "name": [ - 84 + 85 ], "node_installs": [ - 2204 + 2205 ], "pairs_with": [ - 84 + 85 ], "panel": [ - 2348 + 2349 ], "requires_server_guidelines_disabled": [ 6 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "verified": [ 6 ], "versions": [ - 2127 + 2128 ], "wiring": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_plugins_max_fields": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "install_state": [ - 84 + 85 ], "installed_node_count": [ 41 ], "name": [ - 84 + 85 ], "pairs_with": [ - 84 + 85 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "target_node_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_min_fields": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "install_state": [ - 84 + 85 ], "installed_node_count": [ 41 ], "name": [ - 84 + 85 ], "pairs_with": [ - 84 + 85 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "target_node_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_mutation_response": { @@ -33940,200 +33954,200 @@ export default { 41 ], "returning": [ - 2164 + 2165 ], "__typename": [ - 84 + 85 ] }, "game_plugins_obj_rel_insert_input": { "data": [ - 2174 + 2175 ], "on_conflict": [ - 2179 + 2180 ], "__typename": [ - 84 + 85 ] }, "game_plugins_on_conflict": { "constraint": [ - 2170 + 2171 ], "update_columns": [ - 2191 + 2192 ], "where": [ - 2169 + 2170 ], "__typename": [ - 84 + 85 ] }, "game_plugins_order_by": { "author": [ - 3534 + 3558 ], "config_path": [ - 3534 + 3558 ], "config_schema": [ - 3534 + 3558 ], "cvars": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "game_modes_aggregate": [ - 2039 + 2040 ], "homepage": [ - 3534 + 3558 ], "hot_swappable": [ - 3534 + 3558 ], "install_state": [ - 3534 + 3558 ], "installed_node_count": [ - 3534 + 3558 ], "kind": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "node_installs_aggregate": [ - 2203 + 2204 ], "pairs_with": [ - 3534 + 3558 ], "panel": [ - 3534 + 3558 ], "requires_server_guidelines_disabled": [ - 3534 + 3558 ], "requires_service": [ - 3534 + 3558 ], "slug": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "synced_at": [ - 3534 + 3558 ], "tags": [ - 3534 + 3558 ], "target_node_count": [ - 3534 + 3558 ], "verified": [ - 3534 + 3558 ], "versions_aggregate": [ - 2126 + 2127 ], "wiring": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_plugins_pk_columns_input": { "slug": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_plugins_prepend_input": { "config_schema": [ - 2348 + 2349 ], "panel": [ - 2348 + 2349 ], "wiring": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_plugins_select_column": {}, "game_plugins_set_input": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "config_schema": [ - 2348 + 2349 ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "hot_swappable": [ 6 ], "kind": [ - 933 + 934 ], "name": [ - 84 + 85 ], "pairs_with": [ - 84 + 85 ], "panel": [ - 2348 + 2349 ], "requires_server_guidelines_disabled": [ 6 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "verified": [ 6 ], "wiring": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_plugins_stddev_fields": { @@ -34144,7 +34158,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_stddev_pop_fields": { @@ -34155,7 +34169,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_stddev_samp_fields": { @@ -34166,80 +34180,80 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_stream_cursor_input": { "initial_value": [ - 2189 + 2190 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_plugins_stream_cursor_value_input": { "author": [ - 84 + 85 ], "config_path": [ - 84 + 85 ], "config_schema": [ - 2348 + 2349 ], "cvars": [ - 84 + 85 ], "description": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "hot_swappable": [ 6 ], "kind": [ - 933 + 934 ], "name": [ - 84 + 85 ], "pairs_with": [ - 84 + 85 ], "panel": [ - 2348 + 2349 ], "requires_server_guidelines_disabled": [ 6 ], "requires_service": [ - 84 + 85 ], "slug": [ - 84 + 85 ], "source": [ - 84 + 85 ], "synced_at": [ - 5129 + 5153 ], "tags": [ - 84 + 85 ], "verified": [ 6 ], "wiring": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_plugins_sum_fields": { @@ -34250,34 +34264,34 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_update_column": {}, "game_plugins_updates": { "_append": [ - 2167 + 2168 ], "_delete_at_path": [ - 2171 + 2172 ], "_delete_elem": [ - 2172 + 2173 ], "_delete_key": [ - 2173 + 2174 ], "_prepend": [ - 2182 + 2183 ], "_set": [ - 2184 + 2185 ], "where": [ - 2169 + 2170 ], "__typename": [ - 84 + 85 ] }, "game_plugins_var_pop_fields": { @@ -34288,7 +34302,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_var_samp_fields": { @@ -34299,7 +34313,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_plugins_variance_fields": { @@ -34310,142 +34324,142 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins": { "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "detected": [ 6 ], "detected_version": [ - 84 + 85 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin": [ - 2164 + 2165 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "runtime": [ - 1303 + 1304 ], "source": [ - 84 + 85 ], "status": [ - 913 + 914 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate": { "aggregate": [ - 2202 + 2203 ], "nodes": [ - 2196 + 2197 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_bool_exp": { "bool_and": [ - 2199 + 2200 ], "bool_or": [ - 2200 + 2201 ], "count": [ - 2201 + 2202 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_bool_exp_bool_and": { "arguments": [ - 2217 + 2218 ], "distinct": [ 6 ], "filter": [ - 2205 + 2206 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_bool_exp_bool_or": { "arguments": [ - 2218 + 2219 ], "distinct": [ 6 ], "filter": [ - 2205 + 2206 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_bool_exp_count": { "arguments": [ - 2216 + 2217 ], "distinct": [ 6 ], "filter": [ - 2205 + 2206 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_fields": { @@ -34453,7 +34467,7 @@ export default { 41, { "columns": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "distinct": [ @@ -34462,330 +34476,330 @@ export default { } ], "max": [ - 2208 + 2209 ], "min": [ - 2210 + 2211 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 2209 + 2210 ], "min": [ - 2211 + 2212 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_arr_rel_insert_input": { "data": [ - 2207 + 2208 ], "on_conflict": [ - 2213 + 2214 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_bool_exp": { "_and": [ - 2205 + 2206 ], "_not": [ - 2205 + 2206 ], "_or": [ - 2205 + 2206 ], "channel": [ - 894 + 895 ], "created_at": [ - 5130 + 5154 ], "detected": [ 7 ], "detected_version": [ - 86 + 87 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "installed_at": [ - 5130 + 5154 ], "last_error": [ - 86 + 87 ], "path": [ - 86 + 87 ], "plugin": [ - 2169 + 2170 ], "plugin_slug": [ - 86 + 87 ], "previous_version": [ - 86 + 87 ], "runtime": [ - 1304 + 1305 ], "source": [ - 86 + 87 ], "status": [ - 914 + 915 ], "updated_at": [ - 5130 + 5154 ], "version": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_constraint": {}, "game_server_node_plugins_insert_input": { "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "detected": [ 6 ], "detected_version": [ - 84 + 85 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin": [ - 2178 + 2179 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "runtime": [ - 1303 + 1304 ], "source": [ - 84 + 85 ], "status": [ - 913 + 914 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_max_fields": { "created_at": [ - 5129 + 5153 ], "detected_version": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "source": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_max_order_by": { "created_at": [ - 3534 + 3558 ], "detected_version": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "installed_at": [ - 3534 + 3558 ], "last_error": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "previous_version": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_min_fields": { "created_at": [ - 5129 + 5153 ], "detected_version": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "source": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_min_order_by": { "created_at": [ - 3534 + 3558 ], "detected_version": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "installed_at": [ - 3534 + 3558 ], "last_error": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "plugin_slug": [ - 3534 + 3558 ], "previous_version": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_mutation_response": { @@ -34793,91 +34807,91 @@ export default { 41 ], "returning": [ - 2196 + 2197 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_on_conflict": { "constraint": [ - 2206 + 2207 ], "update_columns": [ - 2222 + 2223 ], "where": [ - 2205 + 2206 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_order_by": { "channel": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "detected": [ - 3534 + 3558 ], "detected_version": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "installed_at": [ - 3534 + 3558 ], "last_error": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "plugin": [ - 2180 + 2181 ], "plugin_slug": [ - 3534 + 3558 ], "previous_version": [ - 3534 + 3558 ], "runtime": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_select_column": {}, @@ -34885,131 +34899,131 @@ export default { "game_server_node_plugins_select_column_game_server_node_plugins_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_server_node_plugins_set_input": { "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "detected": [ 6 ], "detected_version": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "runtime": [ - 1303 + 1304 ], "source": [ - 84 + 85 ], "status": [ - 913 + 914 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_stream_cursor_input": { "initial_value": [ - 2221 + 2222 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_stream_cursor_value_input": { "channel": [ - 893 + 894 ], "created_at": [ - 5129 + 5153 ], "detected": [ 6 ], "detected_version": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "installed_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "path": [ - 84 + 85 ], "plugin_slug": [ - 84 + 85 ], "previous_version": [ - 84 + 85 ], "runtime": [ - 1303 + 1304 ], "source": [ - 84 + 85 ], "status": [ - 913 + 914 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_node_plugins_update_column": {}, "game_server_node_plugins_updates": { "_set": [ - 2219 + 2220 ], "where": [ - 2205 + 2206 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes": { @@ -35023,18 +35037,18 @@ export default { 41 ], "cpu_frequency_info": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "cpu_governor_info": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -35045,26 +35059,26 @@ export default { 41 ], "cpu_warnings": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "cs2_launch_options": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "cs2_video_settings": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -35081,10 +35095,10 @@ export default { 41 ], "e_region": [ - 4620 + 4644 ], "e_status": [ - 948 + 949 ], "enabled": [ 6 @@ -35102,10 +35116,10 @@ export default { 6 ], "gpu_info": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -35116,40 +35130,40 @@ export default { 6 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lan_ip": [ - 2344 + 2345 ], "node_ip": [ - 2344 + 2345 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "pinned_version": [ - 2275 + 2276 ], "plugin_supported": [ 6 ], "plugins": [ - 2196, + 2197, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -35159,19 +35173,19 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "plugins_aggregate": [ - 2197, + 2198, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -35181,28 +35195,28 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "plugins_synced_at": [ - 5129 + 5153 ], "public_ip": [ - 2344 + 2345 ], "region": [ - 84 + 85 ], "servers": [ - 4647, + 4671, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -35212,19 +35226,19 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_aggregate": [ - 4648, + 4672, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -35234,28 +35248,28 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "shader_bake_status_history": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -35263,7 +35277,7 @@ export default { 41 ], "status": [ - 953 + 954 ], "supports_cpu_pinning": [ 6 @@ -35272,106 +35286,106 @@ export default { 6 ], "token": [ - 84 + 85 ], "total_server_count": [ 41 ], "update_status": [ - 84 + 85 ], "version": [ - 2275 + 2276 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 2230 + 2231 ], "nodes": [ - 2224 + 2225 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 2227 + 2228 ], "bool_or": [ - 2228 + 2229 ], "count": [ - 2229 + 2230 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 2254 + 2255 ], "distinct": [ 6 ], "filter": [ - 2236 + 2237 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 2255 + 2256 ], "distinct": [ 6 ], "filter": [ - 2236 + 2237 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 2253 + 2254 ], "distinct": [ 6 ], "filter": [ - 2236 + 2237 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 2234 + 2235 ], "count": [ 41, { "columns": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -35380,109 +35394,109 @@ export default { } ], "max": [ - 2243 + 2244 ], "min": [ - 2245 + 2246 ], "stddev": [ - 2257 + 2258 ], "stddev_pop": [ - 2259 + 2260 ], "stddev_samp": [ - 2261 + 2262 ], "sum": [ - 2265 + 2266 ], "var_pop": [ - 2269 + 2270 ], "var_samp": [ - 2271 + 2272 ], "variance": [ - 2273 + 2274 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 2235 + 2236 ], "count": [ - 3534 + 3558 ], "max": [ - 2244 + 2245 ], "min": [ - 2246 + 2247 ], "stddev": [ - 2258 + 2259 ], "stddev_pop": [ - 2260 + 2261 ], "stddev_samp": [ - 2262 + 2263 ], "sum": [ - 2266 + 2267 ], "var_pop": [ - 2270 + 2271 ], "var_samp": [ - 2272 + 2273 ], "variance": [ - 2274 + 2275 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 2348 + 2349 ], "cpu_governor_info": [ - 2348 + 2349 ], "cpu_warnings": [ - 2348 + 2349 ], "cs2_launch_options": [ - 2348 + 2349 ], "cs2_video_settings": [ - 2348 + 2349 ], "gpu_info": [ - 2348 + 2349 ], "shader_bake_status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 2242 + 2243 ], "on_conflict": [ - 2249 + 2250 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_avg_fields": { @@ -35529,59 +35543,59 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_bool_exp": { "_and": [ - 2236 + 2237 ], "_not": [ - 2236 + 2237 ], "_or": [ - 2236 + 2237 ], "available_server_count": [ 42 @@ -35593,10 +35607,10 @@ export default { 42 ], "cpu_frequency_info": [ - 2350 + 2351 ], "cpu_governor_info": [ - 2350 + 2351 ], "cpu_sockets": [ 42 @@ -35605,13 +35619,13 @@ export default { 42 ], "cpu_warnings": [ - 2350 + 2351 ], "cs2_launch_options": [ - 2350 + 2351 ], "cs2_video_settings": [ - 2350 + 2351 ], "csgo_build_id": [ 42 @@ -35626,10 +35640,10 @@ export default { 42 ], "e_region": [ - 4624 + 4648 ], "e_status": [ - 951 + 952 ], "enabled": [ 7 @@ -35647,7 +35661,7 @@ export default { 7 ], "gpu_info": [ - 2350 + 2351 ], "gpu_rendering_enabled": [ 7 @@ -35656,73 +35670,73 @@ export default { 7 ], "id": [ - 86 + 87 ], "label": [ - 86 + 87 ], "lan_ip": [ - 2345 + 2346 ], "node_ip": [ - 2345 + 2346 ], "offline_at": [ - 5130 + 5154 ], "pin_build_id": [ 42 ], "pin_plugin_runtime": [ - 86 + 87 ], "pin_plugin_version": [ - 86 + 87 ], "pinned_version": [ - 2280 + 2281 ], "plugin_supported": [ 7 ], "plugins": [ - 2205 + 2206 ], "plugins_aggregate": [ - 2198 + 2199 ], "plugins_synced_at": [ - 5130 + 5154 ], "public_ip": [ - 2345 + 2346 ], "region": [ - 86 + 87 ], "servers": [ - 4659 + 4683 ], "servers_aggregate": [ - 4649 + 4673 ], "shader_bake_progress": [ - 3533 + 3557 ], "shader_bake_progress_stage": [ - 86 + 87 ], "shader_bake_status": [ - 86 + 87 ], "shader_bake_status_history": [ - 2350 + 2351 ], "start_port_range": [ 42 ], "status": [ - 954 + 955 ], "supports_cpu_pinning": [ 7 @@ -35731,46 +35745,46 @@ export default { 7 ], "token": [ - 86 + 87 ], "total_server_count": [ 42 ], "update_status": [ - 86 + 87 ], "version": [ - 2280 + 2281 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 84 + 85 ], "cpu_governor_info": [ - 84 + 85 ], "cpu_warnings": [ - 84 + 85 ], "cs2_launch_options": [ - 84 + 85 ], "cs2_video_settings": [ - 84 + 85 ], "gpu_info": [ - 84 + 85 ], "shader_bake_status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_delete_elem_input": { @@ -35796,33 +35810,33 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 84 + 85 ], "cpu_governor_info": [ - 84 + 85 ], "cpu_warnings": [ - 84 + 85 ], "cs2_launch_options": [ - 84 + 85 ], "cs2_video_settings": [ - 84 + 85 ], "gpu_info": [ - 84 + 85 ], "shader_bake_status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_inc_input": { @@ -35857,13 +35871,13 @@ export default { 41 ], "shader_bake_progress": [ - 3532 + 3556 ], "start_port_range": [ 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_insert_input": { @@ -35874,10 +35888,10 @@ export default { 41 ], "cpu_frequency_info": [ - 2348 + 2349 ], "cpu_governor_info": [ - 2348 + 2349 ], "cpu_sockets": [ 41 @@ -35886,13 +35900,13 @@ export default { 41 ], "cpu_warnings": [ - 2348 + 2349 ], "cs2_launch_options": [ - 2348 + 2349 ], "cs2_video_settings": [ - 2348 + 2349 ], "csgo_build_id": [ 41 @@ -35907,10 +35921,10 @@ export default { 41 ], "e_region": [ - 4630 + 4654 ], "e_status": [ - 959 + 960 ], "enabled": [ 6 @@ -35928,7 +35942,7 @@ export default { 6 ], "gpu_info": [ - 2348 + 2349 ], "gpu_rendering_enabled": [ 6 @@ -35937,64 +35951,64 @@ export default { 6 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lan_ip": [ - 2344 + 2345 ], "node_ip": [ - 2344 + 2345 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "pinned_version": [ - 2290 + 2291 ], "plugins": [ - 2204 + 2205 ], "plugins_synced_at": [ - 5129 + 5153 ], "public_ip": [ - 2344 + 2345 ], "region": [ - 84 + 85 ], "servers": [ - 4656 + 4680 ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "shader_bake_status_history": [ - 2348 + 2349 ], "start_port_range": [ 41 ], "status": [ - 953 + 954 ], "supports_cpu_pinning": [ 6 @@ -36003,16 +36017,16 @@ export default { 6 ], "token": [ - 84 + 85 ], "update_status": [ - 84 + 85 ], "version": [ - 2290 + 2291 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_max_fields": { @@ -36047,126 +36061,126 @@ export default { 41 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "plugins_synced_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "start_port_range": [ 41 ], "token": [ - 84 + 85 ], "total_server_count": [ 41 ], "update_status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "pin_plugin_runtime": [ - 3534 + 3558 ], "pin_plugin_version": [ - 3534 + 3558 ], "plugins_synced_at": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "shader_bake_progress_stage": [ - 3534 + 3558 ], "shader_bake_status": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "token": [ - 3534 + 3558 ], "update_status": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_min_fields": { @@ -36201,126 +36215,126 @@ export default { 41 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "plugins_synced_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "start_port_range": [ 41 ], "token": [ - 84 + 85 ], "total_server_count": [ 41 ], "update_status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "pin_plugin_runtime": [ - 3534 + 3558 ], "pin_plugin_version": [ - 3534 + 3558 ], "plugins_synced_at": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "shader_bake_progress_stage": [ - 3534 + 3558 ], "shader_bake_status": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "token": [ - 3534 + 3558 ], "update_status": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_mutation_response": { @@ -36328,227 +36342,227 @@ export default { 41 ], "returning": [ - 2224 + 2225 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 2242 + 2243 ], "on_conflict": [ - 2249 + 2250 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 2237 + 2238 ], "update_columns": [ - 2267 + 2268 ], "where": [ - 2236 + 2237 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 3534 + 3558 ], "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_frequency_info": [ - 3534 + 3558 ], "cpu_governor_info": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "cpu_warnings": [ - 3534 + 3558 ], "cs2_launch_options": [ - 3534 + 3558 ], "cs2_video_settings": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "e_region": [ - 4632 + 4656 ], "e_status": [ - 961 + 962 ], "enabled": [ - 3534 + 3558 ], "enabled_for_match_making": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "gpu": [ - 3534 + 3558 ], "gpu_demos_enabled": [ - 3534 + 3558 ], "gpu_info": [ - 3534 + 3558 ], "gpu_rendering_enabled": [ - 3534 + 3558 ], "gpu_streaming_enabled": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "lan_ip": [ - 3534 + 3558 ], "node_ip": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "pin_plugin_runtime": [ - 3534 + 3558 ], "pin_plugin_version": [ - 3534 + 3558 ], "pinned_version": [ - 2292 + 2293 ], "plugin_supported": [ - 3534 + 3558 ], "plugins_aggregate": [ - 2203 + 2204 ], "plugins_synced_at": [ - 3534 + 3558 ], "public_ip": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "servers_aggregate": [ - 4654 + 4678 ], "shader_bake_progress": [ - 3534 + 3558 ], "shader_bake_progress_stage": [ - 3534 + 3558 ], "shader_bake_status": [ - 3534 + 3558 ], "shader_bake_status_history": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "supports_cpu_pinning": [ - 3534 + 3558 ], "supports_low_latency": [ - 3534 + 3558 ], "token": [ - 3534 + 3558 ], "total_server_count": [ - 3534 + 3558 ], "update_status": [ - 3534 + 3558 ], "version": [ - 2292 + 2293 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 2348 + 2349 ], "cpu_governor_info": [ - 2348 + 2349 ], "cpu_warnings": [ - 2348 + 2349 ], "cs2_launch_options": [ - 2348 + 2349 ], "cs2_video_settings": [ - 2348 + 2349 ], "gpu_info": [ - 2348 + 2349 ], "shader_bake_status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_select_column": {}, @@ -36562,10 +36576,10 @@ export default { 41 ], "cpu_frequency_info": [ - 2348 + 2349 ], "cpu_governor_info": [ - 2348 + 2349 ], "cpu_sockets": [ 41 @@ -36574,13 +36588,13 @@ export default { 41 ], "cpu_warnings": [ - 2348 + 2349 ], "cs2_launch_options": [ - 2348 + 2349 ], "cs2_video_settings": [ - 2348 + 2349 ], "csgo_build_id": [ 41 @@ -36610,7 +36624,7 @@ export default { 6 ], "gpu_info": [ - 2348 + 2349 ], "gpu_rendering_enabled": [ 6 @@ -36619,55 +36633,55 @@ export default { 6 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lan_ip": [ - 2344 + 2345 ], "node_ip": [ - 2344 + 2345 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "plugins_synced_at": [ - 5129 + 5153 ], "public_ip": [ - 2344 + 2345 ], "region": [ - 84 + 85 ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "shader_bake_status_history": [ - 2348 + 2349 ], "start_port_range": [ 41 ], "status": [ - 953 + 954 ], "supports_cpu_pinning": [ 6 @@ -36676,13 +36690,13 @@ export default { 6 ], "token": [ - 84 + 85 ], "update_status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_fields": { @@ -36729,48 +36743,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_pop_fields": { @@ -36817,48 +36831,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_samp_fields": { @@ -36905,59 +36919,59 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 2264 + 2265 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_stream_cursor_value_input": { @@ -36968,10 +36982,10 @@ export default { 41 ], "cpu_frequency_info": [ - 2348 + 2349 ], "cpu_governor_info": [ - 2348 + 2349 ], "cpu_sockets": [ 41 @@ -36980,13 +36994,13 @@ export default { 41 ], "cpu_warnings": [ - 2348 + 2349 ], "cs2_launch_options": [ - 2348 + 2349 ], "cs2_video_settings": [ - 2348 + 2349 ], "csgo_build_id": [ 41 @@ -37016,7 +37030,7 @@ export default { 6 ], "gpu_info": [ - 2348 + 2349 ], "gpu_rendering_enabled": [ 6 @@ -37025,55 +37039,55 @@ export default { 6 ], "id": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lan_ip": [ - 2344 + 2345 ], "node_ip": [ - 2344 + 2345 ], "offline_at": [ - 5129 + 5153 ], "pin_build_id": [ 41 ], "pin_plugin_runtime": [ - 84 + 85 ], "pin_plugin_version": [ - 84 + 85 ], "plugins_synced_at": [ - 5129 + 5153 ], "public_ip": [ - 2344 + 2345 ], "region": [ - 84 + 85 ], "shader_bake_progress": [ - 3532 + 3556 ], "shader_bake_progress_stage": [ - 84 + 85 ], "shader_bake_status": [ - 84 + 85 ], "shader_bake_status_history": [ - 2348 + 2349 ], "start_port_range": [ 41 ], "status": [ - 953 + 954 ], "supports_cpu_pinning": [ 6 @@ -37082,13 +37096,13 @@ export default { 6 ], "token": [ - 84 + 85 ], "update_status": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_sum_fields": { @@ -37126,7 +37140,7 @@ export default { 41 ], "shader_bake_progress": [ - 3532 + 3556 ], "start_port_range": [ 41 @@ -37135,78 +37149,78 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 2232 + 2233 ], "_delete_at_path": [ - 2238 + 2239 ], "_delete_elem": [ - 2239 + 2240 ], "_delete_key": [ - 2240 + 2241 ], "_inc": [ - 2241 + 2242 ], "_prepend": [ - 2252 + 2253 ], "_set": [ - 2256 + 2257 ], "where": [ - 2236 + 2237 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_var_pop_fields": { @@ -37253,48 +37267,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_var_samp_fields": { @@ -37341,48 +37355,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_variance_fields": { @@ -37429,48 +37443,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 3534 + 3558 ], "cpu_cores_per_socket": [ - 3534 + 3558 ], "cpu_sockets": [ - 3534 + 3558 ], "cpu_threads_per_core": [ - 3534 + 3558 ], "csgo_build_id": [ - 3534 + 3558 ], "demo_network_limiter": [ - 3534 + 3558 ], "disk_available_gb": [ - 3534 + 3558 ], "disk_used_percent": [ - 3534 + 3558 ], "end_port_range": [ - 3534 + 3558 ], "pin_build_id": [ - 3534 + 3558 ], "shader_bake_progress": [ - 3534 + 3558 ], "start_port_range": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_versions": { @@ -37484,46 +37498,46 @@ export default { 6 ], "description": [ - 84 + 85 ], "downloads": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_aggregate": { "aggregate": [ - 2277 + 2278 ], "nodes": [ - 2275 + 2276 ], "__typename": [ - 84 + 85 ] }, "game_versions_aggregate_fields": { "avg": [ - 2279 + 2280 ], "count": [ 41, { "columns": [ - 2295, + 2296, "[game_versions_select_column!]" ], "distinct": [ @@ -37532,42 +37546,42 @@ export default { } ], "max": [ - 2287 + 2288 ], "min": [ - 2288 + 2289 ], "stddev": [ - 2297 + 2298 ], "stddev_pop": [ - 2298 + 2299 ], "stddev_samp": [ - 2299 + 2300 ], "sum": [ - 2302 + 2303 ], "var_pop": [ - 2305 + 2306 ], "var_samp": [ - 2306 + 2307 ], "variance": [ - 2307 + 2308 ], "__typename": [ - 84 + 85 ] }, "game_versions_append_input": { "downloads": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_versions_avg_fields": { @@ -37575,18 +37589,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_bool_exp": { "_and": [ - 2280 + 2281 ], "_not": [ - 2280 + 2281 ], "_or": [ - 2280 + 2281 ], "build_id": [ 42 @@ -37598,28 +37612,28 @@ export default { 7 ], "description": [ - 86 + 87 ], "downloads": [ - 2350 + 2351 ], "updated_at": [ - 5130 + 5154 ], "version": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_delete_elem_input": { @@ -37627,15 +37641,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_versions_delete_key_input": { "downloads": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_inc_input": { @@ -37643,7 +37657,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_versions_insert_input": { @@ -37657,19 +37671,19 @@ export default { 6 ], "description": [ - 84 + 85 ], "downloads": [ - 2348 + 2349 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_max_fields": { @@ -37677,16 +37691,16 @@ export default { 41 ], "description": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_min_fields": { @@ -37694,16 +37708,16 @@ export default { 41 ], "description": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_mutation_response": { @@ -37711,61 +37725,61 @@ export default { 41 ], "returning": [ - 2275 + 2276 ], "__typename": [ - 84 + 85 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 2286 + 2287 ], "on_conflict": [ - 2291 + 2292 ], "__typename": [ - 84 + 85 ] }, "game_versions_on_conflict": { "constraint": [ - 2281 + 2282 ], "update_columns": [ - 2303 + 2304 ], "where": [ - 2280 + 2281 ], "__typename": [ - 84 + 85 ] }, "game_versions_order_by": { "build_id": [ - 3534 + 3558 ], "current": [ - 3534 + 3558 ], "cvars": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "downloads": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "game_versions_pk_columns_input": { @@ -37773,15 +37787,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_versions_prepend_input": { "downloads": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "game_versions_select_column": {}, @@ -37796,19 +37810,19 @@ export default { 6 ], "description": [ - 84 + 85 ], "downloads": [ - 2348 + 2349 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_stddev_fields": { @@ -37816,7 +37830,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_stddev_pop_fields": { @@ -37824,7 +37838,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_stddev_samp_fields": { @@ -37832,18 +37846,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 2301 + 2302 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "game_versions_stream_cursor_value_input": { @@ -37857,19 +37871,19 @@ export default { 6 ], "description": [ - 84 + 85 ], "downloads": [ - 2348 + 2349 ], "updated_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "game_versions_sum_fields": { @@ -37877,37 +37891,37 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 2278 + 2279 ], "_delete_at_path": [ - 2282 + 2283 ], "_delete_elem": [ - 2283 + 2284 ], "_delete_key": [ - 2284 + 2285 ], "_inc": [ - 2285 + 2286 ], "_prepend": [ - 2294 + 2295 ], "_set": [ - 2296 + 2297 ], "where": [ - 2280 + 2281 ], "__typename": [ - 84 + 85 ] }, "game_versions_var_pop_fields": { @@ -37915,7 +37929,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_var_samp_fields": { @@ -37923,7 +37937,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "game_versions_variance_fields": { @@ -37931,60 +37945,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "game_version": [ - 2275 + 2276 ], "id": [ - 6341 + 6365 ], "results": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 2310 + 2311 ], "nodes": [ - 2308 + 2309 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 2312 + 2313 ], "count": [ 41, { "columns": [ - 2327, + 2328, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -37993,42 +38007,42 @@ export default { } ], "max": [ - 2320 + 2321 ], "min": [ - 2321 + 2322 ], "stddev": [ - 2329 + 2330 ], "stddev_pop": [ - 2330 + 2331 ], "stddev_samp": [ - 2331 + 2332 ], "sum": [ - 2334 + 2335 ], "var_pop": [ - 2337 + 2338 ], "var_samp": [ - 2338 + 2339 ], "variance": [ - 2339 + 2340 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_append_input": { "results": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_avg_fields": { @@ -38036,51 +38050,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 2313 + 2314 ], "_not": [ - 2313 + 2314 ], "_or": [ - 2313 + 2314 ], "branch": [ - 86 + 87 ], "build_id": [ 42 ], "game_version": [ - 2280 + 2281 ], "id": [ - 6343 + 6367 ], "results": [ - 2350 + 2351 ], "status": [ - 86 + 87 ], "validated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_delete_elem_input": { @@ -38088,15 +38102,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_inc_input": { @@ -38104,73 +38118,73 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "game_version": [ - 2290 + 2291 ], "id": [ - 6341 + 6365 ], "results": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_mutation_response": { @@ -38178,90 +38192,90 @@ export default { 41 ], "returning": [ - 2308 + 2309 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 2314 + 2315 ], "update_columns": [ - 2335 + 2336 ], "where": [ - 2313 + 2314 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 3534 + 3558 ], "build_id": [ - 3534 + 3558 ], "game_version": [ - 2292 + 2293 ], "id": [ - 3534 + 3558 ], "results": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "validated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "id": [ - 6341 + 6365 ], "results": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_stddev_fields": { @@ -38269,7 +38283,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_stddev_pop_fields": { @@ -38277,7 +38291,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_stddev_samp_fields": { @@ -38285,41 +38299,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 2333 + 2334 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 84 + 85 ], "build_id": [ 41 ], "id": [ - 6341 + 6365 ], "results": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "validated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_sum_fields": { @@ -38327,37 +38341,37 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 2311 + 2312 ], "_delete_at_path": [ - 2315 + 2316 ], "_delete_elem": [ - 2316 + 2317 ], "_delete_key": [ - 2317 + 2318 ], "_inc": [ - 2318 + 2319 ], "_prepend": [ - 2326 + 2327 ], "_set": [ - 2328 + 2329 ], "where": [ - 2313 + 2314 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_var_pop_fields": { @@ -38365,7 +38379,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_var_samp_fields": { @@ -38373,7 +38387,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "gamedata_signature_validations_variance_fields": { @@ -38381,215 +38395,215 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "get_event_leaderboard_args": { "_category": [ - 84 + 85 ], "_event_id": [ - 6341 + 6365 ], "_match_type": [ - 84 + 85 ], "_min_rounds": [ 41 ], "__typename": [ - 84 + 85 ] }, "get_leaderboard_args": { "_category": [ - 84 + 85 ], "_exclude_tournaments": [ 6 ], "_match_type": [ - 84 + 85 ], "_role": [ - 84 + 85 ], "_season_id": [ - 6341 + 6365 ], "_source": [ - 84 + 85 ], "_window_days": [ 41 ], "__typename": [ - 84 + 85 ] }, "get_league_season_leaderboard_args": { "_category": [ - 84 + 85 ], "_league_season_id": [ - 6341 + 6365 ], "_role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 84 + 85 ], "_exclude_tournaments": [ 6 ], "_match_type": [ - 84 + 85 ], "_player_steam_id": [ - 84 + 85 ], "_season_id": [ - 6341 + 6365 ], "_source": [ - 84 + 85 ], "_window_days": [ 41 ], "__typename": [ - 84 + 85 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 2344 + 2345 ], "_gt": [ - 2344 + 2345 ], "_gte": [ - 2344 + 2345 ], "_in": [ - 2344 + 2345 ], "_is_null": [ 6 ], "_lt": [ - 2344 + 2345 ], "_lte": [ - 2344 + 2345 ], "_neq": [ - 2344 + 2345 ], "_nin": [ - 2344 + 2345 ], "__typename": [ - 84 + 85 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 2346 + 2347 ], "_gt": [ - 2346 + 2347 ], "_gte": [ - 2346 + 2347 ], "_in": [ - 2346 + 2347 ], "_is_null": [ 6 ], "_lt": [ - 2346 + 2347 ], "_lte": [ - 2346 + 2347 ], "_neq": [ - 2346 + 2347 ], "_nin": [ - 2346 + 2347 ], "__typename": [ - 84 + 85 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "jsonb_comparison_exp": { "_cast": [ - 2349 + 2350 ], "_contained_in": [ - 2348 + 2349 ], "_contains": [ - 2348 + 2349 ], "_eq": [ - 2348 + 2349 ], "_gt": [ - 2348 + 2349 ], "_gte": [ - 2348 + 2349 ], "_has_key": [ - 84 + 85 ], "_has_keys_all": [ - 84 + 85 ], "_has_keys_any": [ - 84 + 85 ], "_in": [ - 2348 + 2349 ], "_is_null": [ 6 ], "_lt": [ - 2348 + 2349 ], "_lte": [ - 2348 + 2349 ], "_neq": [ - 2348 + 2349 ], "_nin": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries": { @@ -38597,53 +38611,53 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 2353 + 2354 ], "nodes": [ - 2351 + 2352 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 2354 + 2355 ], "count": [ 41, { "columns": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -38652,34 +38666,34 @@ export default { } ], "max": [ - 2358 + 2359 ], "min": [ - 2359 + 2360 ], "stddev": [ - 2364 + 2365 ], "stddev_pop": [ - 2365 + 2366 ], "stddev_samp": [ - 2366 + 2367 ], "sum": [ - 2369 + 2370 ], "var_pop": [ - 2371 + 2372 ], "var_samp": [ - 2372 + 2373 ], "variance": [ - 2373 + 2374 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_avg_fields": { @@ -38696,48 +38710,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 2355 + 2356 ], "_not": [ - 2355 + 2356 ], "_or": [ - 2355 + 2356 ], "matches_played": [ 42 ], "player_avatar_url": [ - 86 + 87 ], "player_country": [ - 86 + 87 ], "player_custom_avatar_url": [ - 86 + 87 ], "player_name": [ - 86 + 87 ], "player_steam_id": [ - 86 + 87 ], "secondary_value": [ - 2004 + 2005 ], "tertiary_value": [ - 2004 + 2005 ], "value": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_inc_input": { @@ -38745,16 +38759,16 @@ export default { 41 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_insert_input": { @@ -38762,31 +38776,31 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_max_fields": { @@ -38794,31 +38808,31 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_min_fields": { @@ -38826,31 +38840,31 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_mutation_response": { @@ -38858,42 +38872,42 @@ export default { 41 ], "returning": [ - 2351 + 2352 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 3534 + 3558 ], "player_avatar_url": [ - 3534 + 3558 ], "player_country": [ - 3534 + 3558 ], "player_custom_avatar_url": [ - 3534 + 3558 ], "player_name": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "secondary_value": [ - 3534 + 3558 ], "tertiary_value": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_select_column": {}, @@ -38902,31 +38916,31 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_stddev_fields": { @@ -38943,7 +38957,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_stddev_pop_fields": { @@ -38960,7 +38974,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_stddev_samp_fields": { @@ -38977,18 +38991,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 2368 + 2369 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_stream_cursor_value_input": { @@ -38996,31 +39010,31 @@ export default { 41 ], "player_avatar_url": [ - 84 + 85 ], "player_country": [ - 84 + 85 ], "player_custom_avatar_url": [ - 84 + 85 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_sum_fields": { @@ -39028,30 +39042,30 @@ export default { 41 ], "secondary_value": [ - 2003 + 2004 ], "tertiary_value": [ - 2003 + 2004 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_updates": { "_inc": [ - 2356 + 2357 ], "_set": [ - 2363 + 2364 ], "where": [ - 2355 + 2356 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_var_pop_fields": { @@ -39068,7 +39082,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_var_samp_fields": { @@ -39085,7 +39099,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "leaderboard_entries_variance_fields": { @@ -39102,35 +39116,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 6341 + 6365 ], "_winning_tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_divisions": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_divisions": [ - 2526, + 2527, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -39140,19 +39154,19 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "season_divisions_aggregate": [ - 2527, + 2528, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -39162,41 +39176,41 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_aggregate": { "aggregate": [ - 2377 + 2378 ], "nodes": [ - 2375 + 2376 ], "__typename": [ - 84 + 85 ] }, "league_divisions_aggregate_fields": { "avg": [ - 2378 + 2379 ], "count": [ 41, { "columns": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "distinct": [ @@ -39205,34 +39219,34 @@ export default { } ], "max": [ - 2383 + 2384 ], "min": [ - 2384 + 2385 ], "stddev": [ - 2392 + 2393 ], "stddev_pop": [ - 2393 + 2394 ], "stddev_samp": [ - 2394 + 2395 ], "sum": [ - 2397 + 2398 ], "var_pop": [ - 2400 + 2401 ], "var_samp": [ - 2401 + 2402 ], "variance": [ - 2402 + 2403 ], "__typename": [ - 84 + 85 ] }, "league_divisions_avg_fields": { @@ -39240,102 +39254,102 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_bool_exp": { "_and": [ - 2379 + 2380 ], "_not": [ - 2379 + 2380 ], "_or": [ - 2379 + 2380 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "name": [ - 86 + 87 ], "season_divisions": [ - 2533 + 2534 ], "season_divisions_aggregate": [ - 2528 + 2529 ], "tier": [ - 4717 + 4741 ], "__typename": [ - 84 + 85 ] }, "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "season_divisions": [ - 2532 + 2533 ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_mutation_response": { @@ -39343,81 +39357,81 @@ export default { 41 ], "returning": [ - 2375 + 2376 ], "__typename": [ - 84 + 85 ] }, "league_divisions_obj_rel_insert_input": { "data": [ - 2382 + 2383 ], "on_conflict": [ - 2387 + 2388 ], "__typename": [ - 84 + 85 ] }, "league_divisions_on_conflict": { "constraint": [ - 2380 + 2381 ], "update_columns": [ - 2398 + 2399 ], "where": [ - 2379 + 2380 ], "__typename": [ - 84 + 85 ] }, "league_divisions_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "season_divisions_aggregate": [ - 2531 + 2532 ], "tier": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_divisions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_stddev_fields": { @@ -39425,7 +39439,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_stddev_pop_fields": { @@ -39433,7 +39447,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_stddev_samp_fields": { @@ -39441,58 +39455,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_stream_cursor_input": { "initial_value": [ - 2396 + 2397 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_sum_fields": { "tier": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 2381 + 2382 ], "_set": [ - 2391 + 2392 ], "where": [ - 2379 + 2380 ], "__typename": [ - 84 + 85 ] }, "league_divisions_var_pop_fields": { @@ -39500,7 +39514,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_var_samp_fields": { @@ -39508,7 +39522,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_divisions_variance_fields": { @@ -39516,83 +39530,83 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "season": [ - 2551 + 2552 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_aggregate": { "aggregate": [ - 2407 + 2408 ], "nodes": [ - 2403 + 2404 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 2406 + 2407 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 2424 + 2425 ], "distinct": [ 6 ], "filter": [ - 2412 + 2413 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_aggregate_fields": { "avg": [ - 2410 + 2411 ], "count": [ 41, { "columns": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -39600,44 +39614,6 @@ export default { ] } ], - "max": [ - 2416 - ], - "min": [ - 2418 - ], - "stddev": [ - 2426 - ], - "stddev_pop": [ - 2428 - ], - "stddev_samp": [ - 2430 - ], - "sum": [ - 2434 - ], - "var_pop": [ - 2438 - ], - "var_samp": [ - 2440 - ], - "variance": [ - 2442 - ], - "__typename": [ - 84 - ] - }, - "league_match_weeks_aggregate_order_by": { - "avg": [ - 2411 - ], - "count": [ - 3534 - ], "max": [ 2417 ], @@ -39666,18 +39642,56 @@ export default { 2443 ], "__typename": [ - 84 + 85 + ] + }, + "league_match_weeks_aggregate_order_by": { + "avg": [ + 2412 + ], + "count": [ + 3558 + ], + "max": [ + 2418 + ], + "min": [ + 2420 + ], + "stddev": [ + 2428 + ], + "stddev_pop": [ + 2430 + ], + "stddev_samp": [ + 2432 + ], + "sum": [ + 2436 + ], + "var_pop": [ + 2440 + ], + "var_samp": [ + 2442 + ], + "variance": [ + 2444 + ], + "__typename": [ + 85 ] }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 2415 + 2416 ], "on_conflict": [ - 2421 + 2422 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_avg_fields": { @@ -39685,53 +39699,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_avg_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_bool_exp": { "_and": [ - 2412 + 2413 ], "_not": [ - 2412 + 2413 ], "_or": [ - 2412 + 2413 ], "closes_at": [ - 5130 + 5154 ], "created_at": [ - 5130 + 5154 ], "default_match_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "opens_at": [ - 5130 + 5154 ], "season": [ - 2556 + 2557 ], "week_number": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_constraint": {}, @@ -39740,140 +39754,140 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_insert_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "season": [ - 2566 + 2567 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_max_fields": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_max_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_min_fields": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_min_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_mutation_response": { @@ -39881,88 +39895,88 @@ export default { 41 ], "returning": [ - 2403 + 2404 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_on_conflict": { "constraint": [ - 2413 + 2414 ], "update_columns": [ - 2436 + 2437 ], "where": [ - 2412 + 2413 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "season": [ - 2568 + 2569 ], "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_fields": { @@ -39970,15 +39984,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_pop_fields": { @@ -39986,15 +40000,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_samp_fields": { @@ -40002,52 +40016,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 2433 + 2434 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "week_number": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_sum_fields": { @@ -40055,30 +40069,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_sum_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 2414 + 2415 ], "_set": [ - 2425 + 2426 ], "where": [ - 2412 + 2413 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_var_pop_fields": { @@ -40086,15 +40100,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_var_samp_fields": { @@ -40102,15 +40116,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_variance_fields": { @@ -40118,103 +40132,103 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_match_weeks_variance_order_by": { "week_number": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs": { "created_at": [ - 5129 + 5153 ], "higher_division": [ - 2375 + 2376 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division": [ - 2375 + 2376 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "season": [ - 2551 + 2552 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 2448 + 2449 ], "nodes": [ - 2444 + 2445 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 2447 + 2448 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 2465 + 2466 ], "distinct": [ 6 ], "filter": [ - 2453 + 2454 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 2451 + 2452 ], "count": [ 41, { "columns": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -40223,83 +40237,83 @@ export default { } ], "max": [ - 2457 + 2458 ], "min": [ - 2459 + 2460 ], "stddev": [ - 2467 + 2468 ], "stddev_pop": [ - 2469 + 2470 ], "stddev_samp": [ - 2471 + 2472 ], "sum": [ - 2475 + 2476 ], "var_pop": [ - 2479 + 2480 ], "var_samp": [ - 2481 + 2482 ], "variance": [ - 2483 + 2484 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 2452 + 2453 ], "count": [ - 3534 + 3558 ], "max": [ - 2458 + 2459 ], "min": [ - 2460 + 2461 ], "stddev": [ - 2468 + 2469 ], "stddev_pop": [ - 2470 + 2471 ], "stddev_samp": [ - 2472 + 2473 ], "sum": [ - 2476 + 2477 ], "var_pop": [ - 2480 + 2481 ], "var_samp": [ - 2482 + 2483 ], "variance": [ - 2484 + 2485 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 2456 + 2457 ], "on_conflict": [ - 2462 + 2463 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_avg_fields": { @@ -40307,65 +40321,65 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_bool_exp": { "_and": [ - 2453 + 2454 ], "_not": [ - 2453 + 2454 ], "_or": [ - 2453 + 2454 ], "created_at": [ - 5130 + 5154 ], "higher_division": [ - 2379 + 2380 ], "higher_division_id": [ - 6343 + 6367 ], "higher_slots": [ 42 ], "id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "lower_division": [ - 2379 + 2380 ], "lower_division_id": [ - 6343 + 6367 ], "resolved_at": [ - 5130 + 5154 ], "season": [ - 2556 + 2557 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_constraint": {}, @@ -40374,164 +40388,164 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_insert_input": { "created_at": [ - 5129 + 5153 ], "higher_division": [ - 2386 + 2387 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division": [ - 2386 + 2387 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "season": [ - 2566 + 2567 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_max_fields": { "created_at": [ - 5129 + 5153 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 3534 + 3558 ], "higher_division_id": [ - 3534 + 3558 ], "higher_slots": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "lower_division_id": [ - 3534 + 3558 ], "resolved_at": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_min_fields": { "created_at": [ - 5129 + 5153 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 3534 + 3558 ], "higher_division_id": [ - 3534 + 3558 ], "higher_slots": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "lower_division_id": [ - 3534 + 3558 ], "resolved_at": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_mutation_response": { @@ -40539,103 +40553,103 @@ export default { 41 ], "returning": [ - 2444 + 2445 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 2454 + 2455 ], "update_columns": [ - 2477 + 2478 ], "where": [ - 2453 + 2454 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_order_by": { "created_at": [ - 3534 + 3558 ], "higher_division": [ - 2388 + 2389 ], "higher_division_id": [ - 3534 + 3558 ], "higher_slots": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "lower_division": [ - 2388 + 2389 ], "lower_division_id": [ - 3534 + 3558 ], "resolved_at": [ - 3534 + 3558 ], "season": [ - 2568 + 2569 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 5129 + 5153 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_fields": { @@ -40643,15 +40657,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_pop_fields": { @@ -40659,15 +40673,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_samp_fields": { @@ -40675,55 +40689,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 2474 + 2475 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "higher_division_id": [ - 6341 + 6365 ], "higher_slots": [ 41 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "lower_division_id": [ - 6341 + 6365 ], "resolved_at": [ - 5129 + 5153 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_sum_fields": { @@ -40731,30 +40745,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 2455 + 2456 ], "_set": [ - 2466 + 2467 ], "where": [ - 2453 + 2454 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_var_pop_fields": { @@ -40762,15 +40776,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_var_samp_fields": { @@ -40778,15 +40792,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_variance_fields": { @@ -40794,109 +40808,109 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals": { "bracket": [ - 5173 + 5197 ], "created_at": [ - 5129 + 5153 ], "e_proposal_status": [ - 990 + 991 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by": [ - 4492 + 4516 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by": [ - 4492 + 4516 ], "responded_by_steam_id": [ - 309 + 310 ], "status": [ - 995 + 996 ], "team_season": [ - 2666 + 2667 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 2489 + 2490 ], "nodes": [ - 2485 + 2486 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 2488 + 2489 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 2506 + 2507 ], "distinct": [ 6 ], "filter": [ - 2494 + 2495 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 2492 + 2493 ], "count": [ 41, { "columns": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -40905,83 +40919,83 @@ export default { } ], "max": [ - 2498 + 2499 ], "min": [ - 2500 + 2501 ], "stddev": [ - 2508 + 2509 ], "stddev_pop": [ - 2510 + 2511 ], "stddev_samp": [ - 2512 + 2513 ], "sum": [ - 2516 + 2517 ], "var_pop": [ - 2520 + 2521 ], "var_samp": [ - 2522 + 2523 ], "variance": [ - 2524 + 2525 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 2493 + 2494 ], "count": [ - 3534 + 3558 ], "max": [ - 2499 + 2500 ], "min": [ - 2501 + 2502 ], "stddev": [ - 2509 + 2510 ], "stddev_pop": [ - 2511 + 2512 ], "stddev_samp": [ - 2513 + 2514 ], "sum": [ - 2517 + 2518 ], "var_pop": [ - 2521 + 2522 ], "var_samp": [ - 2523 + 2524 ], "variance": [ - 2525 + 2526 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 2497 + 2498 ], "on_conflict": [ - 2503 + 2504 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_avg_fields": { @@ -40992,249 +41006,249 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_bool_exp": { "_and": [ - 2494 + 2495 ], "_not": [ - 2494 + 2495 ], "_or": [ - 2494 + 2495 ], "bracket": [ - 5184 + 5208 ], "created_at": [ - 5130 + 5154 ], "e_proposal_status": [ - 993 + 994 ], "id": [ - 6343 + 6367 ], "message": [ - 86 + 87 ], "proposed_by": [ - 4496 + 4520 ], "proposed_by_league_team_season_id": [ - 6343 + 6367 ], "proposed_by_steam_id": [ - 311 + 312 ], "proposed_time": [ - 5130 + 5154 ], "responded_by": [ - 4496 + 4520 ], "responded_by_steam_id": [ - 311 + 312 ], "status": [ - 996 + 997 ], "team_season": [ - 2675 + 2676 ], "tournament_bracket_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_constraint": {}, "league_scheduling_proposals_inc_input": { "proposed_by_steam_id": [ - 309 + 310 ], "responded_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_insert_input": { "bracket": [ - 5193 + 5217 ], "created_at": [ - 5129 + 5153 ], "e_proposal_status": [ - 1001 + 1002 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by": [ - 4503 + 4527 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by": [ - 4503 + 4527 ], "responded_by_steam_id": [ - 309 + 310 ], "status": [ - 995 + 996 ], "team_season": [ - 2684 + 2685 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by_steam_id": [ - 309 + 310 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "proposed_by_league_team_season_id": [ - 3534 + 3558 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_time": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "tournament_bracket_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by_steam_id": [ - 309 + 310 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "proposed_by_league_team_season_id": [ - 3534 + 3558 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_time": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "tournament_bracket_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_mutation_response": { @@ -41242,112 +41256,112 @@ export default { 41 ], "returning": [ - 2485 + 2486 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 2495 + 2496 ], "update_columns": [ - 2518 + 2519 ], "where": [ - 2494 + 2495 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_order_by": { "bracket": [ - 5195 + 5219 ], "created_at": [ - 3534 + 3558 ], "e_proposal_status": [ - 1003 + 1004 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "proposed_by": [ - 4505 + 4529 ], "proposed_by_league_team_season_id": [ - 3534 + 3558 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_time": [ - 3534 + 3558 ], "responded_by": [ - 4505 + 4529 ], "responded_by_steam_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team_season": [ - 2686 + 2687 ], "tournament_bracket_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by_steam_id": [ - 309 + 310 ], "status": [ - 995 + 996 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_fields": { @@ -41358,18 +41372,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_pop_fields": { @@ -41380,18 +41394,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_samp_fields": { @@ -41402,98 +41416,98 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 2515 + 2516 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "proposed_by_league_team_season_id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_time": [ - 5129 + 5153 ], "responded_by_steam_id": [ - 309 + 310 ], "status": [ - 995 + 996 ], "tournament_bracket_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_sum_fields": { "proposed_by_steam_id": [ - 309 + 310 ], "responded_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 2496 + 2497 ], "_set": [ - 2507 + 2508 ], "where": [ - 2494 + 2495 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_var_pop_fields": { @@ -41504,18 +41518,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_var_samp_fields": { @@ -41526,18 +41540,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_variance_fields": { @@ -41548,44 +41562,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "responded_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions": { "created_at": [ - 5129 + 5153 ], "division": [ - 2375 + 2376 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "season": [ - 2551 + 2552 ], "standings": [ - 6413, + 6437, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -41595,19 +41609,19 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "standings_aggregate": [ - 6414, + 6438, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -41617,58 +41631,58 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_aggregate": { "aggregate": [ - 2530 + 2531 ], "nodes": [ - 2526 + 2527 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 2529 + 2530 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 2545 + 2546 ], "distinct": [ 6 ], "filter": [ - 2533 + 2534 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_aggregate_fields": { @@ -41676,7 +41690,7 @@ export default { 41, { "columns": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -41685,195 +41699,195 @@ export default { } ], "max": [ - 2536 + 2537 ], "min": [ - 2538 + 2539 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 2537 + 2538 ], "min": [ - 2539 + 2540 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 2535 + 2536 ], "on_conflict": [ - 2542 + 2543 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_bool_exp": { "_and": [ - 2533 + 2534 ], "_not": [ - 2533 + 2534 ], "_or": [ - 2533 + 2534 ], "created_at": [ - 5130 + 5154 ], "division": [ - 2379 + 2380 ], "id": [ - 6343 + 6367 ], "league_division_id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "season": [ - 2556 + 2557 ], "standings": [ - 6422 + 6446 ], "standings_aggregate": [ - 6415 + 6439 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 5129 + 5153 ], "division": [ - 2386 + 2387 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "season": [ - 2566 + 2567 ], "standings": [ - 6419 + 6443 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_mutation_response": { @@ -41881,139 +41895,139 @@ export default { 41 ], "returning": [ - 2526 + 2527 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 2535 + 2536 ], "on_conflict": [ - 2542 + 2543 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_on_conflict": { "constraint": [ - 2534 + 2535 ], "update_columns": [ - 2549 + 2550 ], "where": [ - 2533 + 2534 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_order_by": { "created_at": [ - 3534 + 3558 ], "division": [ - 2388 + 2389 ], "id": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "season": [ - 2568 + 2569 ], "standings_aggregate": [ - 6418 + 6442 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 2548 + 2549 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "league_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 2546 + 2547 ], "where": [ - 2533 + 2534 ], "__typename": [ - 84 + 85 ] }, "league_seasons": { @@ -42021,10 +42035,10 @@ export default { 6 ], "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -42034,19 +42048,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -42056,11 +42070,11 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], @@ -42068,10 +42082,10 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -42083,13 +42097,13 @@ export default { 41 ], "e_league_season_status": [ - 1032 + 1033 ], "games_per_week": [ 41 ], "id": [ - 6341 + 6365 ], "is_league_admin": [ 6 @@ -42098,13 +42112,13 @@ export default { 6 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks": [ - 2403, + 2404, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -42114,19 +42128,19 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], "match_weeks_aggregate": [ - 2404, + 2405, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -42136,11 +42150,11 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], @@ -42154,10 +42168,10 @@ export default { 41 ], "movements": [ - 2584, + 2585, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -42167,19 +42181,19 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "movements_aggregate": [ - 2585, + 2586, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -42189,19 +42203,19 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "my_registration": [ - 2666, + 2667, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -42211,25 +42225,25 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "name": [ - 84 + 85 ], "options": [ - 3176 + 3200 ], "player_stats": [ - 6446, + 6470, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -42239,19 +42253,19 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], "player_stats_aggregate": [ - 6447, + 6471, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -42261,11 +42275,11 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], @@ -42273,10 +42287,10 @@ export default { 41 ], "playoff_round_best_of": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -42284,7 +42298,7 @@ export default { 41 ], "playoff_stage_type": [ - 1526 + 1527 ], "playoff_third_place_match": [ 6 @@ -42293,7 +42307,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1526 + 1527 ], "relegate_count": [ 41 @@ -42302,10 +42316,10 @@ export default { 41 ], "relegation_playoffs": [ - 2444, + 2445, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -42315,19 +42329,19 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], "relegation_playoffs_aggregate": [ - 2445, + 2446, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -42337,11 +42351,11 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], @@ -42349,13 +42363,13 @@ export default { 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_divisions": [ - 2526, + 2527, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -42365,19 +42379,19 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "season_divisions_aggregate": [ - 2527, + 2528, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -42387,11 +42401,11 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], @@ -42399,16 +42413,16 @@ export default { 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "standings": [ - 6413, + 6437, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -42418,19 +42432,19 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "standings_aggregate": [ - 6414, + 6438, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -42440,25 +42454,25 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "starts_at": [ - 5129 + 5153 ], "status": [ - 1037 + 1038 ], "team_seasons": [ - 2666, + 2667, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -42468,19 +42482,19 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "team_seasons_aggregate": [ - 2667, + 2668, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -42490,46 +42504,46 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "week_best_of": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "__typename": [ - 84 + 85 ] }, "league_seasons_aggregate": { "aggregate": [ - 2553 + 2554 ], "nodes": [ - 2551 + 2552 ], "__typename": [ - 84 + 85 ] }, "league_seasons_aggregate_fields": { "avg": [ - 2555 + 2556 ], "count": [ 41, { "columns": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "distinct": [ @@ -42538,45 +42552,45 @@ export default { } ], "max": [ - 2563 + 2564 ], "min": [ - 2564 + 2565 ], "stddev": [ - 2573 + 2574 ], "stddev_pop": [ - 2574 + 2575 ], "stddev_samp": [ - 2575 + 2576 ], "sum": [ - 2578 + 2579 ], "var_pop": [ - 2581 + 2582 ], "var_samp": [ - 2582 + 2583 ], "variance": [ - 2583 + 2584 ], "__typename": [ - 84 + 85 ] }, "league_seasons_append_input": { "playoff_round_best_of": [ - 2348 + 2349 ], "week_best_of": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "league_seasons_avg_fields": { @@ -42626,36 +42640,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_bool_exp": { "_and": [ - 2556 + 2557 ], "_not": [ - 2556 + 2557 ], "_or": [ - 2556 + 2557 ], "auto_regular_season_format": [ 7 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "can_register": [ 7 ], "created_at": [ - 5130 + 5154 ], "created_by_steam_id": [ - 311 + 312 ], "default_best_of": [ 42 @@ -42667,13 +42681,13 @@ export default { 42 ], "e_league_season_status": [ - 1035 + 1036 ], "games_per_week": [ 42 ], "id": [ - 6343 + 6367 ], "is_league_admin": [ 7 @@ -42682,13 +42696,13 @@ export default { 7 ], "match_options_id": [ - 6343 + 6367 ], "match_weeks": [ - 2412 + 2413 ], "match_weeks_aggregate": [ - 2405 + 2406 ], "match_weeks_count": [ 42 @@ -42700,37 +42714,37 @@ export default { 42 ], "movements": [ - 2593 + 2594 ], "movements_aggregate": [ - 2586 + 2587 ], "my_registration": [ - 2675 + 2676 ], "name": [ - 86 + 87 ], "options": [ - 3187 + 3211 ], "player_stats": [ - 6465 + 6489 ], "player_stats_aggregate": [ - 6448 + 6472 ], "playoff_best_of": [ 42 ], "playoff_round_best_of": [ - 2350 + 2351 ], "playoff_seats": [ 42 ], "playoff_stage_type": [ - 1527 + 1528 ], "playoff_third_place_match": [ 7 @@ -42739,7 +42753,7 @@ export default { 42 ], "regular_season_stage_type": [ - 1527 + 1528 ], "relegate_count": [ 42 @@ -42748,67 +42762,67 @@ export default { 42 ], "relegation_playoffs": [ - 2453 + 2454 ], "relegation_playoffs_aggregate": [ - 2446 + 2447 ], "relegation_up_count": [ 42 ], "roster_lock_at": [ - 5130 + 5154 ], "season_divisions": [ - 2533 + 2534 ], "season_divisions_aggregate": [ - 2528 + 2529 ], "season_number": [ 42 ], "signup_closes_at": [ - 5130 + 5154 ], "signup_opens_at": [ - 5130 + 5154 ], "standings": [ - 6422 + 6446 ], "standings_aggregate": [ - 6415 + 6439 ], "starts_at": [ - 5130 + 5154 ], "status": [ - 1038 + 1039 ], "team_seasons": [ - 2675 + 2676 ], "team_seasons_aggregate": [ - 2668 + 2669 ], "week_best_of": [ - 2350 + 2351 ], "__typename": [ - 84 + 85 ] }, "league_seasons_constraint": {}, "league_seasons_delete_at_path_input": { "playoff_round_best_of": [ - 84 + 85 ], "week_best_of": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "league_seasons_delete_elem_input": { @@ -42819,23 +42833,23 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_seasons_delete_key_input": { "playoff_round_best_of": [ - 84 + 85 ], "week_best_of": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "league_seasons_inc_input": { "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -42880,7 +42894,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_seasons_insert_input": { @@ -42888,13 +42902,13 @@ export default { 6 ], "awards": [ - 246 + 247 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -42906,19 +42920,19 @@ export default { 41 ], "e_league_season_status": [ - 1043 + 1044 ], "games_per_week": [ 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks": [ - 2409 + 2410 ], "match_weeks_count": [ 41 @@ -42930,28 +42944,28 @@ export default { 41 ], "movements": [ - 2590 + 2591 ], "name": [ - 84 + 85 ], "options": [ - 3196 + 3220 ], "player_stats": [ - 6462 + 6486 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 2348 + 2349 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1526 + 1527 ], "playoff_third_place_match": [ 6 @@ -42960,7 +42974,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1526 + 1527 ], "relegate_count": [ 41 @@ -42969,51 +42983,51 @@ export default { 41 ], "relegation_playoffs": [ - 2450 + 2451 ], "relegation_up_count": [ 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_divisions": [ - 2532 + 2533 ], "season_number": [ 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "standings": [ - 6419 + 6443 ], "starts_at": [ - 5129 + 5153 ], "status": [ - 1037 + 1038 ], "team_seasons": [ - 2672 + 2673 ], "week_best_of": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "league_seasons_max_fields": { "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -43028,10 +43042,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks_count": [ 41 @@ -43043,7 +43057,7 @@ export default { 41 ], "name": [ - 84 + 85 ], "playoff_best_of": [ 41 @@ -43064,30 +43078,30 @@ export default { 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_number": [ 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "league_seasons_min_fields": { "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -43102,10 +43116,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks_count": [ 41 @@ -43117,7 +43131,7 @@ export default { 41 ], "name": [ - 84 + 85 ], "playoff_best_of": [ 41 @@ -43138,22 +43152,22 @@ export default { 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_number": [ 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "league_seasons_mutation_response": { @@ -43161,191 +43175,191 @@ export default { 41 ], "returning": [ - 2551 + 2552 ], "__typename": [ - 84 + 85 ] }, "league_seasons_obj_rel_insert_input": { "data": [ - 2562 + 2563 ], "on_conflict": [ - 2567 + 2568 ], "__typename": [ - 84 + 85 ] }, "league_seasons_on_conflict": { "constraint": [ - 2557 + 2558 ], "update_columns": [ - 2579 + 2580 ], "where": [ - 2556 + 2557 ], "__typename": [ - 84 + 85 ] }, "league_seasons_order_by": { "auto_regular_season_format": [ - 3534 + 3558 ], "awards_aggregate": [ - 245 + 246 ], "can_register": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "created_by_steam_id": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "direct_promote_count": [ - 3534 + 3558 ], "direct_relegate_count": [ - 3534 + 3558 ], "e_league_season_status": [ - 1045 + 1046 ], "games_per_week": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_league_admin": [ - 3534 + 3558 ], "is_roster_locked": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "match_weeks_aggregate": [ - 2408 + 2409 ], "match_weeks_count": [ - 3534 + 3558 ], "max_roster_size": [ - 3534 + 3558 ], "min_roster_size": [ - 3534 + 3558 ], "movements_aggregate": [ - 2589 + 2590 ], "my_registration_aggregate": [ - 2671 + 2672 ], "name": [ - 3534 + 3558 ], "options": [ - 3198 + 3222 ], "player_stats_aggregate": [ - 6461 + 6485 ], "playoff_best_of": [ - 3534 + 3558 ], "playoff_round_best_of": [ - 3534 + 3558 ], "playoff_seats": [ - 3534 + 3558 ], "playoff_stage_type": [ - 3534 + 3558 ], "playoff_third_place_match": [ - 3534 + 3558 ], "promote_count": [ - 3534 + 3558 ], "regular_season_stage_type": [ - 3534 + 3558 ], "relegate_count": [ - 3534 + 3558 ], "relegation_down_count": [ - 3534 + 3558 ], "relegation_playoffs_aggregate": [ - 2449 + 2450 ], "relegation_up_count": [ - 3534 + 3558 ], "roster_lock_at": [ - 3534 + 3558 ], "season_divisions_aggregate": [ - 2531 + 2532 ], "season_number": [ - 3534 + 3558 ], "signup_closes_at": [ - 3534 + 3558 ], "signup_opens_at": [ - 3534 + 3558 ], "standings_aggregate": [ - 6418 + 6442 ], "starts_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team_seasons_aggregate": [ - 2671 + 2672 ], "week_best_of": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_seasons_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 2348 + 2349 ], "week_best_of": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "league_seasons_select_column": {}, @@ -43354,10 +43368,10 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -43372,10 +43386,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks_count": [ 41 @@ -43387,19 +43401,19 @@ export default { 41 ], "name": [ - 84 + 85 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 2348 + 2349 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1526 + 1527 ], "playoff_third_place_match": [ 6 @@ -43408,7 +43422,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1526 + 1527 ], "relegate_count": [ 41 @@ -43420,28 +43434,28 @@ export default { 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_number": [ 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "starts_at": [ - 5129 + 5153 ], "status": [ - 1037 + 1038 ], "week_best_of": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "league_seasons_stddev_fields": { @@ -43491,7 +43505,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_stddev_pop_fields": { @@ -43541,7 +43555,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_stddev_samp_fields": { @@ -43591,18 +43605,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_stream_cursor_input": { "initial_value": [ - 2577 + 2578 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_seasons_stream_cursor_value_input": { @@ -43610,10 +43624,10 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -43628,10 +43642,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_weeks_count": [ 41 @@ -43643,19 +43657,19 @@ export default { 41 ], "name": [ - 84 + 85 ], "playoff_best_of": [ 41 ], "playoff_round_best_of": [ - 2348 + 2349 ], "playoff_seats": [ 41 ], "playoff_stage_type": [ - 1526 + 1527 ], "playoff_third_place_match": [ 6 @@ -43664,7 +43678,7 @@ export default { 41 ], "regular_season_stage_type": [ - 1526 + 1527 ], "relegate_count": [ 41 @@ -43676,33 +43690,33 @@ export default { 41 ], "roster_lock_at": [ - 5129 + 5153 ], "season_number": [ 41 ], "signup_closes_at": [ - 5129 + 5153 ], "signup_opens_at": [ - 5129 + 5153 ], "starts_at": [ - 5129 + 5153 ], "status": [ - 1037 + 1038 ], "week_best_of": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "league_seasons_sum_fields": { "created_by_steam_id": [ - 309 + 310 ], "default_best_of": [ 41 @@ -43747,37 +43761,37 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 2554 + 2555 ], "_delete_at_path": [ - 2558 + 2559 ], "_delete_elem": [ - 2559 + 2560 ], "_delete_key": [ - 2560 + 2561 ], "_inc": [ - 2561 + 2562 ], "_prepend": [ - 2570 + 2571 ], "_set": [ - 2572 + 2573 ], "where": [ - 2556 + 2557 ], "__typename": [ - 84 + 85 ] }, "league_seasons_var_pop_fields": { @@ -43827,7 +43841,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_var_samp_fields": { @@ -43877,7 +43891,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_seasons_variance_fields": { @@ -43927,113 +43941,113 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements": { "approved_at": [ - 5129 + 5153 ], "approved_by": [ - 4492 + 4516 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division": [ - 2375 + 2376 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "e_movement_type": [ - 969 + 970 ], "final_rank": [ 41 ], "final_to_division": [ - 2375 + 2376 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division": [ - 2375 + 2376 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2708 + 2709 ], "league_team_id": [ - 6341 + 6365 ], "season": [ - 2551 + 2552 ], "type": [ - 974 + 975 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_aggregate": { "aggregate": [ - 2588 + 2589 ], "nodes": [ - 2584 + 2585 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_aggregate_bool_exp": { "count": [ - 2587 + 2588 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 2605 + 2606 ], "distinct": [ 6 ], "filter": [ - 2593 + 2594 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_aggregate_fields": { "avg": [ - 2591 + 2592 ], "count": [ 41, { "columns": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "distinct": [ @@ -44042,83 +44056,83 @@ export default { } ], "max": [ - 2597 + 2598 ], "min": [ - 2599 + 2600 ], "stddev": [ - 2607 + 2608 ], "stddev_pop": [ - 2609 + 2610 ], "stddev_samp": [ - 2611 + 2612 ], "sum": [ - 2615 + 2616 ], "var_pop": [ - 2619 + 2620 ], "var_samp": [ - 2621 + 2622 ], "variance": [ - 2623 + 2624 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_aggregate_order_by": { "avg": [ - 2592 + 2593 ], "count": [ - 3534 + 3558 ], "max": [ - 2598 + 2599 ], "min": [ - 2600 + 2601 ], "stddev": [ - 2608 + 2609 ], "stddev_pop": [ - 2610 + 2611 ], "stddev_samp": [ - 2612 + 2613 ], "sum": [ - 2616 + 2617 ], "var_pop": [ - 2620 + 2621 ], "var_samp": [ - 2622 + 2623 ], "variance": [ - 2624 + 2625 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_arr_rel_insert_input": { "data": [ - 2596 + 2597 ], "on_conflict": [ - 2602 + 2603 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_avg_fields": { @@ -44129,297 +44143,297 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_bool_exp": { "_and": [ - 2593 + 2594 ], "_not": [ - 2593 + 2594 ], "_or": [ - 2593 + 2594 ], "approved_at": [ - 5130 + 5154 ], "approved_by": [ - 4496 + 4520 ], "approved_by_steam_id": [ - 311 + 312 ], "computed_to_division": [ - 2379 + 2380 ], "computed_to_division_id": [ - 6343 + 6367 ], "created_at": [ - 5130 + 5154 ], "e_movement_type": [ - 972 + 973 ], "final_rank": [ 42 ], "final_to_division": [ - 2379 + 2380 ], "final_to_division_id": [ - 6343 + 6367 ], "from_division": [ - 2379 + 2380 ], "from_division_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "league_team": [ - 2711 + 2712 ], "league_team_id": [ - 6343 + 6367 ], "season": [ - 2556 + 2557 ], "type": [ - 975 + 976 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_constraint": {}, "league_team_movements_inc_input": { "approved_by_steam_id": [ - 309 + 310 ], "final_rank": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_insert_input": { "approved_at": [ - 5129 + 5153 ], "approved_by": [ - 4503 + 4527 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division": [ - 2386 + 2387 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "e_movement_type": [ - 980 + 981 ], "final_rank": [ 41 ], "final_to_division": [ - 2386 + 2387 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division": [ - 2386 + 2387 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2717 + 2718 ], "league_team_id": [ - 6341 + 6365 ], "season": [ - 2566 + 2567 ], "type": [ - 974 + 975 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_max_fields": { "approved_at": [ - 5129 + 5153 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "final_rank": [ 41 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_max_order_by": { "approved_at": [ - 3534 + 3558 ], "approved_by_steam_id": [ - 3534 + 3558 ], "computed_to_division_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "final_to_division_id": [ - 3534 + 3558 ], "from_division_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_min_fields": { "approved_at": [ - 5129 + 5153 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "final_rank": [ 41 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_min_order_by": { "approved_at": [ - 3534 + 3558 ], "approved_by_steam_id": [ - 3534 + 3558 ], "computed_to_division_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "final_to_division_id": [ - 3534 + 3558 ], "from_division_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_mutation_response": { @@ -44427,130 +44441,130 @@ export default { 41 ], "returning": [ - 2584 + 2585 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_on_conflict": { "constraint": [ - 2594 + 2595 ], "update_columns": [ - 2617 + 2618 ], "where": [ - 2593 + 2594 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_order_by": { "approved_at": [ - 3534 + 3558 ], "approved_by": [ - 4505 + 4529 ], "approved_by_steam_id": [ - 3534 + 3558 ], "computed_to_division": [ - 2388 + 2389 ], "computed_to_division_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "e_movement_type": [ - 982 + 983 ], "final_rank": [ - 3534 + 3558 ], "final_to_division": [ - 2388 + 2389 ], "final_to_division_id": [ - 3534 + 3558 ], "from_division": [ - 2388 + 2389 ], "from_division_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team": [ - 2719 + 2720 ], "league_team_id": [ - 3534 + 3558 ], "season": [ - 2568 + 2569 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 5129 + 5153 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "final_rank": [ 41 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "type": [ - 974 + 975 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_fields": { @@ -44561,18 +44575,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_pop_fields": { @@ -44583,18 +44597,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_samp_fields": { @@ -44605,104 +44619,104 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 2614 + 2615 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 5129 + 5153 ], "approved_by_steam_id": [ - 309 + 310 ], "computed_to_division_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "final_rank": [ 41 ], "final_to_division_id": [ - 6341 + 6365 ], "from_division_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "type": [ - 974 + 975 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_sum_fields": { "approved_by_steam_id": [ - 309 + 310 ], "final_rank": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 2595 + 2596 ], "_set": [ - 2606 + 2607 ], "where": [ - 2593 + 2594 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_var_pop_fields": { @@ -44713,18 +44727,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_var_samp_fields": { @@ -44735,18 +44749,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_variance_fields": { @@ -44757,94 +44771,94 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 3534 + 3558 ], "final_rank": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team_season": [ - 2666 + 2667 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_aggregate": { "aggregate": [ - 2629 + 2630 ], "nodes": [ - 2625 + 2626 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 2628 + 2629 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 2646 + 2647 ], "distinct": [ 6 ], "filter": [ - 2634 + 2635 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_aggregate_fields": { "avg": [ - 2632 + 2633 ], "count": [ 41, { "columns": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -44852,44 +44866,6 @@ export default { ] } ], - "max": [ - 2638 - ], - "min": [ - 2640 - ], - "stddev": [ - 2648 - ], - "stddev_pop": [ - 2650 - ], - "stddev_samp": [ - 2652 - ], - "sum": [ - 2656 - ], - "var_pop": [ - 2660 - ], - "var_samp": [ - 2662 - ], - "variance": [ - 2664 - ], - "__typename": [ - 84 - ] - }, - "league_team_rosters_aggregate_order_by": { - "avg": [ - 2633 - ], - "count": [ - 3534 - ], "max": [ 2639 ], @@ -44918,18 +44894,56 @@ export default { 2665 ], "__typename": [ - 84 + 85 + ] + }, + "league_team_rosters_aggregate_order_by": { + "avg": [ + 2634 + ], + "count": [ + 3558 + ], + "max": [ + 2640 + ], + "min": [ + 2642 + ], + "stddev": [ + 2650 + ], + "stddev_pop": [ + 2652 + ], + "stddev_samp": [ + 2654 + ], + "sum": [ + 2658 + ], + "var_pop": [ + 2662 + ], + "var_samp": [ + 2664 + ], + "variance": [ + 2666 + ], + "__typename": [ + 85 ] }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 2637 + 2638 ], "on_conflict": [ - 2643 + 2644 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_avg_fields": { @@ -44937,171 +44951,171 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_bool_exp": { "_and": [ - 2634 + 2635 ], "_not": [ - 2634 + 2635 ], "_or": [ - 2634 + 2635 ], "added_at": [ - 5130 + 5154 ], "league_team_season_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "removed_at": [ - 5130 + 5154 ], "removed_reason": [ - 86 + 87 ], "status": [ - 1466 + 1467 ], "team_season": [ - 2675 + 2676 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_constraint": {}, "league_team_rosters_inc_input": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_insert_input": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team_season": [ - 2684 + 2685 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_max_fields": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_max_order_by": { "added_at": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "removed_at": [ - 3534 + 3558 ], "removed_reason": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_min_fields": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_min_order_by": { "added_at": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "removed_at": [ - 3534 + 3558 ], "removed_reason": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_mutation_response": { @@ -45109,88 +45123,88 @@ export default { 41 ], "returning": [ - 2625 + 2626 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_on_conflict": { "constraint": [ - 2635 + 2636 ], "update_columns": [ - 2658 + 2659 ], "where": [ - 2634 + 2635 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_order_by": { "added_at": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "removed_at": [ - 3534 + 3558 ], "removed_reason": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team_season": [ - 2686 + 2687 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_fields": { @@ -45198,15 +45212,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_pop_fields": { @@ -45214,15 +45228,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_samp_fields": { @@ -45230,80 +45244,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 2655 + 2656 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 5129 + 5153 ], "league_team_season_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "removed_at": [ - 5129 + 5153 ], "removed_reason": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_sum_fields": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 2636 + 2637 ], "_set": [ - 2647 + 2648 ], "where": [ - 2634 + 2635 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_var_pop_fields": { @@ -45311,15 +45325,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_var_samp_fields": { @@ -45327,15 +45341,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_variance_fields": { @@ -45343,68 +45357,68 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons": { "assigned_division": [ - 2375 + 2376 ], "assigned_division_id": [ - 6341 + 6365 ], "captain": [ - 4492 + 4516 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "e_registration_status": [ - 1011 + 1012 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2708 + 2709 ], "league_team_id": [ - 6341 + 6365 ], "registered_by": [ - 4492 + 4516 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division": [ - 2375 + 2376 ], "requested_division_id": [ - 6341 + 6365 ], "roster": [ - 2625, + 2626, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -45414,19 +45428,19 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "roster_aggregate": [ - 2626, + 2627, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -45436,78 +45450,78 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "season": [ - 2551 + 2552 ], "seed": [ 41 ], "status": [ - 1016 + 1017 ], "tournament_team": [ - 5523 + 5547 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_aggregate": { "aggregate": [ - 2670 + 2671 ], "nodes": [ - 2666 + 2667 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 2669 + 2670 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 2688 + 2689 ], "distinct": [ 6 ], "filter": [ - 2675 + 2676 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_aggregate_fields": { "avg": [ - 2673 + 2674 ], "count": [ 41, { "columns": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -45516,83 +45530,83 @@ export default { } ], "max": [ - 2679 + 2680 ], "min": [ - 2681 + 2682 ], "stddev": [ - 2690 + 2691 ], "stddev_pop": [ - 2692 + 2693 ], "stddev_samp": [ - 2694 + 2695 ], "sum": [ - 2698 + 2699 ], "var_pop": [ - 2702 + 2703 ], "var_samp": [ - 2704 + 2705 ], "variance": [ - 2706 + 2707 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_aggregate_order_by": { "avg": [ - 2674 + 2675 ], "count": [ - 3534 + 3558 ], "max": [ - 2680 + 2681 ], "min": [ - 2682 + 2683 ], "stddev": [ - 2691 + 2692 ], "stddev_pop": [ - 2693 + 2694 ], "stddev_samp": [ - 2695 + 2696 ], "sum": [ - 2699 + 2700 ], "var_pop": [ - 2703 + 2704 ], "var_samp": [ - 2705 + 2706 ], "variance": [ - 2707 + 2708 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 2678 + 2679 ], "on_conflict": [ - 2685 + 2686 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_avg_fields": { @@ -45606,336 +45620,336 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_bool_exp": { "_and": [ - 2675 + 2676 ], "_not": [ - 2675 + 2676 ], "_or": [ - 2675 + 2676 ], "assigned_division": [ - 2379 + 2380 ], "assigned_division_id": [ - 6343 + 6367 ], "captain": [ - 4496 + 4520 ], "captain_steam_id": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "decline_reason": [ - 86 + 87 ], "e_registration_status": [ - 1014 + 1015 ], "id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "league_team": [ - 2711 + 2712 ], "league_team_id": [ - 6343 + 6367 ], "registered_by": [ - 4496 + 4520 ], "registered_by_steam_id": [ - 311 + 312 ], "requested_division": [ - 2379 + 2380 ], "requested_division_id": [ - 6343 + 6367 ], "roster": [ - 2634 + 2635 ], "roster_aggregate": [ - 2627 + 2628 ], "season": [ - 2556 + 2557 ], "seed": [ 42 ], "status": [ - 1017 + 1018 ], "tournament_team": [ - 5532 + 5556 ], "tournament_team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_constraint": {}, "league_team_seasons_inc_input": { "captain_steam_id": [ - 309 + 310 ], "registered_by_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_insert_input": { "assigned_division": [ - 2386 + 2387 ], "assigned_division_id": [ - 6341 + 6365 ], "captain": [ - 4503 + 4527 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "e_registration_status": [ - 1022 + 1023 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2717 + 2718 ], "league_team_id": [ - 6341 + 6365 ], "registered_by": [ - 4503 + 4527 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division": [ - 2386 + 2387 ], "requested_division_id": [ - 6341 + 6365 ], "roster": [ - 2631 + 2632 ], "season": [ - 2566 + 2567 ], "seed": [ 41 ], "status": [ - 1016 + 1017 ], "tournament_team": [ - 5541 + 5565 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 6341 + 6365 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division_id": [ - 6341 + 6365 ], "seed": [ 41 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 3534 + 3558 ], "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "decline_reason": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "requested_division_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 6341 + 6365 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division_id": [ - 6341 + 6365 ], "seed": [ 41 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 3534 + 3558 ], "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "decline_reason": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "requested_division_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_mutation_response": { @@ -45943,153 +45957,153 @@ export default { 41 ], "returning": [ - 2666 + 2667 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 2678 + 2679 ], "on_conflict": [ - 2685 + 2686 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_on_conflict": { "constraint": [ - 2676 + 2677 ], "update_columns": [ - 2700 + 2701 ], "where": [ - 2675 + 2676 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_order_by": { "assigned_division": [ - 2388 + 2389 ], "assigned_division_id": [ - 3534 + 3558 ], "captain": [ - 4505 + 4529 ], "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "decline_reason": [ - 3534 + 3558 ], "e_registration_status": [ - 1024 + 1025 ], "id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team": [ - 2719 + 2720 ], "league_team_id": [ - 3534 + 3558 ], "registered_by": [ - 4505 + 4529 ], "registered_by_steam_id": [ - 3534 + 3558 ], "requested_division": [ - 2388 + 2389 ], "requested_division_id": [ - 3534 + 3558 ], "roster_aggregate": [ - 2630 + 2631 ], "season": [ - 2568 + 2569 ], "seed": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "tournament_team": [ - 5543 + 5567 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 6341 + 6365 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division_id": [ - 6341 + 6365 ], "seed": [ 41 ], "status": [ - 1016 + 1017 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_fields": { @@ -46103,21 +46117,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_pop_fields": { @@ -46131,21 +46145,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_samp_fields": { @@ -46159,116 +46173,116 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 2697 + 2698 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 6341 + 6365 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "decline_reason": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "registered_by_steam_id": [ - 309 + 310 ], "requested_division_id": [ - 6341 + 6365 ], "seed": [ 41 ], "status": [ - 1016 + 1017 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_sum_fields": { "captain_steam_id": [ - 309 + 310 ], "registered_by_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 2677 + 2678 ], "_set": [ - 2689 + 2690 ], "where": [ - 2675 + 2676 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_var_pop_fields": { @@ -46282,21 +46296,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_var_samp_fields": { @@ -46310,21 +46324,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_variance_fields": { @@ -46338,35 +46352,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "registered_by_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "league_teams": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "movements": [ - 2584, + 2585, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -46376,19 +46390,19 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "movements_aggregate": [ - 2585, + 2586, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -46398,25 +46412,25 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "team_seasons": [ - 2666, + 2667, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -46426,19 +46440,19 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "team_seasons_aggregate": [ - 2667, + 2668, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -46448,27 +46462,27 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "__typename": [ - 84 + 85 ] }, "league_teams_aggregate": { "aggregate": [ - 2710 + 2711 ], "nodes": [ - 2708 + 2709 ], "__typename": [ - 84 + 85 ] }, "league_teams_aggregate_fields": { @@ -46476,7 +46490,7 @@ export default { 41, { "columns": [ - 2721, + 2722, "[league_teams_select_column!]" ], "distinct": [ @@ -46485,103 +46499,103 @@ export default { } ], "max": [ - 2714 + 2715 ], "min": [ - 2715 + 2716 ], "__typename": [ - 84 + 85 ] }, "league_teams_bool_exp": { "_and": [ - 2711 + 2712 ], "_not": [ - 2711 + 2712 ], "_or": [ - 2711 + 2712 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "movements": [ - 2593 + 2594 ], "movements_aggregate": [ - 2586 + 2587 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "team_seasons": [ - 2675 + 2676 ], "team_seasons_aggregate": [ - 2668 + 2669 ], "__typename": [ - 84 + 85 ] }, "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "movements": [ - 2590 + 2591 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "team_seasons": [ - 2672 + 2673 ], "__typename": [ - 84 + 85 ] }, "league_teams_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_teams_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_teams_mutation_response": { @@ -46589,138 +46603,138 @@ export default { 41 ], "returning": [ - 2708 + 2709 ], "__typename": [ - 84 + 85 ] }, "league_teams_obj_rel_insert_input": { "data": [ - 2713 + 2714 ], "on_conflict": [ - 2718 + 2719 ], "__typename": [ - 84 + 85 ] }, "league_teams_on_conflict": { "constraint": [ - 2712 + 2713 ], "update_columns": [ - 2725 + 2726 ], "where": [ - 2711 + 2712 ], "__typename": [ - 84 + 85 ] }, "league_teams_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "movements_aggregate": [ - 2589 + 2590 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "team_seasons_aggregate": [ - 2671 + 2672 ], "__typename": [ - 84 + 85 ] }, "league_teams_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_teams_stream_cursor_input": { "initial_value": [ - 2724 + 2725 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "league_teams_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2722 + 2723 ], "where": [ - 2711 + 2712 ], "__typename": [ - 84 + 85 ] }, "lobbies": { "access": [ - 1058 + 1059 ], "created_at": [ - 5129 + 5153 ], "e_lobby_access": [ - 1053 + 1054 ], "id": [ - 6341 + 6365 ], "players": [ - 2746, + 2747, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -46730,19 +46744,19 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "players_aggregate": [ - 2747, + 2748, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -46752,27 +46766,27 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "__typename": [ - 84 + 85 ] }, "lobbies_aggregate": { "aggregate": [ - 2729 + 2730 ], "nodes": [ - 2727 + 2728 ], "__typename": [ - 84 + 85 ] }, "lobbies_aggregate_fields": { @@ -46780,7 +46794,7 @@ export default { 41, { "columns": [ - 2740, + 2741, "[lobbies_select_column!]" ], "distinct": [ @@ -46789,88 +46803,88 @@ export default { } ], "max": [ - 2733 + 2734 ], "min": [ - 2734 + 2735 ], "__typename": [ - 84 + 85 ] }, "lobbies_bool_exp": { "_and": [ - 2730 + 2731 ], "_not": [ - 2730 + 2731 ], "_or": [ - 2730 + 2731 ], "access": [ - 1059 + 1060 ], "created_at": [ - 5130 + 5154 ], "e_lobby_access": [ - 1056 + 1057 ], "id": [ - 6343 + 6367 ], "players": [ - 2757 + 2758 ], "players_aggregate": [ - 2748 + 2749 ], "__typename": [ - 84 + 85 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 1058 + 1059 ], "created_at": [ - 5129 + 5153 ], "e_lobby_access": [ - 1064 + 1065 ], "id": [ - 6341 + 6365 ], "players": [ - 2754 + 2755 ], "__typename": [ - 84 + 85 ] }, "lobbies_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "lobbies_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "lobbies_mutation_response": { @@ -46878,115 +46892,115 @@ export default { 41 ], "returning": [ - 2727 + 2728 ], "__typename": [ - 84 + 85 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 2732 + 2733 ], "on_conflict": [ - 2737 + 2738 ], "__typename": [ - 84 + 85 ] }, "lobbies_on_conflict": { "constraint": [ - 2731 + 2732 ], "update_columns": [ - 2744 + 2745 ], "where": [ - 2730 + 2731 ], "__typename": [ - 84 + 85 ] }, "lobbies_order_by": { "access": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "e_lobby_access": [ - 1066 + 1067 ], "id": [ - 3534 + 3558 ], "players_aggregate": [ - 2753 + 2754 ], "__typename": [ - 84 + 85 ] }, "lobbies_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 1058 + 1059 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 2743 + 2744 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 1058 + 1059 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2741 + 2742 ], "where": [ - 2730 + 2731 ], "__typename": [ - 84 + 85 ] }, "lobby_players": { @@ -46994,112 +47008,112 @@ export default { 6 ], "invited_by_steam_id": [ - 309 + 310 ], "lobby": [ - 2727 + 2728 ], "lobby_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "status": [ - 1079 + 1080 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate": { "aggregate": [ - 2752 + 2753 ], "nodes": [ - 2746 + 2747 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2749 + 2750 ], "bool_or": [ - 2750 + 2751 ], "count": [ - 2751 + 2752 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2770 + 2771 ], "distinct": [ 6 ], "filter": [ - 2757 + 2758 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2771 + 2772 ], "distinct": [ 6 ], "filter": [ - 2757 + 2758 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2769 + 2770 ], "distinct": [ 6 ], "filter": [ - 2757 + 2758 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_fields": { "avg": [ - 2755 + 2756 ], "count": [ 41, { "columns": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "distinct": [ @@ -47108,83 +47122,83 @@ export default { } ], "max": [ - 2761 + 2762 ], "min": [ - 2763 + 2764 ], "stddev": [ - 2773 + 2774 ], "stddev_pop": [ - 2775 + 2776 ], "stddev_samp": [ - 2777 + 2778 ], "sum": [ - 2781 + 2782 ], "var_pop": [ - 2785 + 2786 ], "var_samp": [ - 2787 + 2788 ], "variance": [ - 2789 + 2790 ], "__typename": [ - 84 + 85 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 2756 + 2757 ], "count": [ - 3534 + 3558 ], "max": [ - 2762 + 2763 ], "min": [ - 2764 + 2765 ], "stddev": [ - 2774 + 2775 ], "stddev_pop": [ - 2776 + 2777 ], "stddev_samp": [ - 2778 + 2779 ], "sum": [ - 2782 + 2783 ], "var_pop": [ - 2786 + 2787 ], "var_samp": [ - 2788 + 2789 ], "variance": [ - 2790 + 2791 ], "__typename": [ - 84 + 85 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 2760 + 2761 ], "on_conflict": [ - 2766 + 2767 ], "__typename": [ - 84 + 85 ] }, "lobby_players_avg_fields": { @@ -47195,65 +47209,65 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_bool_exp": { "_and": [ - 2757 + 2758 ], "_not": [ - 2757 + 2758 ], "_or": [ - 2757 + 2758 ], "captain": [ 7 ], "invited_by_steam_id": [ - 311 + 312 ], "lobby": [ - 2730 + 2731 ], "lobby_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "status": [ - 1080 + 1081 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_insert_input": { @@ -47261,81 +47275,81 @@ export default { 6 ], "invited_by_steam_id": [ - 309 + 310 ], "lobby": [ - 2736 + 2737 ], "lobby_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "status": [ - 1079 + 1080 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 309 + 310 ], "lobby_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "lobby_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 309 + 310 ], "lobby_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "lobby_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_mutation_response": { @@ -47343,61 +47357,61 @@ export default { 41 ], "returning": [ - 2746 + 2747 ], "__typename": [ - 84 + 85 ] }, "lobby_players_on_conflict": { "constraint": [ - 2758 + 2759 ], "update_columns": [ - 2783 + 2784 ], "where": [ - 2757 + 2758 ], "__typename": [ - 84 + 85 ] }, "lobby_players_order_by": { "captain": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "lobby": [ - 2738 + 2739 ], "lobby_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "status": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_select_column": {}, @@ -47408,19 +47422,19 @@ export default { 6 ], "invited_by_steam_id": [ - 309 + 310 ], "lobby_id": [ - 6341 + 6365 ], "status": [ - 1079 + 1080 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_fields": { @@ -47431,18 +47445,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_pop_fields": { @@ -47453,18 +47467,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_samp_fields": { @@ -47475,29 +47489,29 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2780 + 2781 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "lobby_players_stream_cursor_value_input": { @@ -47505,56 +47519,56 @@ export default { 6 ], "invited_by_steam_id": [ - 309 + 310 ], "lobby_id": [ - 6341 + 6365 ], "status": [ - 1079 + 1080 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2759 + 2760 ], "_set": [ - 2772 + 2773 ], "where": [ - 2757 + 2758 ], "__typename": [ - 84 + 85 ] }, "lobby_players_var_pop_fields": { @@ -47565,18 +47579,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_var_samp_fields": { @@ -47587,18 +47601,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "lobby_players_variance_fields": { @@ -47609,35 +47623,353 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 + ] + }, + "map_callouts": { + "boxes": [ + 2349, + { + "path": [ + 85 + ] + } + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_aggregate": { + "aggregate": [ + 2794 + ], + "nodes": [ + 2792 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_aggregate_fields": { + "count": [ + 41, + { + "columns": [ + 2809, + "[map_callouts_select_column!]" + ], + "distinct": [ + 6 + ] + } + ], + "max": [ + 2802 + ], + "min": [ + 2803 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_append_input": { + "boxes": [ + 2349 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_bool_exp": { + "_and": [ + 2796 + ], + "_not": [ + 2796 + ], + "_or": [ + 2796 + ], + "boxes": [ + 2351 + ], + "map_name": [ + 87 + ], + "name": [ + 87 + ], + "source": [ + 87 + ], + "updated_at": [ + 5154 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_constraint": {}, + "map_callouts_delete_at_path_input": { + "boxes": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_delete_elem_input": { + "boxes": [ + 41 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_delete_key_input": { + "boxes": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_insert_input": { + "boxes": [ + 2349 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_max_fields": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_min_fields": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_mutation_response": { + "affected_rows": [ + 41 + ], + "returning": [ + 2792 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_on_conflict": { + "constraint": [ + 2797 + ], + "update_columns": [ + 2813 + ], + "where": [ + 2796 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_order_by": { + "boxes": [ + 3558 + ], + "map_name": [ + 3558 + ], + "name": [ + 3558 + ], + "source": [ + 3558 + ], + "updated_at": [ + 3558 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_pk_columns_input": { + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_prepend_input": { + "boxes": [ + 2349 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_select_column": {}, + "map_callouts_set_input": { + "boxes": [ + 2349 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_stream_cursor_input": { + "initial_value": [ + 2812 + ], + "ordering": [ + 393 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_stream_cursor_value_input": { + "boxes": [ + 2349 + ], + "map_name": [ + 85 + ], + "name": [ + 85 + ], + "source": [ + 85 + ], + "updated_at": [ + 5153 + ], + "__typename": [ + 85 + ] + }, + "map_callouts_update_column": {}, + "map_callouts_updates": { + "_append": [ + 2795 + ], + "_delete_at_path": [ + 2798 + ], + "_delete_elem": [ + 2799 + ], + "_delete_key": [ + 2800 + ], + "_prepend": [ + 2808 + ], + "_set": [ + 2810 + ], + "where": [ + 2796 + ], + "__typename": [ + 85 ] }, "map_pools": { "e_type": [ - 1094 + 1095 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "maps": [ - 7001, + 7025, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -47647,19 +47979,19 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], "maps_aggregate": [ - 7002, + 7026, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -47669,11 +48001,11 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], @@ -47681,21 +48013,21 @@ export default { 6 ], "type": [ - 1099 + 1100 ], "__typename": [ - 84 + 85 ] }, "map_pools_aggregate": { "aggregate": [ - 2793 + 2817 ], "nodes": [ - 2791 + 2815 ], "__typename": [ - 84 + 85 ] }, "map_pools_aggregate_fields": { @@ -47703,7 +48035,7 @@ export default { 41, { "columns": [ - 2804, + 2828, "[map_pools_select_column!]" ], "distinct": [ @@ -47712,88 +48044,88 @@ export default { } ], "max": [ - 2797 + 2821 ], "min": [ - 2798 + 2822 ], "__typename": [ - 84 + 85 ] }, "map_pools_bool_exp": { "_and": [ - 2794 + 2818 ], "_not": [ - 2794 + 2818 ], "_or": [ - 2794 + 2818 ], "e_type": [ - 1097 + 1098 ], "enabled": [ 7 ], "id": [ - 6343 + 6367 ], "maps": [ - 7010 + 7034 ], "maps_aggregate": [ - 7003 + 7027 ], "seed": [ 7 ], "type": [ - 1100 + 1101 ], "__typename": [ - 84 + 85 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 1105 + 1106 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "maps": [ - 7009 + 7033 ], "seed": [ 6 ], "type": [ - 1099 + 1100 ], "__typename": [ - 84 + 85 ] }, "map_pools_max_fields": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "map_pools_min_fields": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "map_pools_mutation_response": { @@ -47801,66 +48133,66 @@ export default { 41 ], "returning": [ - 2791 + 2815 ], "__typename": [ - 84 + 85 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 2796 + 2820 ], "on_conflict": [ - 2801 + 2825 ], "__typename": [ - 84 + 85 ] }, "map_pools_on_conflict": { "constraint": [ - 2795 + 2819 ], "update_columns": [ - 2808 + 2832 ], "where": [ - 2794 + 2818 ], "__typename": [ - 84 + 85 ] }, "map_pools_order_by": { "e_type": [ - 1107 + 1108 ], "enabled": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "maps_aggregate": [ - 7008 + 7032 ], "seed": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "map_pools_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "map_pools_select_column": {}, @@ -47869,27 +48201,27 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "seed": [ 6 ], "type": [ - 1099 + 1100 ], "__typename": [ - 84 + 85 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 2807 + 2831 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "map_pools_stream_cursor_value_input": { @@ -47897,28 +48229,28 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "seed": [ 6 ], "type": [ - 1099 + 1100 ], "__typename": [ - 84 + 85 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2805 + 2829 ], "where": [ - 2794 + 2818 ], "__typename": [ - 84 + 85 ] }, "maps": { @@ -47926,25 +48258,25 @@ export default { 6 ], "deleted_at": [ - 5129 + 5153 ], "e_match_type": [ - 1217 + 1218 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "match_maps": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -47954,19 +48286,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -47976,19 +48308,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47998,19 +48330,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -48020,107 +48352,107 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 1222 + 1223 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate": { "aggregate": [ - 2816 + 2840 ], "nodes": [ - 2810 + 2834 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 2813 + 2837 ], "bool_or": [ - 2814 + 2838 ], "count": [ - 2815 + 2839 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2832 + 2856 ], "distinct": [ 6 ], "filter": [ - 2819 + 2843 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2833 + 2857 ], "distinct": [ 6 ], "filter": [ - 2819 + 2843 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2831 + 2855 ], "distinct": [ 6 ], "filter": [ - 2819 + 2843 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_fields": { @@ -48128,7 +48460,7 @@ export default { 41, { "columns": [ - 2831, + 2855, "[maps_select_column!]" ], "distinct": [ @@ -48137,97 +48469,97 @@ export default { } ], "max": [ - 2822 + 2846 ], "min": [ - 2824 + 2848 ], "__typename": [ - 84 + 85 ] }, "maps_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 2823 + 2847 ], "min": [ - 2825 + 2849 ], "__typename": [ - 84 + 85 ] }, "maps_arr_rel_insert_input": { "data": [ - 2821 + 2845 ], "on_conflict": [ - 2828 + 2852 ], "__typename": [ - 84 + 85 ] }, "maps_bool_exp": { "_and": [ - 2819 + 2843 ], "_not": [ - 2819 + 2843 ], "_or": [ - 2819 + 2843 ], "active_pool": [ 7 ], "deleted_at": [ - 5130 + 5154 ], "e_match_type": [ - 1220 + 1221 ], "enabled": [ 7 ], "id": [ - 6343 + 6367 ], "label": [ - 86 + 87 ], "match_maps": [ - 3143 + 3167 ], "match_maps_aggregate": [ - 3136 + 3160 ], "match_veto_picks": [ - 3115 + 3139 ], "match_veto_picks_aggregate": [ - 3108 + 3132 ], "name": [ - 86 + 87 ], "patch": [ - 86 + 87 ], "poster": [ - 86 + 87 ], "type": [ - 1223 + 1224 ], "workshop_map_id": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "maps_constraint": {}, @@ -48236,147 +48568,147 @@ export default { 6 ], "deleted_at": [ - 5129 + 5153 ], "e_match_type": [ - 1228 + 1229 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "match_maps": [ - 3140 + 3164 ], "match_veto_picks": [ - 3114 + 3138 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 1222 + 1223 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_max_fields": { "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_max_order_by": { "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "maps_min_fields": { "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_min_order_by": { "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "maps_mutation_response": { @@ -48384,87 +48716,87 @@ export default { 41 ], "returning": [ - 2810 + 2834 ], "__typename": [ - 84 + 85 ] }, "maps_obj_rel_insert_input": { "data": [ - 2821 + 2845 ], "on_conflict": [ - 2828 + 2852 ], "__typename": [ - 84 + 85 ] }, "maps_on_conflict": { "constraint": [ - 2820 + 2844 ], "update_columns": [ - 2837 + 2861 ], "where": [ - 2819 + 2843 ], "__typename": [ - 84 + 85 ] }, "maps_order_by": { "active_pool": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "e_match_type": [ - 1230 + 1231 ], "enabled": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "match_maps_aggregate": [ - 3139 + 3163 ], "match_veto_picks_aggregate": [ - 3113 + 3137 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "maps_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "maps_select_column": {}, @@ -48475,45 +48807,45 @@ export default { 6 ], "deleted_at": [ - 5129 + 5153 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 1222 + 1223 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_stream_cursor_input": { "initial_value": [ - 2836 + 2860 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "maps_stream_cursor_value_input": { @@ -48521,84 +48853,84 @@ export default { 6 ], "deleted_at": [ - 5129 + 5153 ], "enabled": [ 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 1222 + 1223 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 2834 + 2858 ], "where": [ - 2819 + 2843 ], "__typename": [ - 84 + 85 ] }, "match_clips": { "created_at": [ - 5129 + 5153 ], "download_url": [ - 84 + 85 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map": [ - 3134 + 3158 ], "match_map_demo": [ - 3014 + 3038 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "render_jobs": [ - 341, + 342, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -48608,19 +48940,19 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "render_jobs_aggregate": [ - 342, + 343, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -48630,11 +48962,11 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], @@ -48642,84 +48974,84 @@ export default { 41 ], "size": [ - 309 + 310 ], "target": [ - 4492 + 4516 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_download_url": [ - 84 + 85 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user": [ - 4492 + 4516 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "visibility": [ - 1120 + 1121 ], "__typename": [ - 84 + 85 ] }, "match_clips_aggregate": { "aggregate": [ - 2843 + 2867 ], "nodes": [ - 2839 + 2863 ], "__typename": [ - 84 + 85 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 2842 + 2866 ], "__typename": [ - 84 + 85 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2861 + 2885 ], "distinct": [ 6 ], "filter": [ - 2848 + 2872 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_clips_aggregate_fields": { "avg": [ - 2846 + 2870 ], "count": [ 41, { "columns": [ - 2861, + 2885, "[match_clips_select_column!]" ], "distinct": [ @@ -48728,83 +49060,83 @@ export default { } ], "max": [ - 2852 + 2876 ], "min": [ - 2854 + 2878 ], "stddev": [ - 2863 + 2887 ], "stddev_pop": [ - 2865 + 2889 ], "stddev_samp": [ - 2867 + 2891 ], "sum": [ - 2871 + 2895 ], "var_pop": [ - 2875 + 2899 ], "var_samp": [ - 2877 + 2901 ], "variance": [ - 2879 + 2903 ], "__typename": [ - 84 + 85 ] }, "match_clips_aggregate_order_by": { "avg": [ - 2847 + 2871 ], "count": [ - 3534 + 3558 ], "max": [ - 2853 + 2877 ], "min": [ - 2855 + 2879 ], "stddev": [ - 2864 + 2888 ], "stddev_pop": [ - 2866 + 2890 ], "stddev_samp": [ - 2868 + 2892 ], "sum": [ - 2872 + 2896 ], "var_pop": [ - 2876 + 2900 ], "var_samp": [ - 2878 + 2902 ], "variance": [ - 2880 + 2904 ], "__typename": [ - 84 + 85 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 2851 + 2875 ], "on_conflict": [ - 2858 + 2882 ], "__typename": [ - 84 + 85 ] }, "match_clips_avg_fields": { @@ -48830,116 +49162,116 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_bool_exp": { "_and": [ - 2848 + 2872 ], "_not": [ - 2848 + 2872 ], "_or": [ - 2848 + 2872 ], "created_at": [ - 5130 + 5154 ], "download_url": [ - 86 + 87 ], "duration_ms": [ 42 ], "file": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "kills_count": [ 42 ], "match_map": [ - 3143 + 3167 ], "match_map_demo": [ - 3026 + 3050 ], "match_map_demo_id": [ - 6343 + 6367 ], "match_map_id": [ - 6343 + 6367 ], "render_jobs": [ - 353 + 354 ], "render_jobs_aggregate": [ - 343 + 344 ], "round": [ 42 ], "size": [ - 311 + 312 ], "target": [ - 4496 + 4520 ], "target_steam_id": [ - 311 + 312 ], "thumbnail_download_url": [ - 86 + 87 ], "thumbnail_url": [ - 86 + 87 ], "title": [ - 86 + 87 ], "user": [ - 4496 + 4520 ], "user_steam_id": [ - 311 + 312 ], "views_count": [ 42 ], "visibility": [ - 1121 + 1122 ], "__typename": [ - 84 + 85 ] }, "match_clips_constraint": {}, @@ -48954,284 +49286,284 @@ export default { 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_clips_insert_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map": [ - 3152 + 3176 ], "match_map_demo": [ - 3038 + 3062 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "render_jobs": [ - 350 + 351 ], "round": [ 41 ], "size": [ - 309 + 310 ], "target": [ - 4503 + 4527 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user": [ - 4503 + 4527 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "visibility": [ - 1120 + 1121 ], "__typename": [ - 84 + 85 ] }, "match_clips_max_fields": { "created_at": [ - 5129 + 5153 ], "download_url": [ - 84 + 85 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_download_url": [ - 84 + 85 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_clips_max_order_by": { "created_at": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "thumbnail_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_min_fields": { "created_at": [ - 5129 + 5153 ], "download_url": [ - 84 + 85 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_download_url": [ - 84 + 85 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_clips_min_order_by": { "created_at": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "thumbnail_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_mutation_response": { @@ -49239,165 +49571,165 @@ export default { 41 ], "returning": [ - 2839 + 2863 ], "__typename": [ - 84 + 85 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 2851 + 2875 ], "on_conflict": [ - 2858 + 2882 ], "__typename": [ - 84 + 85 ] }, "match_clips_on_conflict": { "constraint": [ - 2849 + 2873 ], "update_columns": [ - 2873 + 2897 ], "where": [ - 2848 + 2872 ], "__typename": [ - 84 + 85 ] }, "match_clips_order_by": { "created_at": [ - 3534 + 3558 ], "download_url": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_demo": [ - 3040 + 3064 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "render_jobs_aggregate": [ - 348 + 349 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target": [ - 4505 + 4529 ], "target_steam_id": [ - 3534 + 3558 ], "thumbnail_download_url": [ - 3534 + 3558 ], "thumbnail_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "user": [ - 4505 + 4529 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "visibility": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "visibility": [ - 1120 + 1121 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_fields": { @@ -49423,33 +49755,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_pop_fields": { @@ -49475,33 +49807,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_samp_fields": { @@ -49527,94 +49859,94 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 2870 + 2894 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "kills_count": [ 41 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "thumbnail_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "visibility": [ - 1120 + 1121 ], "__typename": [ - 84 + 85 ] }, "match_clips_sum_fields": { @@ -49628,60 +49960,60 @@ export default { 41 ], "size": [ - 309 + 310 ], "target_steam_id": [ - 309 + 310 ], "user_steam_id": [ - 309 + 310 ], "views_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2850 + 2874 ], "_set": [ - 2862 + 2886 ], "where": [ - 2848 + 2872 ], "__typename": [ - 84 + 85 ] }, "match_clips_var_pop_fields": { @@ -49707,33 +50039,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_var_samp_fields": { @@ -49759,33 +50091,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_clips_variance_fields": { @@ -49811,147 +50143,147 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 3534 + 3558 ], "kills_count": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "target_steam_id": [ - 3534 + 3558 ], "user_steam_id": [ - 3534 + 3558 ], "views_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_demo": [ - 3014 + 3038 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "status_history": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "stream_url": [ - 84 + 85 ], "watcher": [ - 4492 + 4516 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 2885 + 2909 ], "nodes": [ - 2881 + 2905 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2884 + 2908 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2907 + 2931 ], "distinct": [ 6 ], "filter": [ - 2891 + 2915 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2889 + 2913 ], "count": [ 41, { "columns": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -49960,91 +50292,91 @@ export default { } ], "max": [ - 2898 + 2922 ], "min": [ - 2900 + 2924 ], "stddev": [ - 2909 + 2933 ], "stddev_pop": [ - 2911 + 2935 ], "stddev_samp": [ - 2913 + 2937 ], "sum": [ - 2917 + 2941 ], "var_pop": [ - 2921 + 2945 ], "var_samp": [ - 2923 + 2947 ], "variance": [ - 2925 + 2949 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2890 + 2914 ], "count": [ - 3534 + 3558 ], "max": [ - 2899 + 2923 ], "min": [ - 2901 + 2925 ], "stddev": [ - 2910 + 2934 ], "stddev_pop": [ - 2912 + 2936 ], "stddev_samp": [ - 2914 + 2938 ], "sum": [ - 2918 + 2942 ], "var_pop": [ - 2922 + 2946 ], "var_samp": [ - 2924 + 2948 ], "variance": [ - 2926 + 2950 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_append_input": { "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2897 + 2921 ], "on_conflict": [ - 2903 + 2927 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_avg_fields": { @@ -50052,95 +50384,95 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 2891 + 2915 ], "_not": [ - 2891 + 2915 ], "_or": [ - 2891 + 2915 ], "created_at": [ - 5130 + 5154 ], "error_message": [ - 86 + 87 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "k8s_job_name": [ - 86 + 87 ], "last_activity_at": [ - 5130 + 5154 ], "last_status_at": [ - 5130 + 5154 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_demo": [ - 3026 + 3050 ], "match_map_demo_id": [ - 6343 + 6367 ], "match_map_id": [ - 6343 + 6367 ], "status": [ - 86 + 87 ], "status_history": [ - 2350 + 2351 ], "stream_url": [ - 86 + 87 ], "watcher": [ - 4496 + 4520 ], "watcher_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_delete_elem_input": { @@ -50148,261 +50480,261 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_demo": [ - 3038 + 3062 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "watcher": [ - 4503 + 4527 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "stream_url": [ - 84 + 85 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_activity_at": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "stream_url": [ - 84 + 85 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_activity_at": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_mutation_response": { @@ -50410,150 +50742,150 @@ export default { 41 ], "returning": [ - 2881 + 2905 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 2892 + 2916 ], "update_columns": [ - 2919 + 2943 ], "where": [ - 2891 + 2915 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_order_by": { "created_at": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_activity_at": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_demo": [ - 3040 + 3064 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "status_history": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "watcher": [ - 4505 + 4529 ], "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_fields": { @@ -50561,15 +50893,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_pop_fields": { @@ -50577,15 +50909,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_samp_fields": { @@ -50593,119 +50925,119 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2916 + 2940 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_activity_at": [ - 5129 + 5153 ], "last_status_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2887 + 2911 ], "_delete_at_path": [ - 2893 + 2917 ], "_delete_elem": [ - 2894 + 2918 ], "_delete_key": [ - 2895 + 2919 ], "_inc": [ - 2896 + 2920 ], "_prepend": [ - 2906 + 2930 ], "_set": [ - 2908 + 2932 ], "where": [ - 2891 + 2915 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_var_pop_fields": { @@ -50713,15 +51045,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_var_samp_fields": { @@ -50729,15 +51061,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_variance_fields": { @@ -50745,15 +51077,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players": { @@ -50764,124 +51096,124 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_connected": [ 6 ], "lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "party_source": [ - 1181 + 1182 ], "placeholder_name": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 2933 + 2957 ], "nodes": [ - 2927 + 2951 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2930 + 2954 ], "bool_or": [ - 2931 + 2955 ], "count": [ - 2932 + 2956 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2951 + 2975 ], "distinct": [ 6 ], "filter": [ - 2938 + 2962 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2952 + 2976 ], "distinct": [ 6 ], "filter": [ - 2938 + 2962 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2950 + 2974 ], "distinct": [ 6 ], "filter": [ - 2938 + 2962 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 2936 + 2960 ], "count": [ 41, { "columns": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -50890,83 +51222,83 @@ export default { } ], "max": [ - 2942 + 2966 ], "min": [ - 2944 + 2968 ], "stddev": [ - 2954 + 2978 ], "stddev_pop": [ - 2956 + 2980 ], "stddev_samp": [ - 2958 + 2982 ], "sum": [ - 2962 + 2986 ], "var_pop": [ - 2966 + 2990 ], "var_samp": [ - 2968 + 2992 ], "variance": [ - 2970 + 2994 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2937 + 2961 ], "count": [ - 3534 + 3558 ], "max": [ - 2943 + 2967 ], "min": [ - 2945 + 2969 ], "stddev": [ - 2955 + 2979 ], "stddev_pop": [ - 2957 + 2981 ], "stddev_samp": [ - 2959 + 2983 ], "sum": [ - 2963 + 2987 ], "var_pop": [ - 2967 + 2991 ], "var_samp": [ - 2969 + 2993 ], "variance": [ - 2971 + 2995 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2941 + 2965 ], "on_conflict": [ - 2947 + 2971 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_avg_fields": { @@ -50974,26 +51306,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_bool_exp": { "_and": [ - 2938 + 2962 ], "_not": [ - 2938 + 2962 ], "_or": [ - 2938 + 2962 ], "captain": [ 7 @@ -51002,46 +51334,46 @@ export default { 7 ], "discord_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "is_connected": [ 7 ], "lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "party_id": [ - 6343 + 6367 ], "party_source": [ - 1182 + 1183 ], "placeholder_name": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_insert_input": { @@ -51052,129 +51384,129 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_connected": [ 6 ], "lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "party_source": [ - 1181 + 1182 ], "placeholder_name": [ - 84 + 85 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "party_id": [ - 3534 + 3558 ], "placeholder_name": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "party_id": [ - 3534 + 3558 ], "placeholder_name": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_mutation_response": { @@ -51182,73 +51514,73 @@ export default { 41 ], "returning": [ - 2927 + 2951 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 2939 + 2963 ], "update_columns": [ - 2964 + 2988 ], "where": [ - 2938 + 2962 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_order_by": { "captain": [ - 3534 + 3558 ], "checked_in": [ - 3534 + 3558 ], "discord_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_connected": [ - 3534 + 3558 ], "lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "party_id": [ - 3534 + 3558 ], "party_source": [ - 3534 + 3558 ], "placeholder_name": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_select_column": {}, @@ -51262,31 +51594,31 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_connected": [ 6 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "party_source": [ - 1181 + 1182 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_fields": { @@ -51294,15 +51626,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_pop_fields": { @@ -51310,15 +51642,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_samp_fields": { @@ -51326,26 +51658,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2961 + 2985 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -51356,62 +51688,62 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_connected": [ 6 ], "match_lineup_id": [ - 6341 + 6365 ], "party_id": [ - 6341 + 6365 ], "party_source": [ - 1181 + 1182 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2940 + 2964 ], "_set": [ - 2953 + 2977 ], "where": [ - 2938 + 2962 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_var_pop_fields": { @@ -51419,15 +51751,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_var_samp_fields": { @@ -51435,15 +51767,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_variance_fields": { @@ -51451,15 +51783,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups": { @@ -51473,16 +51805,16 @@ export default { 6 ], "captain": [ - 6497 + 6521 ], "coach": [ - 4492 + 4516 ], "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "is_on_lineup": [ 6 @@ -51497,10 +51829,10 @@ export default { 6 ], "lineup_players": [ - 2927, + 2951, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -51510,19 +51842,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "lineup_players_aggregate": [ - 2928, + 2952, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -51532,25 +51864,25 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51560,19 +51892,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -51582,75 +51914,75 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "name": [ - 84 + 85 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_aggregate": { "aggregate": [ - 2976 + 3000 ], "nodes": [ - 2972 + 2996 ], "__typename": [ - 84 + 85 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 2975 + 2999 ], "__typename": [ - 84 + 85 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2994 + 3018 ], "distinct": [ 6 ], "filter": [ - 2981 + 3005 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_lineups_aggregate_fields": { "avg": [ - 2979 + 3003 ], "count": [ 41, { "columns": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "distinct": [ @@ -51659,83 +51991,83 @@ export default { } ], "max": [ - 2985 + 3009 ], "min": [ - 2987 + 3011 ], "stddev": [ - 2996 + 3020 ], "stddev_pop": [ - 2998 + 3022 ], "stddev_samp": [ - 3000 + 3024 ], "sum": [ - 3004 + 3028 ], "var_pop": [ - 3008 + 3032 ], "var_samp": [ - 3010 + 3034 ], "variance": [ - 3012 + 3036 ], "__typename": [ - 84 + 85 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 2980 + 3004 ], "count": [ - 3534 + 3558 ], "max": [ - 2986 + 3010 ], "min": [ - 2988 + 3012 ], "stddev": [ - 2997 + 3021 ], "stddev_pop": [ - 2999 + 3023 ], "stddev_samp": [ - 3001 + 3025 ], "sum": [ - 3005 + 3029 ], "var_pop": [ - 3009 + 3033 ], "var_samp": [ - 3011 + 3035 ], "variance": [ - 3013 + 3037 ], "__typename": [ - 84 + 85 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 2984 + 3008 ], "on_conflict": [ - 2991 + 3015 ], "__typename": [ - 84 + 85 ] }, "match_lineups_avg_fields": { @@ -51743,26 +52075,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_bool_exp": { "_and": [ - 2981 + 3005 ], "_not": [ - 2981 + 3005 ], "_or": [ - 2981 + 3005 ], "can_pick_map_veto": [ 7 @@ -51774,16 +52106,16 @@ export default { 7 ], "captain": [ - 6501 + 6525 ], "coach": [ - 4496 + 4520 ], "coach_steam_id": [ - 311 + 312 ], "id": [ - 6343 + 6367 ], "is_on_lineup": [ 7 @@ -51798,170 +52130,170 @@ export default { 7 ], "lineup_players": [ - 2938 + 2962 ], "lineup_players_aggregate": [ - 2929 + 2953 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_veto_picks": [ - 3115 + 3139 ], "match_veto_picks_aggregate": [ - 3108 + 3132 ], "name": [ - 86 + 87 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "team_name": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineups_insert_input": { "captain": [ - 6507 + 6531 ], "coach": [ - 4503 + 4527 ], "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "lineup_players": [ - 2935 + 2959 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_veto_picks": [ - 3114 + 3138 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "team_name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "team_name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_mutation_response": { @@ -51969,126 +52301,126 @@ export default { 41 ], "returning": [ - 2972 + 2996 ], "__typename": [ - 84 + 85 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 2984 + 3008 ], "on_conflict": [ - 2991 + 3015 ], "__typename": [ - 84 + 85 ] }, "match_lineups_on_conflict": { "constraint": [ - 2982 + 3006 ], "update_columns": [ - 3006 + 3030 ], "where": [ - 2981 + 3005 ], "__typename": [ - 84 + 85 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 3534 + 3558 ], "can_pick_region_veto": [ - 3534 + 3558 ], "can_update_lineup": [ - 3534 + 3558 ], "captain": [ - 6508 + 6532 ], "coach": [ - 4505 + 4529 ], "coach_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_on_lineup": [ - 3534 + 3558 ], "is_picking_map_veto": [ - 3534 + 3558 ], "is_picking_region_veto": [ - 3534 + 3558 ], "is_ready": [ - 3534 + 3558 ], "lineup_players_aggregate": [ - 2934 + 2958 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_veto_picks_aggregate": [ - 3113 + 3137 ], "name": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "team_name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_fields": { @@ -52096,15 +52428,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_pop_fields": { @@ -52112,15 +52444,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_samp_fields": { @@ -52128,77 +52460,77 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 3003 + 3027 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "team_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2983 + 3007 ], "_set": [ - 2995 + 3019 ], "where": [ - 2981 + 3005 ], "__typename": [ - 84 + 85 ] }, "match_lineups_var_pop_fields": { @@ -52206,15 +52538,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_var_samp_fields": { @@ -52222,15 +52554,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_lineups_variance_fields": { @@ -52238,31 +52570,31 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos": { "bombs": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "clip_render_jobs": [ - 341, + 342, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -52272,19 +52604,19 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "clip_render_jobs_aggregate": [ - 342, + 343, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -52294,25 +52626,25 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "demo_sessions": [ - 2881, + 2905, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -52322,19 +52654,19 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "demo_sessions_aggregate": [ - 2882, + 2906, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -52344,48 +52676,48 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "download_url": [ - 84 + 85 ], "duration_seconds": [ 32 ], "file": [ - 84 + 85 ], "geometry_validated": [ 6 ], "id": [ - 6341 + 6365 ], "kills": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "map_name": [ - 84 + 85 ], "match": [ - 3318 + 3342 ], "match_clips": [ - 2839, + 2863, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -52395,19 +52727,19 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_aggregate": [ - 2840, + 2864, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -52417,54 +52749,54 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 ], "playback_url": [ - 84 + 85 ], "playback_version": [ 41 ], "players": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "round_ticks": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -52478,97 +52810,97 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate": { "aggregate": [ - 3020 + 3044 ], "nodes": [ - 3014 + 3038 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 3017 + 3041 ], "bool_or": [ - 3018 + 3042 ], "count": [ - 3019 + 3043 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 3044 + 3068 ], "distinct": [ 6 ], "filter": [ - 3026 + 3050 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 3045 + 3069 ], "distinct": [ 6 ], "filter": [ - 3026 + 3050 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 3043 + 3067 ], "distinct": [ 6 ], "filter": [ - 3026 + 3050 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 3024 + 3048 ], "count": [ 41, { "columns": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "distinct": [ @@ -52577,100 +52909,100 @@ export default { } ], "max": [ - 3033 + 3057 ], "min": [ - 3035 + 3059 ], "stddev": [ - 3047 + 3071 ], "stddev_pop": [ - 3049 + 3073 ], "stddev_samp": [ - 3051 + 3075 ], "sum": [ - 3055 + 3079 ], "var_pop": [ - 3059 + 3083 ], "var_samp": [ - 3061 + 3085 ], "variance": [ - 3063 + 3087 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 3025 + 3049 ], "count": [ - 3534 + 3558 ], "max": [ - 3034 + 3058 ], "min": [ - 3036 + 3060 ], "stddev": [ - 3048 + 3072 ], "stddev_pop": [ - 3050 + 3074 ], "stddev_samp": [ - 3052 + 3076 ], "sum": [ - 3056 + 3080 ], "var_pop": [ - 3060 + 3084 ], "var_samp": [ - 3062 + 3086 ], "variance": [ - 3064 + 3088 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_append_input": { "bombs": [ - 2348 + 2349 ], "kills": [ - 2348 + 2349 ], "players": [ - 2348 + 2349 ], "round_ticks": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 3032 + 3056 ], "on_conflict": [ - 3039 + 3063 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_avg_fields": { @@ -52696,128 +53028,128 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_bool_exp": { "_and": [ - 3026 + 3050 ], "_not": [ - 3026 + 3050 ], "_or": [ - 3026 + 3050 ], "bombs": [ - 2350 + 2351 ], "clip_render_jobs": [ - 353 + 354 ], "clip_render_jobs_aggregate": [ - 343 + 344 ], "created_at": [ - 5130 + 5154 ], "cs2_build": [ - 86 + 87 ], "demo_sessions": [ - 2891 + 2915 ], "demo_sessions_aggregate": [ - 2883 + 2907 ], "download_url": [ - 86 + 87 ], "duration_seconds": [ 33 ], "file": [ - 86 + 87 ], "geometry_validated": [ 7 ], "id": [ - 6343 + 6367 ], "kills": [ - 2350 + 2351 ], "map_name": [ - 86 + 87 ], "match": [ - 3329 + 3353 ], "match_clips": [ - 2848 + 2872 ], "match_clips_aggregate": [ - 2841 + 2865 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "metadata_parsed_at": [ - 5130 + 5154 ], "parser_version": [ 42 ], "playback_file": [ - 86 + 87 ], "playback_size": [ 42 ], "playback_url": [ - 86 + 87 ], "playback_version": [ 42 ], "players": [ - 2350 + 2351 ], "round_ticks": [ - 2350 + 2351 ], "size": [ 42 @@ -52829,28 +53161,28 @@ export default { 42 ], "workshop_id": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 84 + 85 ], "kills": [ - 84 + 85 ], "players": [ - 84 + 85 ], "round_ticks": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_delete_elem_input": { @@ -52867,24 +53199,24 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 84 + 85 ], "kills": [ - 84 + 85 ], "players": [ - 84 + 85 ], "round_ticks": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_inc_input": { @@ -52907,63 +53239,63 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_insert_input": { "bombs": [ - 2348 + 2349 ], "clip_render_jobs": [ - 350 + 351 ], "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "demo_sessions": [ - 2888 + 2912 ], "file": [ - 84 + 85 ], "geometry_validated": [ 6 ], "id": [ - 6341 + 6365 ], "kills": [ - 2348 + 2349 ], "map_name": [ - 84 + 85 ], "match": [ - 3338 + 3362 ], "match_clips": [ - 2845 + 2869 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 @@ -52972,10 +53304,10 @@ export default { 41 ], "players": [ - 2348 + 2349 ], "round_ticks": [ - 2348 + 2349 ], "size": [ 41 @@ -52987,54 +53319,54 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_max_fields": { "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "download_url": [ - 84 + 85 ], "duration_seconds": [ 32 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 ], "playback_url": [ - 84 + 85 ], "playback_version": [ 41 @@ -53049,110 +53381,110 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_max_order_by": { "created_at": [ - 3534 + 3558 ], "cs2_build": [ - 3534 + 3558 ], "duration_seconds": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "metadata_parsed_at": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_file": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "workshop_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_min_fields": { "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "download_url": [ - 84 + 85 ], "duration_seconds": [ 32 ], "file": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 ], "playback_url": [ - 84 + 85 ], "playback_version": [ 41 @@ -53167,66 +53499,66 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_min_order_by": { "created_at": [ - 3534 + 3558 ], "cs2_build": [ - 3534 + 3558 ], "duration_seconds": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "metadata_parsed_at": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_file": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "workshop_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_mutation_response": { @@ -53234,152 +53566,152 @@ export default { 41 ], "returning": [ - 3014 + 3038 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 3032 + 3056 ], "on_conflict": [ - 3039 + 3063 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_on_conflict": { "constraint": [ - 3027 + 3051 ], "update_columns": [ - 3057 + 3081 ], "where": [ - 3026 + 3050 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_order_by": { "bombs": [ - 3534 + 3558 ], "clip_render_jobs_aggregate": [ - 348 + 349 ], "created_at": [ - 3534 + 3558 ], "cs2_build": [ - 3534 + 3558 ], "demo_sessions_aggregate": [ - 2886 + 2910 ], "download_url": [ - 3534 + 3558 ], "duration_seconds": [ - 3534 + 3558 ], "file": [ - 3534 + 3558 ], "geometry_validated": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_clips_aggregate": [ - 2844 + 2868 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "metadata_parsed_at": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_file": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_url": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "players": [ - 3534 + 3558 ], "round_ticks": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "workshop_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_prepend_input": { "bombs": [ - 2348 + 2349 ], "kills": [ - 2348 + 2349 ], "players": [ - 2348 + 2349 ], "round_ticks": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_select_column": {}, @@ -53387,43 +53719,43 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 2348 + 2349 ], "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "file": [ - 84 + 85 ], "geometry_validated": [ 6 ], "id": [ - 6341 + 6365 ], "kills": [ - 2348 + 2349 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 @@ -53432,10 +53764,10 @@ export default { 41 ], "players": [ - 2348 + 2349 ], "round_ticks": [ - 2348 + 2349 ], "size": [ 41 @@ -53447,10 +53779,10 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_fields": { @@ -53476,33 +53808,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_pop_fields": { @@ -53528,33 +53860,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_samp_fields": { @@ -53580,88 +53912,88 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 3054 + 3078 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 2348 + 2349 ], "created_at": [ - 5129 + 5153 ], "cs2_build": [ - 84 + 85 ], "duration_seconds": [ 32 ], "file": [ - 84 + 85 ], "geometry_validated": [ 6 ], "id": [ - 6341 + 6365 ], "kills": [ - 2348 + 2349 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "metadata_parsed_at": [ - 5129 + 5153 ], "parser_version": [ 41 ], "playback_file": [ - 84 + 85 ], "playback_size": [ 41 @@ -53670,10 +54002,10 @@ export default { 41 ], "players": [ - 2348 + 2349 ], "round_ticks": [ - 2348 + 2349 ], "size": [ 41 @@ -53685,10 +54017,10 @@ export default { 41 ], "workshop_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_sum_fields": { @@ -53714,63 +54046,63 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 3022 + 3046 ], "_delete_at_path": [ - 3028 + 3052 ], "_delete_elem": [ - 3029 + 3053 ], "_delete_key": [ - 3030 + 3054 ], "_inc": [ - 3031 + 3055 ], "_prepend": [ - 3042 + 3066 ], "_set": [ - 3046 + 3070 ], "where": [ - 3026 + 3050 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_var_pop_fields": { @@ -53796,33 +54128,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_var_samp_fields": { @@ -53848,33 +54180,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_variance_fields": { @@ -53900,41 +54232,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 3534 + 3558 ], "parser_version": [ - 3534 + 3558 ], "playback_size": [ - 3534 + 3558 ], "playback_version": [ - 3534 + 3558 ], "size": [ - 3534 + 3558 ], "tick_rate": [ - 3534 + 3558 ], "total_ticks": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds": { "assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -53944,19 +54276,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -53966,34 +54298,34 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "has_backup_file": [ 6 ], "id": [ - 6341 + 6365 ], "kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -54003,19 +54335,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -54025,11 +54357,11 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], @@ -54040,7 +54372,7 @@ export default { 41 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 @@ -54052,78 +54384,78 @@ export default { 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_reason": [ - 1729 + 1730 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 3069 + 3093 ], "nodes": [ - 3065 + 3089 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 3068 + 3092 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 3086 + 3110 ], "distinct": [ 6 ], "filter": [ - 3074 + 3098 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 3072 + 3096 ], "count": [ 41, { "columns": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -54132,83 +54464,83 @@ export default { } ], "max": [ - 3078 + 3102 ], "min": [ - 3080 + 3104 ], "stddev": [ - 3088 + 3112 ], "stddev_pop": [ - 3090 + 3114 ], "stddev_samp": [ - 3092 + 3116 ], "sum": [ - 3096 + 3120 ], "var_pop": [ - 3100 + 3124 ], "var_samp": [ - 3102 + 3126 ], "variance": [ - 3104 + 3128 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 3073 + 3097 ], "count": [ - 3534 + 3558 ], "max": [ - 3079 + 3103 ], "min": [ - 3081 + 3105 ], "stddev": [ - 3089 + 3113 ], "stddev_pop": [ - 3091 + 3115 ], "stddev_samp": [ - 3093 + 3117 ], "sum": [ - 3097 + 3121 ], "var_pop": [ - 3101 + 3125 ], "var_samp": [ - 3103 + 3127 ], "variance": [ - 3105 + 3129 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 3077 + 3101 ], "on_conflict": [ - 3083 + 3107 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_avg_fields": { @@ -54234,71 +54566,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_bool_exp": { "_and": [ - 3074 + 3098 ], "_not": [ - 3074 + 3098 ], "_or": [ - 3074 + 3098 ], "assists": [ - 3683 + 3707 ], "assists_aggregate": [ - 3674 + 3698 ], "backup_file": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "deleted_at": [ - 5130 + 5154 ], "has_backup_file": [ 7 ], "id": [ - 6343 + 6367 ], "kills": [ - 3900 + 3924 ], "kills_aggregate": [ - 3891 + 3915 ], "lineup_1_money": [ 42 @@ -54307,7 +54639,7 @@ export default { 42 ], "lineup_1_side": [ - 1405 + 1406 ], "lineup_1_timeouts_available": [ 42 @@ -54319,31 +54651,31 @@ export default { 42 ], "lineup_2_side": [ - 1405 + 1406 ], "lineup_2_timeouts_available": [ 42 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "round": [ 42 ], "time": [ - 5130 + 5154 ], "winning_reason": [ - 1730 + 1731 ], "winning_side": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_constraint": {}, @@ -54370,27 +54702,27 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_insert_input": { "assists": [ - 3680 + 3704 ], "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "kills": [ - 3897 + 3921 ], "lineup_1_money": [ 41 @@ -54399,7 +54731,7 @@ export default { 41 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 @@ -54411,45 +54743,45 @@ export default { 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_reason": [ - 1729 + 1730 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "lineup_1_money": [ 41 @@ -54470,80 +54802,80 @@ export default { 41 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "winning_side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "lineup_1_money": [ 41 @@ -54564,66 +54896,66 @@ export default { 41 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "winning_side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_mutation_response": { @@ -54631,115 +54963,115 @@ export default { 41 ], "returning": [ - 3065 + 3089 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 3075 + 3099 ], "update_columns": [ - 3098 + 3122 ], "where": [ - 3074 + 3098 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 3679 + 3703 ], "backup_file": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "has_backup_file": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "kills_aggregate": [ - 3896 + 3920 ], "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_side": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_side": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "winning_reason": [ - 3534 + 3558 ], "winning_side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "lineup_1_money": [ 41 @@ -54748,7 +55080,7 @@ export default { 41 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 @@ -54760,28 +55092,28 @@ export default { 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_reason": [ - 1729 + 1730 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_fields": { @@ -54807,33 +55139,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_pop_fields": { @@ -54859,33 +55191,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_samp_fields": { @@ -54911,58 +55243,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 3095 + 3119 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "lineup_1_money": [ 41 @@ -54971,7 +55303,7 @@ export default { 41 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 @@ -54983,28 +55315,28 @@ export default { 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "winning_reason": [ - 1729 + 1730 ], "winning_side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_sum_fields": { @@ -55030,48 +55362,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 3076 + 3100 ], "_set": [ - 3087 + 3111 ], "where": [ - 3074 + 3098 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_var_pop_fields": { @@ -55097,33 +55429,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_var_samp_fields": { @@ -55149,33 +55481,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_variance_fields": { @@ -55201,33 +55533,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_money": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks": { @@ -55235,113 +55567,113 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 3112 + 3136 ], "nodes": [ - 3106 + 3130 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_bool_exp": { "bool_and": [ - 3109 + 3133 ], "bool_or": [ - 3110 + 3134 ], "count": [ - 3111 + 3135 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 3127 + 3151 ], "distinct": [ 6 ], "filter": [ - 3115 + 3139 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 3128 + 3152 ], "distinct": [ 6 ], "filter": [ - 3115 + 3139 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 3126 + 3150 ], "distinct": [ 6 ], "filter": [ - 3115 + 3139 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_fields": { @@ -55349,7 +55681,7 @@ export default { 41, { "columns": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -55358,85 +55690,85 @@ export default { } ], "max": [ - 3118 + 3142 ], "min": [ - 3120 + 3144 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 3119 + 3143 ], "min": [ - 3121 + 3145 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 3117 + 3141 ], "on_conflict": [ - 3123 + 3147 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 3115 + 3139 ], "_not": [ - 3115 + 3139 ], "_or": [ - 3115 + 3139 ], "auto_picked": [ 7 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "side": [ - 86 + 87 ], "type": [ - 1710 + 1711 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_constraint": {}, @@ -55445,129 +55777,129 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map": [ - 2827 + 2851 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_mutation_response": { @@ -55575,70 +55907,70 @@ export default { 41 ], "returning": [ - 3106 + 3130 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 3116 + 3140 ], "update_columns": [ - 3132 + 3156 ], "where": [ - 3115 + 3139 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_order_by": { "auto_picked": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_select_column": {}, @@ -55649,39 +55981,39 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 3131 + 3155 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_stream_cursor_value_input": { @@ -55689,40 +56021,40 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 3129 + 3153 ], "where": [ - 3115 + 3139 ], "__typename": [ - 84 + 85 ] }, "match_maps": { @@ -55730,16 +56062,16 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "demos": [ - 3014, + 3038, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -55749,19 +56081,19 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "demos_aggregate": [ - 3015, + 3039, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -55771,31 +56103,31 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "demos_download_url": [ - 84 + 85 ], "demos_total_size": [ 41 ], "e_match_map_status": [ - 1135 + 1136 ], "ended_at": [ - 5129 + 5153 ], "flashes": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -55805,19 +56137,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "flashes_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -55827,28 +56159,28 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "id": [ - 6341 + 6365 ], "is_current_map": [ 6 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_score": [ 41 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 @@ -55857,25 +56189,25 @@ export default { 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_clips": [ - 2839, + 2863, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -55885,19 +56217,19 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_aggregate": [ - 2840, + 2864, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -55907,22 +56239,22 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_id": [ - 6341 + 6365 ], "objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -55932,19 +56264,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -55954,11 +56286,11 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], @@ -55966,10 +56298,10 @@ export default { 41 ], "player_assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -55979,19 +56311,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -56001,19 +56333,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_damages": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -56023,19 +56355,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -56045,19 +56377,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -56067,19 +56399,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -56089,19 +56421,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_unused_utilities": [ - 4377, + 4401, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -56111,19 +56443,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utilities_aggregate": [ - 4378, + 4402, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -56133,11 +56465,11 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], @@ -56145,13 +56477,13 @@ export default { 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "rounds": [ - 3065, + 3089, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -56161,19 +56493,19 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "rounds_aggregate": [ - 3066, + 3090, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -56183,25 +56515,25 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "started_at": [ - 5129 + 5153 ], "status": [ - 1140 + 1141 ], "utility": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -56211,19 +56543,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "utility_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -56233,19 +56565,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "vetos": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -56255,19 +56587,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "vetos_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -56277,66 +56609,66 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_aggregate": { "aggregate": [ - 3138 + 3162 ], "nodes": [ - 3134 + 3158 ], "__typename": [ - 84 + 85 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 3137 + 3161 ], "__typename": [ - 84 + 85 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 3156 + 3180 ], "distinct": [ 6 ], "filter": [ - 3143 + 3167 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_maps_aggregate_fields": { "avg": [ - 3141 + 3165 ], "count": [ 41, { "columns": [ - 3156, + 3180, "[match_maps_select_column!]" ], "distinct": [ @@ -56345,83 +56677,83 @@ export default { } ], "max": [ - 3147 + 3171 ], "min": [ - 3149 + 3173 ], "stddev": [ - 3158 + 3182 ], "stddev_pop": [ - 3160 + 3184 ], "stddev_samp": [ - 3162 + 3186 ], "sum": [ - 3166 + 3190 ], "var_pop": [ - 3170 + 3194 ], "var_samp": [ - 3172 + 3196 ], "variance": [ - 3174 + 3198 ], "__typename": [ - 84 + 85 ] }, "match_maps_aggregate_order_by": { "avg": [ - 3142 + 3166 ], "count": [ - 3534 + 3558 ], "max": [ - 3148 + 3172 ], "min": [ - 3150 + 3174 ], "stddev": [ - 3159 + 3183 ], "stddev_pop": [ - 3161 + 3185 ], "stddev_samp": [ - 3163 + 3187 ], "sum": [ - 3167 + 3191 ], "var_pop": [ - 3171 + 3195 ], "var_samp": [ - 3173 + 3197 ], "variance": [ - 3175 + 3199 ], "__typename": [ - 84 + 85 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 3146 + 3170 ], "on_conflict": [ - 3153 + 3177 ], "__typename": [ - 84 + 85 ] }, "match_maps_avg_fields": { @@ -56450,86 +56782,86 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_avg_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_bool_exp": { "_and": [ - 3143 + 3167 ], "_not": [ - 3143 + 3167 ], "_or": [ - 3143 + 3167 ], "clips_count": [ 42 ], "created_at": [ - 5130 + 5154 ], "demo_processing_started_at": [ - 5130 + 5154 ], "demos": [ - 3026 + 3050 ], "demos_aggregate": [ - 3016 + 3040 ], "demos_download_url": [ - 86 + 87 ], "demos_total_size": [ 42 ], "e_match_map_status": [ - 1138 + 1139 ], "ended_at": [ - 5130 + 5154 ], "flashes": [ - 3855 + 3879 ], "flashes_aggregate": [ - 3846 + 3870 ], "id": [ - 6343 + 6367 ], "is_current_map": [ 7 ], "latest_clip_at": [ - 5130 + 5154 ], "lineup_1_score": [ 42 ], "lineup_1_side": [ - 1405 + 1406 ], "lineup_1_timeouts_available": [ 42 @@ -56538,97 +56870,97 @@ export default { 42 ], "lineup_2_side": [ - 1405 + 1406 ], "lineup_2_timeouts_available": [ 42 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_clips": [ - 2848 + 2872 ], "match_clips_aggregate": [ - 2841 + 2865 ], "match_id": [ - 6343 + 6367 ], "objectives": [ - 4099 + 4123 ], "objectives_aggregate": [ - 4092 + 4116 ], "order": [ 42 ], "player_assists": [ - 3683 + 3707 ], "player_assists_aggregate": [ - 3674 + 3698 ], "player_damages": [ - 3744 + 3768 ], "player_damages_aggregate": [ - 3737 + 3761 ], "player_kills": [ - 3900 + 3924 ], "player_kills_aggregate": [ - 3891 + 3915 ], "player_unused_utilities": [ - 4386 + 4410 ], "player_unused_utilities_aggregate": [ - 4379 + 4403 ], "public_clips_count": [ 42 ], "public_latest_clip_at": [ - 5130 + 5154 ], "rounds": [ - 3074 + 3098 ], "rounds_aggregate": [ - 3067 + 3091 ], "started_at": [ - 5130 + 5154 ], "status": [ - 1141 + 1142 ], "utility": [ - 4427 + 4451 ], "utility_aggregate": [ - 4420 + 4444 ], "vetos": [ - 3115 + 3139 ], "vetos_aggregate": [ - 3108 + 3132 ], "winning_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "match_maps_constraint": {}, @@ -56649,7 +56981,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_maps_insert_input": { @@ -56657,100 +56989,100 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "demos": [ - 3023 + 3047 ], "e_match_map_status": [ - 1146 + 1147 ], "ended_at": [ - 5129 + 5153 ], "flashes": [ - 3852 + 3876 ], "id": [ - 6341 + 6365 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "map": [ - 2827 + 2851 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_clips": [ - 2845 + 2869 ], "match_id": [ - 6341 + 6365 ], "objectives": [ - 4096 + 4120 ], "order": [ 41 ], "player_assists": [ - 3680 + 3704 ], "player_damages": [ - 3741 + 3765 ], "player_kills": [ - 3897 + 3921 ], "player_unused_utilities": [ - 4383 + 4407 ], "public_clips_count": [ 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "rounds": [ - 3071 + 3095 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1140 + 1141 ], "utility": [ - 4424 + 4448 ], "vetos": [ - 3114 + 3138 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_max_fields": { @@ -56758,25 +57090,25 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "demos_download_url": [ - 84 + 85 ], "demos_total_size": [ 41 ], "ended_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_score": [ 41 @@ -56791,10 +57123,10 @@ export default { 41 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "order": [ 41 @@ -56803,66 +57135,66 @@ export default { 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "started_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_max_order_by": { "clips_count": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "demo_processing_started_at": [ - 3534 + 3558 ], "ended_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "latest_clip_at": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "public_latest_clip_at": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_min_fields": { @@ -56870,25 +57202,25 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "demos_download_url": [ - 84 + 85 ], "demos_total_size": [ 41 ], "ended_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_score": [ 41 @@ -56903,10 +57235,10 @@ export default { 41 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "order": [ 41 @@ -56915,66 +57247,66 @@ export default { 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "started_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_min_order_by": { "clips_count": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "demo_processing_started_at": [ - 3534 + 3558 ], "ended_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "latest_clip_at": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "public_latest_clip_at": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_mutation_response": { @@ -56982,159 +57314,159 @@ export default { 41 ], "returning": [ - 3134 + 3158 ], "__typename": [ - 84 + 85 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 3146 + 3170 ], "on_conflict": [ - 3153 + 3177 ], "__typename": [ - 84 + 85 ] }, "match_maps_on_conflict": { "constraint": [ - 3144 + 3168 ], "update_columns": [ - 3168 + 3192 ], "where": [ - 3143 + 3167 ], "__typename": [ - 84 + 85 ] }, "match_maps_order_by": { "clips_count": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "demo_processing_started_at": [ - 3534 + 3558 ], "demos_aggregate": [ - 3021 + 3045 ], "demos_download_url": [ - 3534 + 3558 ], "demos_total_size": [ - 3534 + 3558 ], "e_match_map_status": [ - 1148 + 1149 ], "ended_at": [ - 3534 + 3558 ], "flashes_aggregate": [ - 3851 + 3875 ], "id": [ - 3534 + 3558 ], "is_current_map": [ - 3534 + 3558 ], "latest_clip_at": [ - 3534 + 3558 ], "lineup_1_score": [ - 3534 + 3558 ], "lineup_1_side": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_score": [ - 3534 + 3558 ], "lineup_2_side": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_clips_aggregate": [ - 2844 + 2868 ], "match_id": [ - 3534 + 3558 ], "objectives_aggregate": [ - 4095 + 4119 ], "order": [ - 3534 + 3558 ], "player_assists_aggregate": [ - 3679 + 3703 ], "player_damages_aggregate": [ - 3740 + 3764 ], "player_kills_aggregate": [ - 3896 + 3920 ], "player_unused_utilities_aggregate": [ - 4382 + 4406 ], "public_clips_count": [ - 3534 + 3558 ], "public_latest_clip_at": [ - 3534 + 3558 ], "rounds_aggregate": [ - 3070 + 3094 ], "started_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_aggregate": [ - 4423 + 4447 ], "vetos_aggregate": [ - 3113 + 3137 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_select_column": {}, @@ -57143,37 +57475,37 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "order": [ 41 @@ -57182,19 +57514,19 @@ export default { 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1140 + 1141 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_fields": { @@ -57223,27 +57555,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_pop_fields": { @@ -57272,27 +57604,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_samp_fields": { @@ -57321,38 +57653,38 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 3165 + 3189 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_maps_stream_cursor_value_input": { @@ -57360,37 +57692,37 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "demo_processing_started_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "latest_clip_at": [ - 5129 + 5153 ], "lineup_1_side": [ - 1404 + 1405 ], "lineup_1_timeouts_available": [ 41 ], "lineup_2_side": [ - 1404 + 1405 ], "lineup_2_timeouts_available": [ 41 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "order": [ 41 @@ -57399,19 +57731,19 @@ export default { 41 ], "public_latest_clip_at": [ - 5129 + 5153 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1140 + 1141 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_maps_sum_fields": { @@ -57440,42 +57772,42 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_maps_sum_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 3145 + 3169 ], "_set": [ - 3157 + 3181 ], "where": [ - 3143 + 3167 ], "__typename": [ - 84 + 85 ] }, "match_maps_var_pop_fields": { @@ -57504,27 +57836,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_var_samp_fields": { @@ -57553,27 +57885,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_maps_variance_fields": { @@ -57602,27 +57934,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_maps_variance_order_by": { "clips_count": [ - 3534 + 3558 ], "lineup_1_timeouts_available": [ - 3534 + 3558 ], "lineup_2_timeouts_available": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "public_clips_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options": { @@ -57642,7 +57974,7 @@ export default { 6 ], "check_in_setting": [ - 687 + 688 ], "coaches": [ 6 @@ -57651,10 +57983,10 @@ export default { 6 ], "game_mode": [ - 2082 + 2083 ], "game_mode_id": [ - 6341 + 6365 ], "halftime_pausematch": [ 6 @@ -57663,10 +57995,10 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "knife_round": [ 6 @@ -57675,22 +58007,22 @@ export default { 41 ], "map_pool": [ - 2791 + 2815 ], "map_pool_id": [ - 6341 + 6365 ], "map_veto": [ 6 ], "match_mode": [ - 1161 + 1162 ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -57700,19 +58032,19 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_aggregate": [ - 3319, + 3343, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -57722,11 +58054,11 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], @@ -57743,130 +58075,130 @@ export default { 6 ], "ready_setting": [ - 1323 + 1324 ], "region_veto": [ 6 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 ], "tech_timeout_setting": [ - 1485 + 1486 ], "timeout_setting": [ - 1485 + 1486 ], "tournament": [ - 5565 + 5589 ], "tournament_bracket": [ - 5173 + 5197 ], "tournament_stage": [ - 5390 + 5414 ], "tv_delay": [ 41 ], "type": [ - 1222 + 1223 ], "veto_pick_timeout": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate": { "aggregate": [ - 3182 + 3206 ], "nodes": [ - 3176 + 3200 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_bool_exp": { "bool_and": [ - 3179 + 3203 ], "bool_or": [ - 3180 + 3204 ], "count": [ - 3181 + 3205 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_bool_exp_bool_and": { "arguments": [ - 3201 + 3225 ], "distinct": [ 6 ], "filter": [ - 3187 + 3211 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_bool_exp_bool_or": { "arguments": [ - 3202 + 3226 ], "distinct": [ 6 ], "filter": [ - 3187 + 3211 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_bool_exp_count": { "arguments": [ - 3200 + 3224 ], "distinct": [ 6 ], "filter": [ - 3187 + 3211 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_fields": { "avg": [ - 3185 + 3209 ], "count": [ 41, { "columns": [ - 3200, + 3224, "[match_options_select_column!]" ], "distinct": [ @@ -57875,83 +58207,83 @@ export default { } ], "max": [ - 3191 + 3215 ], "min": [ - 3193 + 3217 ], "stddev": [ - 3204 + 3228 ], "stddev_pop": [ - 3206 + 3230 ], "stddev_samp": [ - 3208 + 3232 ], "sum": [ - 3212 + 3236 ], "var_pop": [ - 3216 + 3240 ], "var_samp": [ - 3218 + 3242 ], "variance": [ - 3220 + 3244 ], "__typename": [ - 84 + 85 ] }, "match_options_aggregate_order_by": { "avg": [ - 3186 + 3210 ], "count": [ - 3534 + 3558 ], "max": [ - 3192 + 3216 ], "min": [ - 3194 + 3218 ], "stddev": [ - 3205 + 3229 ], "stddev_pop": [ - 3207 + 3231 ], "stddev_samp": [ - 3209 + 3233 ], "sum": [ - 3213 + 3237 ], "var_pop": [ - 3217 + 3241 ], "var_samp": [ - 3219 + 3243 ], "variance": [ - 3221 + 3245 ], "__typename": [ - 84 + 85 ] }, "match_options_arr_rel_insert_input": { "data": [ - 3190 + 3214 ], "on_conflict": [ - 3197 + 3221 ], "__typename": [ - 84 + 85 ] }, "match_options_avg_fields": { @@ -57980,47 +58312,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_avg_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_bool_exp": { "_and": [ - 3187 + 3211 ], "_not": [ - 3187 + 3211 ], "_or": [ - 3187 + 3211 ], "auto_cancel_duration": [ 42 @@ -58038,7 +58370,7 @@ export default { 7 ], "check_in_setting": [ - 688 + 689 ], "coaches": [ 7 @@ -58047,10 +58379,10 @@ export default { 7 ], "game_mode": [ - 2085 + 2086 ], "game_mode_id": [ - 6343 + 6367 ], "halftime_pausematch": [ 7 @@ -58059,10 +58391,10 @@ export default { 7 ], "id": [ - 6343 + 6367 ], "invite_code": [ - 86 + 87 ], "knife_round": [ 7 @@ -58071,22 +58403,22 @@ export default { 42 ], "map_pool": [ - 2794 + 2818 ], "map_pool_id": [ - 6343 + 6367 ], "map_veto": [ 7 ], "match_mode": [ - 1162 + 1163 ], "matches": [ - 3329 + 3353 ], "matches_aggregate": [ - 3320 + 3344 ], "mr": [ 42 @@ -58101,43 +58433,43 @@ export default { 7 ], "ready_setting": [ - 1324 + 1325 ], "region_veto": [ 7 ], "regions": [ - 85 + 86 ], "round_restart_delay": [ 42 ], "tech_timeout_setting": [ - 1486 + 1487 ], "timeout_setting": [ - 1486 + 1487 ], "tournament": [ - 5586 + 5610 ], "tournament_bracket": [ - 5184 + 5208 ], "tournament_stage": [ - 5402 + 5426 ], "tv_delay": [ 42 ], "type": [ - 1223 + 1224 ], "veto_pick_timeout": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_options_constraint": {}, @@ -58167,7 +58499,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_options_insert_input": { @@ -58187,7 +58519,7 @@ export default { 6 ], "check_in_setting": [ - 687 + 688 ], "coaches": [ 6 @@ -58196,19 +58528,19 @@ export default { 6 ], "game_mode": [ - 2091 + 2092 ], "game_mode_id": [ - 6341 + 6365 ], "halftime_pausematch": [ 6 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "knife_round": [ 6 @@ -58217,19 +58549,19 @@ export default { 41 ], "map_pool": [ - 2800 + 2824 ], "map_pool_id": [ - 6341 + 6365 ], "map_veto": [ 6 ], "match_mode": [ - 1161 + 1162 ], "matches": [ - 3326 + 3350 ], "mr": [ 41 @@ -58244,43 +58576,43 @@ export default { 6 ], "ready_setting": [ - 1323 + 1324 ], "region_veto": [ 6 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 ], "tech_timeout_setting": [ - 1485 + 1486 ], "timeout_setting": [ - 1485 + 1486 ], "tournament": [ - 5595 + 5619 ], "tournament_bracket": [ - 5193 + 5217 ], "tournament_stage": [ - 5414 + 5438 ], "tv_delay": [ 41 ], "type": [ - 1222 + 1223 ], "veto_pick_timeout": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_options_max_fields": { @@ -58291,19 +58623,19 @@ export default { 41 ], "game_mode_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "live_match_timeout": [ 41 ], "map_pool_id": [ - 6341 + 6365 ], "mr": [ 41 @@ -58312,7 +58644,7 @@ export default { 41 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 @@ -58324,51 +58656,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_options_max_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "game_mode_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_min_fields": { @@ -58379,19 +58711,19 @@ export default { 41 ], "game_mode_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "live_match_timeout": [ 41 ], "map_pool_id": [ - 6341 + 6365 ], "mr": [ 41 @@ -58400,7 +58732,7 @@ export default { 41 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 @@ -58412,51 +58744,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_options_min_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "game_mode_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_mutation_response": { @@ -58464,159 +58796,159 @@ export default { 41 ], "returning": [ - 3176 + 3200 ], "__typename": [ - 84 + 85 ] }, "match_options_obj_rel_insert_input": { "data": [ - 3190 + 3214 ], "on_conflict": [ - 3197 + 3221 ], "__typename": [ - 84 + 85 ] }, "match_options_on_conflict": { "constraint": [ - 3188 + 3212 ], "update_columns": [ - 3214 + 3238 ], "where": [ - 3187 + 3211 ], "__typename": [ - 84 + 85 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "auto_cancellation": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "camera_allow_teammates": [ - 3534 + 3558 ], "camera_required": [ - 3534 + 3558 ], "check_in_setting": [ - 3534 + 3558 ], "coaches": [ - 3534 + 3558 ], "default_models": [ - 3534 + 3558 ], "game_mode": [ - 2093 + 2094 ], "game_mode_id": [ - 3534 + 3558 ], "halftime_pausematch": [ - 3534 + 3558 ], "has_active_matches": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "knife_round": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "map_pool": [ - 2802 + 2826 ], "map_pool_id": [ - 3534 + 3558 ], "map_veto": [ - 3534 + 3558 ], "match_mode": [ - 3534 + 3558 ], "matches_aggregate": [ - 3325 + 3349 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "overtime": [ - 3534 + 3558 ], "prefer_dedicated_server": [ - 3534 + 3558 ], "ready_setting": [ - 3534 + 3558 ], "region_veto": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tech_timeout_setting": [ - 3534 + 3558 ], "timeout_setting": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_bracket": [ - 5195 + 5219 ], "tournament_stage": [ - 5416 + 5440 ], "tv_delay": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_options_select_column": {}, @@ -58639,7 +58971,7 @@ export default { 6 ], "check_in_setting": [ - 687 + 688 ], "coaches": [ 6 @@ -58648,16 +58980,16 @@ export default { 6 ], "game_mode_id": [ - 6341 + 6365 ], "halftime_pausematch": [ 6 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "knife_round": [ 6 @@ -58666,13 +58998,13 @@ export default { 41 ], "map_pool_id": [ - 6341 + 6365 ], "map_veto": [ 6 ], "match_mode": [ - 1161 + 1162 ], "mr": [ 41 @@ -58687,34 +59019,34 @@ export default { 6 ], "ready_setting": [ - 1323 + 1324 ], "region_veto": [ 6 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 ], "tech_timeout_setting": [ - 1485 + 1486 ], "timeout_setting": [ - 1485 + 1486 ], "tv_delay": [ 41 ], "type": [ - 1222 + 1223 ], "veto_pick_timeout": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_fields": { @@ -58743,36 +59075,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_pop_fields": { @@ -58801,36 +59133,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_pop_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_samp_fields": { @@ -58859,47 +59191,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_stddev_samp_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 3211 + 3235 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_options_stream_cursor_value_input": { @@ -58919,7 +59251,7 @@ export default { 6 ], "check_in_setting": [ - 687 + 688 ], "coaches": [ 6 @@ -58928,16 +59260,16 @@ export default { 6 ], "game_mode_id": [ - 6341 + 6365 ], "halftime_pausematch": [ 6 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "knife_round": [ 6 @@ -58946,13 +59278,13 @@ export default { 41 ], "map_pool_id": [ - 6341 + 6365 ], "map_veto": [ 6 ], "match_mode": [ - 1161 + 1162 ], "mr": [ 41 @@ -58967,34 +59299,34 @@ export default { 6 ], "ready_setting": [ - 1323 + 1324 ], "region_veto": [ 6 ], "regions": [ - 84 + 85 ], "round_restart_delay": [ 41 ], "tech_timeout_setting": [ - 1485 + 1486 ], "timeout_setting": [ - 1485 + 1486 ], "tv_delay": [ 41 ], "type": [ - 1222 + 1223 ], "veto_pick_timeout": [ 41 ], "__typename": [ - 84 + 85 ] }, "match_options_sum_fields": { @@ -59023,51 +59355,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_options_sum_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 3189 + 3213 ], "_set": [ - 3203 + 3227 ], "where": [ - 3187 + 3211 ], "__typename": [ - 84 + 85 ] }, "match_options_var_pop_fields": { @@ -59096,36 +59428,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_var_pop_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_var_samp_fields": { @@ -59154,36 +59486,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_var_samp_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_options_variance_fields": { @@ -59212,36 +59544,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_options_variance_order_by": { "auto_cancel_duration": [ - 3534 + 3558 ], "best_of": [ - 3534 + 3558 ], "live_match_timeout": [ - 3534 + 3558 ], "mr": [ - 3534 + 3558 ], "number_of_substitutes": [ - 3534 + 3558 ], "round_restart_delay": [ - 3534 + 3558 ], "tv_delay": [ - 3534 + 3558 ], "veto_pick_timeout": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks": { @@ -59249,107 +59581,107 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 3228 + 3252 ], "nodes": [ - 3222 + 3246 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_bool_exp": { "bool_and": [ - 3225 + 3249 ], "bool_or": [ - 3226 + 3250 ], "count": [ - 3227 + 3251 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_and": { "arguments": [ - 3243 + 3267 ], "distinct": [ 6 ], "filter": [ - 3231 + 3255 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_bool_exp_bool_or": { "arguments": [ - 3244 + 3268 ], "distinct": [ 6 ], "filter": [ - 3231 + 3255 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 3242 + 3266 ], "distinct": [ 6 ], "filter": [ - 3231 + 3255 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_fields": { @@ -59357,7 +59689,7 @@ export default { 41, { "columns": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -59366,79 +59698,79 @@ export default { } ], "max": [ - 3234 + 3258 ], "min": [ - 3236 + 3260 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 3235 + 3259 ], "min": [ - 3237 + 3261 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 3233 + 3257 ], "on_conflict": [ - 3239 + 3263 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 3231 + 3255 ], "_not": [ - 3231 + 3255 ], "_or": [ - 3231 + 3255 ], "auto_picked": [ 7 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "region": [ - 86 + 87 ], "type": [ - 1710 + 1711 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_constraint": {}, @@ -59447,111 +59779,111 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_mutation_response": { @@ -59559,64 +59891,64 @@ export default { 41 ], "returning": [ - 3222 + 3246 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 3232 + 3256 ], "update_columns": [ - 3248 + 3272 ], "where": [ - 3231 + 3255 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_order_by": { "auto_picked": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_select_column": {}, @@ -59627,36 +59959,36 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 3247 + 3271 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_stream_cursor_value_input": { @@ -59664,37 +59996,37 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "type": [ - 1709 + 1710 ], "__typename": [ - 84 + 85 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 3245 + 3269 ], "where": [ - 3231 + 3255 ], "__typename": [ - 84 + 85 ] }, "match_streams": { @@ -59702,16 +60034,16 @@ export default { 6 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_game_streamer": [ 6 @@ -59720,132 +60052,132 @@ export default { 6 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "status_history": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate": { "aggregate": [ - 3256 + 3280 ], "nodes": [ - 3250 + 3274 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 3253 + 3277 ], "bool_or": [ - 3254 + 3278 ], "count": [ - 3255 + 3279 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 3279 + 3303 ], "distinct": [ 6 ], "filter": [ - 3262 + 3286 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 3280 + 3304 ], "distinct": [ 6 ], "filter": [ - 3262 + 3286 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 3278 + 3302 ], "distinct": [ 6 ], "filter": [ - 3262 + 3286 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_fields": { "avg": [ - 3260 + 3284 ], "count": [ 41, { "columns": [ - 3278, + 3302, "[match_streams_select_column!]" ], "distinct": [ @@ -59854,91 +60186,91 @@ export default { } ], "max": [ - 3269 + 3293 ], "min": [ - 3271 + 3295 ], "stddev": [ - 3282 + 3306 ], "stddev_pop": [ - 3284 + 3308 ], "stddev_samp": [ - 3286 + 3310 ], "sum": [ - 3290 + 3314 ], "var_pop": [ - 3294 + 3318 ], "var_samp": [ - 3296 + 3320 ], "variance": [ - 3298 + 3322 ], "__typename": [ - 84 + 85 ] }, "match_streams_aggregate_order_by": { "avg": [ - 3261 + 3285 ], "count": [ - 3534 + 3558 ], "max": [ - 3270 + 3294 ], "min": [ - 3272 + 3296 ], "stddev": [ - 3283 + 3307 ], "stddev_pop": [ - 3285 + 3309 ], "stddev_samp": [ - 3287 + 3311 ], "sum": [ - 3291 + 3315 ], "var_pop": [ - 3295 + 3319 ], "var_samp": [ - 3297 + 3321 ], "variance": [ - 3299 + 3323 ], "__typename": [ - 84 + 85 ] }, "match_streams_append_input": { "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 3268 + 3292 ], "on_conflict": [ - 3274 + 3298 ], "__typename": [ - 84 + 85 ] }, "match_streams_avg_fields": { @@ -59946,41 +60278,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_avg_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_bool_exp": { "_and": [ - 3262 + 3286 ], "_not": [ - 3262 + 3286 ], "_or": [ - 3262 + 3286 ], "autodirector": [ 7 ], "error_message": [ - 86 + 87 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "is_game_streamer": [ 7 @@ -59989,49 +60321,49 @@ export default { 7 ], "k8s_service_name": [ - 86 + 87 ], "last_status_at": [ - 5130 + 5154 ], "link": [ - 86 + 87 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "mode": [ - 86 + 87 ], "priority": [ 42 ], "status": [ - 86 + 87 ], "status_history": [ - 2350 + 2351 ], "stream_url": [ - 86 + 87 ], "title": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_delete_elem_input": { @@ -60039,15 +60371,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_streams_delete_key_input": { "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_inc_input": { @@ -60055,7 +60387,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_streams_insert_input": { @@ -60063,16 +60395,16 @@ export default { 6 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_game_streamer": [ 6 @@ -60081,204 +60413,204 @@ export default { 6 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_max_fields": { "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_max_order_by": { "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_service_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "link": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "mode": [ - 3534 + 3558 ], "priority": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_min_fields": { "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_min_order_by": { "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_service_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "link": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "mode": [ - 3534 + 3558 ], "priority": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_mutation_response": { @@ -60286,99 +60618,99 @@ export default { 41 ], "returning": [ - 3250 + 3274 ], "__typename": [ - 84 + 85 ] }, "match_streams_on_conflict": { "constraint": [ - 3263 + 3287 ], "update_columns": [ - 3292 + 3316 ], "where": [ - 3262 + 3286 ], "__typename": [ - 84 + 85 ] }, "match_streams_order_by": { "autodirector": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_game_streamer": [ - 3534 + 3558 ], "is_live": [ - 3534 + 3558 ], "k8s_service_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "link": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "mode": [ - 3534 + 3558 ], "priority": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "status_history": [ - 3534 + 3558 ], "stream_url": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "match_streams_prepend_input": { "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "match_streams_select_column": {}, @@ -60389,13 +60721,13 @@ export default { 6 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_game_streamer": [ 6 @@ -60404,37 +60736,37 @@ export default { 6 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_fields": { @@ -60442,15 +60774,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_pop_fields": { @@ -60458,15 +60790,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_samp_fields": { @@ -60474,26 +60806,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 3289 + 3313 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_streams_stream_cursor_value_input": { @@ -60501,13 +60833,13 @@ export default { 6 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_game_streamer": [ 6 @@ -60516,37 +60848,37 @@ export default { 6 ], "k8s_service_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "link": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "mode": [ - 84 + 85 ], "priority": [ 41 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "stream_url": [ - 84 + 85 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_streams_sum_fields": { @@ -60554,45 +60886,45 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "match_streams_sum_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 3258 + 3282 ], "_delete_at_path": [ - 3264 + 3288 ], "_delete_elem": [ - 3265 + 3289 ], "_delete_key": [ - 3266 + 3290 ], "_inc": [ - 3267 + 3291 ], "_prepend": [ - 3277 + 3301 ], "_set": [ - 3281 + 3305 ], "where": [ - 3262 + 3286 ], "__typename": [ - 84 + 85 ] }, "match_streams_var_pop_fields": { @@ -60600,15 +60932,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_var_pop_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_var_samp_fields": { @@ -60616,15 +60948,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_var_samp_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_streams_variance_fields": { @@ -60632,37 +60964,37 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "match_streams_variance_order_by": { "priority": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs": { "cfg": [ - 84 + 85 ], "type": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 3302 + 3326 ], "nodes": [ - 3300 + 3324 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_aggregate_fields": { @@ -60670,7 +61002,7 @@ export default { 41, { "columns": [ - 3312, + 3336, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -60679,61 +61011,61 @@ export default { } ], "max": [ - 3306 + 3330 ], "min": [ - 3307 + 3331 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 3303 + 3327 ], "_not": [ - 3303 + 3327 ], "_or": [ - 3303 + 3327 ], "cfg": [ - 86 + 87 ], "type": [ - 874 + 875 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 84 + 85 ], "type": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_mutation_response": { @@ -60741,89 +61073,89 @@ export default { 41 ], "returning": [ - 3300 + 3324 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 3304 + 3328 ], "update_columns": [ - 3316 + 3340 ], "where": [ - 3303 + 3327 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_order_by": { "cfg": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 84 + 85 ], "type": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 3315 + 3339 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 84 + 85 ], "type": [ - 873 + 874 ], "__typename": [ - 84 + 85 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 3313 + 3337 ], "where": [ - 3303 + 3327 ], "__typename": [ - 84 + 85 ] }, "matches": { @@ -60852,13 +61184,13 @@ export default { 6 ], "cancels_at": [ - 5129 + 5153 ], "clutches": [ - 6521, + 6545, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -60868,19 +61200,19 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "clutches_aggregate": [ - 6522, + 6546, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -60890,34 +61222,34 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "counts_toward_ranking": [ 6 ], "created_at": [ - 5129 + 5153 ], "current_match_map_id": [ - 6341 + 6365 ], "demos": [ - 3014, + 3038, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -60927,19 +61259,19 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "demos_aggregate": [ - 3015, + 3039, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -60949,19 +61281,19 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "draft_games": [ - 596, + 597, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -60971,19 +61303,19 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "draft_games_aggregate": [ - 597, + 598, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -60993,28 +61325,28 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "e_match_status": [ - 1196 + 1197 ], "e_region": [ - 4620 + 4644 ], "effective_at": [ - 5129 + 5153 ], "elo_changes": [ - 6718, + 6742, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -61024,19 +61356,19 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "elo_changes_aggregate": [ - 6719, + 6743, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -61046,25 +61378,25 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "is_captain": [ 6 @@ -61091,36 +61423,36 @@ export default { 6 ], "label": [ - 84 + 85 ], "lineup_1": [ - 2972 + 2996 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2": [ - 2972 + 2996 ], "lineup_2_id": [ - 6341 + 6365 ], "lineup_counts": [ - 2346, + 2347, { "path": [ - 84 + 85 ] } ], "map_veto_picking_lineup_id": [ - 6341 + 6365 ], "map_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -61130,19 +61462,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "map_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -61152,22 +61484,22 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "map_veto_type": [ - 84 + 85 ], "match_maps": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -61177,19 +61509,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -61199,16 +61531,16 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -61217,10 +61549,10 @@ export default { 41 ], "opening_duels": [ - 6649, + 6673, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -61230,19 +61562,19 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "opening_duels_aggregate": [ - 6650, + 6674, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -61252,31 +61584,31 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "options": [ - 3176 + 3200 ], "organizer": [ - 4492 + 4516 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "player_assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -61286,19 +61618,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -61308,19 +61640,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_damages": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -61330,19 +61662,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -61352,19 +61684,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_flashes": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -61374,19 +61706,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_flashes_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -61396,19 +61728,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -61418,19 +61750,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -61440,19 +61772,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -61462,19 +61794,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -61484,19 +61816,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_unused_utilities": [ - 4377, + 4401, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -61506,19 +61838,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utilities_aggregate": [ - 4378, + 4402, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -61528,19 +61860,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_utility": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -61550,19 +61882,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utility_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -61572,25 +61904,25 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "region": [ - 84 + 85 ], "region_veto_picking_lineup_id": [ - 6341 + 6365 ], "region_veto_picks": [ - 3222, + 3246, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -61600,19 +61932,19 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], "region_veto_picks_aggregate": [ - 3223, + 3247, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -61622,11 +61954,11 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], @@ -61634,43 +61966,43 @@ export default { 6 ], "scheduled_at": [ - 5129 + 5153 ], "server": [ - 4647 + 4671 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "server_plugin_runtime": [ - 84 + 85 ], "server_region": [ - 84 + 85 ], "server_type": [ - 84 + 85 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1201 + 1202 ], "streams": [ - 3250, + 3274, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -61680,19 +62012,19 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "streams_aggregate": [ - 3251, + 3275, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -61702,19 +62034,19 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "teams": [ - 5080, + 5104, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -61724,19 +62056,19 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "tournament_brackets": [ - 5173, + 5197, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -61746,19 +62078,19 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tournament_brackets_aggregate": [ - 5174, + 5198, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -61768,115 +62100,115 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tv_connection_string": [ - 84 + 85 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winner": [ - 2972 + 2996 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate": { "aggregate": [ - 3324 + 3348 ], "nodes": [ - 3318 + 3342 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_bool_exp": { "bool_and": [ - 3321 + 3345 ], "bool_or": [ - 3322 + 3346 ], "count": [ - 3323 + 3347 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_bool_exp_bool_and": { "arguments": [ - 3343 + 3367 ], "distinct": [ 6 ], "filter": [ - 3329 + 3353 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_bool_exp_bool_or": { "arguments": [ - 3344 + 3368 ], "distinct": [ 6 ], "filter": [ - 3329 + 3353 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_bool_exp_count": { "arguments": [ - 3342 + 3366 ], "distinct": [ 6 ], "filter": [ - 3329 + 3353 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_fields": { "avg": [ - 3327 + 3351 ], "count": [ 41, { "columns": [ - 3342, + 3366, "[matches_select_column!]" ], "distinct": [ @@ -61885,83 +62217,83 @@ export default { } ], "max": [ - 3333 + 3357 ], "min": [ - 3335 + 3359 ], "stddev": [ - 3346 + 3370 ], "stddev_pop": [ - 3348 + 3372 ], "stddev_samp": [ - 3350 + 3374 ], "sum": [ - 3354 + 3378 ], "var_pop": [ - 3358 + 3382 ], "var_samp": [ - 3360 + 3384 ], "variance": [ - 3362 + 3386 ], "__typename": [ - 84 + 85 ] }, "matches_aggregate_order_by": { "avg": [ - 3328 + 3352 ], "count": [ - 3534 + 3558 ], "max": [ - 3334 + 3358 ], "min": [ - 3336 + 3360 ], "stddev": [ - 3347 + 3371 ], "stddev_pop": [ - 3349 + 3373 ], "stddev_samp": [ - 3351 + 3375 ], "sum": [ - 3355 + 3379 ], "var_pop": [ - 3359 + 3383 ], "var_samp": [ - 3361 + 3385 ], "variance": [ - 3363 + 3387 ], "__typename": [ - 84 + 85 ] }, "matches_arr_rel_insert_input": { "data": [ - 3332 + 3356 ], "on_conflict": [ - 3339 + 3363 ], "__typename": [ - 84 + 85 ] }, "matches_avg_fields": { @@ -61975,26 +62307,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_avg_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_bool_exp": { "_and": [ - 3329 + 3353 ], "_not": [ - 3329 + 3353 ], "_or": [ - 3329 + 3353 ], "can_assign_server": [ 7 @@ -62021,67 +62353,67 @@ export default { 7 ], "cancels_at": [ - 5130 + 5154 ], "clutches": [ - 6530 + 6554 ], "clutches_aggregate": [ - 6523 + 6547 ], "connection_link": [ - 86 + 87 ], "connection_string": [ - 86 + 87 ], "counts_toward_ranking": [ 7 ], "created_at": [ - 5130 + 5154 ], "current_match_map_id": [ - 6343 + 6367 ], "demos": [ - 3026 + 3050 ], "demos_aggregate": [ - 3016 + 3040 ], "draft_games": [ - 607 + 608 ], "draft_games_aggregate": [ - 598 + 599 ], "e_match_status": [ - 1199 + 1200 ], "e_region": [ - 4624 + 4648 ], "effective_at": [ - 5130 + 5154 ], "elo_changes": [ - 6737 + 6761 ], "elo_changes_aggregate": [ - 6720 + 6744 ], "ended_at": [ - 5130 + 5154 ], "external_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "invite_code": [ - 86 + 87 ], "is_captain": [ 7 @@ -62108,43 +62440,43 @@ export default { 7 ], "label": [ - 86 + 87 ], "lineup_1": [ - 2981 + 3005 ], "lineup_1_id": [ - 6343 + 6367 ], "lineup_2": [ - 2981 + 3005 ], "lineup_2_id": [ - 6343 + 6367 ], "lineup_counts": [ - 2347 + 2348 ], "map_veto_picking_lineup_id": [ - 6343 + 6367 ], "map_veto_picks": [ - 3115 + 3139 ], "map_veto_picks_aggregate": [ - 3108 + 3132 ], "map_veto_type": [ - 86 + 87 ], "match_maps": [ - 3143 + 3167 ], "match_maps_aggregate": [ - 3136 + 3160 ], "match_options_id": [ - 6343 + 6367 ], "max_players_per_lineup": [ 42 @@ -62153,347 +62485,347 @@ export default { 42 ], "opening_duels": [ - 6658 + 6682 ], "opening_duels_aggregate": [ - 6651 + 6675 ], "options": [ - 3187 + 3211 ], "organizer": [ - 4496 + 4520 ], "organizer_steam_id": [ - 311 + 312 ], "password": [ - 86 + 87 ], "player_assists": [ - 3683 + 3707 ], "player_assists_aggregate": [ - 3674 + 3698 ], "player_damages": [ - 3744 + 3768 ], "player_damages_aggregate": [ - 3737 + 3761 ], "player_flashes": [ - 3855 + 3879 ], "player_flashes_aggregate": [ - 3846 + 3870 ], "player_kills": [ - 3900 + 3924 ], "player_kills_aggregate": [ - 3891 + 3915 ], "player_objectives": [ - 4099 + 4123 ], "player_objectives_aggregate": [ - 4092 + 4116 ], "player_unused_utilities": [ - 4386 + 4410 ], "player_unused_utilities_aggregate": [ - 4379 + 4403 ], "player_utility": [ - 4427 + 4451 ], "player_utility_aggregate": [ - 4420 + 4444 ], "region": [ - 86 + 87 ], "region_veto_picking_lineup_id": [ - 6343 + 6367 ], "region_veto_picks": [ - 3231 + 3255 ], "region_veto_picks_aggregate": [ - 3224 + 3248 ], "requested_organizer": [ 7 ], "scheduled_at": [ - 5130 + 5154 ], "server": [ - 4659 + 4683 ], "server_error": [ - 86 + 87 ], "server_id": [ - 6343 + 6367 ], "server_plugin_runtime": [ - 86 + 87 ], "server_region": [ - 86 + 87 ], "server_type": [ - 86 + 87 ], "share_code": [ - 86 + 87 ], "source": [ - 86 + 87 ], "started_at": [ - 5130 + 5154 ], "status": [ - 1202 + 1203 ], "streams": [ - 3262 + 3286 ], "streams_aggregate": [ - 3252 + 3276 ], "teams": [ - 5091 + 5115 ], "tournament_brackets": [ - 5184 + 5208 ], "tournament_brackets_aggregate": [ - 5175 + 5199 ], "tv_connection_string": [ - 86 + 87 ], "veto_pick_expires_at": [ - 5130 + 5154 ], "winner": [ - 2981 + 3005 ], "winning_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "matches_constraint": {}, "matches_inc_input": { "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "matches_insert_input": { "cancels_at": [ - 5129 + 5153 ], "clutches": [ - 6527 + 6551 ], "counts_toward_ranking": [ 6 ], "created_at": [ - 5129 + 5153 ], "demos": [ - 3023 + 3047 ], "draft_games": [ - 604 + 605 ], "e_match_status": [ - 1207 + 1208 ], "e_region": [ - 4630 + 4654 ], "elo_changes": [ - 6734 + 6758 ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "lineup_1": [ - 2990 + 3014 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2": [ - 2990 + 3014 ], "lineup_2_id": [ - 6341 + 6365 ], "map_veto_picks": [ - 3114 + 3138 ], "match_maps": [ - 3140 + 3164 ], "match_options_id": [ - 6341 + 6365 ], "opening_duels": [ - 6655 + 6679 ], "options": [ - 3196 + 3220 ], "organizer": [ - 4503 + 4527 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "player_assists": [ - 3680 + 3704 ], "player_damages": [ - 3741 + 3765 ], "player_flashes": [ - 3852 + 3876 ], "player_kills": [ - 3897 + 3921 ], "player_objectives": [ - 4096 + 4120 ], "player_unused_utilities": [ - 4383 + 4407 ], "player_utility": [ - 4424 + 4448 ], "region": [ - 84 + 85 ], "region_veto_picks": [ - 3230 + 3254 ], "scheduled_at": [ - 5129 + 5153 ], "server": [ - 4671 + 4695 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1201 + 1202 ], "streams": [ - 3259 + 3283 ], "tournament_brackets": [ - 5181 + 5205 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winner": [ - 2990 + 3014 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_max_fields": { "cancels_at": [ - 5129 + 5153 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "current_match_map_id": [ - 6341 + 6365 ], "effective_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2_id": [ - 6341 + 6365 ], "map_veto_picking_lineup_id": [ - 6341 + 6365 ], "map_veto_type": [ - 84 + 85 ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -62502,173 +62834,173 @@ export default { 41 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "region": [ - 84 + 85 ], "region_veto_picking_lineup_id": [ - 6341 + 6365 ], "scheduled_at": [ - 5129 + 5153 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "server_plugin_runtime": [ - 84 + 85 ], "server_region": [ - 84 + 85 ], "server_type": [ - 84 + 85 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "tv_connection_string": [ - 84 + 85 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_max_order_by": { "cancels_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "effective_at": [ - 3534 + 3558 ], "ended_at": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "lineup_1_id": [ - 3534 + 3558 ], "lineup_2_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "password": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "server_error": [ - 3534 + 3558 ], "server_id": [ - 3534 + 3558 ], "share_code": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "veto_pick_expires_at": [ - 3534 + 3558 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_min_fields": { "cancels_at": [ - 5129 + 5153 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "current_match_map_id": [ - 6341 + 6365 ], "effective_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "label": [ - 84 + 85 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2_id": [ - 6341 + 6365 ], "map_veto_picking_lineup_id": [ - 6341 + 6365 ], "map_veto_type": [ - 84 + 85 ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -62677,123 +63009,123 @@ export default { 41 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "region": [ - 84 + 85 ], "region_veto_picking_lineup_id": [ - 6341 + 6365 ], "scheduled_at": [ - 5129 + 5153 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "server_plugin_runtime": [ - 84 + 85 ], "server_region": [ - 84 + 85 ], "server_type": [ - 84 + 85 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "tv_connection_string": [ - 84 + 85 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_min_order_by": { "cancels_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "effective_at": [ - 3534 + 3558 ], "ended_at": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "lineup_1_id": [ - 3534 + 3558 ], "lineup_2_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "password": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "server_error": [ - 3534 + 3558 ], "server_id": [ - 3534 + 3558 ], "share_code": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "veto_pick_expires_at": [ - 3534 + 3558 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_mutation_response": { @@ -62801,288 +63133,288 @@ export default { 41 ], "returning": [ - 3318 + 3342 ], "__typename": [ - 84 + 85 ] }, "matches_obj_rel_insert_input": { "data": [ - 3332 + 3356 ], "on_conflict": [ - 3339 + 3363 ], "__typename": [ - 84 + 85 ] }, "matches_on_conflict": { "constraint": [ - 3330 + 3354 ], "update_columns": [ - 3356 + 3380 ], "where": [ - 3329 + 3353 ], "__typename": [ - 84 + 85 ] }, "matches_order_by": { "can_assign_server": [ - 3534 + 3558 ], "can_cancel": [ - 3534 + 3558 ], "can_check_in": [ - 3534 + 3558 ], "can_reassign_winner": [ - 3534 + 3558 ], "can_schedule": [ - 3534 + 3558 ], "can_start": [ - 3534 + 3558 ], "can_stream_live": [ - 3534 + 3558 ], "can_stream_tv": [ - 3534 + 3558 ], "cancels_at": [ - 3534 + 3558 ], "clutches_aggregate": [ - 6526 + 6550 ], "connection_link": [ - 3534 + 3558 ], "connection_string": [ - 3534 + 3558 ], "counts_toward_ranking": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current_match_map_id": [ - 3534 + 3558 ], "demos_aggregate": [ - 3021 + 3045 ], "draft_games_aggregate": [ - 603 + 604 ], "e_match_status": [ - 1209 + 1210 ], "e_region": [ - 4632 + 4656 ], "effective_at": [ - 3534 + 3558 ], "elo_changes_aggregate": [ - 6733 + 6757 ], "ended_at": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "is_captain": [ - 3534 + 3558 ], "is_coach": [ - 3534 + 3558 ], "is_friend_in_match_lineup": [ - 3534 + 3558 ], "is_in_lineup": [ - 3534 + 3558 ], "is_match_server_available": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "is_server_online": [ - 3534 + 3558 ], "is_tournament_match": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "lineup_1": [ - 2992 + 3016 ], "lineup_1_id": [ - 3534 + 3558 ], "lineup_2": [ - 2992 + 3016 ], "lineup_2_id": [ - 3534 + 3558 ], "lineup_counts": [ - 3534 + 3558 ], "map_veto_picking_lineup_id": [ - 3534 + 3558 ], "map_veto_picks_aggregate": [ - 3113 + 3137 ], "map_veto_type": [ - 3534 + 3558 ], "match_maps_aggregate": [ - 3139 + 3163 ], "match_options_id": [ - 3534 + 3558 ], "max_players_per_lineup": [ - 3534 + 3558 ], "min_players_per_lineup": [ - 3534 + 3558 ], "opening_duels_aggregate": [ - 6654 + 6678 ], "options": [ - 3198 + 3222 ], "organizer": [ - 4505 + 4529 ], "organizer_steam_id": [ - 3534 + 3558 ], "password": [ - 3534 + 3558 ], "player_assists_aggregate": [ - 3679 + 3703 ], "player_damages_aggregate": [ - 3740 + 3764 ], "player_flashes_aggregate": [ - 3851 + 3875 ], "player_kills_aggregate": [ - 3896 + 3920 ], "player_objectives_aggregate": [ - 4095 + 4119 ], "player_unused_utilities_aggregate": [ - 4382 + 4406 ], "player_utility_aggregate": [ - 4423 + 4447 ], "region": [ - 3534 + 3558 ], "region_veto_picking_lineup_id": [ - 3534 + 3558 ], "region_veto_picks_aggregate": [ - 3229 + 3253 ], "requested_organizer": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "server": [ - 4673 + 4697 ], "server_error": [ - 3534 + 3558 ], "server_id": [ - 3534 + 3558 ], "server_plugin_runtime": [ - 3534 + 3558 ], "server_region": [ - 3534 + 3558 ], "server_type": [ - 3534 + 3558 ], "share_code": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "streams_aggregate": [ - 3257 + 3281 ], "teams_aggregate": [ - 5087 + 5111 ], "tournament_brackets_aggregate": [ - 5180 + 5204 ], "tv_connection_string": [ - 3534 + 3558 ], "veto_pick_expires_at": [ - 3534 + 3558 ], "winner": [ - 2992 + 3016 ], "winning_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_select_column": {}, @@ -63090,73 +63422,73 @@ export default { "matches_select_column_matches_aggregate_bool_exp_bool_or_arguments_columns": {}, "matches_set_input": { "cancels_at": [ - 5129 + 5153 ], "counts_toward_ranking": [ 6 ], "created_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "region": [ - 84 + 85 ], "scheduled_at": [ - 5129 + 5153 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1201 + 1202 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_fields": { @@ -63170,15 +63502,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_pop_fields": { @@ -63192,15 +63524,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_samp_fields": { @@ -63214,100 +63546,100 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_stream_cursor_input": { "initial_value": [ - 3353 + 3377 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "matches_stream_cursor_value_input": { "cancels_at": [ - 5129 + 5153 ], "counts_toward_ranking": [ 6 ], "created_at": [ - 5129 + 5153 ], "effective_at": [ - 5129 + 5153 ], "ended_at": [ - 5129 + 5153 ], "external_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "lineup_1_id": [ - 6341 + 6365 ], "lineup_2_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "organizer_steam_id": [ - 309 + 310 ], "password": [ - 84 + 85 ], "region": [ - 84 + 85 ], "scheduled_at": [ - 5129 + 5153 ], "server_error": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "share_code": [ - 84 + 85 ], "source": [ - 84 + 85 ], "started_at": [ - 5129 + 5153 ], "status": [ - 1201 + 1202 ], "veto_pick_expires_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "matches_sum_fields": { @@ -63318,33 +63650,33 @@ export default { 41 ], "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "matches_sum_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_update_column": {}, "matches_updates": { "_inc": [ - 3331 + 3355 ], "_set": [ - 3345 + 3369 ], "where": [ - 3329 + 3353 ], "__typename": [ - 84 + 85 ] }, "matches_var_pop_fields": { @@ -63358,15 +63690,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_var_samp_fields": { @@ -63380,15 +63712,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "matches_variance_fields": { @@ -63402,37 +63734,37 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "matches_variance_order_by": { "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 3366 + 3390 ], "nodes": [ - 3364 + 3388 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_aggregate_fields": { @@ -63440,7 +63772,7 @@ export default { 41, { "columns": [ - 3376, + 3400, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -63449,67 +63781,67 @@ export default { } ], "max": [ - 3370 + 3394 ], "min": [ - 3371 + 3395 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_bool_exp": { "_and": [ - 3367 + 3391 ], "_not": [ - 3367 + 3391 ], "_or": [ - 3367 + 3391 ], "hash": [ - 86 + 87 ], "name": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_constraint": {}, "migration_hashes_hashes_insert_input": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_max_fields": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_min_fields": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_mutation_response": { @@ -63517,115 +63849,115 @@ export default { 41 ], "returning": [ - 3364 + 3388 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 3368 + 3392 ], "update_columns": [ - 3380 + 3404 ], "where": [ - 3367 + 3391 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_order_by": { "hash": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_pk_columns_input": { "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_select_column": {}, "migration_hashes_hashes_set_input": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 3379 + 3403 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_stream_cursor_value_input": { "hash": [ - 84 + 85 ], "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 3377 + 3401 ], "where": [ - 3367 + 3391 ], "__typename": [ - 84 + 85 ] }, "my_friends": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "elo": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -63633,93 +63965,93 @@ export default { 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_presence_state": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -63728,94 +64060,94 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate": { "aggregate": [ - 3388 + 3412 ], "nodes": [ - 3382 + 3406 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 3385 + 3409 ], "bool_or": [ - 3386 + 3410 ], "count": [ - 3387 + 3411 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 3408 + 3432 ], "distinct": [ 6 ], "filter": [ - 3394 + 3418 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 3409 + 3433 ], "distinct": [ 6 ], "filter": [ - 3394 + 3418 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 3407 + 3431 ], "distinct": [ 6 ], "filter": [ - 3394 + 3418 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_fields": { "avg": [ - 3392 + 3416 ], "count": [ 41, { "columns": [ - 3407, + 3431, "[my_friends_select_column!]" ], "distinct": [ @@ -63824,91 +64156,91 @@ export default { } ], "max": [ - 3400 + 3424 ], "min": [ - 3402 + 3426 ], "stddev": [ - 3411 + 3435 ], "stddev_pop": [ - 3413 + 3437 ], "stddev_samp": [ - 3415 + 3439 ], "sum": [ - 3419 + 3443 ], "var_pop": [ - 3422 + 3446 ], "var_samp": [ - 3424 + 3448 ], "variance": [ - 3426 + 3450 ], "__typename": [ - 84 + 85 ] }, "my_friends_aggregate_order_by": { "avg": [ - 3393 + 3417 ], "count": [ - 3534 + 3558 ], "max": [ - 3401 + 3425 ], "min": [ - 3403 + 3427 ], "stddev": [ - 3412 + 3436 ], "stddev_pop": [ - 3414 + 3438 ], "stddev_samp": [ - 3416 + 3440 ], "sum": [ - 3420 + 3444 ], "var_pop": [ - 3423 + 3447 ], "var_samp": [ - 3425 + 3449 ], "variance": [ - 3427 + 3451 ], "__typename": [ - 84 + 85 ] }, "my_friends_append_input": { "elo": [ - 2348 + 2349 ], "last_presence_state": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "my_friends_arr_rel_insert_input": { "data": [ - 3399 + 3423 ], "__typename": [ - 84 + 85 ] }, "my_friends_avg_fields": { @@ -63940,158 +64272,158 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_bool_exp": { "_and": [ - 3394 + 3418 ], "_not": [ - 3394 + 3418 ], "_or": [ - 3394 + 3418 ], "avatar_url": [ - 86 + 87 ], "country": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "custom_avatar_url": [ - 86 + 87 ], "days_since_last_ban": [ 42 ], "discord_id": [ - 86 + 87 ], "elo": [ - 2350 + 2351 ], "faceit_elo": [ 42 ], "faceit_nickname": [ - 86 + 87 ], "faceit_player_id": [ - 86 + 87 ], "faceit_skill_level": [ 42 ], "faceit_updated_at": [ - 5130 + 5154 ], "faceit_url": [ - 86 + 87 ], "friend_steam_id": [ - 311 + 312 ], "game_ban_count": [ 42 ], "invited_by_steam_id": [ - 311 + 312 ], "language": [ - 86 + 87 ], "last_presence_state": [ - 2350 + 2351 ], "last_read_news_at": [ - 5130 + 5154 ], "last_sign_in_at": [ - 5130 + 5154 ], "name": [ - 86 + 87 ], "name_registered": [ 7 ], "notification_timezone": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "premier_rank": [ 42 ], "premier_rank_updated_at": [ - 5130 + 5154 ], "presence_updated_at": [ - 5130 + 5154 ], "profile_url": [ - 86 + 87 ], "quiet_hours_end": [ - 5127 + 5151 ], "quiet_hours_start": [ - 5127 + 5151 ], "role": [ - 86 + 87 ], "roster_image_url": [ - 86 + 87 ], "show_match_ready_modal": [ 7 ], "status": [ - 86 + 87 ], "steam_bans_checked_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "vac_ban_count": [ 42 @@ -64100,18 +64432,18 @@ export default { 7 ], "__typename": [ - 84 + 85 ] }, "my_friends_delete_at_path_input": { "elo": [ - 84 + 85 ], "last_presence_state": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "my_friends_delete_elem_input": { @@ -64122,18 +64454,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "my_friends_delete_key_input": { "elo": [ - 84 + 85 ], "last_presence_state": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "my_friends_inc_input": { @@ -64147,135 +64479,135 @@ export default { 41 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "premier_rank": [ 41 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "my_friends_insert_input": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "elo": [ - 2348 + 2349 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_presence_state": [ - 2348 + 2349 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "player": [ - 4503 + 4527 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -64284,387 +64616,387 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "my_friends_max_fields": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "my_friends_max_order_by": { "avatar_url": [ - 3534 + 3558 ], "country": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_avatar_url": [ - 3534 + 3558 ], "days_since_last_ban": [ - 3534 + 3558 ], "discord_id": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_nickname": [ - 3534 + 3558 ], "faceit_player_id": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "faceit_updated_at": [ - 3534 + 3558 ], "faceit_url": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "language": [ - 3534 + 3558 ], "last_read_news_at": [ - 3534 + 3558 ], "last_sign_in_at": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "notification_timezone": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "premier_rank_updated_at": [ - 3534 + 3558 ], "presence_updated_at": [ - 3534 + 3558 ], "profile_url": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "steam_bans_checked_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_min_fields": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "my_friends_min_order_by": { "avatar_url": [ - 3534 + 3558 ], "country": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_avatar_url": [ - 3534 + 3558 ], "days_since_last_ban": [ - 3534 + 3558 ], "discord_id": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_nickname": [ - 3534 + 3558 ], "faceit_player_id": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "faceit_updated_at": [ - 3534 + 3558 ], "faceit_url": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "language": [ - 3534 + 3558 ], "last_read_news_at": [ - 3534 + 3558 ], "last_sign_in_at": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "notification_timezone": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "premier_rank_updated_at": [ - 3534 + 3558 ], "presence_updated_at": [ - 3534 + 3558 ], "profile_url": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "steam_bans_checked_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_mutation_response": { @@ -64672,140 +65004,140 @@ export default { 41 ], "returning": [ - 3382 + 3406 ], "__typename": [ - 84 + 85 ] }, "my_friends_order_by": { "avatar_url": [ - 3534 + 3558 ], "country": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_avatar_url": [ - 3534 + 3558 ], "days_since_last_ban": [ - 3534 + 3558 ], "discord_id": [ - 3534 + 3558 ], "elo": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_nickname": [ - 3534 + 3558 ], "faceit_player_id": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "faceit_updated_at": [ - 3534 + 3558 ], "faceit_url": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "language": [ - 3534 + 3558 ], "last_presence_state": [ - 3534 + 3558 ], "last_read_news_at": [ - 3534 + 3558 ], "last_sign_in_at": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "name_registered": [ - 3534 + 3558 ], "notification_timezone": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "premier_rank": [ - 3534 + 3558 ], "premier_rank_updated_at": [ - 3534 + 3558 ], "presence_updated_at": [ - 3534 + 3558 ], "profile_url": [ - 3534 + 3558 ], "quiet_hours_end": [ - 3534 + 3558 ], "quiet_hours_start": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "show_match_ready_modal": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "steam_bans_checked_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "vac_banned": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_prepend_input": { "elo": [ - 2348 + 2349 ], "last_presence_state": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "my_friends_select_column": {}, @@ -64813,109 +65145,109 @@ export default { "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, "my_friends_set_input": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "elo": [ - 2348 + 2349 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_presence_state": [ - 2348 + 2349 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -64924,7 +65256,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_fields": { @@ -64956,39 +65288,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_pop_fields": { @@ -65020,39 +65352,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_samp_fields": { @@ -65084,157 +65416,157 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_stream_cursor_input": { "initial_value": [ - 3418 + 3442 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "my_friends_stream_cursor_value_input": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "elo": [ - 2348 + 2349 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "language": [ - 84 + 85 ], "last_presence_state": [ - 2348 + 2349 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "presence_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "status": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -65243,7 +65575,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "my_friends_sum_fields": { @@ -65257,86 +65589,86 @@ export default { 41 ], "friend_steam_id": [ - 309 + 310 ], "game_ban_count": [ 41 ], "invited_by_steam_id": [ - 309 + 310 ], "premier_rank": [ 41 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_updates": { "_append": [ - 3390 + 3414 ], "_delete_at_path": [ - 3395 + 3419 ], "_delete_elem": [ - 3396 + 3420 ], "_delete_key": [ - 3397 + 3421 ], "_inc": [ - 3398 + 3422 ], "_prepend": [ - 3406 + 3430 ], "_set": [ - 3410 + 3434 ], "where": [ - 3394 + 3418 ], "__typename": [ - 84 + 85 ] }, "my_friends_var_pop_fields": { @@ -65368,39 +65700,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_var_samp_fields": { @@ -65432,39 +65764,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "my_friends_variance_fields": { @@ -65496,105 +65828,105 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 3534 + 3558 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_skill_level": [ - 3534 + 3558 ], "friend_steam_id": [ - 3534 + 3558 ], "game_ban_count": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "vac_ban_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "news_articles": { "author": [ - 4492 + 4516 ], "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_aggregate": { "aggregate": [ - 3430 + 3454 ], "nodes": [ - 3428 + 3452 ], "__typename": [ - 84 + 85 ] }, "news_articles_aggregate_fields": { "avg": [ - 3431 + 3455 ], "count": [ 41, { "columns": [ - 3442, + 3466, "[news_articles_select_column!]" ], "distinct": [ @@ -65603,34 +65935,34 @@ export default { } ], "max": [ - 3436 + 3460 ], "min": [ - 3437 + 3461 ], "stddev": [ - 3444 + 3468 ], "stddev_pop": [ - 3445 + 3469 ], "stddev_samp": [ - 3446 + 3470 ], "sum": [ - 3449 + 3473 ], "var_pop": [ - 3452 + 3476 ], "var_samp": [ - 3453 + 3477 ], "variance": [ - 3454 + 3478 ], "__typename": [ - 84 + 85 ] }, "news_articles_avg_fields": { @@ -65641,198 +65973,198 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_bool_exp": { "_and": [ - 3432 + 3456 ], "_not": [ - 3432 + 3456 ], "_or": [ - 3432 + 3456 ], "author": [ - 4496 + 4520 ], "author_steam_id": [ - 311 + 312 ], "content_markdown": [ - 86 + 87 ], "cover_image_url": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "published_at": [ - 5130 + 5154 ], "slug": [ - 86 + 87 ], "status": [ - 86 + 87 ], "teaser": [ - 86 + 87 ], "title": [ - 86 + 87 ], "updated_at": [ - 5130 + 5154 ], "view_count": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "news_articles_constraint": {}, "news_articles_inc_input": { "author_steam_id": [ - 309 + 310 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_insert_input": { "author": [ - 4503 + 4527 ], "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_max_fields": { "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_min_fields": { "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_mutation_response": { @@ -65840,118 +66172,118 @@ export default { 41 ], "returning": [ - 3428 + 3452 ], "__typename": [ - 84 + 85 ] }, "news_articles_on_conflict": { "constraint": [ - 3433 + 3457 ], "update_columns": [ - 3450 + 3474 ], "where": [ - 3432 + 3456 ], "__typename": [ - 84 + 85 ] }, "news_articles_order_by": { "author": [ - 4505 + 4529 ], "author_steam_id": [ - 3534 + 3558 ], "content_markdown": [ - 3534 + 3558 ], "cover_image_url": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "published_at": [ - 3534 + 3558 ], "slug": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "teaser": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "view_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "news_articles_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "news_articles_select_column": {}, "news_articles_set_input": { "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_stddev_fields": { @@ -65962,7 +66294,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_stddev_pop_fields": { @@ -65973,7 +66305,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_stddev_samp_fields": { @@ -65984,85 +66316,85 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_stream_cursor_input": { "initial_value": [ - 3448 + 3472 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "news_articles_stream_cursor_value_input": { "author_steam_id": [ - 309 + 310 ], "content_markdown": [ - 84 + 85 ], "cover_image_url": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "published_at": [ - 5129 + 5153 ], "slug": [ - 84 + 85 ], "status": [ - 84 + 85 ], "teaser": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_sum_fields": { "author_steam_id": [ - 309 + 310 ], "view_count": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 3434 + 3458 ], "_set": [ - 3443 + 3467 ], "where": [ - 3432 + 3456 ], "__typename": [ - 84 + 85 ] }, "news_articles_var_pop_fields": { @@ -66073,7 +66405,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_var_samp_fields": { @@ -66084,7 +66416,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "news_articles_variance_fields": { @@ -66095,49 +66427,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences": { "channel": [ - 84 + 85 ], "enabled": [ 6 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_aggregate": { "aggregate": [ - 3457 + 3481 ], "nodes": [ - 3455 + 3479 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_aggregate_fields": { "avg": [ - 3458 + 3482 ], "count": [ 41, { "columns": [ - 3469, + 3493, "[notification_preferences_select_column!]" ], "distinct": [ @@ -66146,34 +66478,34 @@ export default { } ], "max": [ - 3463 + 3487 ], "min": [ - 3464 + 3488 ], "stddev": [ - 3471 + 3495 ], "stddev_pop": [ - 3472 + 3496 ], "stddev_samp": [ - 3473 + 3497 ], "sum": [ - 3476 + 3500 ], "var_pop": [ - 3479 + 3503 ], "var_samp": [ - 3480 + 3504 ], "variance": [ - 3481 + 3505 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_avg_fields": { @@ -66181,99 +66513,99 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_bool_exp": { "_and": [ - 3459 + 3483 ], "_not": [ - 3459 + 3483 ], "_or": [ - 3459 + 3483 ], "channel": [ - 86 + 87 ], "enabled": [ 7 ], "key": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_constraint": {}, "notification_preferences_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_insert_input": { "channel": [ - 84 + 85 ], "enabled": [ 6 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_max_fields": { "channel": [ - 84 + 85 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_min_fields": { "channel": [ - 84 + 85 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_mutation_response": { @@ -66281,79 +66613,79 @@ export default { 41 ], "returning": [ - 3455 + 3479 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_on_conflict": { "constraint": [ - 3460 + 3484 ], "update_columns": [ - 3477 + 3501 ], "where": [ - 3459 + 3483 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_order_by": { "channel": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "key": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_pk_columns_input": { "channel": [ - 84 + 85 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_select_column": {}, "notification_preferences_set_input": { "channel": [ - 84 + 85 ], "enabled": [ 6 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_stddev_fields": { @@ -66361,7 +66693,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_stddev_pop_fields": { @@ -66369,7 +66701,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_stddev_samp_fields": { @@ -66377,61 +66709,61 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_stream_cursor_input": { "initial_value": [ - 3475 + 3499 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_stream_cursor_value_input": { "channel": [ - 84 + 85 ], "enabled": [ 6 ], "key": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_update_column": {}, "notification_preferences_updates": { "_inc": [ - 3461 + 3485 ], "_set": [ - 3470 + 3494 ], "where": [ - 3459 + 3483 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_var_pop_fields": { @@ -66439,7 +66771,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_var_samp_fields": { @@ -66447,7 +66779,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notification_preferences_variance_fields": { @@ -66455,26 +66787,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications": { "actions": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "created_at": [ - 5129 + 5153 ], "data": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -66482,13 +66814,13 @@ export default { 6 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "in_app": [ 6 @@ -66497,112 +66829,112 @@ export default { 6 ], "message": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "role": [ - 1283 + 1284 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "type": [ - 1243 + 1244 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate": { "aggregate": [ - 3488 + 3512 ], "nodes": [ - 3482 + 3506 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 3485 + 3509 ], "bool_or": [ - 3486 + 3510 ], "count": [ - 3487 + 3511 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 3511 + 3535 ], "distinct": [ 6 ], "filter": [ - 3494 + 3518 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 3512 + 3536 ], "distinct": [ 6 ], "filter": [ - 3494 + 3518 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 3510 + 3534 ], "distinct": [ 6 ], "filter": [ - 3494 + 3518 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_fields": { "avg": [ - 3492 + 3516 ], "count": [ 41, { "columns": [ - 3510, + 3534, "[notifications_select_column!]" ], "distinct": [ @@ -66611,94 +66943,94 @@ export default { } ], "max": [ - 3501 + 3525 ], "min": [ - 3503 + 3527 ], "stddev": [ - 3514 + 3538 ], "stddev_pop": [ - 3516 + 3540 ], "stddev_samp": [ - 3518 + 3542 ], "sum": [ - 3522 + 3546 ], "var_pop": [ - 3526 + 3550 ], "var_samp": [ - 3528 + 3552 ], "variance": [ - 3530 + 3554 ], "__typename": [ - 84 + 85 ] }, "notifications_aggregate_order_by": { "avg": [ - 3493 + 3517 ], "count": [ - 3534 + 3558 ], "max": [ - 3502 + 3526 ], "min": [ - 3504 + 3528 ], "stddev": [ - 3515 + 3539 ], "stddev_pop": [ - 3517 + 3541 ], "stddev_samp": [ - 3519 + 3543 ], "sum": [ - 3523 + 3547 ], "var_pop": [ - 3527 + 3551 ], "var_samp": [ - 3529 + 3553 ], "variance": [ - 3531 + 3555 ], "__typename": [ - 84 + 85 ] }, "notifications_append_input": { "actions": [ - 2348 + 2349 ], "data": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "notifications_arr_rel_insert_input": { "data": [ - 3500 + 3524 ], "on_conflict": [ - 3506 + 3530 ], "__typename": [ - 84 + 85 ] }, "notifications_avg_fields": { @@ -66706,47 +67038,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_bool_exp": { "_and": [ - 3494 + 3518 ], "_not": [ - 3494 + 3518 ], "_or": [ - 3494 + 3518 ], "actions": [ - 2350 + 2351 ], "created_at": [ - 5130 + 5154 ], "data": [ - 2350 + 2351 ], "deletable": [ 7 ], "deleted_at": [ - 5130 + 5154 ], "entity_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "in_app": [ 7 @@ -66755,37 +67087,37 @@ export default { 7 ], "message": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "role": [ - 1284 + 1285 ], "steam_id": [ - 311 + 312 ], "title": [ - 86 + 87 ], "type": [ - 1244 + 1245 ], "__typename": [ - 84 + 85 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 84 + 85 ], "data": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "notifications_delete_elem_input": { @@ -66796,49 +67128,49 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "notifications_delete_key_input": { "actions": [ - 84 + 85 ], "data": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "notifications_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "notifications_insert_input": { "actions": [ - 2348 + 2349 ], "created_at": [ - 5129 + 5153 ], "data": [ - 2348 + 2349 ], "deletable": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "in_app": [ 6 @@ -66847,129 +67179,129 @@ export default { 6 ], "message": [ - 84 + 85 ], "player": [ - 4503 + 4527 ], "role": [ - 1283 + 1284 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "type": [ - 1243 + 1244 ], "__typename": [ - 84 + 85 ] }, "notifications_max_fields": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "notifications_max_order_by": { "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "entity_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_min_fields": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "notifications_min_order_by": { "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "entity_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_mutation_response": { @@ -66977,93 +67309,93 @@ export default { 41 ], "returning": [ - 3482 + 3506 ], "__typename": [ - 84 + 85 ] }, "notifications_on_conflict": { "constraint": [ - 3495 + 3519 ], "update_columns": [ - 3524 + 3548 ], "where": [ - 3494 + 3518 ], "__typename": [ - 84 + 85 ] }, "notifications_order_by": { "actions": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "data": [ - 3534 + 3558 ], "deletable": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "entity_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "in_app": [ - 3534 + 3558 ], "is_read": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "role": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "notifications_prepend_input": { "actions": [ - 2348 + 2349 ], "data": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "notifications_select_column": {}, @@ -67071,25 +67403,25 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 2348 + 2349 ], "created_at": [ - 5129 + 5153 ], "data": [ - 2348 + 2349 ], "deletable": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "in_app": [ 6 @@ -67098,22 +67430,22 @@ export default { 6 ], "message": [ - 84 + 85 ], "role": [ - 1283 + 1284 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "type": [ - 1243 + 1244 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_fields": { @@ -67121,15 +67453,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_pop_fields": { @@ -67137,15 +67469,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_samp_fields": { @@ -67153,49 +67485,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 3521 + 3545 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 2348 + 2349 ], "created_at": [ - 5129 + 5153 ], "data": [ - 2348 + 2349 ], "deletable": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "entity_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "in_app": [ 6 @@ -67204,68 +67536,68 @@ export default { 6 ], "message": [ - 84 + 85 ], "role": [ - 1283 + 1284 ], "steam_id": [ - 309 + 310 ], "title": [ - 84 + 85 ], "type": [ - 1243 + 1244 ], "__typename": [ - 84 + 85 ] }, "notifications_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "notifications_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 3490 + 3514 ], "_delete_at_path": [ - 3496 + 3520 ], "_delete_elem": [ - 3497 + 3521 ], "_delete_key": [ - 3498 + 3522 ], "_inc": [ - 3499 + 3523 ], "_prepend": [ - 3509 + 3533 ], "_set": [ - 3513 + 3537 ], "where": [ - 3494 + 3518 ], "__typename": [ - 84 + 85 ] }, "notifications_var_pop_fields": { @@ -67273,15 +67605,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_var_samp_fields": { @@ -67289,15 +67621,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "notifications_variance_fields": { @@ -67305,116 +67637,116 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "notifications_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 3532 + 3556 ], "_gt": [ - 3532 + 3556 ], "_gte": [ - 3532 + 3556 ], "_in": [ - 3532 + 3556 ], "_is_null": [ 6 ], "_lt": [ - 3532 + 3556 ], "_lte": [ - 3532 + 3556 ], "_neq": [ - 3532 + 3556 ], "_nin": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 5129 + 5153 ], "pending_match_import": [ - 3576 + 3600 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 3539 + 3563 ], "nodes": [ - 3535 + 3559 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 3538 + 3562 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 3556 + 3580 ], "distinct": [ 6 ], "filter": [ - 3544 + 3568 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 3542 + 3566 ], "count": [ 41, { "columns": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -67423,83 +67755,83 @@ export default { } ], "max": [ - 3548 + 3572 ], "min": [ - 3550 + 3574 ], "stddev": [ - 3558 + 3582 ], "stddev_pop": [ - 3560 + 3584 ], "stddev_samp": [ - 3562 + 3586 ], "sum": [ - 3566 + 3590 ], "var_pop": [ - 3570 + 3594 ], "var_samp": [ - 3572 + 3596 ], "variance": [ - 3574 + 3598 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 3543 + 3567 ], "count": [ - 3534 + 3558 ], "max": [ - 3549 + 3573 ], "min": [ - 3551 + 3575 ], "stddev": [ - 3559 + 3583 ], "stddev_pop": [ - 3561 + 3585 ], "stddev_samp": [ - 3563 + 3587 ], "sum": [ - 3567 + 3591 ], "var_pop": [ - 3571 + 3595 ], "var_samp": [ - 3573 + 3597 ], "variance": [ - 3575 + 3599 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 3547 + 3571 ], "on_conflict": [ - 3553 + 3577 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_avg_fields": { @@ -67510,135 +67842,135 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 3544 + 3568 ], "_not": [ - 3544 + 3568 ], "_or": [ - 3544 + 3568 ], "created_at": [ - 5130 + 5154 ], "pending_match_import": [ - 3580 + 3604 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "valve_match_id": [ - 3533 + 3557 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 5129 + 5153 ], "pending_match_import": [ - 3587 + 3611 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_mutation_response": { @@ -67646,70 +67978,70 @@ export default { 41 ], "returning": [ - 3535 + 3559 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 3545 + 3569 ], "update_columns": [ - 3568 + 3592 ], "where": [ - 3544 + 3568 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_order_by": { "created_at": [ - 3534 + 3558 ], "pending_match_import": [ - 3589 + 3613 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_fields": { @@ -67720,18 +68052,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_pop_fields": { @@ -67742,18 +68074,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_samp_fields": { @@ -67764,80 +68096,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 3565 + 3589 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 309 + 310 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 3546 + 3570 ], "_set": [ - 3557 + 3581 ], "where": [ - 3544 + 3568 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_var_pop_fields": { @@ -67848,18 +68180,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_var_samp_fields": { @@ -67870,18 +68202,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_variance_fields": { @@ -67892,41 +68224,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "players": [ - 3535, + 3559, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -67936,19 +68268,19 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "players_aggregate": [ - 3536, + 3560, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -67958,50 +68290,50 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 3578 + 3602 ], "nodes": [ - 3576 + 3600 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 3579 + 3603 ], "count": [ 41, { "columns": [ - 3591, + 3615, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -68010,34 +68342,34 @@ export default { } ], "max": [ - 3584 + 3608 ], "min": [ - 3585 + 3609 ], "stddev": [ - 3593 + 3617 ], "stddev_pop": [ - 3594 + 3618 ], "stddev_samp": [ - 3595 + 3619 ], "sum": [ - 3598 + 3622 ], "var_pop": [ - 3601 + 3625 ], "var_samp": [ - 3602 + 3626 ], "variance": [ - 3603 + 3627 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_avg_fields": { @@ -68045,162 +68377,162 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_bool_exp": { "_and": [ - 3580 + 3604 ], "_not": [ - 3580 + 3604 ], "_or": [ - 3580 + 3604 ], "created_at": [ - 5130 + 5154 ], "demo_url": [ - 86 + 87 ], "error": [ - 86 + 87 ], "map_name": [ - 86 + 87 ], "match_start_time": [ - 5130 + 5154 ], "players": [ - 3544 + 3568 ], "players_aggregate": [ - 3537 + 3561 ], "share_code": [ - 86 + 87 ], "status": [ - 86 + 87 ], "updated_at": [ - 5130 + 5154 ], "valve_match_id": [ - 3533 + 3557 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_insert_input": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "players": [ - 3541 + 3565 ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_max_fields": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_min_fields": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_mutation_response": { @@ -68208,111 +68540,111 @@ export default { 41 ], "returning": [ - 3576 + 3600 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 3583 + 3607 ], "on_conflict": [ - 3588 + 3612 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 3581 + 3605 ], "update_columns": [ - 3599 + 3623 ], "where": [ - 3580 + 3604 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_order_by": { "created_at": [ - 3534 + 3558 ], "demo_url": [ - 3534 + 3558 ], "error": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match_start_time": [ - 3534 + 3558 ], "players_aggregate": [ - 3540 + 3564 ], "share_code": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "valve_match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_stddev_fields": { @@ -68320,7 +68652,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_stddev_pop_fields": { @@ -68328,7 +68660,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_stddev_samp_fields": { @@ -68336,73 +68668,73 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 3597 + 3621 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "demo_url": [ - 84 + 85 ], "error": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_start_time": [ - 5129 + 5153 ], "share_code": [ - 84 + 85 ], "status": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 3582 + 3606 ], "_set": [ - 3592 + 3616 ], "where": [ - 3580 + 3604 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_var_pop_fields": { @@ -68410,7 +68742,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_var_samp_fields": { @@ -68418,7 +68750,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "pending_match_imports_variance_fields": { @@ -68426,15 +68758,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo": { "attacker": [ - 4492 + 4516 ], "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -68446,7 +68778,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -68464,16 +68796,16 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -68494,35 +68826,35 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 3606 + 3630 ], "nodes": [ - 3604 + 3628 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 3607 + 3631 ], "count": [ 41, { "columns": [ - 3618, + 3642, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -68531,34 +68863,34 @@ export default { } ], "max": [ - 3612 + 3636 ], "min": [ - 3613 + 3637 ], "stddev": [ - 3620 + 3644 ], "stddev_pop": [ - 3621 + 3645 ], "stddev_samp": [ - 3622 + 3646 ], "sum": [ - 3625 + 3649 ], "var_pop": [ - 3628 + 3652 ], "var_samp": [ - 3629 + 3653 ], "variance": [ - 3630 + 3654 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_avg_fields": { @@ -68617,24 +68949,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 3608 + 3632 ], "_not": [ - 3608 + 3632 ], "_or": [ - 3608 + 3632 ], "attacker": [ - 4496 + 4520 ], "attacker_steam_id": [ - 311 + 312 ], "counter_strafe_eligible_shots": [ 42 @@ -68646,7 +68978,7 @@ export default { 42 ], "crosshair_angle_sum_deg": [ - 3533 + 3557 ], "first_bullet_hits": [ 42 @@ -68664,16 +68996,16 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "non_awp_hits": [ 42 @@ -68694,19 +69026,19 @@ export default { 42 ], "time_to_damage_sum_s": [ - 3533 + 3557 ], "total_engagement_frames": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -68718,7 +69050,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -68754,21 +69086,21 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 4503 + 4527 ], "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -68780,7 +69112,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -68798,16 +69130,16 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -68828,18 +69160,18 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -68851,7 +69183,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -68869,10 +69201,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -68893,18 +69225,18 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -68916,7 +69248,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -68934,10 +69266,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -68958,13 +69290,13 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_mutation_response": { @@ -68972,115 +69304,115 @@ export default { 41 ], "returning": [ - 3604 + 3628 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 3609 + 3633 ], "update_columns": [ - 3626 + 3650 ], "where": [ - 3608 + 3632 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 4505 + 4529 ], "attacker_steam_id": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 309 + 310 ], "match_map_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -69092,7 +69424,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -69110,10 +69442,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -69134,13 +69466,13 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_stddev_fields": { @@ -69199,7 +69531,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_stddev_pop_fields": { @@ -69258,7 +69590,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_stddev_samp_fields": { @@ -69317,23 +69649,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 3624 + 3648 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -69345,7 +69677,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -69363,10 +69695,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "non_awp_hits": [ 41 @@ -69387,18 +69719,18 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 309 + 310 ], "counter_strafe_eligible_shots": [ 41 @@ -69410,7 +69742,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "first_bullet_hits": [ 41 @@ -69446,28 +69778,28 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 3610 + 3634 ], "_set": [ - 3619 + 3643 ], "where": [ - 3608 + 3632 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_var_pop_fields": { @@ -69526,7 +69858,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_var_samp_fields": { @@ -69585,7 +69917,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_stats_demo_variance_fields": { @@ -69644,7 +69976,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats": { @@ -69661,19 +69993,19 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "shots": [ 41 @@ -69682,60 +70014,60 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 3635 + 3659 ], "nodes": [ - 3631 + 3655 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 3634 + 3658 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 3652 + 3676 ], "distinct": [ 6 ], "filter": [ - 3640 + 3664 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 3638 + 3662 ], "count": [ 41, { "columns": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -69744,83 +70076,83 @@ export default { } ], "max": [ - 3644 + 3668 ], "min": [ - 3646 + 3670 ], "stddev": [ - 3654 + 3678 ], "stddev_pop": [ - 3656 + 3680 ], "stddev_samp": [ - 3658 + 3682 ], "sum": [ - 3662 + 3686 ], "var_pop": [ - 3666 + 3690 ], "var_samp": [ - 3668 + 3692 ], "variance": [ - 3670 + 3694 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 3639 + 3663 ], "count": [ - 3534 + 3558 ], "max": [ - 3645 + 3669 ], "min": [ - 3647 + 3671 ], "stddev": [ - 3655 + 3679 ], "stddev_pop": [ - 3657 + 3681 ], "stddev_samp": [ - 3659 + 3683 ], "sum": [ - 3663 + 3687 ], "var_pop": [ - 3667 + 3691 ], "var_samp": [ - 3669 + 3693 ], "variance": [ - 3671 + 3695 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 3643 + 3667 ], "on_conflict": [ - 3649 + 3673 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_avg_fields": { @@ -69846,44 +70178,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 3640 + 3664 ], "_not": [ - 3640 + 3664 ], "_or": [ - 3640 + 3664 ], "first_bullet_hits": [ 42 @@ -69898,19 +70230,19 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "shots": [ 42 @@ -69919,13 +70251,13 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "weapon_class": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_constraint": {}, @@ -69949,10 +70281,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_insert_input": { @@ -69969,19 +70301,19 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "shots": [ 41 @@ -69990,13 +70322,13 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_max_fields": { @@ -70013,10 +70345,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -70025,48 +70357,48 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_min_fields": { @@ -70083,10 +70415,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -70095,48 +70427,48 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_mutation_response": { @@ -70144,82 +70476,82 @@ export default { 41 ], "returning": [ - 3631 + 3655 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 3641 + 3665 ], "update_columns": [ - 3664 + 3688 ], "where": [ - 3640 + 3664 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_select_column": {}, @@ -70237,10 +70569,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -70249,13 +70581,13 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_fields": { @@ -70281,33 +70613,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_pop_fields": { @@ -70333,33 +70665,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_samp_fields": { @@ -70385,44 +70717,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 3661 + 3685 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { @@ -70439,10 +70771,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -70451,13 +70783,13 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_sum_fields": { @@ -70480,51 +70812,51 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 3642 + 3666 ], "_set": [ - 3653 + 3677 ], "where": [ - 3640 + 3664 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_var_pop_fields": { @@ -70550,33 +70882,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_var_samp_fields": { @@ -70602,33 +70934,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_variance_fields": { @@ -70654,53 +70986,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists": { "attacked_player": [ - 4492 + 4516 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "flash": [ 6 @@ -70709,115 +71041,115 @@ export default { 6 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate": { "aggregate": [ - 3678 + 3702 ], "nodes": [ - 3672 + 3696 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 3675 + 3699 ], "bool_or": [ - 3676 + 3700 ], "count": [ - 3677 + 3701 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 3696 + 3720 ], "distinct": [ 6 ], "filter": [ - 3683 + 3707 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 3697 + 3721 ], "distinct": [ 6 ], "filter": [ - 3683 + 3707 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 3695 + 3719 ], "distinct": [ 6 ], "filter": [ - 3683 + 3707 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_fields": { "avg": [ - 3681 + 3705 ], "count": [ 41, { "columns": [ - 3695, + 3719, "[player_assists_select_column!]" ], "distinct": [ @@ -70826,83 +71158,83 @@ export default { } ], "max": [ - 3687 + 3711 ], "min": [ - 3689 + 3713 ], "stddev": [ - 3699 + 3723 ], "stddev_pop": [ - 3701 + 3725 ], "stddev_samp": [ - 3703 + 3727 ], "sum": [ - 3707 + 3731 ], "var_pop": [ - 3711 + 3735 ], "var_samp": [ - 3713 + 3737 ], "variance": [ - 3715 + 3739 ], "__typename": [ - 84 + 85 ] }, "player_assists_aggregate_order_by": { "avg": [ - 3682 + 3706 ], "count": [ - 3534 + 3558 ], "max": [ - 3688 + 3712 ], "min": [ - 3690 + 3714 ], "stddev": [ - 3700 + 3724 ], "stddev_pop": [ - 3702 + 3726 ], "stddev_samp": [ - 3704 + 3728 ], "sum": [ - 3708 + 3732 ], "var_pop": [ - 3712 + 3736 ], "var_samp": [ - 3714 + 3738 ], "variance": [ - 3716 + 3740 ], "__typename": [ - 84 + 85 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 3686 + 3710 ], "on_conflict": [ - 3692 + 3716 ], "__typename": [ - 84 + 85 ] }, "player_assists_avg_fields": { @@ -70916,50 +71248,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_bool_exp": { "_and": [ - 3683 + 3707 ], "_not": [ - 3683 + 3707 ], "_or": [ - 3683 + 3707 ], "attacked_player": [ - 4496 + 4520 ], "attacked_steam_id": [ - 311 + 312 ], "attacked_team": [ - 86 + 87 ], "attacker_steam_id": [ - 311 + 312 ], "attacker_team": [ - 86 + 87 ], "deleted_at": [ - 5130 + 5154 ], "flash": [ 7 @@ -70968,218 +71300,218 @@ export default { 7 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "round": [ 42 ], "time": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_assists_insert_input": { "attacked_player": [ - 4503 + 4527 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "flash": [ 6 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_mutation_response": { @@ -71187,91 +71519,91 @@ export default { 41 ], "returning": [ - 3672 + 3696 ], "__typename": [ - 84 + 85 ] }, "player_assists_on_conflict": { "constraint": [ - 3684 + 3708 ], "update_columns": [ - 3709 + 3733 ], "where": [ - 3683 + 3707 ], "__typename": [ - 84 + 85 ] }, "player_assists_order_by": { "attacked_player": [ - 4505 + 4529 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "flash": [ - 3534 + 3558 ], "is_team_assist": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "match_map_id": [ - 6341 + 6365 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_select_column": {}, @@ -71279,37 +71611,37 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "flash": [ 6 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_fields": { @@ -71323,21 +71655,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_pop_fields": { @@ -71351,21 +71683,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_samp_fields": { @@ -71379,110 +71711,110 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 3706 + 3730 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "flash": [ 6 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 3685 + 3709 ], "_set": [ - 3698 + 3722 ], "where": [ - 3683 + 3707 ], "__typename": [ - 84 + 85 ] }, "player_assists_var_pop_fields": { @@ -71496,21 +71828,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_var_samp_fields": { @@ -71524,21 +71856,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_assists_variance_fields": { @@ -71552,47 +71884,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "counter_strafe_pct": [ - 3532 + 3556 ], "crosshair_deg": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "maps": [ 41 @@ -71604,44 +71936,44 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "time_to_damage_s": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 3719 + 3743 ], "nodes": [ - 3717 + 3741 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 3720 + 3744 ], "count": [ 41, { "columns": [ - 3725, + 3749, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -71650,34 +71982,34 @@ export default { } ], "max": [ - 3722 + 3746 ], "min": [ - 3723 + 3747 ], "stddev": [ - 3726 + 3750 ], "stddev_pop": [ - 3727 + 3751 ], "stddev_samp": [ - 3728 + 3752 ], "sum": [ - 3731 + 3755 ], "var_pop": [ - 3732 + 3756 ], "var_samp": [ - 3733 + 3757 ], "variance": [ - 3734 + 3758 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_avg_fields": { @@ -71730,42 +72062,42 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 3721 + 3745 ], "_not": [ - 3721 + 3745 ], "_or": [ - 3721 + 3745 ], "accuracy": [ - 3533 + 3557 ], "accuracy_spotted": [ - 3533 + 3557 ], "counter_strafe_pct": [ - 3533 + 3557 ], "crosshair_deg": [ - 3533 + 3557 ], "enemy_blind_pr": [ - 3533 + 3557 ], "flash_assists_pr": [ - 3533 + 3557 ], "hs_pct": [ - 3533 + 3557 ], "kast_pct": [ - 3533 + 3557 ], "maps": [ 42 @@ -71777,48 +72109,48 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "survival_pct": [ - 3533 + 3557 ], "time_to_damage_s": [ - 3533 + 3557 ], "traded_death_pct": [ - 3533 + 3557 ], "util_efficiency": [ - 3533 + 3557 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "counter_strafe_pct": [ - 3532 + 3556 ], "crosshair_deg": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "maps": [ 41 @@ -71830,48 +72162,48 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "time_to_damage_s": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "counter_strafe_pct": [ - 3532 + 3556 ], "crosshair_deg": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "maps": [ 41 @@ -71883,75 +72215,75 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "time_to_damage_s": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 3534 + 3558 ], "accuracy_spotted": [ - 3534 + 3558 ], "counter_strafe_pct": [ - 3534 + 3558 ], "crosshair_deg": [ - 3534 + 3558 ], "enemy_blind_pr": [ - 3534 + 3558 ], "flash_assists_pr": [ - 3534 + 3558 ], "hs_pct": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "maps": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "survival_pct": [ - 3534 + 3558 ], "time_to_damage_s": [ - 3534 + 3558 ], "traded_death_pct": [ - 3534 + 3558 ], "util_efficiency": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_select_column": {}, @@ -72005,7 +72337,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_stddev_pop_fields": { @@ -72058,7 +72390,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_stddev_samp_fields": { @@ -72111,44 +72443,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 3730 + 3754 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "counter_strafe_pct": [ - 3532 + 3556 ], "crosshair_deg": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "maps": [ 41 @@ -72160,48 +72492,48 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "time_to_damage_s": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "counter_strafe_pct": [ - 3532 + 3556 ], "crosshair_deg": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "maps": [ 41 @@ -72213,22 +72545,22 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "time_to_damage_s": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_var_pop_fields": { @@ -72281,7 +72613,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_var_samp_fields": { @@ -72334,7 +72666,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_career_stats_v_variance_fields": { @@ -72387,7 +72719,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages": { @@ -72395,31 +72727,31 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_player": [ - 4492 + 4516 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -72428,93 +72760,93 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "round": [ - 3532 + 3556 ], "team_damage": [ 6 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_aggregate": { "aggregate": [ - 3739 + 3763 ], "nodes": [ - 3735 + 3759 ], "__typename": [ - 84 + 85 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 3738 + 3762 ], "__typename": [ - 84 + 85 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 3756 + 3780 ], "distinct": [ 6 ], "filter": [ - 3744 + 3768 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_damages_aggregate_fields": { "avg": [ - 3742 + 3766 ], "count": [ 41, { "columns": [ - 3756, + 3780, "[player_damages_select_column!]" ], "distinct": [ @@ -72523,83 +72855,83 @@ export default { } ], "max": [ - 3748 + 3772 ], "min": [ - 3750 + 3774 ], "stddev": [ - 3758 + 3782 ], "stddev_pop": [ - 3760 + 3784 ], "stddev_samp": [ - 3762 + 3786 ], "sum": [ - 3766 + 3790 ], "var_pop": [ - 3770 + 3794 ], "var_samp": [ - 3772 + 3796 ], "variance": [ - 3774 + 3798 ], "__typename": [ - 84 + 85 ] }, "player_damages_aggregate_order_by": { "avg": [ - 3743 + 3767 ], "count": [ - 3534 + 3558 ], "max": [ - 3749 + 3773 ], "min": [ - 3751 + 3775 ], "stddev": [ - 3759 + 3783 ], "stddev_pop": [ - 3761 + 3785 ], "stddev_samp": [ - 3763 + 3787 ], "sum": [ - 3767 + 3791 ], "var_pop": [ - 3771 + 3795 ], "var_samp": [ - 3773 + 3797 ], "variance": [ - 3775 + 3799 ], "__typename": [ - 84 + 85 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 3747 + 3771 ], "on_conflict": [ - 3753 + 3777 ], "__typename": [ - 84 + 85 ] }, "player_damages_avg_fields": { @@ -72625,74 +72957,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_avg_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_bool_exp": { "_and": [ - 3744 + 3768 ], "_not": [ - 3744 + 3768 ], "_or": [ - 3744 + 3768 ], "armor": [ 42 ], "attacked_location": [ - 86 + 87 ], "attacked_location_coordinates": [ - 86 + 87 ], "attacked_player": [ - 4496 + 4520 ], "attacked_steam_id": [ - 311 + 312 ], "attacked_team": [ - 86 + 87 ], "attacker_location": [ - 86 + 87 ], "attacker_location_coordinates": [ - 86 + 87 ], "attacker_steam_id": [ - 311 + 312 ], "attacker_team": [ - 86 + 87 ], "damage": [ 42 @@ -72701,46 +73033,46 @@ export default { 42 ], "deleted_at": [ - 5130 + 5154 ], "health": [ 42 ], "hitgroup": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "round": [ - 3533 + 3557 ], "team_damage": [ 7 ], "time": [ - 5130 + 5154 ], "with": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "player_damages_constraint": {}, @@ -72749,10 +73081,10 @@ export default { 41 ], "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage": [ 41 @@ -72764,10 +73096,10 @@ export default { 41 ], "round": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_damages_insert_input": { @@ -72775,31 +73107,31 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_player": [ - 4503 + 4527 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -72808,43 +73140,43 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "round": [ - 3532 + 3556 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_max_fields": { @@ -72852,28 +73184,28 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -72882,99 +73214,99 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ - 3532 + 3556 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_max_order_by": { "armor": [ - 3534 + 3558 ], "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_min_fields": { @@ -72982,28 +73314,28 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -73012,99 +73344,99 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ - 3532 + 3556 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_min_order_by": { "armor": [ - 3534 + 3558 ], "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_mutation_response": { @@ -73112,118 +73444,118 @@ export default { 41 ], "returning": [ - 3735 + 3759 ], "__typename": [ - 84 + 85 ] }, "player_damages_on_conflict": { "constraint": [ - 3745 + 3769 ], "update_columns": [ - 3768 + 3792 ], "where": [ - 3744 + 3768 ], "__typename": [ - 84 + 85 ] }, "player_damages_order_by": { "armor": [ - 3534 + 3558 ], "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_player": [ - 4505 + 4529 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "round": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_pk_columns_input": { "id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_damages_select_column": {}, @@ -73232,28 +73564,28 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -73262,34 +73594,34 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ - 3532 + 3556 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_fields": { @@ -73315,33 +73647,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_pop_fields": { @@ -73367,33 +73699,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_samp_fields": { @@ -73419,44 +73751,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 3765 + 3789 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_damages_stream_cursor_value_input": { @@ -73464,28 +73796,28 @@ export default { 41 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "damage": [ 41 @@ -73494,34 +73826,34 @@ export default { 41 ], "deleted_at": [ - 5129 + 5153 ], "health": [ 41 ], "hitgroup": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ - 3532 + 3556 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_damages_sum_fields": { @@ -73529,10 +73861,10 @@ export default { 41 ], "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage": [ 41 @@ -73544,51 +73876,51 @@ export default { 41 ], "round": [ - 3532 + 3556 ], "__typename": [ - 84 + 85 ] }, "player_damages_sum_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 3746 + 3770 ], "_set": [ - 3757 + 3781 ], "where": [ - 3744 + 3768 ], "__typename": [ - 84 + 85 ] }, "player_damages_var_pop_fields": { @@ -73614,33 +73946,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_var_pop_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_var_samp_fields": { @@ -73666,33 +73998,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_var_samp_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_damages_variance_fields": { @@ -73718,71 +74050,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_damages_variance_order_by": { "armor": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_armor": [ - 3534 + 3558 ], "health": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_elo": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -73794,68 +74126,68 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player": [ - 4492 + 4516 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season": [ - 4592 + 4616 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "player_elo_aggregate": { "aggregate": [ - 3778 + 3802 ], "nodes": [ - 3776 + 3800 ], "__typename": [ - 84 + 85 ] }, "player_elo_aggregate_fields": { "avg": [ - 3779 + 3803 ], "count": [ 41, { "columns": [ - 3790, + 3814, "[player_elo_select_column!]" ], "distinct": [ @@ -73864,34 +74196,34 @@ export default { } ], "max": [ - 3784 + 3808 ], "min": [ - 3785 + 3809 ], "stddev": [ - 3792 + 3816 ], "stddev_pop": [ - 3793 + 3817 ], "stddev_samp": [ - 3794 + 3818 ], "sum": [ - 3797 + 3821 ], "var_pop": [ - 3800 + 3824 ], "var_samp": [ - 3801 + 3825 ], "variance": [ - 3802 + 3826 ], "__typename": [ - 84 + 85 ] }, "player_elo_avg_fields": { @@ -73959,54 +74291,54 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_bool_exp": { "_and": [ - 3780 + 3804 ], "_not": [ - 3780 + 3804 ], "_or": [ - 3780 + 3804 ], "actual_score": [ - 2004 + 2005 ], "assists": [ 42 ], "change": [ - 3533 + 3557 ], "created_at": [ - 5130 + 5154 ], "current": [ - 3533 + 3557 ], "damage": [ 42 ], "damage_percent": [ - 2004 + 2005 ], "deaths": [ 42 ], "expected_score": [ - 2004 + 2005 ], "impact": [ - 3533 + 3557 ], "k_factor": [ 42 ], "kda": [ - 2004 + 2005 ], "kills": [ 42 @@ -74018,82 +74350,82 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "opponent_team_elo_avg": [ - 2004 + 2005 ], "performance_multiplier": [ - 2004 + 2005 ], "player": [ - 4496 + 4520 ], "player_team_elo_avg": [ - 2004 + 2005 ], "rating_for_expected": [ - 2004 + 2005 ], "season": [ - 4596 + 4620 ], "season_id": [ - 6343 + 6367 ], "series_multiplier": [ 42 ], "steam_id": [ - 311 + 312 ], "team_avg_kda": [ - 2004 + 2005 ], "type": [ - 1223 + 1224 ], "__typename": [ - 84 + 85 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74105,66 +74437,66 @@ export default { 41 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_elo_insert_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74176,84 +74508,84 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player": [ - 4503 + 4527 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season": [ - 4603 + 4627 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "player_elo_max_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74265,72 +74597,72 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_elo_min_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74342,34 +74674,34 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_elo_mutation_response": { @@ -74377,166 +74709,166 @@ export default { 41 ], "returning": [ - 3776 + 3800 ], "__typename": [ - 84 + 85 ] }, "player_elo_on_conflict": { "constraint": [ - 3781 + 3805 ], "update_columns": [ - 3798 + 3822 ], "where": [ - 3780 + 3804 ], "__typename": [ - 84 + 85 ] }, "player_elo_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "change": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "season": [ - 4605 + 4629 ], "season_id": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_elo_pk_columns_input": { "match_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "type": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74548,37 +74880,37 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "player_elo_stddev_fields": { @@ -74646,7 +74978,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_stddev_pop_fields": { @@ -74714,7 +75046,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_stddev_samp_fields": { @@ -74782,56 +75114,56 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 3796 + 3820 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "created_at": [ - 5129 + 5153 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74843,72 +75175,72 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 1222 + 1223 ], "__typename": [ - 84 + 85 ] }, "player_elo_sum_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 ], "change": [ - 3532 + 3556 ], "current": [ - 3532 + 3556 ], "damage": [ 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 3532 + 3556 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -74920,43 +75252,43 @@ export default { 41 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "series_multiplier": [ 41 ], "steam_id": [ - 309 + 310 ], "team_avg_kda": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3782 + 3806 ], "_set": [ - 3791 + 3815 ], "where": [ - 3780 + 3804 ], "__typename": [ - 84 + 85 ] }, "player_elo_var_pop_fields": { @@ -75024,7 +75356,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_var_samp_fields": { @@ -75092,7 +75424,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_elo_variance_fields": { @@ -75160,7 +75492,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history": { @@ -75168,19 +75500,19 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "player": [ - 4492 + 4516 ], "previous_rank": [ 41 @@ -75189,57 +75521,57 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3807 + 3831 ], "nodes": [ - 3803 + 3827 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3806 + 3830 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3824 + 3848 ], "distinct": [ 6 ], "filter": [ - 3812 + 3836 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3810 + 3834 ], "count": [ 41, { "columns": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -75248,83 +75580,83 @@ export default { } ], "max": [ - 3816 + 3840 ], "min": [ - 3818 + 3842 ], "stddev": [ - 3826 + 3850 ], "stddev_pop": [ - 3828 + 3852 ], "stddev_samp": [ - 3830 + 3854 ], "sum": [ - 3834 + 3858 ], "var_pop": [ - 3838 + 3862 ], "var_samp": [ - 3840 + 3864 ], "variance": [ - 3842 + 3866 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3811 + 3835 ], "count": [ - 3534 + 3558 ], "max": [ - 3817 + 3841 ], "min": [ - 3819 + 3843 ], "stddev": [ - 3827 + 3851 ], "stddev_pop": [ - 3829 + 3853 ], "stddev_samp": [ - 3831 + 3855 ], "sum": [ - 3835 + 3859 ], "var_pop": [ - 3839 + 3863 ], "var_samp": [ - 3841 + 3865 ], "variance": [ - 3843 + 3867 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3815 + 3839 ], "on_conflict": [ - 3821 + 3845 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_avg_fields": { @@ -75341,53 +75673,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3812 + 3836 ], "_not": [ - 3812 + 3836 ], "_or": [ - 3812 + 3836 ], "elo": [ 42 ], "id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "observed_at": [ - 5130 + 5154 ], "player": [ - 4496 + 4520 ], "previous_rank": [ 42 @@ -75396,10 +75728,10 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_constraint": {}, @@ -75414,10 +75746,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_insert_input": { @@ -75425,19 +75757,19 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "player": [ - 4503 + 4527 ], "previous_rank": [ 41 @@ -75446,10 +75778,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_max_fields": { @@ -75457,13 +75789,13 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -75472,36 +75804,36 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_min_fields": { @@ -75509,13 +75841,13 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -75524,36 +75856,36 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_mutation_response": { @@ -75561,64 +75893,64 @@ export default { 41 ], "returning": [ - 3803 + 3827 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3813 + 3837 ], "update_columns": [ - 3836 + 3860 ], "where": [ - 3812 + 3836 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_select_column": {}, @@ -75627,13 +75959,13 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -75642,10 +75974,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_fields": { @@ -75662,24 +75994,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_pop_fields": { @@ -75696,24 +76028,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_samp_fields": { @@ -75730,35 +76062,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3833 + 3857 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_stream_cursor_value_input": { @@ -75766,13 +76098,13 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -75781,10 +76113,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_sum_fields": { @@ -75798,42 +76130,42 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3814 + 3838 ], "_set": [ - 3825 + 3849 ], "where": [ - 3812 + 3836 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_var_pop_fields": { @@ -75850,24 +76182,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_var_samp_fields": { @@ -75884,24 +76216,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_variance_fields": { @@ -75918,53 +76250,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "skill_level": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "blinded": [ - 4492 + 4516 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 @@ -75973,100 +76305,100 @@ export default { 6 ], "thrown_by": [ - 4492 + 4516 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate": { "aggregate": [ - 3850 + 3874 ], "nodes": [ - 3844 + 3868 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3847 + 3871 ], "bool_or": [ - 3848 + 3872 ], "count": [ - 3849 + 3873 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3868 + 3892 ], "distinct": [ 6 ], "filter": [ - 3855 + 3879 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3869 + 3893 ], "distinct": [ 6 ], "filter": [ - 3855 + 3879 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3867 + 3891 ], "distinct": [ 6 ], "filter": [ - 3855 + 3879 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_fields": { "avg": [ - 3853 + 3877 ], "count": [ 41, { "columns": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "distinct": [ @@ -76075,83 +76407,83 @@ export default { } ], "max": [ - 3859 + 3883 ], "min": [ - 3861 + 3885 ], "stddev": [ - 3871 + 3895 ], "stddev_pop": [ - 3873 + 3897 ], "stddev_samp": [ - 3875 + 3899 ], "sum": [ - 3879 + 3903 ], "var_pop": [ - 3883 + 3907 ], "var_samp": [ - 3885 + 3909 ], "variance": [ - 3887 + 3911 ], "__typename": [ - 84 + 85 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 3854 + 3878 ], "count": [ - 3534 + 3558 ], "max": [ - 3860 + 3884 ], "min": [ - 3862 + 3886 ], "stddev": [ - 3872 + 3896 ], "stddev_pop": [ - 3874 + 3898 ], "stddev_samp": [ - 3876 + 3900 ], "sum": [ - 3880 + 3904 ], "var_pop": [ - 3884 + 3908 ], "var_samp": [ - 3886 + 3910 ], "variance": [ - 3888 + 3912 ], "__typename": [ - 84 + 85 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 3858 + 3882 ], "on_conflict": [ - 3864 + 3888 ], "__typename": [ - 84 + 85 ] }, "player_flashes_avg_fields": { @@ -76168,62 +76500,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_bool_exp": { "_and": [ - 3855 + 3879 ], "_not": [ - 3855 + 3879 ], "_or": [ - 3855 + 3879 ], "attacked_steam_id": [ - 311 + 312 ], "attacker_steam_id": [ - 311 + 312 ], "blinded": [ - 4496 + 4520 ], "deleted_at": [ - 5130 + 5154 ], "duration": [ - 3533 + 3557 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "round": [ 42 @@ -76232,60 +76564,60 @@ export default { 7 ], "thrown_by": [ - 4496 + 4520 ], "time": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "duration": [ - 3532 + 3556 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "blinded": [ - 4503 + 4527 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 @@ -76294,129 +76626,129 @@ export default { 6 ], "thrown_by": [ - 4503 + 4527 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_mutation_response": { @@ -76424,85 +76756,85 @@ export default { 41 ], "returning": [ - 3844 + 3868 ], "__typename": [ - 84 + 85 ] }, "player_flashes_on_conflict": { "constraint": [ - 3856 + 3880 ], "update_columns": [ - 3881 + 3905 ], "where": [ - 3855 + 3879 ], "__typename": [ - 84 + 85 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "blinded": [ - 4505 + 4529 ], "deleted_at": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_flash": [ - 3534 + 3558 ], "thrown_by": [ - 4505 + 4529 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "match_map_id": [ - 6341 + 6365 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_select_column": {}, @@ -76510,22 +76842,22 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 @@ -76534,10 +76866,10 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_fields": { @@ -76554,24 +76886,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_pop_fields": { @@ -76588,24 +76920,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_samp_fields": { @@ -76622,55 +76954,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3878 + 3902 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "duration": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 @@ -76679,59 +77011,59 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "duration": [ - 3532 + 3556 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3857 + 3881 ], "_set": [ - 3870 + 3894 ], "where": [ - 3855 + 3879 ], "__typename": [ - 84 + 85 ] }, "player_flashes_var_pop_fields": { @@ -76748,24 +77080,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_var_samp_fields": { @@ -76782,24 +77114,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_flashes_variance_fields": { @@ -76816,24 +77148,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "duration": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills": { @@ -76841,43 +77173,43 @@ export default { 6 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_player": [ - 4492 + 4516 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "blinded": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "headshot": [ 6 ], "hitgroup": [ - 84 + 85 ], "in_air": [ 6 @@ -76886,22 +77218,22 @@ export default { 6 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "no_scope": [ 6 ], "player": [ - 4492 + 4516 ], "round": [ 41 @@ -76916,100 +77248,100 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate": { "aggregate": [ - 3895 + 3919 ], "nodes": [ - 3889 + 3913 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3892 + 3916 ], "bool_or": [ - 3893 + 3917 ], "count": [ - 3894 + 3918 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3954 + 3978 ], "distinct": [ 6 ], "filter": [ - 3900 + 3924 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3955 + 3979 ], "distinct": [ 6 ], "filter": [ - 3900 + 3924 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3953 + 3977 ], "distinct": [ 6 ], "filter": [ - 3900 + 3924 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_fields": { "avg": [ - 3898 + 3922 ], "count": [ 41, { "columns": [ - 3953, + 3977, "[player_kills_select_column!]" ], "distinct": [ @@ -77018,83 +77350,83 @@ export default { } ], "max": [ - 3945 + 3969 ], "min": [ - 3947 + 3971 ], "stddev": [ - 3957 + 3981 ], "stddev_pop": [ - 3959 + 3983 ], "stddev_samp": [ - 3961 + 3985 ], "sum": [ - 3965 + 3989 ], "var_pop": [ - 3969 + 3993 ], "var_samp": [ - 3971 + 3995 ], "variance": [ - 3973 + 3997 ], "__typename": [ - 84 + 85 ] }, "player_kills_aggregate_order_by": { "avg": [ - 3899 + 3923 ], "count": [ - 3534 + 3558 ], "max": [ - 3946 + 3970 ], "min": [ - 3948 + 3972 ], "stddev": [ - 3958 + 3982 ], "stddev_pop": [ - 3960 + 3984 ], "stddev_samp": [ - 3962 + 3986 ], "sum": [ - 3966 + 3990 ], "var_pop": [ - 3970 + 3994 ], "var_samp": [ - 3972 + 3996 ], "variance": [ - 3974 + 3998 ], "__typename": [ - 84 + 85 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 3944 + 3968 ], "on_conflict": [ - 3950 + 3974 ], "__typename": [ - 84 + 85 ] }, "player_kills_avg_fields": { @@ -77108,74 +77440,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_bool_exp": { "_and": [ - 3900 + 3924 ], "_not": [ - 3900 + 3924 ], "_or": [ - 3900 + 3924 ], "assisted": [ 7 ], "attacked_location": [ - 86 + 87 ], "attacked_location_coordinates": [ - 86 + 87 ], "attacked_player": [ - 4496 + 4520 ], "attacked_steam_id": [ - 311 + 312 ], "attacked_team": [ - 86 + 87 ], "attacker_location": [ - 86 + 87 ], "attacker_location_coordinates": [ - 86 + 87 ], "attacker_steam_id": [ - 311 + 312 ], "attacker_team": [ - 86 + 87 ], "blinded": [ 7 ], "deleted_at": [ - 5130 + 5154 ], "headshot": [ 7 ], "hitgroup": [ - 86 + 87 ], "in_air": [ 7 @@ -77184,22 +77516,22 @@ export default { 7 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "no_scope": [ 7 ], "player": [ - 4496 + 4520 ], "round": [ 42 @@ -77214,77 +77546,77 @@ export default { 7 ], "time": [ - 5130 + 5154 ], "with": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon": { "kill_count": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3905 + 3929 ], "nodes": [ - 3901 + 3925 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3904 + 3928 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3922 + 3946 ], "distinct": [ 6 ], "filter": [ - 3910 + 3934 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3908 + 3932 ], "count": [ 41, { "columns": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -77293,83 +77625,83 @@ export default { } ], "max": [ - 3914 + 3938 ], "min": [ - 3916 + 3940 ], "stddev": [ - 3924 + 3948 ], "stddev_pop": [ - 3926 + 3950 ], "stddev_samp": [ - 3928 + 3952 ], "sum": [ - 3932 + 3956 ], "var_pop": [ - 3936 + 3960 ], "var_samp": [ - 3938 + 3962 ], "variance": [ - 3940 + 3964 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3909 + 3933 ], "count": [ - 3534 + 3558 ], "max": [ - 3915 + 3939 ], "min": [ - 3917 + 3941 ], "stddev": [ - 3925 + 3949 ], "stddev_pop": [ - 3927 + 3951 ], "stddev_samp": [ - 3929 + 3953 ], "sum": [ - 3933 + 3957 ], "var_pop": [ - 3937 + 3961 ], "var_samp": [ - 3939 + 3963 ], "variance": [ - 3941 + 3965 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3913 + 3937 ], "on_conflict": [ - 3919 + 3943 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_avg_fields": { @@ -77380,129 +77712,129 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3910 + 3934 ], "_not": [ - 3910 + 3934 ], "_or": [ - 3910 + 3934 ], "kill_count": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "with": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_mutation_response": { @@ -77510,67 +77842,67 @@ export default { 41 ], "returning": [ - 3901 + 3925 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3911 + 3935 ], "update_columns": [ - 3934 + 3958 ], "where": [ - 3910 + 3934 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_fields": { @@ -77581,18 +77913,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_pop_fields": { @@ -77603,18 +77935,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_samp_fields": { @@ -77625,80 +77957,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3931 + 3955 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3912 + 3936 ], "_set": [ - 3923 + 3947 ], "where": [ - 3910 + 3934 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_var_pop_fields": { @@ -77709,18 +78041,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_var_samp_fields": { @@ -77731,18 +78063,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_variance_fields": { @@ -77753,33 +78085,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_kills_insert_input": { @@ -77787,64 +78119,64 @@ export default { 6 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_player": [ - 4503 + 4527 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "blinded": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "headshot": [ 6 ], "hitgroup": [ - 84 + 85 ], "in_air": [ 6 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "no_scope": [ 6 ], "player": [ - 4503 + 4527 ], "round": [ 41 @@ -77856,213 +78188,213 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_max_fields": { "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "hitgroup": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_max_order_by": { "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_min_fields": { "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "deleted_at": [ - 5129 + 5153 ], "hitgroup": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_min_order_by": { "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_mutation_response": { @@ -78070,130 +78402,130 @@ export default { 41 ], "returning": [ - 3889 + 3913 ], "__typename": [ - 84 + 85 ] }, "player_kills_on_conflict": { "constraint": [ - 3942 + 3966 ], "update_columns": [ - 3967 + 3991 ], "where": [ - 3900 + 3924 ], "__typename": [ - 84 + 85 ] }, "player_kills_order_by": { "assisted": [ - 3534 + 3558 ], "attacked_location": [ - 3534 + 3558 ], "attacked_location_coordinates": [ - 3534 + 3558 ], "attacked_player": [ - 4505 + 4529 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacked_team": [ - 3534 + 3558 ], "attacker_location": [ - 3534 + 3558 ], "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "attacker_team": [ - 3534 + 3558 ], "blinded": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "headshot": [ - 3534 + 3558 ], "hitgroup": [ - 3534 + 3558 ], "in_air": [ - 3534 + 3558 ], "is_suicide": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "no_scope": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "round": [ - 3534 + 3558 ], "team_kill": [ - 3534 + 3558 ], "thru_smoke": [ - 3534 + 3558 ], "thru_wall": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "match_map_id": [ - 6341 + 6365 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_kills_select_column": {}, @@ -78204,49 +78536,49 @@ export default { 6 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "blinded": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "headshot": [ 6 ], "hitgroup": [ - 84 + 85 ], "in_air": [ 6 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "no_scope": [ 6 @@ -78261,13 +78593,13 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_fields": { @@ -78281,21 +78613,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_pop_fields": { @@ -78309,21 +78641,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_samp_fields": { @@ -78337,32 +78669,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 3964 + 3988 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_kills_stream_cursor_value_input": { @@ -78370,49 +78702,49 @@ export default { 6 ], "attacked_location": [ - 84 + 85 ], "attacked_location_coordinates": [ - 84 + 85 ], "attacked_steam_id": [ - 309 + 310 ], "attacked_team": [ - 84 + 85 ], "attacker_location": [ - 84 + 85 ], "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "attacker_team": [ - 84 + 85 ], "blinded": [ 6 ], "deleted_at": [ - 5129 + 5153 ], "headshot": [ 6 ], "hitgroup": [ - 84 + 85 ], "in_air": [ 6 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "no_scope": [ 6 @@ -78427,56 +78759,56 @@ export default { 6 ], "time": [ - 5129 + 5153 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3943 + 3967 ], "_set": [ - 3956 + 3980 ], "where": [ - 3900 + 3924 ], "__typename": [ - 84 + 85 ] }, "player_kills_var_pop_fields": { @@ -78490,21 +78822,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_var_samp_fields": { @@ -78518,21 +78850,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_kills_variance_fields": { @@ -78546,26 +78878,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78574,32 +78906,32 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3977 + 4001 ], "nodes": [ - 3975 + 3999 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3978 + 4002 ], "count": [ 41, { "columns": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -78608,34 +78940,34 @@ export default { } ], "max": [ - 3982 + 4006 ], "min": [ - 3983 + 4007 ], "stddev": [ - 3988 + 4012 ], "stddev_pop": [ - 3989 + 4013 ], "stddev_samp": [ - 3990 + 4014 ], "sum": [ - 3993 + 4017 ], "var_pop": [ - 3995 + 4019 ], "var_samp": [ - 3996 + 4020 ], "variance": [ - 3997 + 4021 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_avg_fields": { @@ -78649,21 +78981,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3979 + 4003 ], "_not": [ - 3979 + 4003 ], "_or": [ - 3979 + 4003 ], "player_steam_id": [ - 86 + 87 ], "rank": [ 42 @@ -78672,10 +79004,10 @@ export default { 42 ], "value": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_inc_input": { @@ -78686,15 +79018,15 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78703,15 +79035,15 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78720,15 +79052,15 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78737,10 +79069,10 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_mutation_response": { @@ -78748,33 +79080,33 @@ export default { 41 ], "returning": [ - 3975 + 3999 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "total": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78783,10 +79115,10 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_stddev_fields": { @@ -78800,7 +79132,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_stddev_pop_fields": { @@ -78814,7 +79146,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_stddev_samp_fields": { @@ -78828,23 +79160,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3992 + 4016 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 84 + 85 ], "rank": [ 41 @@ -78853,10 +79185,10 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_sum_fields": { @@ -78867,24 +79199,24 @@ export default { 41 ], "value": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 3980 + 4004 ], "_set": [ - 3987 + 4011 ], "where": [ - 3979 + 4003 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_var_pop_fields": { @@ -78898,7 +79230,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_var_samp_fields": { @@ -78912,7 +79244,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_leaderboard_rank_variance_fields": { @@ -78926,7 +79258,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats": { @@ -78949,7 +79281,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -78991,7 +79323,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -79045,16 +79377,16 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -79069,7 +79401,7 @@ export default { 41 ], "player": [ - 4492 + 4516 ], "rounds_ct": [ 41 @@ -79102,7 +79434,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -79117,7 +79449,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -79147,7 +79479,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -79162,54 +79494,54 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 4002 + 4026 ], "nodes": [ - 3998 + 4022 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 4001 + 4025 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 4019 + 4043 ], "distinct": [ 6 ], "filter": [ - 4007 + 4031 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 4005 + 4029 ], "count": [ 41, { "columns": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -79218,83 +79550,83 @@ export default { } ], "max": [ - 4011 + 4035 ], "min": [ - 4013 + 4037 ], "stddev": [ - 4021 + 4045 ], "stddev_pop": [ - 4023 + 4047 ], "stddev_samp": [ - 4025 + 4049 ], "sum": [ - 4029 + 4053 ], "var_pop": [ - 4033 + 4057 ], "var_samp": [ - 4035 + 4059 ], "variance": [ - 4037 + 4061 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 4006 + 4030 ], "count": [ - 3534 + 3558 ], "max": [ - 4012 + 4036 ], "min": [ - 4014 + 4038 ], "stddev": [ - 4022 + 4046 ], "stddev_pop": [ - 4024 + 4048 ], "stddev_samp": [ - 4026 + 4050 ], "sum": [ - 4030 + 4054 ], "var_pop": [ - 4034 + 4058 ], "var_samp": [ - 4036 + 4060 ], "variance": [ - 4038 + 4062 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 4010 + 4034 ], "on_conflict": [ - 4016 + 4040 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_avg_fields": { @@ -79512,236 +79844,236 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 4007 + 4031 ], "_not": [ - 4007 + 4031 ], "_or": [ - 4007 + 4031 ], "assists": [ 42 @@ -79762,7 +80094,7 @@ export default { 42 ], "crosshair_angle_sum_deg": [ - 3533 + 3557 ], "damage": [ 42 @@ -79804,7 +80136,7 @@ export default { 42 ], "flash_duration_sum": [ - 3533 + 3557 ], "flashes_thrown": [ 42 @@ -79858,16 +80190,16 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "molotov_damage": [ 42 @@ -79882,7 +80214,7 @@ export default { 42 ], "player": [ - 4496 + 4520 ], "rounds_ct": [ 42 @@ -79915,7 +80247,7 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "team_damage": [ 42 @@ -79930,7 +80262,7 @@ export default { 42 ], "time_to_damage_sum_s": [ - 3533 + 3557 ], "total_engagement_frames": [ 42 @@ -79960,7 +80292,7 @@ export default { 42 ], "updated_at": [ - 5130 + 5154 ], "util_on_death_count": [ 42 @@ -79975,7 +80307,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_constraint": {}, @@ -79999,7 +80331,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -80041,7 +80373,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -80137,7 +80469,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -80152,7 +80484,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -80194,7 +80526,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_insert_input": { @@ -80217,7 +80549,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -80259,7 +80591,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -80313,16 +80645,16 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -80337,7 +80669,7 @@ export default { 41 ], "player": [ - 4503 + 4527 ], "rounds_ct": [ 41 @@ -80370,7 +80702,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -80385,7 +80717,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -80415,7 +80747,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -80430,7 +80762,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_max_fields": { @@ -80453,7 +80785,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -80495,7 +80827,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -80549,10 +80881,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -80597,7 +80929,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -80612,7 +80944,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -80642,7 +80974,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -80657,234 +80989,234 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_min_fields": { @@ -80907,7 +81239,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -80949,7 +81281,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -81003,10 +81335,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -81051,7 +81383,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -81066,7 +81398,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -81096,7 +81428,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -81111,234 +81443,234 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_mutation_response": { @@ -81346,271 +81678,271 @@ export default { 41 ], "returning": [ - 3998 + 4022 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 4008 + 4032 ], "update_columns": [ - 4031 + 4055 ], "where": [ - 4007 + 4031 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_select_column": {}, @@ -81634,7 +81966,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -81676,7 +82008,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -81730,10 +82062,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -81778,7 +82110,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -81793,7 +82125,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -81823,7 +82155,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -81838,7 +82170,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_fields": { @@ -82056,225 +82388,225 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_pop_fields": { @@ -82492,225 +82824,225 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_samp_fields": { @@ -82928,236 +83260,236 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 4028 + 4052 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_stream_cursor_value_input": { @@ -83180,7 +83512,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -83222,7 +83554,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -83276,10 +83608,10 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -83324,7 +83656,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -83339,7 +83671,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -83369,7 +83701,7 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "util_on_death_count": [ 41 @@ -83384,7 +83716,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_sum_fields": { @@ -83407,7 +83739,7 @@ export default { 41 ], "crosshair_angle_sum_deg": [ - 3532 + 3556 ], "damage": [ 41 @@ -83449,7 +83781,7 @@ export default { 41 ], "flash_duration_sum": [ - 3532 + 3556 ], "flashes_thrown": [ 41 @@ -83545,7 +83877,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -83560,7 +83892,7 @@ export default { 41 ], "time_to_damage_sum_s": [ - 3532 + 3556 ], "total_engagement_frames": [ 41 @@ -83602,240 +83934,240 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 4009 + 4033 ], "_set": [ - 4020 + 4044 ], "where": [ - 4007 + 4031 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_var_pop_fields": { @@ -84053,225 +84385,225 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_var_samp_fields": { @@ -84489,225 +84821,225 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_variance_fields": { @@ -84925,309 +85257,309 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "crosshair_angle_count": [ - 3534 + 3558 ], "crosshair_angle_sum_deg": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flash_duration_count": [ - 3534 + 3558 ], "flash_duration_sum": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kast_rounds": [ - 3534 + 3558 ], "kast_total_rounds": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "time_to_damage_count": [ - 3534 + 3558 ], "time_to_damage_sum_s": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "util_on_death_count": [ - 3534 + 3558 ], "util_on_death_sum": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "aim_rating": [ - 2003 + 2004 ], "counter_strafe_pct": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "overall_rating": [ - 2003 + 2004 ], "played_at": [ - 5129 + 5153 ], "positioning_rating": [ - 2003 + 2004 ], "rounds": [ 41 ], "source": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 4041 + 4065 ], "nodes": [ - 4039 + 4063 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 4042 + 4066 ], "count": [ 41, { "columns": [ - 4047, + 4071, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -85236,34 +85568,34 @@ export default { } ], "max": [ - 4044 + 4068 ], "min": [ - 4045 + 4069 ], "stddev": [ - 4048 + 4072 ], "stddev_pop": [ - 4049 + 4073 ], "stddev_samp": [ - 4050 + 4074 ], "sum": [ - 4053 + 4077 ], "var_pop": [ - 4054 + 4078 ], "var_samp": [ - 4055 + 4079 ], "variance": [ - 4056 + 4080 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_avg_fields": { @@ -85316,264 +85648,264 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 4043 + 4067 ], "_not": [ - 4043 + 4067 ], "_or": [ - 4043 + 4067 ], "accuracy": [ - 3533 + 3557 ], "accuracy_spotted": [ - 3533 + 3557 ], "aim_rating": [ - 2004 + 2005 ], "counter_strafe_pct": [ - 3533 + 3557 ], "enemy_blind_pr": [ - 3533 + 3557 ], "flash_assists_pr": [ - 3533 + 3557 ], "hs_pct": [ - 3533 + 3557 ], "kast_pct": [ - 3533 + 3557 ], "match_id": [ - 6343 + 6367 ], "overall_rating": [ - 2004 + 2005 ], "played_at": [ - 5130 + 5154 ], "positioning_rating": [ - 2004 + 2005 ], "rounds": [ 42 ], "source": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "survival_pct": [ - 3533 + 3557 ], "traded_death_pct": [ - 3533 + 3557 ], "util_efficiency": [ - 3533 + 3557 ], "utility_rating": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "aim_rating": [ - 2003 + 2004 ], "counter_strafe_pct": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "overall_rating": [ - 2003 + 2004 ], "played_at": [ - 5129 + 5153 ], "positioning_rating": [ - 2003 + 2004 ], "rounds": [ 41 ], "source": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "aim_rating": [ - 2003 + 2004 ], "counter_strafe_pct": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "overall_rating": [ - 2003 + 2004 ], "played_at": [ - 5129 + 5153 ], "positioning_rating": [ - 2003 + 2004 ], "rounds": [ 41 ], "source": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 3534 + 3558 ], "accuracy_spotted": [ - 3534 + 3558 ], "aim_rating": [ - 3534 + 3558 ], "counter_strafe_pct": [ - 3534 + 3558 ], "enemy_blind_pr": [ - 3534 + 3558 ], "flash_assists_pr": [ - 3534 + 3558 ], "hs_pct": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "overall_rating": [ - 3534 + 3558 ], "played_at": [ - 3534 + 3558 ], "positioning_rating": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "survival_pct": [ - 3534 + 3558 ], "traded_death_pct": [ - 3534 + 3558 ], "util_efficiency": [ - 3534 + 3558 ], "utility_rating": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_select_column": {}, @@ -85627,7 +85959,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_stddev_pop_fields": { @@ -85680,7 +86012,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_stddev_samp_fields": { @@ -85733,133 +86065,133 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 4052 + 4076 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "aim_rating": [ - 2003 + 2004 ], "counter_strafe_pct": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "overall_rating": [ - 2003 + 2004 ], "played_at": [ - 5129 + 5153 ], "positioning_rating": [ - 2003 + 2004 ], "rounds": [ 41 ], "source": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 3532 + 3556 ], "accuracy_spotted": [ - 3532 + 3556 ], "aim_rating": [ - 2003 + 2004 ], "counter_strafe_pct": [ - 3532 + 3556 ], "enemy_blind_pr": [ - 3532 + 3556 ], "flash_assists_pr": [ - 3532 + 3556 ], "hs_pct": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "overall_rating": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "rounds": [ 41 ], "steam_id": [ - 309 + 310 ], "survival_pct": [ - 3532 + 3556 ], "traded_death_pct": [ - 3532 + 3556 ], "util_efficiency": [ - 3532 + 3556 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_var_pop_fields": { @@ -85912,7 +86244,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_var_samp_fields": { @@ -85965,7 +86297,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_performance_v_variance_fields": { @@ -86018,7 +86350,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v": { @@ -86032,13 +86364,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -86128,7 +86460,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -86173,7 +86505,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -86212,7 +86544,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -86221,54 +86553,54 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 4061 + 4085 ], "nodes": [ - 4057 + 4081 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 4060 + 4084 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 4073 + 4097 ], "distinct": [ 6 ], "filter": [ - 4066 + 4090 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 4064 + 4088 ], "count": [ 41, { "columns": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -86277,80 +86609,80 @@ export default { } ], "max": [ - 4068 + 4092 ], "min": [ - 4070 + 4094 ], "stddev": [ - 4074 + 4098 ], "stddev_pop": [ - 4076 + 4100 ], "stddev_samp": [ - 4078 + 4102 ], "sum": [ - 4082 + 4106 ], "var_pop": [ - 4084 + 4108 ], "var_samp": [ - 4086 + 4110 ], "variance": [ - 4088 + 4112 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 4065 + 4089 ], "count": [ - 3534 + 3558 ], "max": [ - 4069 + 4093 ], "min": [ - 4071 + 4095 ], "stddev": [ - 4075 + 4099 ], "stddev_pop": [ - 4077 + 4101 ], "stddev_samp": [ - 4079 + 4103 ], "sum": [ - 4083 + 4107 ], "var_pop": [ - 4085 + 4109 ], "var_samp": [ - 4087 + 4111 ], "variance": [ - 4089 + 4113 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 4067 + 4091 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_avg_fields": { @@ -86550,218 +86882,218 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 4066 + 4090 ], "_not": [ - 4066 + 4090 ], "_or": [ - 4066 + 4090 ], "assists": [ 42 @@ -86773,13 +87105,13 @@ export default { 42 ], "avg_crosshair_angle_deg": [ - 3533 + 3557 ], "avg_flash_duration": [ - 3533 + 3557 ], "avg_time_to_damage_s": [ - 3533 + 3557 ], "counter_strafe_eligible_shots": [ 42 @@ -86869,7 +87201,7 @@ export default { 42 ], "match_id": [ - 6343 + 6367 ], "molotov_damage": [ 42 @@ -86914,7 +87246,7 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "team_damage": [ 42 @@ -86953,7 +87285,7 @@ export default { 42 ], "utility_on_death": [ - 3533 + 3557 ], "wasted_magazine_shots": [ 42 @@ -86962,7 +87294,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_insert_input": { @@ -86976,13 +87308,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -87072,7 +87404,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -87117,7 +87449,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -87156,7 +87488,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -87165,7 +87497,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_max_fields": { @@ -87179,13 +87511,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -87275,7 +87607,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -87320,7 +87652,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -87359,7 +87691,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -87368,210 +87700,210 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_min_fields": { @@ -87585,13 +87917,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -87681,7 +88013,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -87726,7 +88058,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -87765,7 +88097,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -87774,413 +88106,413 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_select_column": {}, @@ -88381,207 +88713,207 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stddev_pop_fields": { @@ -88781,207 +89113,207 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stddev_samp_fields": { @@ -89181,218 +89513,218 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 4081 + 4105 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_stream_cursor_value_input": { @@ -89406,13 +89738,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -89502,7 +89834,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "molotov_damage": [ 41 @@ -89547,7 +89879,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -89586,7 +89918,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -89595,7 +89927,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_sum_fields": { @@ -89609,13 +89941,13 @@ export default { 41 ], "avg_crosshair_angle_deg": [ - 3532 + 3556 ], "avg_flash_duration": [ - 3532 + 3556 ], "avg_time_to_damage_s": [ - 3532 + 3556 ], "counter_strafe_eligible_shots": [ 41 @@ -89747,7 +90079,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "team_damage": [ 41 @@ -89786,7 +90118,7 @@ export default { 41 ], "utility_on_death": [ - 3532 + 3556 ], "wasted_magazine_shots": [ 41 @@ -89795,207 +90127,207 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_var_pop_fields": { @@ -90195,207 +90527,207 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_var_samp_fields": { @@ -90595,207 +90927,207 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_variance_fields": { @@ -90995,289 +91327,289 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 3534 + 3558 ], "assists_ct": [ - 3534 + 3558 ], "assists_t": [ - 3534 + 3558 ], "avg_crosshair_angle_deg": [ - 3534 + 3558 ], "avg_flash_duration": [ - 3534 + 3558 ], "avg_time_to_damage_s": [ - 3534 + 3558 ], "counter_strafe_eligible_shots": [ - 3534 + 3558 ], "counter_strafed_shots": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_ct": [ - 3534 + 3558 ], "damage_t": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "deaths_ct": [ - 3534 + 3558 ], "deaths_t": [ - 3534 + 3558 ], "decoy_throws": [ - 3534 + 3558 ], "enemies_flashed": [ - 3534 + 3558 ], "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "five_kill_rounds": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "flashes_thrown": [ - 3534 + 3558 ], "four_kill_rounds": [ - 3534 + 3558 ], "he_damage": [ - 3534 + 3558 ], "he_team_damage": [ - 3534 + 3558 ], "he_throws": [ - 3534 + 3558 ], "headshot_hits": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_at_spotted": [ - 3534 + 3558 ], "hs_kills": [ - 3534 + 3558 ], "hs_kills_ct": [ - 3534 + 3558 ], "hs_kills_t": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kills_ct": [ - 3534 + 3558 ], "kills_t": [ - 3534 + 3558 ], "knife_kills": [ - 3534 + 3558 ], "molotov_damage": [ - 3534 + 3558 ], "molotov_throws": [ - 3534 + 3558 ], "non_awp_hits": [ - 3534 + 3558 ], "on_target_frames": [ - 3534 + 3558 ], "rounds_ct": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "rounds_t": [ - 3534 + 3558 ], "shots_at_spotted": [ - 3534 + 3558 ], "shots_fired": [ - 3534 + 3558 ], "smoke_throws": [ - 3534 + 3558 ], "spotted_count": [ - 3534 + 3558 ], "spotted_with_damage_count": [ - 3534 + 3558 ], "spray_hits": [ - 3534 + 3558 ], "spray_shots": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_damage": [ - 3534 + 3558 ], "team_flashed": [ - 3534 + 3558 ], "three_kill_rounds": [ - 3534 + 3558 ], "total_engagement_frames": [ - 3534 + 3558 ], "trade_kill_attempts": [ - 3534 + 3558 ], "trade_kill_opportunities": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_attempts": [ - 3534 + 3558 ], "traded_death_opportunities": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "two_kill_rounds": [ - 3534 + 3558 ], "unused_utility_value": [ - 3534 + 3558 ], "utility_on_death": [ - 3534 + 3558 ], "wasted_magazine_shots": [ - 3534 + 3558 ], "zeus_kills": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives": { "deleted_at": [ - 5129 + 5153 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1263 + 1264 ], "__typename": [ - 84 + 85 ] }, "player_objectives_aggregate": { "aggregate": [ - 4094 + 4118 ], "nodes": [ - 4090 + 4114 ], "__typename": [ - 84 + 85 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 4093 + 4117 ], "__typename": [ - 84 + 85 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 4111 + 4135 ], "distinct": [ 6 ], "filter": [ - 4099 + 4123 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_objectives_aggregate_fields": { "avg": [ - 4097 + 4121 ], "count": [ 41, { "columns": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "distinct": [ @@ -91286,83 +91618,83 @@ export default { } ], "max": [ - 4103 + 4127 ], "min": [ - 4105 + 4129 ], "stddev": [ - 4113 + 4137 ], "stddev_pop": [ - 4115 + 4139 ], "stddev_samp": [ - 4117 + 4141 ], "sum": [ - 4121 + 4145 ], "var_pop": [ - 4125 + 4149 ], "var_samp": [ - 4127 + 4151 ], "variance": [ - 4129 + 4153 ], "__typename": [ - 84 + 85 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 4098 + 4122 ], "count": [ - 3534 + 3558 ], "max": [ - 4104 + 4128 ], "min": [ - 4106 + 4130 ], "stddev": [ - 4114 + 4138 ], "stddev_pop": [ - 4116 + 4140 ], "stddev_samp": [ - 4118 + 4142 ], "sum": [ - 4122 + 4146 ], "var_pop": [ - 4126 + 4150 ], "var_samp": [ - 4128 + 4152 ], "variance": [ - 4130 + 4154 ], "__typename": [ - 84 + 85 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 4102 + 4126 ], "on_conflict": [ - 4108 + 4132 ], "__typename": [ - 84 + 85 ] }, "player_objectives_avg_fields": { @@ -91373,201 +91705,201 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_bool_exp": { "_and": [ - 4099 + 4123 ], "_not": [ - 4099 + 4123 ], "_or": [ - 4099 + 4123 ], "deleted_at": [ - 5130 + 5154 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "round": [ 42 ], "time": [ - 5130 + 5154 ], "type": [ - 1264 + 1265 ], "__typename": [ - 84 + 85 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_objectives_insert_input": { "deleted_at": [ - 5129 + 5153 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1263 + 1264 ], "__typename": [ - 84 + 85 ] }, "player_objectives_max_fields": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_min_fields": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_mutation_response": { @@ -91575,100 +91907,100 @@ export default { 41 ], "returning": [ - 4090 + 4114 ], "__typename": [ - 84 + 85 ] }, "player_objectives_on_conflict": { "constraint": [ - 4100 + 4124 ], "update_columns": [ - 4123 + 4147 ], "where": [ - 4099 + 4123 ], "__typename": [ - 84 + 85 ] }, "player_objectives_order_by": { "deleted_at": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1263 + 1264 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_fields": { @@ -91679,18 +92011,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_pop_fields": { @@ -91701,18 +92033,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_samp_fields": { @@ -91723,92 +92055,92 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 4120 + 4144 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1263 + 1264 ], "__typename": [ - 84 + 85 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 4101 + 4125 ], "_set": [ - 4112 + 4136 ], "where": [ - 4099 + 4123 ], "__typename": [ - 84 + 85 ] }, "player_objectives_var_pop_fields": { @@ -91819,18 +92151,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_var_samp_fields": { @@ -91841,18 +92173,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_objectives_variance_fields": { @@ -91863,62 +92195,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_performance_v": { "accuracy_score": [ - 2003 + 2004 ], "aim_goal": [ - 2003 + 2004 ], "aim_rating": [ - 2003 + 2004 ], "band": [ 41 ], "band_sample": [ - 309 + 310 ], "blind_score": [ - 2003 + 2004 ], "counter_strafe_score": [ - 2003 + 2004 ], "crosshair_score": [ - 2003 + 2004 ], "flash_assists_score": [ - 2003 + 2004 ], "hs_score": [ - 2003 + 2004 ], "kast_score": [ - 2003 + 2004 ], "maps": [ 41 ], "positioning_goal": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "premier_rank": [ 41 @@ -91927,53 +92259,53 @@ export default { 41 ], "spotted_score": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "survival_score": [ - 2003 + 2004 ], "traded_score": [ - 2003 + 2004 ], "ttd_score": [ - 2003 + 2004 ], "util_eff_score": [ - 2003 + 2004 ], "utility_goal": [ - 2003 + 2004 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_aggregate": { "aggregate": [ - 4133 + 4157 ], "nodes": [ - 4131 + 4155 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 4134 + 4158 ], "count": [ 41, { "columns": [ - 4139, + 4163, "[player_performance_v_select_column!]" ], "distinct": [ @@ -91982,34 +92314,34 @@ export default { } ], "max": [ - 4136 + 4160 ], "min": [ - 4137 + 4161 ], "stddev": [ - 4140 + 4164 ], "stddev_pop": [ - 4141 + 4165 ], "stddev_samp": [ - 4142 + 4166 ], "sum": [ - 4145 + 4169 ], "var_pop": [ - 4146 + 4170 ], "var_samp": [ - 4147 + 4171 ], "variance": [ - 4148 + 4172 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_avg_fields": { @@ -92086,60 +92418,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_bool_exp": { "_and": [ - 4135 + 4159 ], "_not": [ - 4135 + 4159 ], "_or": [ - 4135 + 4159 ], "accuracy_score": [ - 2004 + 2005 ], "aim_goal": [ - 2004 + 2005 ], "aim_rating": [ - 2004 + 2005 ], "band": [ 42 ], "band_sample": [ - 311 + 312 ], "blind_score": [ - 2004 + 2005 ], "counter_strafe_score": [ - 2004 + 2005 ], "crosshair_score": [ - 2004 + 2005 ], "flash_assists_score": [ - 2004 + 2005 ], "hs_score": [ - 2004 + 2005 ], "kast_score": [ - 2004 + 2005 ], "maps": [ 42 ], "positioning_goal": [ - 2004 + 2005 ], "positioning_rating": [ - 2004 + 2005 ], "premier_rank": [ 42 @@ -92148,75 +92480,75 @@ export default { 42 ], "spotted_score": [ - 2004 + 2005 ], "steam_id": [ - 311 + 312 ], "survival_score": [ - 2004 + 2005 ], "traded_score": [ - 2004 + 2005 ], "ttd_score": [ - 2004 + 2005 ], "util_eff_score": [ - 2004 + 2005 ], "utility_goal": [ - 2004 + 2005 ], "utility_rating": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 2003 + 2004 ], "aim_goal": [ - 2003 + 2004 ], "aim_rating": [ - 2003 + 2004 ], "band": [ 41 ], "band_sample": [ - 309 + 310 ], "blind_score": [ - 2003 + 2004 ], "counter_strafe_score": [ - 2003 + 2004 ], "crosshair_score": [ - 2003 + 2004 ], "flash_assists_score": [ - 2003 + 2004 ], "hs_score": [ - 2003 + 2004 ], "kast_score": [ - 2003 + 2004 ], "maps": [ 41 ], "positioning_goal": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "premier_rank": [ 41 @@ -92225,75 +92557,75 @@ export default { 41 ], "spotted_score": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "survival_score": [ - 2003 + 2004 ], "traded_score": [ - 2003 + 2004 ], "ttd_score": [ - 2003 + 2004 ], "util_eff_score": [ - 2003 + 2004 ], "utility_goal": [ - 2003 + 2004 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 2003 + 2004 ], "aim_goal": [ - 2003 + 2004 ], "aim_rating": [ - 2003 + 2004 ], "band": [ 41 ], "band_sample": [ - 309 + 310 ], "blind_score": [ - 2003 + 2004 ], "counter_strafe_score": [ - 2003 + 2004 ], "crosshair_score": [ - 2003 + 2004 ], "flash_assists_score": [ - 2003 + 2004 ], "hs_score": [ - 2003 + 2004 ], "kast_score": [ - 2003 + 2004 ], "maps": [ 41 ], "positioning_goal": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "premier_rank": [ 41 @@ -92302,108 +92634,108 @@ export default { 41 ], "spotted_score": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "survival_score": [ - 2003 + 2004 ], "traded_score": [ - 2003 + 2004 ], "ttd_score": [ - 2003 + 2004 ], "util_eff_score": [ - 2003 + 2004 ], "utility_goal": [ - 2003 + 2004 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 3534 + 3558 ], "aim_goal": [ - 3534 + 3558 ], "aim_rating": [ - 3534 + 3558 ], "band": [ - 3534 + 3558 ], "band_sample": [ - 3534 + 3558 ], "blind_score": [ - 3534 + 3558 ], "counter_strafe_score": [ - 3534 + 3558 ], "crosshair_score": [ - 3534 + 3558 ], "flash_assists_score": [ - 3534 + 3558 ], "hs_score": [ - 3534 + 3558 ], "kast_score": [ - 3534 + 3558 ], "maps": [ - 3534 + 3558 ], "positioning_goal": [ - 3534 + 3558 ], "positioning_rating": [ - 3534 + 3558 ], "premier_rank": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "spotted_score": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "survival_score": [ - 3534 + 3558 ], "traded_score": [ - 3534 + 3558 ], "ttd_score": [ - 3534 + 3558 ], "util_eff_score": [ - 3534 + 3558 ], "utility_goal": [ - 3534 + 3558 ], "utility_rating": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_select_column": {}, @@ -92481,7 +92813,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_stddev_pop_fields": { @@ -92558,7 +92890,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_stddev_samp_fields": { @@ -92635,62 +92967,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 4144 + 4168 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 2003 + 2004 ], "aim_goal": [ - 2003 + 2004 ], "aim_rating": [ - 2003 + 2004 ], "band": [ 41 ], "band_sample": [ - 309 + 310 ], "blind_score": [ - 2003 + 2004 ], "counter_strafe_score": [ - 2003 + 2004 ], "crosshair_score": [ - 2003 + 2004 ], "flash_assists_score": [ - 2003 + 2004 ], "hs_score": [ - 2003 + 2004 ], "kast_score": [ - 2003 + 2004 ], "maps": [ 41 ], "positioning_goal": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "premier_rank": [ 41 @@ -92699,75 +93031,75 @@ export default { 41 ], "spotted_score": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "survival_score": [ - 2003 + 2004 ], "traded_score": [ - 2003 + 2004 ], "ttd_score": [ - 2003 + 2004 ], "util_eff_score": [ - 2003 + 2004 ], "utility_goal": [ - 2003 + 2004 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 2003 + 2004 ], "aim_goal": [ - 2003 + 2004 ], "aim_rating": [ - 2003 + 2004 ], "band": [ 41 ], "band_sample": [ - 309 + 310 ], "blind_score": [ - 2003 + 2004 ], "counter_strafe_score": [ - 2003 + 2004 ], "crosshair_score": [ - 2003 + 2004 ], "flash_assists_score": [ - 2003 + 2004 ], "hs_score": [ - 2003 + 2004 ], "kast_score": [ - 2003 + 2004 ], "maps": [ 41 ], "positioning_goal": [ - 2003 + 2004 ], "positioning_rating": [ - 2003 + 2004 ], "premier_rank": [ 41 @@ -92776,31 +93108,31 @@ export default { 41 ], "spotted_score": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "survival_score": [ - 2003 + 2004 ], "traded_score": [ - 2003 + 2004 ], "ttd_score": [ - 2003 + 2004 ], "util_eff_score": [ - 2003 + 2004 ], "utility_goal": [ - 2003 + 2004 ], "utility_rating": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_var_pop_fields": { @@ -92877,7 +93209,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_var_samp_fields": { @@ -92954,7 +93286,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_performance_v_variance_fields": { @@ -93031,30 +93363,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history": { "id": [ - 6341 + 6365 ], "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "player": [ - 4492 + 4516 ], "previous_rank": [ 41 @@ -93066,57 +93398,57 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 4153 + 4177 ], "nodes": [ - 4149 + 4173 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 4152 + 4176 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 4170 + 4194 ], "distinct": [ 6 ], "filter": [ - 4158 + 4182 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 4156 + 4180 ], "count": [ 41, { "columns": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -93125,83 +93457,83 @@ export default { } ], "max": [ - 4162 + 4186 ], "min": [ - 4164 + 4188 ], "stddev": [ - 4172 + 4196 ], "stddev_pop": [ - 4174 + 4198 ], "stddev_samp": [ - 4176 + 4200 ], "sum": [ - 4180 + 4204 ], "var_pop": [ - 4184 + 4208 ], "var_samp": [ - 4186 + 4210 ], "variance": [ - 4188 + 4212 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 4157 + 4181 ], "count": [ - 3534 + 3558 ], "max": [ - 4163 + 4187 ], "min": [ - 4165 + 4189 ], "stddev": [ - 4173 + 4197 ], "stddev_pop": [ - 4175 + 4199 ], "stddev_samp": [ - 4177 + 4201 ], "sum": [ - 4181 + 4205 ], "var_pop": [ - 4185 + 4209 ], "var_samp": [ - 4187 + 4211 ], "variance": [ - 4189 + 4213 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 4161 + 4185 ], "on_conflict": [ - 4167 + 4191 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_avg_fields": { @@ -93218,56 +93550,56 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 4158 + 4182 ], "_not": [ - 4158 + 4182 ], "_or": [ - 4158 + 4182 ], "id": [ - 6343 + 6367 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "observed_at": [ - 5130 + 5154 ], "player": [ - 4496 + 4520 ], "previous_rank": [ 42 @@ -93279,10 +93611,10 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_constraint": {}, @@ -93297,33 +93629,33 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_insert_input": { "id": [ - 6341 + 6365 ], "map": [ - 2827 + 2851 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "player": [ - 4503 + 4527 ], "previous_rank": [ 41 @@ -93335,24 +93667,24 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_max_fields": { "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -93364,53 +93696,53 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_min_fields": { "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -93422,39 +93754,39 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 3534 + 3558 ], "map_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_mutation_response": { @@ -93462,85 +93794,85 @@ export default { 41 ], "returning": [ - 4149 + 4173 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 4159 + 4183 ], "update_columns": [ - 4182 + 4206 ], "where": [ - 4158 + 4182 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_order_by": { "id": [ - 3534 + 3558 ], "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "observed_at": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -93552,10 +93884,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_fields": { @@ -93572,24 +93904,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_pop_fields": { @@ -93606,24 +93938,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_samp_fields": { @@ -93640,49 +93972,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 4179 + 4203 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 6341 + 6365 ], "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "observed_at": [ - 5129 + 5153 ], "previous_rank": [ 41 @@ -93694,10 +94026,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_sum_fields": { @@ -93711,42 +94043,42 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 4160 + 4184 ], "_set": [ - 4171 + 4195 ], "where": [ - 4158 + 4182 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_var_pop_fields": { @@ -93763,24 +94095,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_var_samp_fields": { @@ -93797,24 +94129,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_variance_fields": { @@ -93831,109 +94163,109 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rank_type": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "e_sanction_type": [ - 1338 + 1339 ], "id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by": [ - 4492 + 4516 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "type": [ - 1343 + 1344 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_aggregate": { "aggregate": [ - 4194 + 4218 ], "nodes": [ - 4190 + 4214 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 4193 + 4217 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 4211 + 4235 ], "distinct": [ 6 ], "filter": [ - 4199 + 4223 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 4197 + 4221 ], "count": [ 41, { "columns": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "distinct": [ @@ -93942,83 +94274,83 @@ export default { } ], "max": [ - 4203 + 4227 ], "min": [ - 4205 + 4229 ], "stddev": [ - 4213 + 4237 ], "stddev_pop": [ - 4215 + 4239 ], "stddev_samp": [ - 4217 + 4241 ], "sum": [ - 4221 + 4245 ], "var_pop": [ - 4225 + 4249 ], "var_samp": [ - 4227 + 4251 ], "variance": [ - 4229 + 4253 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 4198 + 4222 ], "count": [ - 3534 + 3558 ], "max": [ - 4204 + 4228 ], "min": [ - 4206 + 4230 ], "stddev": [ - 4214 + 4238 ], "stddev_pop": [ - 4216 + 4240 ], "stddev_samp": [ - 4218 + 4242 ], "sum": [ - 4222 + 4246 ], "var_pop": [ - 4226 + 4250 ], "var_samp": [ - 4228 + 4252 ], "variance": [ - 4230 + 4254 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 4202 + 4226 ], "on_conflict": [ - 4208 + 4232 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_avg_fields": { @@ -94029,219 +94361,219 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_bool_exp": { "_and": [ - 4199 + 4223 ], "_not": [ - 4199 + 4223 ], "_or": [ - 4199 + 4223 ], "created_at": [ - 5130 + 5154 ], "deleted_at": [ - 5130 + 5154 ], "e_sanction_type": [ - 1341 + 1342 ], "id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "reason": [ - 86 + 87 ], "remove_sanction_date": [ - 5130 + 5154 ], "sanctioned_by": [ - 4496 + 4520 ], "sanctioned_by_steam_id": [ - 311 + 312 ], "type": [ - 1344 + 1345 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 309 + 310 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_insert_input": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "e_sanction_type": [ - 1349 + 1350 ], "id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by": [ - 4503 + 4527 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "type": [ - 1343 + 1344 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_max_fields": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_max_order_by": { "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "remove_sanction_date": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_min_fields": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_min_order_by": { "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "remove_sanction_date": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_mutation_response": { @@ -94249,103 +94581,103 @@ export default { 41 ], "returning": [ - 4190 + 4214 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_on_conflict": { "constraint": [ - 4200 + 4224 ], "update_columns": [ - 4223 + 4247 ], "where": [ - 4199 + 4223 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_order_by": { "created_at": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "e_sanction_type": [ - 1351 + 1352 ], "id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "remove_sanction_date": [ - 3534 + 3558 ], "sanctioned_by": [ - 4505 + 4529 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "type": [ - 1343 + 1344 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_fields": { @@ -94356,18 +94688,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_pop_fields": { @@ -94378,18 +94710,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_samp_fields": { @@ -94400,95 +94732,95 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 4220 + 4244 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "deleted_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "reason": [ - 84 + 85 ], "remove_sanction_date": [ - 5129 + 5153 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "type": [ - 1343 + 1344 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 309 + 310 ], "sanctioned_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 4201 + 4225 ], "_set": [ - 4212 + 4236 ], "where": [ - 4199 + 4223 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_var_pop_fields": { @@ -94499,18 +94831,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_var_samp_fields": { @@ -94521,18 +94853,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_variance_fields": { @@ -94543,279 +94875,279 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "sanctioned_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "season": [ - 4592 + 4616 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate": { "aggregate": [ - 4245 + 4269 ], "nodes": [ - 4231 + 4255 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 4234 + 4258 ], "corr": [ - 4235 + 4259 ], "count": [ - 4237 + 4261 ], "covar_samp": [ - 4238 + 4262 ], "max": [ - 4240 + 4264 ], "min": [ - 4241 + 4265 ], "stddev_samp": [ - 4242 + 4266 ], "sum": [ - 4243 + 4267 ], "var_samp": [ - 4244 + 4268 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 4263 + 4287 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 4236 + 4260 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4264 + 4288 ], "Y": [ - 4264 + 4288 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 4262 + 4286 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4239 + 4263 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4265 + 4289 ], "Y": [ - 4265 + 4289 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 4266 + 4290 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 4267 + 4291 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4268 + 4292 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 4269 + 4293 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4270 + 4294 ], "distinct": [ 6 ], "filter": [ - 4250 + 4274 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_fields": { "avg": [ - 4248 + 4272 ], "count": [ 41, { "columns": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "distinct": [ @@ -94824,83 +95156,83 @@ export default { } ], "max": [ - 4254 + 4278 ], "min": [ - 4256 + 4280 ], "stddev": [ - 4272 + 4296 ], "stddev_pop": [ - 4274 + 4298 ], "stddev_samp": [ - 4276 + 4300 ], "sum": [ - 4280 + 4304 ], "var_pop": [ - 4284 + 4308 ], "var_samp": [ - 4286 + 4310 ], "variance": [ - 4288 + 4312 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_aggregate_order_by": { "avg": [ - 4249 + 4273 ], "count": [ - 3534 + 3558 ], "max": [ - 4255 + 4279 ], "min": [ - 4257 + 4281 ], "stddev": [ - 4273 + 4297 ], "stddev_pop": [ - 4275 + 4299 ], "stddev_samp": [ - 4277 + 4301 ], "sum": [ - 4281 + 4305 ], "var_pop": [ - 4285 + 4309 ], "var_samp": [ - 4287 + 4311 ], "variance": [ - 4289 + 4313 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_arr_rel_insert_input": { "data": [ - 4253 + 4277 ], "on_conflict": [ - 4259 + 4283 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_avg_fields": { @@ -94923,231 +95255,231 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_avg_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_bool_exp": { "_and": [ - 4250 + 4274 ], "_not": [ - 4250 + 4274 ], "_or": [ - 4250 + 4274 ], "assists": [ - 311 + 312 ], "deaths": [ - 311 + 312 ], "headshot_percentage": [ - 2004 + 2005 ], "headshots": [ - 311 + 312 ], "kills": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "season": [ - 4596 + 4620 ], "season_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_constraint": {}, "player_season_stats_inc_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_insert_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "season": [ - 4603 + 4627 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_max_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_max_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_min_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_min_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_mutation_response": { @@ -95155,67 +95487,67 @@ export default { 41 ], "returning": [ - 4231 + 4255 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_on_conflict": { "constraint": [ - 4251 + 4275 ], "update_columns": [ - 4282 + 4306 ], "where": [ - 4250 + 4274 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "season": [ - 4605 + 4629 ], "season_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_pk_columns_input": { "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_select_column": {}, @@ -95229,28 +95561,28 @@ export default { "player_season_stats_select_column_player_season_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, "player_season_stats_set_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_fields": { @@ -95273,30 +95605,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_pop_fields": { @@ -95319,30 +95651,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_samp_fields": { @@ -95365,128 +95697,128 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 4279 + 4303 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_stream_cursor_value_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_sum_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_sum_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 4252 + 4276 ], "_set": [ - 4271 + 4295 ], "where": [ - 4250 + 4274 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_var_pop_fields": { @@ -95509,30 +95841,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_var_samp_fields": { @@ -95555,30 +95887,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_variance_fields": { @@ -95601,78 +95933,78 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_season_stats_variance_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_stats": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_aggregate": { "aggregate": [ - 4292 + 4316 ], "nodes": [ - 4290 + 4314 ], "__typename": [ - 84 + 85 ] }, "player_stats_aggregate_fields": { "avg": [ - 4293 + 4317 ], "count": [ 41, { "columns": [ - 4305, + 4329, "[player_stats_select_column!]" ], "distinct": [ @@ -95681,34 +96013,34 @@ export default { } ], "max": [ - 4298 + 4322 ], "min": [ - 4299 + 4323 ], "stddev": [ - 4307 + 4331 ], "stddev_pop": [ - 4308 + 4332 ], "stddev_samp": [ - 4309 + 4333 ], "sum": [ - 4312 + 4336 ], "var_pop": [ - 4315 + 4339 ], "var_samp": [ - 4316 + 4340 ], "variance": [ - 4317 + 4341 ], "__typename": [ - 84 + 85 ] }, "player_stats_avg_fields": { @@ -95731,138 +96063,138 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_bool_exp": { "_and": [ - 4294 + 4318 ], "_not": [ - 4294 + 4318 ], "_or": [ - 4294 + 4318 ], "assists": [ - 311 + 312 ], "deaths": [ - 311 + 312 ], "headshot_percentage": [ - 2004 + 2005 ], "headshots": [ - 311 + 312 ], "kills": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_insert_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_max_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_min_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_mutation_response": { @@ -95870,93 +96202,93 @@ export default { 41 ], "returning": [ - 4290 + 4314 ], "__typename": [ - 84 + 85 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 4297 + 4321 ], "on_conflict": [ - 4302 + 4326 ], "__typename": [ - 84 + 85 ] }, "player_stats_on_conflict": { "constraint": [ - 4295 + 4319 ], "update_columns": [ - 4313 + 4337 ], "where": [ - 4294 + 4318 ], "__typename": [ - 84 + 85 ] }, "player_stats_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_stddev_fields": { @@ -95979,7 +96311,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_stddev_pop_fields": { @@ -96002,7 +96334,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_stddev_samp_fields": { @@ -96025,79 +96357,79 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 4311 + 4335 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_sum_fields": { "assists": [ - 309 + 310 ], "deaths": [ - 309 + 310 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 4296 + 4320 ], "_set": [ - 4306 + 4330 ], "where": [ - 4294 + 4318 ], "__typename": [ - 84 + 85 ] }, "player_stats_var_pop_fields": { @@ -96120,7 +96452,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_var_samp_fields": { @@ -96143,7 +96475,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_stats_variance_fields": { @@ -96166,66 +96498,66 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "last_presence_state": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "player": [ - 4492 + 4516 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 4320 + 4344 ], "nodes": [ - 4318 + 4342 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 4322 + 4346 ], "count": [ 41, { "columns": [ - 4337, + 4361, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -96234,42 +96566,42 @@ export default { } ], "max": [ - 4330 + 4354 ], "min": [ - 4331 + 4355 ], "stddev": [ - 4339 + 4363 ], "stddev_pop": [ - 4340 + 4364 ], "stddev_samp": [ - 4341 + 4365 ], "sum": [ - 4344 + 4368 ], "var_pop": [ - 4347 + 4371 ], "var_samp": [ - 4348 + 4372 ], "variance": [ - 4349 + 4373 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_avg_fields": { @@ -96280,57 +96612,57 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_bool_exp": { "_and": [ - 4323 + 4347 ], "_not": [ - 4323 + 4347 ], "_or": [ - 4323 + 4347 ], "bot_steam_account_id": [ - 6343 + 6367 ], "bot_steamid64": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "friended_at": [ - 5130 + 5154 ], "last_presence_state": [ - 2350 + 2351 ], "player": [ - 4496 + 4520 ], "status": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_constraint": {}, "player_steam_bot_friend_delete_at_path_input": { "last_presence_state": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_delete_elem_input": { @@ -96338,110 +96670,110 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_delete_key_input": { "last_presence_state": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_inc_input": { "bot_steamid64": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "last_presence_state": [ - 2348 + 2349 ], "player": [ - 4503 + 4527 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_mutation_response": { @@ -96449,102 +96781,102 @@ export default { 41 ], "returning": [ - 4318 + 4342 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 4324 + 4348 ], "update_columns": [ - 4345 + 4369 ], "where": [ - 4323 + 4347 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 3534 + 3558 ], "bot_steamid64": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "friended_at": [ - 3534 + 3558 ], "last_presence_state": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "status": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_pk_columns_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "last_presence_state": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_stddev_fields": { @@ -96555,7 +96887,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_stddev_pop_fields": { @@ -96566,7 +96898,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_stddev_samp_fields": { @@ -96577,88 +96909,88 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 4343 + 4367 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 6341 + 6365 ], "bot_steamid64": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "friended_at": [ - 5129 + 5153 ], "last_presence_state": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_sum_fields": { "bot_steamid64": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 4321 + 4345 ], "_delete_at_path": [ - 4325 + 4349 ], "_delete_elem": [ - 4326 + 4350 ], "_delete_key": [ - 4327 + 4351 ], "_inc": [ - 4328 + 4352 ], "_prepend": [ - 4336 + 4360 ], "_set": [ - 4338 + 4362 ], "where": [ - 4323 + 4347 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_var_pop_fields": { @@ -96669,7 +97001,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_var_samp_fields": { @@ -96680,7 +97012,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_bot_friend_variance_fields": { @@ -96691,58 +97023,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 4352 + 4376 ], "nodes": [ - 4350 + 4374 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 4353 + 4377 ], "count": [ 41, { "columns": [ - 4364, + 4388, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -96751,34 +97083,34 @@ export default { } ], "max": [ - 4358 + 4382 ], "min": [ - 4359 + 4383 ], "stddev": [ - 4366 + 4390 ], "stddev_pop": [ - 4367 + 4391 ], "stddev_samp": [ - 4368 + 4392 ], "sum": [ - 4371 + 4395 ], "var_pop": [ - 4374 + 4398 ], "var_samp": [ - 4375 + 4399 ], "variance": [ - 4376 + 4400 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_avg_fields": { @@ -96786,135 +97118,135 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 4354 + 4378 ], "_not": [ - 4354 + 4378 ], "_or": [ - 4354 + 4378 ], "auth_code": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "last_error": [ - 86 + 87 ], "last_known_share_code": [ - 86 + 87 ], "last_polled_at": [ - 5130 + 5154 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_mutation_response": { @@ -96922,88 +97254,88 @@ export default { 41 ], "returning": [ - 4350 + 4374 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 4355 + 4379 ], "update_columns": [ - 4372 + 4396 ], "where": [ - 4354 + 4378 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "last_error": [ - 3534 + 3558 ], "last_known_share_code": [ - 3534 + 3558 ], "last_polled_at": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_stddev_fields": { @@ -97011,7 +97343,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_stddev_pop_fields": { @@ -97019,7 +97351,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_stddev_samp_fields": { @@ -97027,67 +97359,67 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 4370 + 4394 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "last_error": [ - 84 + 85 ], "last_known_share_code": [ - 84 + 85 ], "last_polled_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 4356 + 4380 ], "_set": [ - 4365 + 4389 ], "where": [ - 4354 + 4378 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_var_pop_fields": { @@ -97095,7 +97427,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_var_samp_fields": { @@ -97103,7 +97435,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_steam_match_auth_variance_fields": { @@ -97111,30 +97443,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility": { "deleted_at": [ - 5129 + 5153 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97143,54 +97475,54 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 4381 + 4405 ], "nodes": [ - 4377 + 4401 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 4380 + 4404 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 4398 + 4422 ], "distinct": [ 6 ], "filter": [ - 4386 + 4410 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 4384 + 4408 ], "count": [ 41, { "columns": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -97199,83 +97531,83 @@ export default { } ], "max": [ - 4390 + 4414 ], "min": [ - 4392 + 4416 ], "stddev": [ - 4400 + 4424 ], "stddev_pop": [ - 4402 + 4426 ], "stddev_samp": [ - 4404 + 4428 ], "sum": [ - 4408 + 4432 ], "var_pop": [ - 4412 + 4436 ], "var_samp": [ - 4414 + 4438 ], "variance": [ - 4416 + 4440 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 4385 + 4409 ], "count": [ - 3534 + 3558 ], "max": [ - 4391 + 4415 ], "min": [ - 4393 + 4417 ], "stddev": [ - 4401 + 4425 ], "stddev_pop": [ - 4403 + 4427 ], "stddev_samp": [ - 4405 + 4429 ], "sum": [ - 4409 + 4433 ], "var_pop": [ - 4413 + 4437 ], "var_samp": [ - 4415 + 4439 ], "variance": [ - 4417 + 4441 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 4389 + 4413 ], "on_conflict": [ - 4395 + 4419 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_avg_fields": { @@ -97289,53 +97621,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_bool_exp": { "_and": [ - 4386 + 4410 ], "_not": [ - 4386 + 4410 ], "_or": [ - 4386 + 4410 ], "deleted_at": [ - 5130 + 5154 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "round": [ 42 @@ -97344,13 +97676,13 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97359,30 +97691,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 5129 + 5153 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97391,21 +97723,21 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97414,44 +97746,44 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97460,30 +97792,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_mutation_response": { @@ -97491,82 +97823,82 @@ export default { 41 ], "returning": [ - 4377 + 4401 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 4387 + 4411 ], "update_columns": [ - 4410 + 4434 ], "where": [ - 4386 + 4410 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97575,7 +97907,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_fields": { @@ -97589,21 +97921,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_pop_fields": { @@ -97617,21 +97949,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_samp_fields": { @@ -97645,46 +97977,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 4407 + 4431 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97693,12 +98025,12 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 309 + 310 ], "round": [ 41 @@ -97707,36 +98039,36 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 4388 + 4412 ], "_set": [ - 4399 + 4423 ], "where": [ - 4386 + 4410 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_var_pop_fields": { @@ -97750,21 +98082,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_var_samp_fields": { @@ -97778,21 +98110,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_variance_fields": { @@ -97806,106 +98138,106 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "unused": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1669 + 1670 ], "__typename": [ - 84 + 85 ] }, "player_utility_aggregate": { "aggregate": [ - 4422 + 4446 ], "nodes": [ - 4418 + 4442 ], "__typename": [ - 84 + 85 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 4421 + 4445 ], "__typename": [ - 84 + 85 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 4439 + 4463 ], "distinct": [ 6 ], "filter": [ - 4427 + 4451 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_utility_aggregate_fields": { "avg": [ - 4425 + 4449 ], "count": [ 41, { "columns": [ - 4439, + 4463, "[player_utility_select_column!]" ], "distinct": [ @@ -97914,83 +98246,83 @@ export default { } ], "max": [ - 4431 + 4455 ], "min": [ - 4433 + 4457 ], "stddev": [ - 4441 + 4465 ], "stddev_pop": [ - 4443 + 4467 ], "stddev_samp": [ - 4445 + 4469 ], "sum": [ - 4449 + 4473 ], "var_pop": [ - 4453 + 4477 ], "var_samp": [ - 4455 + 4479 ], "variance": [ - 4457 + 4481 ], "__typename": [ - 84 + 85 ] }, "player_utility_aggregate_order_by": { "avg": [ - 4426 + 4450 ], "count": [ - 3534 + 3558 ], "max": [ - 4432 + 4456 ], "min": [ - 4434 + 4458 ], "stddev": [ - 4442 + 4466 ], "stddev_pop": [ - 4444 + 4468 ], "stddev_samp": [ - 4446 + 4470 ], "sum": [ - 4450 + 4474 ], "var_pop": [ - 4454 + 4478 ], "var_samp": [ - 4456 + 4480 ], "variance": [ - 4458 + 4482 ], "__typename": [ - 84 + 85 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 4430 + 4454 ], "on_conflict": [ - 4436 + 4460 ], "__typename": [ - 84 + 85 ] }, "player_utility_avg_fields": { @@ -98001,219 +98333,219 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_bool_exp": { "_and": [ - 4427 + 4451 ], "_not": [ - 4427 + 4451 ], "_or": [ - 4427 + 4451 ], "attacker_location_coordinates": [ - 86 + 87 ], "attacker_steam_id": [ - 311 + 312 ], "deleted_at": [ - 5130 + 5154 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "round": [ 42 ], "time": [ - 5130 + 5154 ], "type": [ - 1670 + 1671 ], "__typename": [ - 84 + 85 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1669 + 1670 ], "__typename": [ - 84 + 85 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_mutation_response": { @@ -98221,106 +98553,106 @@ export default { 41 ], "returning": [ - 4418 + 4442 ], "__typename": [ - 84 + 85 ] }, "player_utility_on_conflict": { "constraint": [ - 4428 + 4452 ], "update_columns": [ - 4451 + 4475 ], "where": [ - 4427 + 4451 ], "__typename": [ - 84 + 85 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 3534 + 3558 ], "attacker_steam_id": [ - 3534 + 3558 ], "deleted_at": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "round": [ - 3534 + 3558 ], "time": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 309 + 310 ], "match_map_id": [ - 6341 + 6365 ], "time": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1669 + 1670 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_fields": { @@ -98331,18 +98663,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_pop_fields": { @@ -98353,18 +98685,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_samp_fields": { @@ -98375,95 +98707,95 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 4448 + 4472 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 84 + 85 ], "attacker_steam_id": [ - 309 + 310 ], "deleted_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "time": [ - 5129 + 5153 ], "type": [ - 1669 + 1670 ], "__typename": [ - 84 + 85 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 4429 + 4453 ], "_set": [ - 4440 + 4464 ], "where": [ - 4427 + 4451 ], "__typename": [ - 84 + 85 ] }, "player_utility_var_pop_fields": { @@ -98474,18 +98806,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_var_samp_fields": { @@ -98496,18 +98828,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_utility_variance_fields": { @@ -98518,18 +98850,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v": { @@ -98546,7 +98878,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -98555,60 +98887,60 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 4463 + 4487 ], "nodes": [ - 4459 + 4483 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 4462 + 4486 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 4475 + 4499 ], "distinct": [ 6 ], "filter": [ - 4468 + 4492 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 4466 + 4490 ], "count": [ 41, { "columns": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -98617,80 +98949,80 @@ export default { } ], "max": [ - 4470 + 4494 ], "min": [ - 4472 + 4496 ], "stddev": [ - 4476 + 4500 ], "stddev_pop": [ - 4478 + 4502 ], "stddev_samp": [ - 4480 + 4504 ], "sum": [ - 4484 + 4508 ], "var_pop": [ - 4486 + 4510 ], "var_samp": [ - 4488 + 4512 ], "variance": [ - 4490 + 4514 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 4467 + 4491 ], "count": [ - 3534 + 3558 ], "max": [ - 4471 + 4495 ], "min": [ - 4473 + 4497 ], "stddev": [ - 4477 + 4501 ], "stddev_pop": [ - 4479 + 4503 ], "stddev_samp": [ - 4481 + 4505 ], "sum": [ - 4485 + 4509 ], "var_pop": [ - 4487 + 4511 ], "var_samp": [ - 4489 + 4513 ], "variance": [ - 4491 + 4515 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 4469 + 4493 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_avg_fields": { @@ -98716,44 +99048,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 4468 + 4492 ], "_not": [ - 4468 + 4492 ], "_or": [ - 4468 + 4492 ], "first_bullet_hits": [ 42 @@ -98768,7 +99100,7 @@ export default { 42 ], "match_id": [ - 6343 + 6367 ], "shots": [ 42 @@ -98777,13 +99109,13 @@ export default { 42 ], "steam_id": [ - 311 + 312 ], "weapon_class": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_insert_input": { @@ -98800,7 +99132,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -98809,13 +99141,13 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_max_fields": { @@ -98832,7 +99164,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -98841,45 +99173,45 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_min_fields": { @@ -98896,7 +99228,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -98905,77 +99237,77 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "weapon_class": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_select_column": {}, @@ -99002,33 +99334,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stddev_pop_fields": { @@ -99054,33 +99386,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stddev_samp_fields": { @@ -99106,44 +99438,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 4483 + 4507 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_stream_cursor_value_input": { @@ -99160,7 +99492,7 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "shots": [ 41 @@ -99169,13 +99501,13 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "weapon_class": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_sum_fields": { @@ -99198,36 +99530,36 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_var_pop_fields": { @@ -99253,33 +99585,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_var_samp_fields": { @@ -99305,33 +99637,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_variance_fields": { @@ -99357,41 +99689,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 3534 + 3558 ], "first_bullet_shots": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "hits_spotted": [ - 3534 + 3558 ], "shots": [ - 3534 + 3558 ], "shots_spotted": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "players": { "abandoned_matches": [ - 171, + 172, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -99401,19 +99733,19 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "abandoned_matches_aggregate": [ - 172, + 173, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -99423,19 +99755,19 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "aim_weapon_stats": [ - 3631, + 3655, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -99445,19 +99777,19 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "aim_weapon_stats_aggregate": [ - 3632, + 3656, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -99467,19 +99799,19 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -99489,19 +99821,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -99511,19 +99843,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "assited_by_players": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -99533,19 +99865,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "assited_by_players_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -99555,22 +99887,22 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "avatar_url": [ - 84 + 85 ], "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -99580,19 +99912,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -99602,22 +99934,22 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "banned_until": [ - 5129 + 5153 ], "coach_lineups": [ - 2972, + 2996, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -99627,19 +99959,19 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "coach_lineups_aggregate": [ - 2973, + 2997, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -99649,31 +99981,31 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "current_lobby_id": [ - 6341 + 6365 ], "custom_avatar_url": [ - 84 + 85 ], "damage_dealt": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -99683,19 +100015,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "damage_dealt_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -99705,19 +100037,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "damage_taken": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -99727,19 +100059,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "damage_taken_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -99749,11 +100081,11 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], @@ -99761,10 +100093,10 @@ export default { 41 ], "deaths": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -99774,19 +100106,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "deaths_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -99796,22 +100128,22 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "discord_id": [ - 84 + 85 ], "draft_game_players": [ - 551, + 552, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -99821,19 +100153,19 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "draft_game_players_aggregate": [ - 552, + 553, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -99843,27 +100175,27 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "elo": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "elo_history": [ - 6718, + 6742, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -99873,19 +100205,19 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "elo_history_aggregate": [ - 6719, + 6743, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -99895,11 +100227,11 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], @@ -99907,16 +100239,16 @@ export default { 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_rank_history": [ - 3803, + 3827, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -99926,19 +100258,19 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], "faceit_rank_history_aggregate": [ - 3804, + 3828, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -99948,11 +100280,11 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], @@ -99960,16 +100292,16 @@ export default { 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "flashed_by_players": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -99979,19 +100311,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "flashed_by_players_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -100001,19 +100333,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "flashed_players": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -100023,19 +100355,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "flashed_players_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -100045,19 +100377,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "friends": [ - 3382, + 3406, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -100067,19 +100399,19 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], "friends_aggregate": [ - 3383, + 3407, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -100089,11 +100421,11 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], @@ -100101,10 +100433,10 @@ export default { 41 ], "invited_players": [ - 4797, + 4821, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -100114,19 +100446,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "invited_players_aggregate": [ - 4798, + 4822, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -100136,11 +100468,11 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], @@ -100169,10 +100501,10 @@ export default { 6 ], "kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -100182,19 +100514,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -100204,19 +100536,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "kills_by_weapons": [ - 3901, + 3925, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -100226,19 +100558,19 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "kills_by_weapons_aggregate": [ - 3902, + 3926, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -100248,28 +100580,28 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "lobby_players": [ - 2746, + 2747, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -100279,19 +100611,19 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "lobby_players_aggregate": [ - 2747, + 2748, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -100301,11 +100633,11 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], @@ -100322,10 +100654,10 @@ export default { 41 ], "match_map_hltv": [ - 6823, + 6847, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -100335,19 +100667,19 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "match_map_hltv_aggregate": [ - 6824, + 6848, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -100357,19 +100689,19 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "match_map_stats": [ - 3998, + 4022, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -100379,19 +100711,19 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "match_map_stats_aggregate": [ - 3999, + 4023, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -100401,19 +100733,19 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "match_stats": [ - 4057, + 4081, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -100423,19 +100755,19 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "match_stats_aggregate": [ - 4058, + 4082, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -100445,19 +100777,19 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -100467,22 +100799,22 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matchmaking_cooldown": [ - 5129 + 5153 ], "multi_kills": [ - 6914, + 6938, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -100492,19 +100824,19 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "multi_kills_aggregate": [ - 6915, + 6939, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -100514,28 +100846,28 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "notifications": [ - 3482, + 3506, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -100545,19 +100877,19 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "notifications_aggregate": [ - 3483, + 3507, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -100567,19 +100899,19 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -100589,19 +100921,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -100611,19 +100943,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "owned_teams": [ - 5080, + 5104, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -100633,19 +100965,19 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "owned_teams_aggregate": [ - 5081, + 5105, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -100655,27 +100987,27 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "peak_elo": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "pending_match_imports": [ - 3535, + 3559, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -100685,19 +101017,19 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "pending_match_imports_aggregate": [ - 3536, + 3560, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -100707,19 +101039,19 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "player_lineup": [ - 2927, + 2951, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -100729,19 +101061,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "player_lineup_aggregate": [ - 2928, + 2952, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -100751,19 +101083,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "player_unused_utilities": [ - 4377, + 4401, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -100773,19 +101105,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utilities_aggregate": [ - 4378, + 4402, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -100795,11 +101127,11 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], @@ -100807,10 +101139,10 @@ export default { 41 ], "premier_rank_history": [ - 4149, + 4173, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -100820,19 +101152,19 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "premier_rank_history_aggregate": [ - 4150, + 4174, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -100842,37 +101174,37 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 1283 + 1284 ], "roster_image_url": [ - 84 + 85 ], "sanctions": [ - 4190, + 4214, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -100882,19 +101214,19 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "sanctions_aggregate": [ - 4191, + 4215, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -100904,19 +101236,19 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "season_stats": [ - 4231, + 4255, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -100926,19 +101258,19 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "season_stats_aggregate": [ - 4232, + 4256, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -100948,11 +101280,11 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], @@ -100960,19 +101292,19 @@ export default { 6 ], "stats": [ - 4290 + 4314 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "team_invites": [ - 4797, + 4821, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -100982,19 +101314,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_invites_aggregate": [ - 4798, + 4822, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -101004,19 +101336,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_members": [ - 4838, + 4862, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -101026,19 +101358,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_members_aggregate": [ - 4839, + 4863, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -101048,19 +101380,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "teams": [ - 5080, + 5104, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -101070,11 +101402,11 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], @@ -101082,10 +101414,10 @@ export default { 41 ], "tournament_organizers": [ - 5267, + 5291, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101095,19 +101427,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_organizers_aggregate": [ - 5268, + 5292, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101117,19 +101449,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_rosters": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -101139,19 +101471,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_rosters_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -101161,19 +101493,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournaments": [ - 5565, + 5589, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -101183,19 +101515,19 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_aggregate": [ - 5566, + 5590, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -101205,19 +101537,19 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "utility_thrown": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -101227,19 +101559,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "utility_thrown_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -101249,11 +101581,11 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], @@ -101264,10 +101596,10 @@ export default { 6 ], "weapon_stats": [ - 4459, + 4483, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -101277,19 +101609,19 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], "weapon_stats_aggregate": [ - 4460, + 4484, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -101299,11 +101631,11 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], @@ -101320,29 +101652,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_aggregate": { "aggregate": [ - 4494 + 4518 ], "nodes": [ - 4492 + 4516 ], "__typename": [ - 84 + 85 ] }, "players_aggregate_fields": { "avg": [ - 4495 + 4519 ], "count": [ 41, { "columns": [ - 4507, + 4531, "[players_select_column!]" ], "distinct": [ @@ -101351,34 +101683,34 @@ export default { } ], "max": [ - 4500 + 4524 ], "min": [ - 4501 + 4525 ], "stddev": [ - 4509 + 4533 ], "stddev_pop": [ - 4510 + 4534 ], "stddev_samp": [ - 4511 + 4535 ], "sum": [ - 4514 + 4538 ], "var_pop": [ - 4517 + 4541 ], "var_samp": [ - 4518 + 4542 ], "variance": [ - 4519 + 4543 ], "__typename": [ - 84 + 85 ] }, "players_avg_fields": { @@ -101431,162 +101763,162 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_bool_exp": { "_and": [ - 4496 + 4520 ], "_not": [ - 4496 + 4520 ], "_or": [ - 4496 + 4520 ], "abandoned_matches": [ - 180 + 181 ], "abandoned_matches_aggregate": [ - 173 + 174 ], "aim_weapon_stats": [ - 3640 + 3664 ], "aim_weapon_stats_aggregate": [ - 3633 + 3657 ], "assists": [ - 3683 + 3707 ], "assists_aggregate": [ - 3674 + 3698 ], "assited_by_players": [ - 3683 + 3707 ], "assited_by_players_aggregate": [ - 3674 + 3698 ], "avatar_url": [ - 86 + 87 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "banned_until": [ - 5130 + 5154 ], "coach_lineups": [ - 2981 + 3005 ], "coach_lineups_aggregate": [ - 2974 + 2998 ], "country": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "current_lobby_id": [ - 6343 + 6367 ], "custom_avatar_url": [ - 86 + 87 ], "damage_dealt": [ - 3744 + 3768 ], "damage_dealt_aggregate": [ - 3737 + 3761 ], "damage_taken": [ - 3744 + 3768 ], "damage_taken_aggregate": [ - 3737 + 3761 ], "days_since_last_ban": [ 42 ], "deaths": [ - 3900 + 3924 ], "deaths_aggregate": [ - 3891 + 3915 ], "discord_id": [ - 86 + 87 ], "draft_game_players": [ - 562 + 563 ], "draft_game_players_aggregate": [ - 553 + 554 ], "elo": [ - 2350 + 2351 ], "elo_history": [ - 6737 + 6761 ], "elo_history_aggregate": [ - 6720 + 6744 ], "faceit_elo": [ 42 ], "faceit_nickname": [ - 86 + 87 ], "faceit_player_id": [ - 86 + 87 ], "faceit_rank_history": [ - 3812 + 3836 ], "faceit_rank_history_aggregate": [ - 3805 + 3829 ], "faceit_skill_level": [ 42 ], "faceit_updated_at": [ - 5130 + 5154 ], "faceit_url": [ - 86 + 87 ], "flashed_by_players": [ - 3855 + 3879 ], "flashed_by_players_aggregate": [ - 3846 + 3870 ], "flashed_players": [ - 3855 + 3879 ], "flashed_players_aggregate": [ - 3846 + 3870 ], "friends": [ - 3394 + 3418 ], "friends_aggregate": [ - 3384 + 3408 ], "game_ban_count": [ 42 ], "invited_players": [ - 4806 + 4830 ], "invited_players_aggregate": [ - 4799 + 4823 ], "is_admin_sanctioned": [ 7 @@ -101613,31 +101945,31 @@ export default { 7 ], "kills": [ - 3900 + 3924 ], "kills_aggregate": [ - 3891 + 3915 ], "kills_by_weapons": [ - 3910 + 3934 ], "kills_by_weapons_aggregate": [ - 3903 + 3927 ], "language": [ - 86 + 87 ], "last_read_news_at": [ - 5130 + 5154 ], "last_sign_in_at": [ - 5130 + 5154 ], "lobby_players": [ - 2757 + 2758 ], "lobby_players_aggregate": [ - 2748 + 2749 ], "losses": [ 42 @@ -101652,175 +101984,175 @@ export default { 42 ], "match_map_hltv": [ - 6832 + 6856 ], "match_map_hltv_aggregate": [ - 6825 + 6849 ], "match_map_stats": [ - 4007 + 4031 ], "match_map_stats_aggregate": [ - 4000 + 4024 ], "match_stats": [ - 4066 + 4090 ], "match_stats_aggregate": [ - 4059 + 4083 ], "matches": [ - 3329 + 3353 ], "matchmaking_cooldown": [ - 5130 + 5154 ], "multi_kills": [ - 6923 + 6947 ], "multi_kills_aggregate": [ - 6916 + 6940 ], "name": [ - 86 + 87 ], "name_registered": [ 7 ], "notification_timezone": [ - 86 + 87 ], "notifications": [ - 3494 + 3518 ], "notifications_aggregate": [ - 3484 + 3508 ], "objectives": [ - 4099 + 4123 ], "objectives_aggregate": [ - 4092 + 4116 ], "owned_teams": [ - 5091 + 5115 ], "owned_teams_aggregate": [ - 5082 + 5106 ], "peak_elo": [ - 2350 + 2351 ], "pending_match_imports": [ - 3544 + 3568 ], "pending_match_imports_aggregate": [ - 3537 + 3561 ], "player_lineup": [ - 2938 + 2962 ], "player_lineup_aggregate": [ - 2929 + 2953 ], "player_unused_utilities": [ - 4386 + 4410 ], "player_unused_utilities_aggregate": [ - 4379 + 4403 ], "premier_rank": [ 42 ], "premier_rank_history": [ - 4158 + 4182 ], "premier_rank_history_aggregate": [ - 4151 + 4175 ], "premier_rank_updated_at": [ - 5130 + 5154 ], "profile_url": [ - 86 + 87 ], "quiet_hours_end": [ - 5127 + 5151 ], "quiet_hours_start": [ - 5127 + 5151 ], "role": [ - 1284 + 1285 ], "roster_image_url": [ - 86 + 87 ], "sanctions": [ - 4199 + 4223 ], "sanctions_aggregate": [ - 4192 + 4216 ], "season_stats": [ - 4250 + 4274 ], "season_stats_aggregate": [ - 4233 + 4257 ], "show_match_ready_modal": [ 7 ], "stats": [ - 4294 + 4318 ], "steam_bans_checked_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "team_invites": [ - 4806 + 4830 ], "team_invites_aggregate": [ - 4799 + 4823 ], "team_members": [ - 4849 + 4873 ], "team_members_aggregate": [ - 4840 + 4864 ], "teams": [ - 5091 + 5115 ], "total_matches": [ 42 ], "tournament_organizers": [ - 5276 + 5300 ], "tournament_organizers_aggregate": [ - 5269 + 5293 ], "tournament_rosters": [ - 5491 + 5515 ], "tournament_rosters_aggregate": [ - 5484 + 5508 ], "tournaments": [ - 5586 + 5610 ], "tournaments_aggregate": [ - 5567 + 5591 ], "utility_thrown": [ - 4427 + 4451 ], "utility_thrown_aggregate": [ - 4420 + 4444 ], "vac_ban_count": [ 42 @@ -101829,10 +102161,10 @@ export default { 7 ], "weapon_stats": [ - 4468 + 4492 ], "weapon_stats_aggregate": [ - 4461 + 4485 ], "wins": [ 42 @@ -101847,7 +102179,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "players_constraint": {}, @@ -101868,219 +102200,219 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "players_insert_input": { "abandoned_matches": [ - 177 + 178 ], "aim_weapon_stats": [ - 3637 + 3661 ], "assists": [ - 3680 + 3704 ], "assited_by_players": [ - 3680 + 3704 ], "avatar_url": [ - 84 + 85 ], "awards": [ - 246 + 247 ], "coach_lineups": [ - 2978 + 3002 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "damage_dealt": [ - 3741 + 3765 ], "damage_taken": [ - 3741 + 3765 ], "days_since_last_ban": [ 41 ], "deaths": [ - 3897 + 3921 ], "discord_id": [ - 84 + 85 ], "draft_game_players": [ - 559 + 560 ], "elo_history": [ - 6734 + 6758 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_rank_history": [ - 3809 + 3833 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "flashed_by_players": [ - 3852 + 3876 ], "flashed_players": [ - 3852 + 3876 ], "friends": [ - 3391 + 3415 ], "game_ban_count": [ 41 ], "invited_players": [ - 4803 + 4827 ], "kills": [ - 3897 + 3921 ], "kills_by_weapons": [ - 3907 + 3931 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "lobby_players": [ - 2754 + 2755 ], "match_map_hltv": [ - 6829 + 6853 ], "match_map_stats": [ - 4004 + 4028 ], "match_stats": [ - 4063 + 4087 ], "multi_kills": [ - 6920 + 6944 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "notifications": [ - 3491 + 3515 ], "objectives": [ - 4096 + 4120 ], "owned_teams": [ - 5088 + 5112 ], "pending_match_imports": [ - 3541 + 3565 ], "player_lineup": [ - 2935 + 2959 ], "player_unused_utilities": [ - 4383 + 4407 ], "premier_rank": [ 41 ], "premier_rank_history": [ - 4155 + 4179 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 1283 + 1284 ], "roster_image_url": [ - 84 + 85 ], "sanctions": [ - 4196 + 4220 ], "season_stats": [ - 4247 + 4271 ], "show_match_ready_modal": [ 6 ], "stats": [ - 4301 + 4325 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "team_invites": [ - 4803 + 4827 ], "team_members": [ - 4846 + 4870 ], "tournament_organizers": [ - 5273 + 5297 ], "tournament_rosters": [ - 5488 + 5512 ], "tournaments": [ - 5583 + 5607 ], "utility_thrown": [ - 4424 + 4448 ], "vac_ban_count": [ 41 @@ -102089,66 +102421,66 @@ export default { 6 ], "weapon_stats": [ - 4465 + 4489 ], "__typename": [ - 84 + 85 ] }, "players_max_fields": { "avatar_url": [ - 84 + 85 ], "banned_until": [ - 5129 + 5153 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "current_lobby_id": [ - 6341 + 6365 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "game_ban_count": [ 41 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "losses": [ 41 @@ -102163,31 +102495,31 @@ export default { 41 ], "matchmaking_cooldown": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "total_matches": [ 41 @@ -102208,63 +102540,63 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_min_fields": { "avatar_url": [ - 84 + 85 ], "banned_until": [ - 5129 + 5153 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "current_lobby_id": [ - 6341 + 6365 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "game_ban_count": [ 41 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "losses": [ 41 @@ -102279,31 +102611,31 @@ export default { 41 ], "matchmaking_cooldown": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "roster_image_url": [ - 84 + 85 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "total_matches": [ 41 @@ -102324,7 +102656,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_mutation_response": { @@ -102332,423 +102664,423 @@ export default { 41 ], "returning": [ - 4492 + 4516 ], "__typename": [ - 84 + 85 ] }, "players_obj_rel_insert_input": { "data": [ - 4499 + 4523 ], "on_conflict": [ - 4504 + 4528 ], "__typename": [ - 84 + 85 ] }, "players_on_conflict": { "constraint": [ - 4497 + 4521 ], "update_columns": [ - 4515 + 4539 ], "where": [ - 4496 + 4520 ], "__typename": [ - 84 + 85 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 176 + 177 ], "aim_weapon_stats_aggregate": [ - 3636 + 3660 ], "assists_aggregate": [ - 3679 + 3703 ], "assited_by_players_aggregate": [ - 3679 + 3703 ], "avatar_url": [ - 3534 + 3558 ], "awards_aggregate": [ - 245 + 246 ], "banned_until": [ - 3534 + 3558 ], "coach_lineups_aggregate": [ - 2977 + 3001 ], "country": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "current_lobby_id": [ - 3534 + 3558 ], "custom_avatar_url": [ - 3534 + 3558 ], "damage_dealt_aggregate": [ - 3740 + 3764 ], "damage_taken_aggregate": [ - 3740 + 3764 ], "days_since_last_ban": [ - 3534 + 3558 ], "deaths_aggregate": [ - 3896 + 3920 ], "discord_id": [ - 3534 + 3558 ], "draft_game_players_aggregate": [ - 558 + 559 ], "elo": [ - 3534 + 3558 ], "elo_history_aggregate": [ - 6733 + 6757 ], "faceit_elo": [ - 3534 + 3558 ], "faceit_nickname": [ - 3534 + 3558 ], "faceit_player_id": [ - 3534 + 3558 ], "faceit_rank_history_aggregate": [ - 3808 + 3832 ], "faceit_skill_level": [ - 3534 + 3558 ], "faceit_updated_at": [ - 3534 + 3558 ], "faceit_url": [ - 3534 + 3558 ], "flashed_by_players_aggregate": [ - 3851 + 3875 ], "flashed_players_aggregate": [ - 3851 + 3875 ], "friends_aggregate": [ - 3389 + 3413 ], "game_ban_count": [ - 3534 + 3558 ], "invited_players_aggregate": [ - 4802 + 4826 ], "is_admin_sanctioned": [ - 3534 + 3558 ], "is_banned": [ - 3534 + 3558 ], "is_gagged": [ - 3534 + 3558 ], "is_in_another_match": [ - 3534 + 3558 ], "is_in_draft": [ - 3534 + 3558 ], "is_in_lobby": [ - 3534 + 3558 ], "is_muted": [ - 3534 + 3558 ], "is_registered": [ - 3534 + 3558 ], "kills_aggregate": [ - 3896 + 3920 ], "kills_by_weapons_aggregate": [ - 3906 + 3930 ], "language": [ - 3534 + 3558 ], "last_read_news_at": [ - 3534 + 3558 ], "last_sign_in_at": [ - 3534 + 3558 ], "lobby_players_aggregate": [ - 2753 + 2754 ], "losses": [ - 3534 + 3558 ], "losses_competitive": [ - 3534 + 3558 ], "losses_duel": [ - 3534 + 3558 ], "losses_wingman": [ - 3534 + 3558 ], "match_map_hltv_aggregate": [ - 6828 + 6852 ], "match_map_stats_aggregate": [ - 4003 + 4027 ], "match_stats_aggregate": [ - 4062 + 4086 ], "matches_aggregate": [ - 3325 + 3349 ], "matchmaking_cooldown": [ - 3534 + 3558 ], "multi_kills_aggregate": [ - 6919 + 6943 ], "name": [ - 3534 + 3558 ], "name_registered": [ - 3534 + 3558 ], "notification_timezone": [ - 3534 + 3558 ], "notifications_aggregate": [ - 3489 + 3513 ], "objectives_aggregate": [ - 4095 + 4119 ], "owned_teams_aggregate": [ - 5087 + 5111 ], "peak_elo": [ - 3534 + 3558 ], "pending_match_imports_aggregate": [ - 3540 + 3564 ], "player_lineup_aggregate": [ - 2934 + 2958 ], "player_unused_utilities_aggregate": [ - 4382 + 4406 ], "premier_rank": [ - 3534 + 3558 ], "premier_rank_history_aggregate": [ - 4154 + 4178 ], "premier_rank_updated_at": [ - 3534 + 3558 ], "profile_url": [ - 3534 + 3558 ], "quiet_hours_end": [ - 3534 + 3558 ], "quiet_hours_start": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "sanctions_aggregate": [ - 4195 + 4219 ], "season_stats_aggregate": [ - 4246 + 4270 ], "show_match_ready_modal": [ - 3534 + 3558 ], "stats": [ - 4303 + 4327 ], "steam_bans_checked_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_invites_aggregate": [ - 4802 + 4826 ], "team_members_aggregate": [ - 4845 + 4869 ], "teams_aggregate": [ - 5087 + 5111 ], "total_matches": [ - 3534 + 3558 ], "tournament_organizers_aggregate": [ - 5272 + 5296 ], "tournament_rosters_aggregate": [ - 5487 + 5511 ], "tournaments_aggregate": [ - 5582 + 5606 ], "utility_thrown_aggregate": [ - 4423 + 4447 ], "vac_ban_count": [ - 3534 + 3558 ], "vac_banned": [ - 3534 + 3558 ], "weapon_stats_aggregate": [ - 4464 + 4488 ], "wins": [ - 3534 + 3558 ], "wins_competitive": [ - 3534 + 3558 ], "wins_duel": [ - 3534 + 3558 ], "wins_wingman": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "players_pk_columns_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "game_ban_count": [ 41 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 1283 + 1284 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -102757,7 +103089,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "players_stddev_fields": { @@ -102810,7 +103142,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_stddev_pop_fields": { @@ -102863,7 +103195,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_stddev_samp_fields": { @@ -102916,107 +103248,107 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_stream_cursor_input": { "initial_value": [ - 4513 + 4537 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 84 + 85 ], "country": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "custom_avatar_url": [ - 84 + 85 ], "days_since_last_ban": [ 41 ], "discord_id": [ - 84 + 85 ], "faceit_elo": [ 41 ], "faceit_nickname": [ - 84 + 85 ], "faceit_player_id": [ - 84 + 85 ], "faceit_skill_level": [ 41 ], "faceit_updated_at": [ - 5129 + 5153 ], "faceit_url": [ - 84 + 85 ], "game_ban_count": [ 41 ], "language": [ - 84 + 85 ], "last_read_news_at": [ - 5129 + 5153 ], "last_sign_in_at": [ - 5129 + 5153 ], "name": [ - 84 + 85 ], "name_registered": [ 6 ], "notification_timezone": [ - 84 + 85 ], "premier_rank": [ 41 ], "premier_rank_updated_at": [ - 5129 + 5153 ], "profile_url": [ - 84 + 85 ], "quiet_hours_end": [ - 5126 + 5150 ], "quiet_hours_start": [ - 5126 + 5150 ], "role": [ - 1283 + 1284 ], "roster_image_url": [ - 84 + 85 ], "show_match_ready_modal": [ 6 ], "steam_bans_checked_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "vac_ban_count": [ 41 @@ -103025,7 +103357,7 @@ export default { 6 ], "__typename": [ - 84 + 85 ] }, "players_sum_fields": { @@ -103057,7 +103389,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "total_matches": [ 41 @@ -103078,22 +103410,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 4498 + 4522 ], "_set": [ - 4508 + 4532 ], "where": [ - 4496 + 4520 ], "__typename": [ - 84 + 85 ] }, "players_var_pop_fields": { @@ -103146,7 +103478,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_var_samp_fields": { @@ -103199,7 +103531,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "players_variance_fields": { @@ -103252,7 +103584,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "plugin_versions": { @@ -103260,38 +103592,38 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_aggregate": { "aggregate": [ - 4522 + 4546 ], "nodes": [ - 4520 + 4544 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 4523 + 4547 ], "count": [ 41, { "columns": [ - 4534, + 4558, "[plugin_versions_select_column!]" ], "distinct": [ @@ -103300,34 +103632,34 @@ export default { } ], "max": [ - 4528 + 4552 ], "min": [ - 4529 + 4553 ], "stddev": [ - 4536 + 4560 ], "stddev_pop": [ - 4537 + 4561 ], "stddev_samp": [ - 4538 + 4562 ], "sum": [ - 4541 + 4565 ], "var_pop": [ - 4544 + 4568 ], "var_samp": [ - 4545 + 4569 ], "variance": [ - 4546 + 4570 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_avg_fields": { @@ -103335,33 +103667,33 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_bool_exp": { "_and": [ - 4524 + 4548 ], "_not": [ - 4524 + 4548 ], "_or": [ - 4524 + 4548 ], "min_game_build_id": [ 42 ], "published_at": [ - 5130 + 5154 ], "runtime": [ - 1304 + 1305 ], "version": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_constraint": {}, @@ -103370,7 +103702,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_insert_input": { @@ -103378,16 +103710,16 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_max_fields": { @@ -103395,13 +103727,13 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_min_fields": { @@ -103409,13 +103741,13 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_mutation_response": { @@ -103423,52 +103755,52 @@ export default { 41 ], "returning": [ - 4520 + 4544 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_on_conflict": { "constraint": [ - 4525 + 4549 ], "update_columns": [ - 4542 + 4566 ], "where": [ - 4524 + 4548 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 3534 + 3558 ], "published_at": [ - 3534 + 3558 ], "runtime": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_pk_columns_input": { "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_select_column": {}, @@ -103477,16 +103809,16 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_stddev_fields": { @@ -103494,7 +103826,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_stddev_pop_fields": { @@ -103502,7 +103834,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_stddev_samp_fields": { @@ -103510,18 +103842,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 4540 + 4564 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_stream_cursor_value_input": { @@ -103529,16 +103861,16 @@ export default { 41 ], "published_at": [ - 5129 + 5153 ], "runtime": [ - 1303 + 1304 ], "version": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_sum_fields": { @@ -103546,22 +103878,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 4526 + 4550 ], "_set": [ - 4535 + 4559 ], "where": [ - 4524 + 4548 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_var_pop_fields": { @@ -103569,7 +103901,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_var_samp_fields": { @@ -103577,7 +103909,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "plugin_versions_variance_fields": { @@ -103585,58 +103917,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_aggregate": { "aggregate": [ - 4549 + 4573 ], "nodes": [ - 4547 + 4571 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_aggregate_fields": { "avg": [ - 4550 + 4574 ], "count": [ 41, { "columns": [ - 4561, + 4585, "[push_subscriptions_select_column!]" ], "distinct": [ @@ -103645,34 +103977,34 @@ export default { } ], "max": [ - 4555 + 4579 ], "min": [ - 4556 + 4580 ], "stddev": [ - 4563 + 4587 ], "stddev_pop": [ - 4564 + 4588 ], "stddev_samp": [ - 4565 + 4589 ], "sum": [ - 4568 + 4592 ], "var_pop": [ - 4571 + 4595 ], "var_samp": [ - 4572 + 4596 ], "variance": [ - 4573 + 4597 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_avg_fields": { @@ -103680,141 +104012,141 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_bool_exp": { "_and": [ - 4551 + 4575 ], "_not": [ - 4551 + 4575 ], "_or": [ - 4551 + 4575 ], "auth": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "endpoint": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "last_used_at": [ - 5130 + 5154 ], "p256dh": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "user_agent": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_constraint": {}, "push_subscriptions_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_insert_input": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_max_fields": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_min_fields": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_mutation_response": { @@ -103822,91 +104154,91 @@ export default { 41 ], "returning": [ - 4547 + 4571 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_on_conflict": { "constraint": [ - 4552 + 4576 ], "update_columns": [ - 4569 + 4593 ], "where": [ - 4551 + 4575 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_order_by": { "auth": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "endpoint": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "last_used_at": [ - 3534 + 3558 ], "p256dh": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "user_agent": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_select_column": {}, "push_subscriptions_set_input": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_stddev_fields": { @@ -103914,7 +104246,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_stddev_pop_fields": { @@ -103922,7 +104254,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_stddev_samp_fields": { @@ -103930,70 +104262,70 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_stream_cursor_input": { "initial_value": [ - 4567 + 4591 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_stream_cursor_value_input": { "auth": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "endpoint": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_used_at": [ - 5129 + 5153 ], "p256dh": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "user_agent": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_update_column": {}, "push_subscriptions_updates": { "_inc": [ - 4553 + 4577 ], "_set": [ - 4562 + 4586 ], "where": [ - 4551 + 4575 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_var_pop_fields": { @@ -104001,7 +104333,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_var_samp_fields": { @@ -104009,7 +104341,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "push_subscriptions_variance_fields": { @@ -104017,39 +104349,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "recalculate_tournament_awards_args": { "_tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "reorder_league_divisions_args": { "_division_ids": [ - 170 + 171 ], "__typename": [ - 84 + 85 ] }, "restart_league_season_args": { "_league_season_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "role_permissions": { @@ -104063,21 +104395,21 @@ export default { 6 ], "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_aggregate": { "aggregate": [ - 4580 + 4604 ], "nodes": [ - 4578 + 4602 ], "__typename": [ - 84 + 85 ] }, "role_permissions_aggregate_fields": { @@ -104085,7 +104417,7 @@ export default { 41, { "columns": [ - 4587, + 4611, "[role_permissions_select_column!]" ], "distinct": [ @@ -104094,24 +104426,24 @@ export default { } ], "max": [ - 4583 + 4607 ], "min": [ - 4584 + 4608 ], "__typename": [ - 84 + 85 ] }, "role_permissions_bool_exp": { "_and": [ - 4581 + 4605 ], "_not": [ - 4581 + 4605 ], "_or": [ - 4581 + 4605 ], "can_create_events": [ 7 @@ -104123,10 +104455,10 @@ export default { 7 ], "role": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "role_permissions_insert_input": { @@ -104140,26 +104472,26 @@ export default { 6 ], "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_max_fields": { "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_min_fields": { "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_mutation_response": { @@ -104167,27 +104499,27 @@ export default { 41 ], "returning": [ - 4578 + 4602 ], "__typename": [ - 84 + 85 ] }, "role_permissions_order_by": { "can_create_events": [ - 3534 + 3558 ], "can_create_matches": [ - 3534 + 3558 ], "can_create_tournaments": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "role_permissions_select_column": {}, @@ -104202,21 +104534,21 @@ export default { 6 ], "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_stream_cursor_input": { "initial_value": [ - 4590 + 4614 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "role_permissions_stream_cursor_value_input": { @@ -104230,29 +104562,29 @@ export default { 6 ], "role": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "role_permissions_updates": { "_set": [ - 4588 + 4612 ], "where": [ - 4581 + 4605 ], "__typename": [ - 84 + 85 ] }, "seasons": { "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -104262,19 +104594,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -104284,25 +104616,25 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "needs_rebuild": [ 6 @@ -104311,10 +104643,10 @@ export default { 41 ], "player_season_stats": [ - 4231, + 4255, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -104324,19 +104656,19 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "player_season_stats_aggregate": [ - 4232, + 4256, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -104346,41 +104678,41 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_aggregate": { "aggregate": [ - 4594 + 4618 ], "nodes": [ - 4592 + 4616 ], "__typename": [ - 84 + 85 ] }, "seasons_aggregate_fields": { "avg": [ - 4595 + 4619 ], "count": [ 41, { "columns": [ - 4607, + 4631, "[seasons_select_column!]" ], "distinct": [ @@ -104389,34 +104721,34 @@ export default { } ], "max": [ - 4600 + 4624 ], "min": [ - 4601 + 4625 ], "stddev": [ - 4609 + 4633 ], "stddev_pop": [ - 4610 + 4634 ], "stddev_samp": [ - 4611 + 4635 ], "sum": [ - 4614 + 4638 ], "var_pop": [ - 4617 + 4641 ], "var_samp": [ - 4618 + 4642 ], "variance": [ - 4619 + 4643 ], "__typename": [ - 84 + 85 ] }, "seasons_avg_fields": { @@ -104424,36 +104756,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_bool_exp": { "_and": [ - 4596 + 4620 ], "_not": [ - 4596 + 4620 ], "_or": [ - 4596 + 4620 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "ends_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "needs_rebuild": [ 7 @@ -104462,16 +104794,16 @@ export default { 42 ], "player_season_stats": [ - 4250 + 4274 ], "player_season_stats_aggregate": [ - 4233 + 4257 ], "starts_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "seasons_constraint": {}, @@ -104480,24 +104812,24 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "seasons_insert_input": { "awards": [ - 246 + 247 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "needs_rebuild": [ 6 @@ -104506,59 +104838,59 @@ export default { 41 ], "player_season_stats": [ - 4247 + 4271 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_max_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "number": [ 41 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_min_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "number": [ 41 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_mutation_response": { @@ -104566,90 +104898,90 @@ export default { 41 ], "returning": [ - 4592 + 4616 ], "__typename": [ - 84 + 85 ] }, "seasons_obj_rel_insert_input": { "data": [ - 4599 + 4623 ], "on_conflict": [ - 4604 + 4628 ], "__typename": [ - 84 + 85 ] }, "seasons_on_conflict": { "constraint": [ - 4597 + 4621 ], "update_columns": [ - 4615 + 4639 ], "where": [ - 4596 + 4620 ], "__typename": [ - 84 + 85 ] }, "seasons_order_by": { "awards_aggregate": [ - 245 + 246 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "ends_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "needs_rebuild": [ - 3534 + 3558 ], "number": [ - 3534 + 3558 ], "player_season_stats_aggregate": [ - 4246 + 4270 ], "starts_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "seasons_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "needs_rebuild": [ 6 @@ -104658,10 +104990,10 @@ export default { 41 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_stddev_fields": { @@ -104669,7 +105001,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_stddev_pop_fields": { @@ -104677,7 +105009,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_stddev_samp_fields": { @@ -104685,32 +105017,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_stream_cursor_input": { "initial_value": [ - 4613 + 4637 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "seasons_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "needs_rebuild": [ 6 @@ -104719,10 +105051,10 @@ export default { 41 ], "starts_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "seasons_sum_fields": { @@ -104730,22 +105062,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 4598 + 4622 ], "_set": [ - 4608 + 4632 ], "where": [ - 4596 + 4620 ], "__typename": [ - 84 + 85 ] }, "seasons_var_pop_fields": { @@ -104753,7 +105085,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_var_samp_fields": { @@ -104761,7 +105093,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "seasons_variance_fields": { @@ -104769,7 +105101,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "server_regions": { @@ -104777,13 +105109,13 @@ export default { 41 ], "description": [ - 84 + 85 ], "game_server_nodes": [ - 2224, + 2225, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -104793,19 +105125,19 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], "game_server_nodes_aggregate": [ - 2225, + 2226, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -104815,11 +105147,11 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], @@ -104830,7 +105162,7 @@ export default { 6 ], "status": [ - 84 + 85 ], "steam_relay": [ 6 @@ -104839,32 +105171,32 @@ export default { 41 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_aggregate": { "aggregate": [ - 4622 + 4646 ], "nodes": [ - 4620 + 4644 ], "__typename": [ - 84 + 85 ] }, "server_regions_aggregate_fields": { "avg": [ - 4623 + 4647 ], "count": [ 41, { "columns": [ - 4634, + 4658, "[server_regions_select_column!]" ], "distinct": [ @@ -104873,34 +105205,34 @@ export default { } ], "max": [ - 4627 + 4651 ], "min": [ - 4628 + 4652 ], "stddev": [ - 4636 + 4660 ], "stddev_pop": [ - 4637 + 4661 ], "stddev_samp": [ - 4638 + 4662 ], "sum": [ - 4641 + 4665 ], "var_pop": [ - 4644 + 4668 ], "var_samp": [ - 4645 + 4669 ], "variance": [ - 4646 + 4670 ], "__typename": [ - 84 + 85 ] }, "server_regions_avg_fields": { @@ -104911,30 +105243,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_bool_exp": { "_and": [ - 4624 + 4648 ], "_not": [ - 4624 + 4648 ], "_or": [ - 4624 + 4648 ], "available_server_count": [ 42 ], "description": [ - 86 + 87 ], "game_server_nodes": [ - 2236 + 2237 ], "game_server_nodes_aggregate": [ - 2226 + 2227 ], "has_node": [ 7 @@ -104943,7 +105275,7 @@ export default { 7 ], "status": [ - 86 + 87 ], "steam_relay": [ 7 @@ -104952,19 +105284,19 @@ export default { 42 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 84 + 85 ], "game_server_nodes": [ - 2233 + 2234 ], "is_lan": [ 6 @@ -104973,10 +105305,10 @@ export default { 6 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_max_fields": { @@ -104984,19 +105316,19 @@ export default { 41 ], "description": [ - 84 + 85 ], "status": [ - 84 + 85 ], "total_server_count": [ 41 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_min_fields": { @@ -105004,19 +105336,19 @@ export default { 41 ], "description": [ - 84 + 85 ], "status": [ - 84 + 85 ], "total_server_count": [ 41 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_mutation_response": { @@ -105024,81 +105356,81 @@ export default { 41 ], "returning": [ - 4620 + 4644 ], "__typename": [ - 84 + 85 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 4626 + 4650 ], "on_conflict": [ - 4631 + 4655 ], "__typename": [ - 84 + 85 ] }, "server_regions_on_conflict": { "constraint": [ - 4625 + 4649 ], "update_columns": [ - 4642 + 4666 ], "where": [ - 4624 + 4648 ], "__typename": [ - 84 + 85 ] }, "server_regions_order_by": { "available_server_count": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "game_server_nodes_aggregate": [ - 2231 + 2232 ], "has_node": [ - 3534 + 3558 ], "is_lan": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "steam_relay": [ - 3534 + 3558 ], "total_server_count": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "server_regions_pk_columns_input": { "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 84 + 85 ], "is_lan": [ 6 @@ -105107,10 +105439,10 @@ export default { 6 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_stddev_fields": { @@ -105121,7 +105453,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_stddev_pop_fields": { @@ -105132,7 +105464,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_stddev_samp_fields": { @@ -105143,23 +105475,23 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 4640 + 4664 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 84 + 85 ], "is_lan": [ 6 @@ -105168,10 +105500,10 @@ export default { 6 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "server_regions_sum_fields": { @@ -105182,19 +105514,19 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 4635 + 4659 ], "where": [ - 4624 + 4648 ], "__typename": [ - 84 + 85 ] }, "server_regions_var_pop_fields": { @@ -105205,7 +105537,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_var_samp_fields": { @@ -105216,7 +105548,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "server_regions_variance_fields": { @@ -105227,77 +105559,77 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "servers": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connected": [ 6 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "current_match": [ - 3318 + 3342 ], "enabled": [ 6 ], "game": [ - 84 + 85 ], "game_mode": [ - 2082 + 2083 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_dedicated": [ 6 ], "label": [ - 84 + 85 ], "loaded_plugins": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -105307,19 +105639,19 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_aggregate": [ - 3319, + 3343, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -105329,11 +105661,11 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], @@ -105341,136 +105673,136 @@ export default { 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_runtime": [ - 1303 + 1304 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "rcon_password": [ - 312 + 313 ], "rcon_status": [ 6 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "server_region": [ - 4620 + 4644 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "type": [ - 1384 + 1385 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate": { "aggregate": [ - 4653 + 4677 ], "nodes": [ - 4647 + 4671 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 4650 + 4674 ], "bool_or": [ - 4651 + 4675 ], "count": [ - 4652 + 4676 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 4677 + 4701 ], "distinct": [ 6 ], "filter": [ - 4659 + 4683 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 4678 + 4702 ], "distinct": [ 6 ], "filter": [ - 4659 + 4683 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 4676 + 4700 ], "distinct": [ 6 ], "filter": [ - 4659 + 4683 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_fields": { "avg": [ - 4657 + 4681 ], "count": [ 41, { "columns": [ - 4676, + 4700, "[servers_select_column!]" ], "distinct": [ @@ -105479,91 +105811,91 @@ export default { } ], "max": [ - 4666 + 4690 ], "min": [ - 4668 + 4692 ], "stddev": [ - 4680 + 4704 ], "stddev_pop": [ - 4682 + 4706 ], "stddev_samp": [ - 4684 + 4708 ], "sum": [ - 4688 + 4712 ], "var_pop": [ - 4692 + 4716 ], "var_samp": [ - 4694 + 4718 ], "variance": [ - 4696 + 4720 ], "__typename": [ - 84 + 85 ] }, "servers_aggregate_order_by": { "avg": [ - 4658 + 4682 ], "count": [ - 3534 + 3558 ], "max": [ - 4667 + 4691 ], "min": [ - 4669 + 4693 ], "stddev": [ - 4681 + 4705 ], "stddev_pop": [ - 4683 + 4707 ], "stddev_samp": [ - 4685 + 4709 ], "sum": [ - 4689 + 4713 ], "var_pop": [ - 4693 + 4717 ], "var_samp": [ - 4695 + 4719 ], "variance": [ - 4697 + 4721 ], "__typename": [ - 84 + 85 ] }, "servers_append_input": { "loaded_plugins": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "servers_arr_rel_insert_input": { "data": [ - 4665 + 4689 ], "on_conflict": [ - 4672 + 4696 ], "__typename": [ - 84 + 85 ] }, "servers_avg_fields": { @@ -105577,152 +105909,152 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_avg_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_bool_exp": { "_and": [ - 4659 + 4683 ], "_not": [ - 4659 + 4683 ], "_or": [ - 4659 + 4683 ], "api_password": [ - 6343 + 6367 ], "boot_status": [ - 86 + 87 ], "boot_status_detail": [ - 86 + 87 ], "connect_password": [ - 86 + 87 ], "connected": [ 7 ], "connection_link": [ - 86 + 87 ], "connection_string": [ - 86 + 87 ], "current_match": [ - 3329 + 3353 ], "enabled": [ 7 ], "game": [ - 86 + 87 ], "game_mode": [ - 2085 + 2086 ], "game_mode_id": [ - 6343 + 6367 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "host": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "is_dedicated": [ 7 ], "label": [ - 86 + 87 ], "loaded_plugins": [ - 2350 + 2351 ], "matches": [ - 3329 + 3353 ], "matches_aggregate": [ - 3320 + 3344 ], "max_players": [ 42 ], "offline_at": [ - 5130 + 5154 ], "plugin_runtime": [ - 1304 + 1305 ], "plugin_version": [ - 86 + 87 ], "plugins_checked_at": [ - 5130 + 5154 ], "port": [ 42 ], "rcon_password": [ - 313 + 314 ], "rcon_status": [ 7 ], "region": [ - 86 + 87 ], "reserved_by_match_id": [ - 6343 + 6367 ], "server_region": [ - 4624 + 4648 ], "steam_relay": [ - 86 + 87 ], "tv_port": [ 42 ], "type": [ - 1385 + 1386 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "servers_constraint": {}, "servers_delete_at_path_input": { "loaded_plugins": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "servers_delete_elem_input": { @@ -105730,15 +106062,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "servers_delete_key_input": { "loaded_plugins": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "servers_inc_input": { @@ -105752,383 +106084,383 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "servers_insert_input": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connected": [ 6 ], "current_match": [ - 3338 + 3362 ], "enabled": [ 6 ], "game": [ - 84 + 85 ], "game_mode": [ - 2091 + 2092 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_dedicated": [ 6 ], "label": [ - 84 + 85 ], "loaded_plugins": [ - 2348 + 2349 ], "matches": [ - 3326 + 3350 ], "max_players": [ 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_runtime": [ - 1303 + 1304 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "rcon_password": [ - 312 + 313 ], "rcon_status": [ 6 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "server_region": [ - 4630 + 4654 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "type": [ - 1384 + 1385 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_max_fields": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "game": [ - 84 + 85 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "max_players": [ 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_max_order_by": { "api_password": [ - 3534 + 3558 ], "boot_status": [ - 3534 + 3558 ], "boot_status_detail": [ - 3534 + 3558 ], "connect_password": [ - 3534 + 3558 ], "game": [ - 3534 + 3558 ], "game_mode_id": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "host": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "max_players": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "plugin_version": [ - 3534 + 3558 ], "plugins_checked_at": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "reserved_by_match_id": [ - 3534 + 3558 ], "steam_relay": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_min_fields": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "game": [ - 84 + 85 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "max_players": [ 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_min_order_by": { "api_password": [ - 3534 + 3558 ], "boot_status": [ - 3534 + 3558 ], "boot_status_detail": [ - 3534 + 3558 ], "connect_password": [ - 3534 + 3558 ], "game": [ - 3534 + 3558 ], "game_mode_id": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "host": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "max_players": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "plugin_version": [ - 3534 + 3558 ], "plugins_checked_at": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "reserved_by_match_id": [ - 3534 + 3558 ], "steam_relay": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_mutation_response": { @@ -106136,161 +106468,161 @@ export default { 41 ], "returning": [ - 4647 + 4671 ], "__typename": [ - 84 + 85 ] }, "servers_obj_rel_insert_input": { "data": [ - 4665 + 4689 ], "on_conflict": [ - 4672 + 4696 ], "__typename": [ - 84 + 85 ] }, "servers_on_conflict": { "constraint": [ - 4660 + 4684 ], "update_columns": [ - 4690 + 4714 ], "where": [ - 4659 + 4683 ], "__typename": [ - 84 + 85 ] }, "servers_order_by": { "api_password": [ - 3534 + 3558 ], "boot_status": [ - 3534 + 3558 ], "boot_status_detail": [ - 3534 + 3558 ], "connect_password": [ - 3534 + 3558 ], "connected": [ - 3534 + 3558 ], "connection_link": [ - 3534 + 3558 ], "connection_string": [ - 3534 + 3558 ], "current_match": [ - 3340 + 3364 ], "enabled": [ - 3534 + 3558 ], "game": [ - 3534 + 3558 ], "game_mode": [ - 2093 + 2094 ], "game_mode_id": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "host": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_dedicated": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "loaded_plugins": [ - 3534 + 3558 ], "matches_aggregate": [ - 3325 + 3349 ], "max_players": [ - 3534 + 3558 ], "offline_at": [ - 3534 + 3558 ], "plugin_runtime": [ - 3534 + 3558 ], "plugin_version": [ - 3534 + 3558 ], "plugins_checked_at": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "rcon_password": [ - 3534 + 3558 ], "rcon_status": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "reserved_by_match_id": [ - 3534 + 3558 ], "server_region": [ - 4632 + 4656 ], "steam_relay": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "servers_prepend_input": { "loaded_plugins": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "servers_select_column": {}, @@ -106298,16 +106630,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connected": [ 6 @@ -106316,73 +106648,73 @@ export default { 6 ], "game": [ - 84 + 85 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_dedicated": [ 6 ], "label": [ - 84 + 85 ], "loaded_plugins": [ - 2348 + 2349 ], "max_players": [ 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_runtime": [ - 1303 + 1304 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "rcon_password": [ - 312 + 313 ], "rcon_status": [ 6 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "type": [ - 1384 + 1385 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_fields": { @@ -106396,21 +106728,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_pop_fields": { @@ -106424,21 +106756,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_samp_fields": { @@ -106452,46 +106784,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_stream_cursor_input": { "initial_value": [ - 4687 + 4711 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 6341 + 6365 ], "boot_status": [ - 84 + 85 ], "boot_status_detail": [ - 84 + 85 ], "connect_password": [ - 84 + 85 ], "connected": [ 6 @@ -106500,73 +106832,73 @@ export default { 6 ], "game": [ - 84 + 85 ], "game_mode_id": [ - 6341 + 6365 ], "game_server_node_id": [ - 84 + 85 ], "host": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_dedicated": [ 6 ], "label": [ - 84 + 85 ], "loaded_plugins": [ - 2348 + 2349 ], "max_players": [ 41 ], "offline_at": [ - 5129 + 5153 ], "plugin_runtime": [ - 1303 + 1304 ], "plugin_version": [ - 84 + 85 ], "plugins_checked_at": [ - 5129 + 5153 ], "port": [ 41 ], "rcon_password": [ - 312 + 313 ], "rcon_status": [ 6 ], "region": [ - 84 + 85 ], "reserved_by_match_id": [ - 6341 + 6365 ], "steam_relay": [ - 84 + 85 ], "tv_port": [ 41 ], "type": [ - 1384 + 1385 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "servers_sum_fields": { @@ -106580,51 +106912,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "servers_sum_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_update_column": {}, "servers_updates": { "_append": [ - 4655 + 4679 ], "_delete_at_path": [ - 4661 + 4685 ], "_delete_elem": [ - 4662 + 4686 ], "_delete_key": [ - 4663 + 4687 ], "_inc": [ - 4664 + 4688 ], "_prepend": [ - 4675 + 4699 ], "_set": [ - 4679 + 4703 ], "where": [ - 4659 + 4683 ], "__typename": [ - 84 + 85 ] }, "servers_var_pop_fields": { @@ -106638,21 +106970,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_var_pop_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_var_samp_fields": { @@ -106666,21 +106998,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_var_samp_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "servers_variance_fields": { @@ -106694,43 +107026,43 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "servers_variance_order_by": { "max_players": [ - 3534 + 3558 ], "port": [ - 3534 + 3558 ], "tv_port": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "settings": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_aggregate": { "aggregate": [ - 4700 + 4724 ], "nodes": [ - 4698 + 4722 ], "__typename": [ - 84 + 85 ] }, "settings_aggregate_fields": { @@ -106738,7 +107070,7 @@ export default { 41, { "columns": [ - 4710, + 4734, "[settings_select_column!]" ], "distinct": [ @@ -106747,67 +107079,67 @@ export default { } ], "max": [ - 4704 + 4728 ], "min": [ - 4705 + 4729 ], "__typename": [ - 84 + 85 ] }, "settings_bool_exp": { "_and": [ - 4701 + 4725 ], "_not": [ - 4701 + 4725 ], "_or": [ - 4701 + 4725 ], "name": [ - 86 + 87 ], "value": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_max_fields": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_min_fields": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_mutation_response": { @@ -106815,187 +107147,187 @@ export default { 41 ], "returning": [ - 4698 + 4722 ], "__typename": [ - 84 + 85 ] }, "settings_on_conflict": { "constraint": [ - 4702 + 4726 ], "update_columns": [ - 4714 + 4738 ], "where": [ - 4701 + 4725 ], "__typename": [ - 84 + 85 ] }, "settings_order_by": { "name": [ - 3534 + 3558 ], "value": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "settings_pk_columns_input": { "name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_stream_cursor_input": { "initial_value": [ - 4713 + 4737 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "settings_stream_cursor_value_input": { "name": [ - 84 + 85 ], "value": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 4711 + 4735 ], "where": [ - 4701 + 4725 ], "__typename": [ - 84 + 85 ] }, "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 4716 + 4740 ], "_gt": [ - 4716 + 4740 ], "_gte": [ - 4716 + 4740 ], "_in": [ - 4716 + 4740 ], "_is_null": [ 6 ], "_lt": [ - 4716 + 4740 ], "_lte": [ - 4716 + 4740 ], "_neq": [ - 4716 + 4740 ], "_nin": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node": [ - 2224 + 2225 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account": [ - 4742 + 4766 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 4722 + 4746 ], "nodes": [ - 4718 + 4742 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 4721 + 4745 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 4736 + 4760 ], "distinct": [ 6 ], "filter": [ - 4725 + 4749 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_aggregate_fields": { @@ -107003,7 +107335,7 @@ export default { 41, { "columns": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -107012,198 +107344,198 @@ export default { } ], "max": [ - 4728 + 4752 ], "min": [ - 4730 + 4754 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 4729 + 4753 ], "min": [ - 4731 + 4755 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 4727 + 4751 ], "on_conflict": [ - 4733 + 4757 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_bool_exp": { "_and": [ - 4725 + 4749 ], "_not": [ - 4725 + 4749 ], "_or": [ - 4725 + 4749 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "k8s_job_name": [ - 86 + 87 ], "node": [ - 2236 + 2237 ], "node_id": [ - 86 + 87 ], "purpose": [ - 86 + 87 ], "steam_account": [ - 4746 + 4770 ], "steam_account_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node": [ - 2248 + 2249 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account": [ - 4753 + 4777 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "node_id": [ - 3534 + 3558 ], "purpose": [ - 3534 + 3558 ], "steam_account_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "node_id": [ - 3534 + 3558 ], "purpose": [ - 3534 + 3558 ], "steam_account_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_mutation_response": { @@ -107211,139 +107543,139 @@ export default { 41 ], "returning": [ - 4718 + 4742 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 4726 + 4750 ], "update_columns": [ - 4740 + 4764 ], "where": [ - 4725 + 4749 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "node": [ - 2250 + 2251 ], "node_id": [ - 3534 + 3558 ], "purpose": [ - 3534 + 3558 ], "steam_account": [ - 4755 + 4779 ], "steam_account_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 4739 + 4763 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "node_id": [ - 84 + 85 ], "purpose": [ - 84 + 85 ], "steam_account_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 4737 + 4761 ], "where": [ - 4725 + 4749 ], "__typename": [ - 84 + 85 ] }, "steam_accounts": { "claims": [ - 4718, + 4742, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -107353,19 +107685,19 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "claims_aggregate": [ - 4719, + 4743, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -107375,71 +107707,71 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node": [ - 2224 + 2225 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_aggregate": { "aggregate": [ - 4744 + 4768 ], "nodes": [ - 4742 + 4766 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_aggregate_fields": { "avg": [ - 4745 + 4769 ], "count": [ 41, { "columns": [ - 4757, + 4781, "[steam_accounts_select_column!]" ], "distinct": [ @@ -107448,34 +107780,34 @@ export default { } ], "max": [ - 4750 + 4774 ], "min": [ - 4751 + 4775 ], "stddev": [ - 4759 + 4783 ], "stddev_pop": [ - 4760 + 4784 ], "stddev_samp": [ - 4761 + 4785 ], "sum": [ - 4764 + 4788 ], "var_pop": [ - 4767 + 4791 ], "var_samp": [ - 4768 + 4792 ], "variance": [ - 4769 + 4793 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_avg_fields": { @@ -107489,60 +107821,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_bool_exp": { "_and": [ - 4746 + 4770 ], "_not": [ - 4746 + 4770 ], "_or": [ - 4746 + 4770 ], "claims": [ - 4725 + 4749 ], "claims_aggregate": [ - 4720 + 4744 ], "created_at": [ - 5130 + 5154 ], "friend_capacity": [ 42 ], "id": [ - 6343 + 6367 ], "last_node": [ - 2236 + 2237 ], "last_node_id": [ - 86 + 87 ], "password": [ - 86 + 87 ], "role": [ - 86 + 87 ], "steam_level": [ 42 ], "steamid64": [ - 311 + 312 ], "updated_at": [ - 5130 + 5154 ], "username": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_constraint": {}, @@ -107554,121 +107886,121 @@ export default { 41 ], "steamid64": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_insert_input": { "claims": [ - 4724 + 4748 ], "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node": [ - 2248 + 2249 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_max_fields": { "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_min_fields": { "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_mutation_response": { @@ -107676,120 +108008,120 @@ export default { 41 ], "returning": [ - 4742 + 4766 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 4749 + 4773 ], "on_conflict": [ - 4754 + 4778 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_on_conflict": { "constraint": [ - 4747 + 4771 ], "update_columns": [ - 4765 + 4789 ], "where": [ - 4746 + 4770 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 4723 + 4747 ], "created_at": [ - 3534 + 3558 ], "friend_capacity": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "last_node": [ - 2250 + 2251 ], "last_node_id": [ - 3534 + 3558 ], "password": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "steam_level": [ - 3534 + 3558 ], "steamid64": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "username": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_stddev_fields": { @@ -107803,7 +108135,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_stddev_pop_fields": { @@ -107817,7 +108149,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_stddev_samp_fields": { @@ -107831,53 +108163,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 4763 + 4787 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "friend_capacity": [ 41 ], "id": [ - 6341 + 6365 ], "last_node_id": [ - 84 + 85 ], "password": [ - 84 + 85 ], "role": [ - 84 + 85 ], "steam_level": [ 41 ], "steamid64": [ - 309 + 310 ], "updated_at": [ - 5129 + 5153 ], "username": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_sum_fields": { @@ -107888,25 +108220,25 @@ export default { 41 ], "steamid64": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 4748 + 4772 ], "_set": [ - 4758 + 4782 ], "where": [ - 4746 + 4770 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_var_pop_fields": { @@ -107920,7 +108252,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_var_samp_fields": { @@ -107934,7 +108266,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "steam_accounts_variance_fields": { @@ -107948,64 +108280,64 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "dismissible": [ 6 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "is_active": [ 6 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "type": [ - 1424 + 1425 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_aggregate": { "aggregate": [ - 4772 + 4796 ], "nodes": [ - 4770 + 4794 ], "__typename": [ - 84 + 85 ] }, "system_alerts_aggregate_fields": { "avg": [ - 4773 + 4797 ], "count": [ 41, { "columns": [ - 4784, + 4808, "[system_alerts_select_column!]" ], "distinct": [ @@ -108014,34 +108346,34 @@ export default { } ], "max": [ - 4778 + 4802 ], "min": [ - 4779 + 4803 ], "stddev": [ - 4786 + 4810 ], "stddev_pop": [ - 4787 + 4811 ], "stddev_samp": [ - 4788 + 4812 ], "sum": [ - 4791 + 4815 ], "var_pop": [ - 4794 + 4818 ], "var_samp": [ - 4795 + 4819 ], "variance": [ - 4796 + 4820 ], "__typename": [ - 84 + 85 ] }, "system_alerts_avg_fields": { @@ -108049,147 +108381,147 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_bool_exp": { "_and": [ - 4774 + 4798 ], "_not": [ - 4774 + 4798 ], "_or": [ - 4774 + 4798 ], "created_at": [ - 5130 + 5154 ], "created_by": [ - 311 + 312 ], "dismissible": [ 7 ], "expires_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "is_active": [ 7 ], "message": [ - 86 + 87 ], "title": [ - 86 + 87 ], "type": [ - 1425 + 1426 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "system_alerts_constraint": {}, "system_alerts_inc_input": { "created_by": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "system_alerts_insert_input": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "dismissible": [ 6 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "is_active": [ 6 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "type": [ - 1424 + 1425 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_max_fields": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_min_fields": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_mutation_response": { @@ -108197,103 +108529,103 @@ export default { 41 ], "returning": [ - 4770 + 4794 ], "__typename": [ - 84 + 85 ] }, "system_alerts_on_conflict": { "constraint": [ - 4775 + 4799 ], "update_columns": [ - 4792 + 4816 ], "where": [ - 4774 + 4798 ], "__typename": [ - 84 + 85 ] }, "system_alerts_order_by": { "created_at": [ - 3534 + 3558 ], "created_by": [ - 3534 + 3558 ], "dismissible": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_active": [ - 3534 + 3558 ], "message": [ - 3534 + 3558 ], "title": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "system_alerts_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "dismissible": [ 6 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "is_active": [ 6 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "type": [ - 1424 + 1425 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_stddev_fields": { @@ -108301,7 +108633,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_stddev_pop_fields": { @@ -108309,7 +108641,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_stddev_samp_fields": { @@ -108317,76 +108649,76 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_stream_cursor_input": { "initial_value": [ - 4790 + 4814 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "created_by": [ - 309 + 310 ], "dismissible": [ 6 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "is_active": [ 6 ], "message": [ - 84 + 85 ], "title": [ - 84 + 85 ], "type": [ - 1424 + 1425 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "system_alerts_sum_fields": { "created_by": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 4776 + 4800 ], "_set": [ - 4785 + 4809 ], "where": [ - 4774 + 4798 ], "__typename": [ - 84 + 85 ] }, "system_alerts_var_pop_fields": { @@ -108394,7 +108726,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_var_samp_fields": { @@ -108402,7 +108734,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "system_alerts_variance_fields": { @@ -108410,83 +108742,83 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by": [ - 4492 + 4516 ], "invited_by_player_steam_id": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_aggregate": { "aggregate": [ - 4801 + 4825 ], "nodes": [ - 4797 + 4821 ], "__typename": [ - 84 + 85 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 4800 + 4824 ], "__typename": [ - 84 + 85 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4818 + 4842 ], "distinct": [ 6 ], "filter": [ - 4806 + 4830 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_invites_aggregate_fields": { "avg": [ - 4804 + 4828 ], "count": [ 41, { "columns": [ - 4818, + 4842, "[team_invites_select_column!]" ], "distinct": [ @@ -108495,83 +108827,83 @@ export default { } ], "max": [ - 4810 + 4834 ], "min": [ - 4812 + 4836 ], "stddev": [ - 4820 + 4844 ], "stddev_pop": [ - 4822 + 4846 ], "stddev_samp": [ - 4824 + 4848 ], "sum": [ - 4828 + 4852 ], "var_pop": [ - 4832 + 4856 ], "var_samp": [ - 4834 + 4858 ], "variance": [ - 4836 + 4860 ], "__typename": [ - 84 + 85 ] }, "team_invites_aggregate_order_by": { "avg": [ - 4805 + 4829 ], "count": [ - 3534 + 3558 ], "max": [ - 4811 + 4835 ], "min": [ - 4813 + 4837 ], "stddev": [ - 4821 + 4845 ], "stddev_pop": [ - 4823 + 4847 ], "stddev_samp": [ - 4825 + 4849 ], "sum": [ - 4829 + 4853 ], "var_pop": [ - 4833 + 4857 ], "var_samp": [ - 4835 + 4859 ], "variance": [ - 4837 + 4861 ], "__typename": [ - 84 + 85 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 4809 + 4833 ], "on_conflict": [ - 4815 + 4839 ], "__typename": [ - 84 + 85 ] }, "team_invites_avg_fields": { @@ -108582,177 +108914,177 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_bool_exp": { "_and": [ - 4806 + 4830 ], "_not": [ - 4806 + 4830 ], "_or": [ - 4806 + 4830 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "invited_by": [ - 4496 + 4520 ], "invited_by_player_steam_id": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_invites_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by": [ - 4503 + 4527 ], "invited_by_player_steam_id": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_mutation_response": { @@ -108760,82 +109092,82 @@ export default { 41 ], "returning": [ - 4797 + 4821 ], "__typename": [ - 84 + 85 ] }, "team_invites_on_conflict": { "constraint": [ - 4807 + 4831 ], "update_columns": [ - 4830 + 4854 ], "where": [ - 4806 + 4830 ], "__typename": [ - 84 + 85 ] }, "team_invites_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by": [ - 4505 + 4529 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_fields": { @@ -108846,18 +109178,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_pop_fields": { @@ -108868,18 +109200,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_samp_fields": { @@ -108890,86 +109222,86 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 4827 + 4851 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 4808 + 4832 ], "_set": [ - 4819 + 4843 ], "where": [ - 4806 + 4830 ], "__typename": [ - 84 + 85 ] }, "team_invites_var_pop_fields": { @@ -108980,18 +109312,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_var_samp_fields": { @@ -109002,18 +109334,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_invites_variance_fields": { @@ -109024,18 +109356,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster": { @@ -109043,115 +109375,115 @@ export default { 6 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate": { "aggregate": [ - 4844 + 4868 ], "nodes": [ - 4838 + 4862 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4841 + 4865 ], "bool_or": [ - 4842 + 4866 ], "count": [ - 4843 + 4867 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4862 + 4886 ], "distinct": [ 6 ], "filter": [ - 4849 + 4873 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4863 + 4887 ], "distinct": [ 6 ], "filter": [ - 4849 + 4873 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4861 + 4885 ], "distinct": [ 6 ], "filter": [ - 4849 + 4873 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_fields": { "avg": [ - 4847 + 4871 ], "count": [ 41, { "columns": [ - 4861, + 4885, "[team_roster_select_column!]" ], "distinct": [ @@ -109160,83 +109492,83 @@ export default { } ], "max": [ - 4853 + 4877 ], "min": [ - 4855 + 4879 ], "stddev": [ - 4865 + 4889 ], "stddev_pop": [ - 4867 + 4891 ], "stddev_samp": [ - 4869 + 4893 ], "sum": [ - 4873 + 4897 ], "var_pop": [ - 4877 + 4901 ], "var_samp": [ - 4879 + 4903 ], "variance": [ - 4881 + 4905 ], "__typename": [ - 84 + 85 ] }, "team_roster_aggregate_order_by": { "avg": [ - 4848 + 4872 ], "count": [ - 3534 + 3558 ], "max": [ - 4854 + 4878 ], "min": [ - 4856 + 4880 ], "stddev": [ - 4866 + 4890 ], "stddev_pop": [ - 4868 + 4892 ], "stddev_samp": [ - 4870 + 4894 ], "sum": [ - 4874 + 4898 ], "var_pop": [ - 4878 + 4902 ], "var_samp": [ - 4880 + 4904 ], "variance": [ - 4882 + 4906 ], "__typename": [ - 84 + 85 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 4852 + 4876 ], "on_conflict": [ - 4858 + 4882 ], "__typename": [ - 84 + 85 ] }, "team_roster_avg_fields": { @@ -109244,62 +109576,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_bool_exp": { "_and": [ - 4849 + 4873 ], "_not": [ - 4849 + 4873 ], "_or": [ - 4849 + 4873 ], "coach": [ 7 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "role": [ - 1445 + 1446 ], "roster_image_url": [ - 86 + 87 ], "status": [ - 1466 + 1467 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_roster_insert_input": { @@ -109307,84 +109639,84 @@ export default { 6 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_max_fields": { "player_steam_id": [ - 309 + 310 ], "roster_image_url": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_min_fields": { "player_steam_id": [ - 309 + 310 ], "roster_image_url": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_mutation_response": { @@ -109392,64 +109724,64 @@ export default { 41 ], "returning": [ - 4838 + 4862 ], "__typename": [ - 84 + 85 ] }, "team_roster_on_conflict": { "constraint": [ - 4850 + 4874 ], "update_columns": [ - 4875 + 4899 ], "where": [ - 4849 + 4873 ], "__typename": [ - 84 + 85 ] }, "team_roster_order_by": { "coach": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "roster_image_url": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_select_column": {}, @@ -109460,22 +109792,22 @@ export default { 6 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_fields": { @@ -109483,15 +109815,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_pop_fields": { @@ -109499,15 +109831,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_samp_fields": { @@ -109515,26 +109847,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 4872 + 4896 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_roster_stream_cursor_value_input": { @@ -109542,53 +109874,53 @@ export default { 6 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "roster_image_url": [ - 84 + 85 ], "status": [ - 1465 + 1466 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4851 + 4875 ], "_set": [ - 4864 + 4888 ], "where": [ - 4849 + 4873 ], "__typename": [ - 84 + 85 ] }, "team_roster_var_pop_fields": { @@ -109596,15 +109928,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_var_samp_fields": { @@ -109612,15 +109944,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_roster_variance_fields": { @@ -109628,20 +109960,20 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -109653,44 +109985,44 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4885 + 4909 ], "nodes": [ - 4883 + 4907 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4886 + 4910 ], "count": [ 41, { "columns": [ - 4897, + 4921, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -109699,34 +110031,34 @@ export default { } ], "max": [ - 4891 + 4915 ], "min": [ - 4892 + 4916 ], "stddev": [ - 4899 + 4923 ], "stddev_pop": [ - 4900 + 4924 ], "stddev_samp": [ - 4901 + 4925 ], "sum": [ - 4904 + 4928 ], "var_pop": [ - 4907 + 4931 ], "var_samp": [ - 4908 + 4932 ], "variance": [ - 4909 + 4933 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_avg_fields": { @@ -109737,21 +110069,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_bool_exp": { "_and": [ - 4887 + 4911 ], "_not": [ - 4887 + 4911 ], "_or": [ - 4887 + 4911 ], "created_at": [ - 5130 + 5154 ], "elo_max": [ 42 @@ -109763,22 +110095,22 @@ export default { 7 ], "id": [ - 6343 + 6367 ], "last_notified_at": [ - 5130 + 5154 ], "regions": [ - 85 + 86 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_constraint": {}, @@ -109790,12 +110122,12 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_insert_input": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -109807,27 +110139,27 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_max_fields": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -109836,24 +110168,24 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_min_fields": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -109862,19 +110194,19 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_mutation_response": { @@ -109882,70 +110214,70 @@ export default { 41 ], "returning": [ - 4883 + 4907 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4888 + 4912 ], "update_columns": [ - 4905 + 4929 ], "where": [ - 4887 + 4911 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_order_by": { "created_at": [ - 3534 + 3558 ], "elo_max": [ - 3534 + 3558 ], "elo_min": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "last_notified_at": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -109957,19 +110289,19 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_stddev_fields": { @@ -109980,7 +110312,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_stddev_pop_fields": { @@ -109991,7 +110323,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_stddev_samp_fields": { @@ -110002,23 +110334,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4903 + 4927 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -110030,19 +110362,19 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_sum_fields": { @@ -110053,22 +110385,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4889 + 4913 ], "_set": [ - 4898 + 4922 ], "where": [ - 4887 + 4911 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_var_pop_fields": { @@ -110079,7 +110411,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_var_samp_fields": { @@ -110090,7 +110422,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_alerts_variance_fields": { @@ -110101,109 +110433,109 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "recurring_weekly": [ 6 ], "starts_at": [ - 5129 + 5153 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate": { "aggregate": [ - 4916 + 4940 ], "nodes": [ - 4910 + 4934 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4913 + 4937 ], "bool_or": [ - 4914 + 4938 ], "count": [ - 4915 + 4939 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4931 + 4955 ], "distinct": [ 6 ], "filter": [ - 4919 + 4943 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4932 + 4956 ], "distinct": [ 6 ], "filter": [ - 4919 + 4943 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4930 + 4954 ], "distinct": [ 6 ], "filter": [ - 4919 + 4943 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_fields": { @@ -110211,7 +110543,7 @@ export default { 41, { "columns": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -110220,180 +110552,180 @@ export default { } ], "max": [ - 4922 + 4946 ], "min": [ - 4924 + 4948 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 4923 + 4947 ], "min": [ - 4925 + 4949 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4921 + 4945 ], "on_conflict": [ - 4927 + 4951 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_bool_exp": { "_and": [ - 4919 + 4943 ], "_not": [ - 4919 + 4943 ], "_or": [ - 4919 + 4943 ], "created_at": [ - 5130 + 5154 ], "ends_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "recurring_weekly": [ 7 ], "starts_at": [ - 5130 + 5154 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "recurring_weekly": [ 6 ], "starts_at": [ - 5129 + 5153 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_max_fields": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "starts_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_max_order_by": { "created_at": [ - 3534 + 3558 ], "ends_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "starts_at": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_min_fields": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "starts_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_min_order_by": { "created_at": [ - 3534 + 3558 ], "ends_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "starts_at": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_mutation_response": { @@ -110401,58 +110733,58 @@ export default { 41 ], "returning": [ - 4910 + 4934 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_on_conflict": { "constraint": [ - 4920 + 4944 ], "update_columns": [ - 4936 + 4960 ], "where": [ - 4919 + 4943 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_order_by": { "created_at": [ - 3534 + 3558 ], "ends_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "recurring_weekly": [ - 3534 + 3558 ], "starts_at": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_select_column": {}, @@ -110460,150 +110792,150 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "recurring_weekly": [ 6 ], "starts_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4935 + 4959 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "ends_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "recurring_weekly": [ 6 ], "starts_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4933 + 4957 ], "where": [ - 4919 + 4943 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by": [ - 4492 + 4516 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team": [ - 5080 + 5104 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request": [ - 4979 + 5003 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4942 + 4966 ], "nodes": [ - 4938 + 4962 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4941 + 4965 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4959 + 4983 ], "distinct": [ 6 ], "filter": [ - 4947 + 4971 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4945 + 4969 ], "count": [ 41, { "columns": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -110612,83 +110944,83 @@ export default { } ], "max": [ - 4951 + 4975 ], "min": [ - 4953 + 4977 ], "stddev": [ - 4961 + 4985 ], "stddev_pop": [ - 4963 + 4987 ], "stddev_samp": [ - 4965 + 4989 ], "sum": [ - 4969 + 4993 ], "var_pop": [ - 4973 + 4997 ], "var_samp": [ - 4975 + 4999 ], "variance": [ - 4977 + 5001 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4946 + 4970 ], "count": [ - 3534 + 3558 ], "max": [ - 4952 + 4976 ], "min": [ - 4954 + 4978 ], "stddev": [ - 4962 + 4986 ], "stddev_pop": [ - 4964 + 4988 ], "stddev_samp": [ - 4966 + 4990 ], "sum": [ - 4970 + 4994 ], "var_pop": [ - 4974 + 4998 ], "var_samp": [ - 4976 + 5000 ], "variance": [ - 4978 + 5002 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4950 + 4974 ], "on_conflict": [ - 4956 + 4980 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_avg_fields": { @@ -110696,189 +111028,189 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4947 + 4971 ], "_not": [ - 4947 + 4971 ], "_or": [ - 4947 + 4971 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "proposed_by": [ - 4496 + 4520 ], "proposed_by_steam_id": [ - 311 + 312 ], "proposed_by_team": [ - 5091 + 5115 ], "proposed_by_team_id": [ - 6343 + 6367 ], "proposed_scheduled_at": [ - 5130 + 5154 ], "request": [ - 4990 + 5014 ], "request_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_constraint": {}, "team_scrim_request_proposals_inc_input": { "proposed_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by": [ - 4503 + 4527 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team": [ - 5100 + 5124 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request": [ - 4999 + 5023 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_by_team_id": [ - 3534 + 3558 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "request_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_by_team_id": [ - 3534 + 3558 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "request_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_mutation_response": { @@ -110886,88 +111218,88 @@ export default { 41 ], "returning": [ - 4938 + 4962 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4948 + 4972 ], "update_columns": [ - 4971 + 4995 ], "where": [ - 4947 + 4971 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "proposed_by": [ - 4505 + 4529 ], "proposed_by_steam_id": [ - 3534 + 3558 ], "proposed_by_team": [ - 5102 + 5126 ], "proposed_by_team_id": [ - 3534 + 3558 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "request": [ - 5001 + 5025 ], "request_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_fields": { @@ -110975,15 +111307,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_pop_fields": { @@ -110991,15 +111323,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_samp_fields": { @@ -111007,80 +111339,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4968 + 4992 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "proposed_by_steam_id": [ - 309 + 310 ], "proposed_by_team_id": [ - 6341 + 6365 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "request_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_sum_fields": { "proposed_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4949 + 4973 ], "_set": [ - 4960 + 4984 ], "where": [ - 4947 + 4971 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_var_pop_fields": { @@ -111088,15 +111420,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_var_samp_fields": { @@ -111104,15 +111436,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_variance_fields": { @@ -111120,15 +111452,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests": { @@ -111136,55 +111468,55 @@ export default { 6 ], "awaiting_team": [ - 5080 + 5104 ], "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "canceled_late": [ 6 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team": [ - 5080 + 5104 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_options": [ - 3176 + 3200 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposals": [ - 4938, + 4962, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -111194,19 +111526,19 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "proposals_aggregate": [ - 4939, + 4963, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -111216,130 +111548,130 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by": [ - 4492 + 4516 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "status": [ - 1364 + 1365 ], "to_team": [ - 5080 + 5104 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate": { "aggregate": [ - 4985 + 5009 ], "nodes": [ - 4979 + 5003 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4982 + 5006 ], "bool_or": [ - 4983 + 5007 ], "count": [ - 4984 + 5008 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 5004 + 5028 ], "distinct": [ 6 ], "filter": [ - 4990 + 5014 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 5005 + 5029 ], "distinct": [ 6 ], "filter": [ - 4990 + 5014 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 5003 + 5027 ], "distinct": [ 6 ], "filter": [ - 4990 + 5014 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4988 + 5012 ], "count": [ 41, { "columns": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -111348,83 +111680,83 @@ export default { } ], "max": [ - 4994 + 5018 ], "min": [ - 4996 + 5020 ], "stddev": [ - 5007 + 5031 ], "stddev_pop": [ - 5009 + 5033 ], "stddev_samp": [ - 5011 + 5035 ], "sum": [ - 5015 + 5039 ], "var_pop": [ - 5019 + 5043 ], "var_samp": [ - 5021 + 5045 ], "variance": [ - 5023 + 5047 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4989 + 5013 ], "count": [ - 3534 + 3558 ], "max": [ - 4995 + 5019 ], "min": [ - 4997 + 5021 ], "stddev": [ - 5008 + 5032 ], "stddev_pop": [ - 5010 + 5034 ], "stddev_samp": [ - 5012 + 5036 ], "sum": [ - 5016 + 5040 ], "var_pop": [ - 5020 + 5044 ], "var_samp": [ - 5022 + 5046 ], "variance": [ - 5024 + 5048 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4993 + 5017 ], "on_conflict": [ - 5000 + 5024 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_avg_fields": { @@ -111432,119 +111764,119 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_bool_exp": { "_and": [ - 4990 + 5014 ], "_not": [ - 4990 + 5014 ], "_or": [ - 4990 + 5014 ], "auto_generated": [ 7 ], "awaiting_team": [ - 5091 + 5115 ], "awaiting_team_id": [ - 6343 + 6367 ], "canceled_by_team_id": [ - 6343 + 6367 ], "canceled_late": [ 7 ], "created_at": [ - 5130 + 5154 ], "expires_at": [ - 5130 + 5154 ], "from_team": [ - 5091 + 5115 ], "from_team_checked_in": [ 7 ], "from_team_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_options": [ - 3187 + 3211 ], "match_options_id": [ - 6343 + 6367 ], "match_outcome": [ - 86 + 87 ], "proposals": [ - 4947 + 4971 ], "proposals_aggregate": [ - 4940 + 4964 ], "proposed_scheduled_at": [ - 5130 + 5154 ], "region": [ - 86 + 87 ], "requested_by": [ - 4496 + 4520 ], "requested_by_steam_id": [ - 311 + 312 ], "responded_at": [ - 5130 + 5154 ], "status": [ - 1365 + 1366 ], "to_team": [ - 5091 + 5115 ], "to_team_checked_in": [ 7 ], "to_team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_constraint": {}, "team_scrim_requests_inc_input": { "requested_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_insert_input": { @@ -111552,270 +111884,270 @@ export default { 6 ], "awaiting_team": [ - 5100 + 5124 ], "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "canceled_late": [ 6 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team": [ - 5100 + 5124 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_options": [ - 3196 + 3220 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposals": [ - 4944 + 4968 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by": [ - 4503 + 4527 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "status": [ - 1364 + 1365 ], "to_team": [ - 5100 + 5124 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 3534 + 3558 ], "canceled_by_team_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "from_team_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "match_outcome": [ - 3534 + 3558 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "responded_at": [ - 3534 + 3558 ], "to_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 3534 + 3558 ], "canceled_by_team_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "from_team_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "match_outcome": [ - 3534 + 3558 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "responded_at": [ - 3534 + 3558 ], "to_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_mutation_response": { @@ -111823,126 +112155,126 @@ export default { 41 ], "returning": [ - 4979 + 5003 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4993 + 5017 ], "on_conflict": [ - 5000 + 5024 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_on_conflict": { "constraint": [ - 4991 + 5015 ], "update_columns": [ - 5017 + 5041 ], "where": [ - 4990 + 5014 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_order_by": { "auto_generated": [ - 3534 + 3558 ], "awaiting_team": [ - 5102 + 5126 ], "awaiting_team_id": [ - 3534 + 3558 ], "canceled_by_team_id": [ - 3534 + 3558 ], "canceled_late": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "from_team": [ - 5102 + 5126 ], "from_team_checked_in": [ - 3534 + 3558 ], "from_team_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_options": [ - 3198 + 3222 ], "match_options_id": [ - 3534 + 3558 ], "match_outcome": [ - 3534 + 3558 ], "proposals_aggregate": [ - 4943 + 4967 ], "proposed_scheduled_at": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "requested_by": [ - 4505 + 4529 ], "requested_by_steam_id": [ - 3534 + 3558 ], "responded_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "to_team": [ - 5102 + 5126 ], "to_team_checked_in": [ - 3534 + 3558 ], "to_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_select_column": {}, @@ -111953,61 +112285,61 @@ export default { 6 ], "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "canceled_late": [ 6 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "status": [ - 1364 + 1365 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_fields": { @@ -112015,15 +112347,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_pop_fields": { @@ -112031,15 +112363,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_samp_fields": { @@ -112047,26 +112379,26 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 5014 + 5038 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_stream_cursor_value_input": { @@ -112074,92 +112406,92 @@ export default { 6 ], "awaiting_team_id": [ - 6341 + 6365 ], "canceled_by_team_id": [ - 6341 + 6365 ], "canceled_late": [ 6 ], "created_at": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "from_team_checked_in": [ 6 ], "from_team_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "match_outcome": [ - 84 + 85 ], "proposed_scheduled_at": [ - 5129 + 5153 ], "region": [ - 84 + 85 ], "requested_by_steam_id": [ - 309 + 310 ], "responded_at": [ - 5129 + 5153 ], "status": [ - 1364 + 1365 ], "to_team_checked_in": [ 6 ], "to_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_sum_fields": { "requested_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4992 + 5016 ], "_set": [ - 5006 + 5030 ], "where": [ - 4990 + 5014 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_var_pop_fields": { @@ -112167,15 +112499,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_var_samp_fields": { @@ -112183,15 +112515,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_variance_fields": { @@ -112199,15 +112531,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings": { @@ -112215,7 +112547,7 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112227,50 +112559,50 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_aggregate": { "aggregate": [ - 5027 + 5051 ], "nodes": [ - 5025 + 5049 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_aggregate_fields": { "avg": [ - 5028 + 5052 ], "count": [ 41, { "columns": [ - 5040, + 5064, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -112279,34 +112611,34 @@ export default { } ], "max": [ - 5033 + 5057 ], "min": [ - 5034 + 5058 ], "stddev": [ - 5042 + 5066 ], "stddev_pop": [ - 5043 + 5067 ], "stddev_samp": [ - 5044 + 5068 ], "sum": [ - 5047 + 5071 ], "var_pop": [ - 5050 + 5074 ], "var_samp": [ - 5051 + 5075 ], "variance": [ - 5052 + 5076 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_avg_fields": { @@ -112317,24 +112649,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_bool_exp": { "_and": [ - 5029 + 5053 ], "_not": [ - 5029 + 5053 ], "_or": [ - 5029 + 5053 ], "allow_outside_availability": [ 7 ], "created_at": [ - 5130 + 5154 ], "elo_max": [ 42 @@ -112346,28 +112678,28 @@ export default { 7 ], "id": [ - 6343 + 6367 ], "map_ids": [ - 6342 + 6366 ], "notes": [ - 86 + 87 ], "regions": [ - 85 + 86 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_constraint": {}, @@ -112379,7 +112711,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_insert_input": { @@ -112387,7 +112719,7 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112399,33 +112731,33 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_max_fields": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112434,30 +112766,30 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_min_fields": { "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112466,25 +112798,25 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_mutation_response": { @@ -112492,84 +112824,84 @@ export default { 41 ], "returning": [ - 5025 + 5049 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 5032 + 5056 ], "on_conflict": [ - 5037 + 5061 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_on_conflict": { "constraint": [ - 5030 + 5054 ], "update_columns": [ - 5048 + 5072 ], "where": [ - 5029 + 5053 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "elo_max": [ - 3534 + 3558 ], "elo_min": [ - 3534 + 3558 ], "enabled": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_ids": [ - 3534 + 3558 ], "notes": [ - 3534 + 3558 ], "regions": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_select_column": {}, @@ -112578,7 +112910,7 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112590,25 +112922,25 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_stddev_fields": { @@ -112619,7 +112951,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_stddev_pop_fields": { @@ -112630,7 +112962,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_stddev_samp_fields": { @@ -112641,18 +112973,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 5046 + 5070 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_stream_cursor_value_input": { @@ -112660,7 +112992,7 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "elo_max": [ 41 @@ -112672,25 +113004,25 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "map_ids": [ - 6341 + 6365 ], "notes": [ - 84 + 85 ], "regions": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_sum_fields": { @@ -112701,22 +113033,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 5031 + 5055 ], "_set": [ - 5041 + 5065 ], "where": [ - 5029 + 5053 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_var_pop_fields": { @@ -112727,7 +113059,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_var_samp_fields": { @@ -112738,7 +113070,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_scrim_settings_variance_fields": { @@ -112749,55 +113081,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_aggregate": { "aggregate": [ - 5055 + 5079 ], "nodes": [ - 5053 + 5077 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_aggregate_fields": { "avg": [ - 5056 + 5080 ], "count": [ 41, { "columns": [ - 5067, + 5091, "[team_suggestions_select_column!]" ], "distinct": [ @@ -112806,34 +113138,34 @@ export default { } ], "max": [ - 5061 + 5085 ], "min": [ - 5062 + 5086 ], "stddev": [ - 5069 + 5093 ], "stddev_pop": [ - 5070 + 5094 ], "stddev_samp": [ - 5071 + 5095 ], "sum": [ - 5074 + 5098 ], "var_pop": [ - 5077 + 5101 ], "var_samp": [ - 5078 + 5102 ], "variance": [ - 5079 + 5103 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_avg_fields": { @@ -112841,42 +113173,42 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_bool_exp": { "_and": [ - 5057 + 5081 ], "_not": [ - 5057 + 5081 ], "_or": [ - 5057 + 5081 ], "created_at": [ - 5130 + 5154 ], "group_hash": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "last_notified_at": [ - 5130 + 5154 ], "member_steam_ids": [ - 310 + 311 ], "status": [ - 86 + 87 ], "together_count": [ 42 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_constraint": {}, @@ -112885,85 +113217,85 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_insert_input": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_max_fields": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_min_fields": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_mutation_response": { @@ -112971,85 +113303,85 @@ export default { 41 ], "returning": [ - 5053 + 5077 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_on_conflict": { "constraint": [ - 5058 + 5082 ], "update_columns": [ - 5075 + 5099 ], "where": [ - 5057 + 5081 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_order_by": { "created_at": [ - 3534 + 3558 ], "group_hash": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "last_notified_at": [ - 3534 + 3558 ], "member_steam_ids": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "together_count": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_stddev_fields": { @@ -113057,7 +113389,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_stddev_pop_fields": { @@ -113065,7 +113397,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_stddev_samp_fields": { @@ -113073,44 +113405,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 5073 + 5097 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "group_hash": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "last_notified_at": [ - 5129 + 5153 ], "member_steam_ids": [ - 309 + 310 ], "status": [ - 84 + 85 ], "together_count": [ 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_sum_fields": { @@ -113118,22 +113450,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 5059 + 5083 ], "_set": [ - 5068 + 5092 ], "where": [ - 5057 + 5081 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_var_pop_fields": { @@ -113141,7 +113473,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_var_samp_fields": { @@ -113149,7 +113481,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "team_suggestions_variance_fields": { @@ -113157,18 +113489,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams": { "avatar_url": [ - 84 + 85 ], "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -113178,19 +113510,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -113200,11 +113532,11 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], @@ -113221,19 +113553,19 @@ export default { 6 ], "captain": [ - 4492 + 4516 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invites": [ - 4797, + 4821, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -113243,19 +113575,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "invites_aggregate": [ - 4798, + 4822, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -113265,11 +113597,11 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], @@ -113277,10 +113609,10 @@ export default { 6 ], "match_lineups": [ - 2972, + 2996, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -113290,19 +113622,19 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "match_lineups_aggregate": [ - 2973, + 2997, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -113312,19 +113644,19 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -113334,37 +113666,37 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "name": [ - 84 + 85 ], "owner": [ - 4492 + 4516 ], "owner_steam_id": [ - 309 + 310 ], "ranks": [ - 7043 + 7067 ], "reputation": [ - 7063 + 7087 ], "role": [ - 84 + 85 ], "roster": [ - 4838, + 4862, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -113374,19 +113706,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "roster_aggregate": [ - 4839, + 4863, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -113396,19 +113728,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "scrim_availability": [ - 4910, + 4934, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -113418,19 +113750,19 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "scrim_availability_aggregate": [ - 4911, + 4935, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -113440,25 +113772,25 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "scrim_settings": [ - 5025 + 5049 ], "short_name": [ - 84 + 85 ], "tournament_teams": [ - 5523, + 5547, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -113468,19 +113800,19 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "tournament_teams_aggregate": [ - 5524, + 5548, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -113490,103 +113822,103 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "__typename": [ - 84 + 85 ] }, "teams_aggregate": { "aggregate": [ - 5086 + 5110 ], "nodes": [ - 5080 + 5104 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_bool_exp": { "bool_and": [ - 5083 + 5107 ], "bool_or": [ - 5084 + 5108 ], "count": [ - 5085 + 5109 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_bool_exp_bool_and": { "arguments": [ - 5105 + 5129 ], "distinct": [ 6 ], "filter": [ - 5091 + 5115 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_bool_exp_bool_or": { "arguments": [ - 5106 + 5130 ], "distinct": [ 6 ], "filter": [ - 5091 + 5115 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 5104 + 5128 ], "distinct": [ 6 ], "filter": [ - 5091 + 5115 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_fields": { "avg": [ - 5089 + 5113 ], "count": [ 41, { "columns": [ - 5104, + 5128, "[teams_select_column!]" ], "distinct": [ @@ -113595,83 +113927,83 @@ export default { } ], "max": [ - 5095 + 5119 ], "min": [ - 5097 + 5121 ], "stddev": [ - 5108 + 5132 ], "stddev_pop": [ - 5110 + 5134 ], "stddev_samp": [ - 5112 + 5136 ], "sum": [ - 5116 + 5140 ], "var_pop": [ - 5120 + 5144 ], "var_samp": [ - 5122 + 5146 ], "variance": [ - 5124 + 5148 ], "__typename": [ - 84 + 85 ] }, "teams_aggregate_order_by": { "avg": [ - 5090 + 5114 ], "count": [ - 3534 + 3558 ], "max": [ - 5096 + 5120 ], "min": [ - 5098 + 5122 ], "stddev": [ - 5109 + 5133 ], "stddev_pop": [ - 5111 + 5135 ], "stddev_samp": [ - 5113 + 5137 ], "sum": [ - 5117 + 5141 ], "var_pop": [ - 5121 + 5145 ], "var_samp": [ - 5123 + 5147 ], "variance": [ - 5125 + 5149 ], "__typename": [ - 84 + 85 ] }, "teams_arr_rel_insert_input": { "data": [ - 5094 + 5118 ], "on_conflict": [ - 5101 + 5125 ], "__typename": [ - 84 + 85 ] }, "teams_avg_fields": { @@ -113682,38 +114014,38 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_bool_exp": { "_and": [ - 5091 + 5115 ], "_not": [ - 5091 + 5115 ], "_or": [ - 5091 + 5115 ], "avatar_url": [ - 86 + 87 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "can_change_role": [ 7 @@ -113728,245 +114060,245 @@ export default { 7 ], "captain": [ - 4496 + 4520 ], "captain_steam_id": [ - 311 + 312 ], "id": [ - 6343 + 6367 ], "invites": [ - 4806 + 4830 ], "invites_aggregate": [ - 4799 + 4823 ], "is_organization": [ 7 ], "match_lineups": [ - 2981 + 3005 ], "match_lineups_aggregate": [ - 2974 + 2998 ], "matches": [ - 3329 + 3353 ], "name": [ - 86 + 87 ], "owner": [ - 4496 + 4520 ], "owner_steam_id": [ - 311 + 312 ], "ranks": [ - 7047 + 7071 ], "reputation": [ - 7067 + 7091 ], "role": [ - 86 + 87 ], "roster": [ - 4849 + 4873 ], "roster_aggregate": [ - 4840 + 4864 ], "scrim_availability": [ - 4919 + 4943 ], "scrim_availability_aggregate": [ - 4912 + 4936 ], "scrim_settings": [ - 5029 + 5053 ], "short_name": [ - 86 + 87 ], "tournament_teams": [ - 5532 + 5556 ], "tournament_teams_aggregate": [ - 5525 + 5549 ], "__typename": [ - 84 + 85 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 309 + 310 ], "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "teams_insert_input": { "avatar_url": [ - 84 + 85 ], "awards": [ - 246 + 247 ], "captain": [ - 4503 + 4527 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invites": [ - 4803 + 4827 ], "is_organization": [ 6 ], "match_lineups": [ - 2978 + 3002 ], "name": [ - 84 + 85 ], "owner": [ - 4503 + 4527 ], "owner_steam_id": [ - 309 + 310 ], "ranks": [ - 7051 + 7075 ], "reputation": [ - 7071 + 7095 ], "roster": [ - 4846 + 4870 ], "scrim_availability": [ - 4918 + 4942 ], "scrim_settings": [ - 5036 + 5060 ], "short_name": [ - 84 + 85 ], "tournament_teams": [ - 5529 + 5553 ], "__typename": [ - 84 + 85 ] }, "teams_max_fields": { "avatar_url": [ - 84 + 85 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "role": [ - 84 + 85 ], "short_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "teams_max_order_by": { "avatar_url": [ - 3534 + 3558 ], "captain_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "short_name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_min_fields": { "avatar_url": [ - 84 + 85 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "role": [ - 84 + 85 ], "short_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "teams_min_order_by": { "avatar_url": [ - 3534 + 3558 ], "captain_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "short_name": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_mutation_response": { @@ -113974,120 +114306,120 @@ export default { 41 ], "returning": [ - 5080 + 5104 ], "__typename": [ - 84 + 85 ] }, "teams_obj_rel_insert_input": { "data": [ - 5094 + 5118 ], "on_conflict": [ - 5101 + 5125 ], "__typename": [ - 84 + 85 ] }, "teams_on_conflict": { "constraint": [ - 5092 + 5116 ], "update_columns": [ - 5118 + 5142 ], "where": [ - 5091 + 5115 ], "__typename": [ - 84 + 85 ] }, "teams_order_by": { "avatar_url": [ - 3534 + 3558 ], "awards_aggregate": [ - 245 + 246 ], "can_change_role": [ - 3534 + 3558 ], "can_invite": [ - 3534 + 3558 ], "can_manage_scrims": [ - 3534 + 3558 ], "can_remove": [ - 3534 + 3558 ], "captain": [ - 4505 + 4529 ], "captain_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invites_aggregate": [ - 4802 + 4826 ], "is_organization": [ - 3534 + 3558 ], "match_lineups_aggregate": [ - 2977 + 3001 ], "matches_aggregate": [ - 3325 + 3349 ], "name": [ - 3534 + 3558 ], "owner": [ - 4505 + 4529 ], "owner_steam_id": [ - 3534 + 3558 ], "ranks": [ - 7052 + 7076 ], "reputation": [ - 7072 + 7096 ], "role": [ - 3534 + 3558 ], "roster_aggregate": [ - 4845 + 4869 ], "scrim_availability_aggregate": [ - 4917 + 4941 ], "scrim_settings": [ - 5038 + 5062 ], "short_name": [ - 3534 + 3558 ], "tournament_teams_aggregate": [ - 5528 + 5552 ], "__typename": [ - 84 + 85 ] }, "teams_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "teams_select_column": {}, @@ -114095,28 +114427,28 @@ export default { "teams_select_column_teams_aggregate_bool_exp_bool_or_arguments_columns": {}, "teams_set_input": { "avatar_url": [ - 84 + 85 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "is_organization": [ 6 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "short_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_fields": { @@ -114127,18 +114459,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_pop_fields": { @@ -114149,18 +114481,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_samp_fields": { @@ -114171,92 +114503,92 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_stream_cursor_input": { "initial_value": [ - 5115 + 5139 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 84 + 85 ], "captain_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "is_organization": [ 6 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "short_name": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "teams_sum_fields": { "captain_steam_id": [ - 309 + 310 ], "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 5093 + 5117 ], "_set": [ - 5107 + 5131 ], "where": [ - 5091 + 5115 ], "__typename": [ - 84 + 85 ] }, "teams_var_pop_fields": { @@ -114267,18 +114599,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_var_samp_fields": { @@ -114289,18 +114621,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "teams_variance_fields": { @@ -114311,105 +114643,105 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "time": {}, "time_comparison_exp": { "_eq": [ - 5126 + 5150 ], "_gt": [ - 5126 + 5150 ], "_gte": [ - 5126 + 5150 ], "_in": [ - 5126 + 5150 ], "_is_null": [ 6 ], "_lt": [ - 5126 + 5150 ], "_lte": [ - 5126 + 5150 ], "_neq": [ - 5126 + 5150 ], "_nin": [ - 5126 + 5150 ], "__typename": [ - 84 + 85 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 5129 + 5153 ], "_gt": [ - 5129 + 5153 ], "_gte": [ - 5129 + 5153 ], "_in": [ - 5129 + 5153 ], "_is_null": [ 6 ], "_lt": [ - 5129 + 5153 ], "_lte": [ - 5129 + 5153 ], "_neq": [ - 5129 + 5153 ], "_nin": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards": { "award": [ - 281 + 282 ], "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -114418,63 +114750,63 @@ export default { 41 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_aggregate": { "aggregate": [ - 5135 + 5159 ], "nodes": [ - 5131 + 5155 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_aggregate_bool_exp": { "count": [ - 5134 + 5158 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_aggregate_bool_exp_count": { "arguments": [ - 5153 + 5177 ], "distinct": [ 6 ], "filter": [ - 5140 + 5164 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_aggregate_fields": { "avg": [ - 5138 + 5162 ], "count": [ 41, { "columns": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "distinct": [ @@ -114483,83 +114815,83 @@ export default { } ], "max": [ - 5144 + 5168 ], "min": [ - 5146 + 5170 ], "stddev": [ - 5155 + 5179 ], "stddev_pop": [ - 5157 + 5181 ], "stddev_samp": [ - 5159 + 5183 ], "sum": [ - 5163 + 5187 ], "var_pop": [ - 5167 + 5191 ], "var_samp": [ - 5169 + 5193 ], "variance": [ - 5171 + 5195 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_aggregate_order_by": { "avg": [ - 5139 + 5163 ], "count": [ - 3534 + 3558 ], "max": [ - 5145 + 5169 ], "min": [ - 5147 + 5171 ], "stddev": [ - 5156 + 5180 ], "stddev_pop": [ - 5158 + 5182 ], "stddev_samp": [ - 5160 + 5184 ], "sum": [ - 5164 + 5188 ], "var_pop": [ - 5168 + 5192 ], "var_samp": [ - 5170 + 5194 ], "variance": [ - 5172 + 5196 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_arr_rel_insert_input": { "data": [ - 5143 + 5167 ], "on_conflict": [ - 5150 + 5174 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_avg_fields": { @@ -114570,47 +114902,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_avg_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_bool_exp": { "_and": [ - 5140 + 5164 ], "_not": [ - 5140 + 5164 ], "_or": [ - 5140 + 5164 ], "award": [ - 285 + 286 ], "award_id": [ - 6343 + 6367 ], "created_at": [ - 5130 + 5154 ], "custom_name": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "image_url": [ - 86 + 87 ], "placement": [ 42 @@ -114619,16 +114951,16 @@ export default { 42 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_constraint": {}, @@ -114640,27 +114972,27 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_insert_input": { "award": [ - 292 + 293 ], "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -114669,33 +115001,33 @@ export default { 41 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_max_fields": { "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -114704,62 +115036,62 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_max_order_by": { "award_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_name": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "image_url": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_min_fields": { "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -114768,45 +115100,45 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_min_order_by": { "award_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_name": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "image_url": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_mutation_response": { @@ -114814,99 +115146,99 @@ export default { 41 ], "returning": [ - 5131 + 5155 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_obj_rel_insert_input": { "data": [ - 5143 + 5167 ], "on_conflict": [ - 5150 + 5174 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_on_conflict": { "constraint": [ - 5141 + 5165 ], "update_columns": [ - 5165 + 5189 ], "where": [ - 5140 + 5164 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_order_by": { "award": [ - 294 + 295 ], "award_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "custom_name": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "image_url": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_select_column": {}, "tournament_awards_set_input": { "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -114915,13 +115247,13 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_fields": { @@ -114932,18 +115264,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_pop_fields": { @@ -114954,18 +115286,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_pop_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_samp_fields": { @@ -114976,46 +115308,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stddev_samp_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stream_cursor_input": { "initial_value": [ - 5162 + 5186 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_stream_cursor_value_input": { "award_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "custom_name": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "image_url": [ - 84 + 85 ], "placement": [ 41 @@ -115024,13 +115356,13 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_sum_fields": { @@ -115041,33 +115373,33 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_sum_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_update_column": {}, "tournament_awards_updates": { "_inc": [ - 5142 + 5166 ], "_set": [ - 5154 + 5178 ], "where": [ - 5140 + 5164 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_var_pop_fields": { @@ -115078,18 +115410,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_var_pop_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_var_samp_fields": { @@ -115100,18 +115432,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_var_samp_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_variance_fields": { @@ -115122,18 +115454,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_awards_variance_order_by": { "placement": [ - 3534 + 3558 ], "silhouette": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets": { @@ -115141,13 +115473,13 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "feeding_brackets": [ - 5173, + 5197, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -115157,11 +115489,11 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], @@ -115169,55 +115501,55 @@ export default { 6 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_bracket": [ - 5173 + 5197 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "options": [ - 3176 + 3200 ], "parent_bracket": [ - 5173 + 5197 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "scheduling_proposals": [ - 2485, + 2486, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -115227,19 +115559,19 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "scheduling_proposals_aggregate": [ - 2486, + 2487, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -115249,127 +115581,127 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "stage": [ - 5390 + 5414 ], "team_1": [ - 5523 + 5547 ], "team_1_seed": [ 41 ], "team_2": [ - 5523 + 5547 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 5179 + 5203 ], "nodes": [ - 5173 + 5197 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 5176 + 5200 ], "bool_or": [ - 5177 + 5201 ], "count": [ - 5178 + 5202 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 5198 + 5222 ], "distinct": [ 6 ], "filter": [ - 5184 + 5208 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 5199 + 5223 ], "distinct": [ 6 ], "filter": [ - 5184 + 5208 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 5197 + 5221 ], "distinct": [ 6 ], "filter": [ - 5184 + 5208 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 5182 + 5206 ], "count": [ 41, { "columns": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -115378,83 +115710,83 @@ export default { } ], "max": [ - 5188 + 5212 ], "min": [ - 5190 + 5214 ], "stddev": [ - 5201 + 5225 ], "stddev_pop": [ - 5203 + 5227 ], "stddev_samp": [ - 5205 + 5229 ], "sum": [ - 5209 + 5233 ], "var_pop": [ - 5213 + 5237 ], "var_samp": [ - 5215 + 5239 ], "variance": [ - 5217 + 5241 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 5183 + 5207 ], "count": [ - 3534 + 3558 ], "max": [ - 5189 + 5213 ], "min": [ - 5191 + 5215 ], "stddev": [ - 5202 + 5226 ], "stddev_pop": [ - 5204 + 5228 ], "stddev_samp": [ - 5206 + 5230 ], "sum": [ - 5210 + 5234 ], "var_pop": [ - 5214 + 5238 ], "var_samp": [ - 5216 + 5240 ], "variance": [ - 5218 + 5242 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 5187 + 5211 ], "on_conflict": [ - 5194 + 5218 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_avg_fields": { @@ -115474,134 +115806,134 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_avg_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_bool_exp": { "_and": [ - 5184 + 5208 ], "_not": [ - 5184 + 5208 ], "_or": [ - 5184 + 5208 ], "bye": [ 7 ], "created_at": [ - 5130 + 5154 ], "feeding_brackets": [ - 5184 + 5208 ], "finished": [ 7 ], "group": [ - 3533 + 3557 ], "id": [ - 6343 + 6367 ], "loser_bracket": [ - 5184 + 5208 ], "loser_parent_bracket_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_number": [ 42 ], "match_options_id": [ - 6343 + 6367 ], "options": [ - 3187 + 3211 ], "parent_bracket": [ - 5184 + 5208 ], "parent_bracket_id": [ - 6343 + 6367 ], "path": [ - 86 + 87 ], "round": [ 42 ], "scheduled_at": [ - 5130 + 5154 ], "scheduled_eta": [ - 5130 + 5154 ], "scheduling_proposals": [ - 2494 + 2495 ], "scheduling_proposals_aggregate": [ - 2487 + 2488 ], "stage": [ - 5402 + 5426 ], "team_1": [ - 5532 + 5556 ], "team_1_seed": [ 42 ], "team_2": [ - 5532 + 5556 ], "team_2_seed": [ 42 ], "tournament_stage_id": [ - 6343 + 6367 ], "tournament_team_id_1": [ - 6343 + 6367 ], "tournament_team_id_2": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 3532 + 3556 ], "match_number": [ 41 @@ -115616,7 +115948,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_insert_input": { @@ -115624,123 +115956,123 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "finished": [ 6 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_bracket": [ - 5193 + 5217 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "options": [ - 3196 + 3220 ], "parent_bracket": [ - 5193 + 5217 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "scheduling_proposals": [ - 2491 + 2492 ], "stage": [ - 5414 + 5438 ], "team_1": [ - 5541 + 5565 ], "team_1_seed": [ 41 ], "team_2": [ - 5541 + 5565 ], "team_2_seed": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_max_fields": { "created_at": [ - 5129 + 5153 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "team_1_seed": [ 41 @@ -115749,110 +116081,110 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 3534 + 3558 ], "group": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "loser_parent_bracket_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "parent_bracket_id": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "scheduled_eta": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id_1": [ - 3534 + 3558 ], "tournament_team_id_2": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_min_fields": { "created_at": [ - 5129 + 5153 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "team_1_seed": [ 41 @@ -115861,72 +116193,72 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 3534 + 3558 ], "group": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "loser_parent_bracket_id": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "parent_bracket_id": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "scheduled_eta": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id_1": [ - 3534 + 3558 ], "tournament_team_id_2": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_mutation_response": { @@ -115934,132 +116266,132 @@ export default { 41 ], "returning": [ - 5173 + 5197 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 5187 + 5211 ], "on_conflict": [ - 5194 + 5218 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 5185 + 5209 ], "update_columns": [ - 5211 + 5235 ], "where": [ - 5184 + 5208 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_order_by": { "bye": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "feeding_brackets_aggregate": [ - 5180 + 5204 ], "finished": [ - 3534 + 3558 ], "group": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "loser_bracket": [ - 5195 + 5219 ], "loser_parent_bracket_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "options": [ - 3198 + 3222 ], "parent_bracket": [ - 5195 + 5219 ], "parent_bracket_id": [ - 3534 + 3558 ], "path": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "scheduled_at": [ - 3534 + 3558 ], "scheduled_eta": [ - 3534 + 3558 ], "scheduling_proposals_aggregate": [ - 2490 + 2491 ], "stage": [ - 5416 + 5440 ], "team_1": [ - 5543 + 5567 ], "team_1_seed": [ - 3534 + 3558 ], "team_2": [ - 5543 + 5567 ], "team_2_seed": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id_1": [ - 3534 + 3558 ], "tournament_team_id_2": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_select_column": {}, @@ -116070,43 +116402,43 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "finished": [ 6 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "team_1_seed": [ 41 @@ -116115,16 +116447,16 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_fields": { @@ -116144,27 +116476,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_pop_fields": { @@ -116184,27 +116516,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_samp_fields": { @@ -116224,38 +116556,38 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 5208 + 5232 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -116263,43 +116595,43 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "finished": [ 6 ], "group": [ - 3532 + 3556 ], "id": [ - 6341 + 6365 ], "loser_parent_bracket_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_number": [ 41 ], "match_options_id": [ - 6341 + 6365 ], "parent_bracket_id": [ - 6341 + 6365 ], "path": [ - 84 + 85 ], "round": [ 41 ], "scheduled_at": [ - 5129 + 5153 ], "scheduled_eta": [ - 5129 + 5153 ], "team_1_seed": [ 41 @@ -116308,21 +116640,21 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id_1": [ - 6341 + 6365 ], "tournament_team_id_2": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_sum_fields": { "group": [ - 3532 + 3556 ], "match_number": [ 41 @@ -116337,42 +116669,42 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_sum_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 5186 + 5210 ], "_set": [ - 5200 + 5224 ], "where": [ - 5184 + 5208 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_var_pop_fields": { @@ -116392,27 +116724,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_var_samp_fields": { @@ -116432,27 +116764,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_variance_fields": { @@ -116472,80 +116804,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_brackets_variance_order_by": { "group": [ - 3534 + 3558 ], "match_number": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "team_1_seed": [ - 3534 + 3558 ], "team_2_seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_categories": { "category": [ - 1505 + 1506 ], "e_tournament_category": [ - 1500 + 1501 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_aggregate": { "aggregate": [ - 5223 + 5247 ], "nodes": [ - 5219 + 5243 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_aggregate_bool_exp": { "count": [ - 5222 + 5246 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_aggregate_bool_exp_count": { "arguments": [ - 5237 + 5261 ], "distinct": [ 6 ], "filter": [ - 5226 + 5250 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_aggregate_fields": { @@ -116553,7 +116885,7 @@ export default { 41, { "columns": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "distinct": [ @@ -116562,114 +116894,114 @@ export default { } ], "max": [ - 5229 + 5253 ], "min": [ - 5231 + 5255 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 5230 + 5254 ], "min": [ - 5232 + 5256 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_arr_rel_insert_input": { "data": [ - 5228 + 5252 ], "on_conflict": [ - 5234 + 5258 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_bool_exp": { "_and": [ - 5226 + 5250 ], "_not": [ - 5226 + 5250 ], "_or": [ - 5226 + 5250 ], "category": [ - 1506 + 1507 ], "e_tournament_category": [ - 1503 + 1504 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_constraint": {}, "tournament_categories_insert_input": { "category": [ - 1505 + 1506 ], "e_tournament_category": [ - 1511 + 1512 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_max_fields": { "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_max_order_by": { "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_min_fields": { "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_min_order_by": { "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_mutation_response": { @@ -116677,154 +117009,154 @@ export default { 41 ], "returning": [ - 5219 + 5243 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_on_conflict": { "constraint": [ - 5227 + 5251 ], "update_columns": [ - 5241 + 5265 ], "where": [ - 5226 + 5250 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_order_by": { "category": [ - 3534 + 3558 ], "e_tournament_category": [ - 1513 + 1514 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_pk_columns_input": { "category": [ - 1505 + 1506 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_select_column": {}, "tournament_categories_set_input": { "category": [ - 1505 + 1506 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_stream_cursor_input": { "initial_value": [ - 5240 + 5264 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_stream_cursor_value_input": { "category": [ - 1505 + 1506 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_categories_update_column": {}, "tournament_categories_updates": { "_set": [ - 5238 + 5262 ], "where": [ - 5226 + 5250 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams": { "created_at": [ - 5129 + 5153 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_aggregate": { "aggregate": [ - 5247 + 5271 ], "nodes": [ - 5243 + 5267 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_aggregate_bool_exp": { "count": [ - 5246 + 5270 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_aggregate_bool_exp_count": { "arguments": [ - 5261 + 5285 ], "distinct": [ 6 ], "filter": [ - 5250 + 5274 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_aggregate_fields": { @@ -116832,7 +117164,7 @@ export default { 41, { "columns": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "distinct": [ @@ -116841,144 +117173,144 @@ export default { } ], "max": [ - 5253 + 5277 ], "min": [ - 5255 + 5279 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 5254 + 5278 ], "min": [ - 5256 + 5280 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_arr_rel_insert_input": { "data": [ - 5252 + 5276 ], "on_conflict": [ - 5258 + 5282 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_bool_exp": { "_and": [ - 5250 + 5274 ], "_not": [ - 5250 + 5274 ], "_or": [ - 5250 + 5274 ], "created_at": [ - 5130 + 5154 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_constraint": {}, "tournament_organizer_teams_insert_input": { "created_at": [ - 5129 + 5153 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_max_fields": { "created_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_max_order_by": { "created_at": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_min_fields": { "created_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_min_order_by": { "created_at": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_mutation_response": { @@ -116986,177 +117318,177 @@ export default { 41 ], "returning": [ - 5243 + 5267 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_on_conflict": { "constraint": [ - 5251 + 5275 ], "update_columns": [ - 5265 + 5289 ], "where": [ - 5250 + 5274 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_order_by": { "created_at": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_pk_columns_input": { "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_select_column": {}, "tournament_organizer_teams_set_input": { "created_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_stream_cursor_input": { "initial_value": [ - 5264 + 5288 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizer_teams_update_column": {}, "tournament_organizer_teams_updates": { "_set": [ - 5262 + 5286 ], "where": [ - 5250 + 5274 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers": { "organization_team": [ - 5080 + 5104 ], "organization_team_id": [ - 6341 + 6365 ], "organizer": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 5271 + 5295 ], "nodes": [ - 5267 + 5291 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 5270 + 5294 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 5288 + 5312 ], "distinct": [ 6 ], "filter": [ - 5276 + 5300 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 5274 + 5298 ], "count": [ 41, { "columns": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -117165,83 +117497,83 @@ export default { } ], "max": [ - 5280 + 5304 ], "min": [ - 5282 + 5306 ], "stddev": [ - 5290 + 5314 ], "stddev_pop": [ - 5292 + 5316 ], "stddev_samp": [ - 5294 + 5318 ], "sum": [ - 5298 + 5322 ], "var_pop": [ - 5302 + 5326 ], "var_samp": [ - 5304 + 5328 ], "variance": [ - 5306 + 5330 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 5275 + 5299 ], "count": [ - 3534 + 3558 ], "max": [ - 5281 + 5305 ], "min": [ - 5283 + 5307 ], "stddev": [ - 5291 + 5315 ], "stddev_pop": [ - 5293 + 5317 ], "stddev_samp": [ - 5295 + 5319 ], "sum": [ - 5299 + 5323 ], "var_pop": [ - 5303 + 5327 ], "var_samp": [ - 5305 + 5329 ], "variance": [ - 5307 + 5331 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 5279 + 5303 ], "on_conflict": [ - 5285 + 5309 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_avg_fields": { @@ -117249,135 +117581,135 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_bool_exp": { "_and": [ - 5276 + 5300 ], "_not": [ - 5276 + 5300 ], "_or": [ - 5276 + 5300 ], "organization_team": [ - 5091 + 5115 ], "organization_team_id": [ - 6343 + 6367 ], "organizer": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_insert_input": { "organization_team": [ - 5100 + 5124 ], "organization_team_id": [ - 6341 + 6365 ], "organizer": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_max_fields": { "organization_team_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_max_order_by": { "organization_team_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_min_fields": { "organization_team_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_min_order_by": { "organization_team_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_mutation_response": { @@ -117385,73 +117717,73 @@ export default { 41 ], "returning": [ - 5267 + 5291 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 5277 + 5301 ], "update_columns": [ - 5300 + 5324 ], "where": [ - 5276 + 5300 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_order_by": { "organization_team": [ - 5102 + 5126 ], "organization_team_id": [ - 3534 + 3558 ], "organizer": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "organization_team_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_fields": { @@ -117459,15 +117791,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_pop_fields": { @@ -117475,15 +117807,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_samp_fields": { @@ -117491,71 +117823,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 5297 + 5321 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_stream_cursor_value_input": { "organization_team_id": [ - 6341 + 6365 ], "steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 5278 + 5302 ], "_set": [ - 5289 + 5313 ], "where": [ - 5276 + 5300 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_var_pop_fields": { @@ -117563,15 +117895,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_var_samp_fields": { @@ -117579,15 +117911,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_variance_fields": { @@ -117595,88 +117927,88 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_aggregate": { "aggregate": [ - 5312 + 5336 ], "nodes": [ - 5308 + 5332 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_aggregate_bool_exp": { "count": [ - 5311 + 5335 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_aggregate_bool_exp_count": { "arguments": [ - 5329 + 5353 ], "distinct": [ 6 ], "filter": [ - 5317 + 5341 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_aggregate_fields": { "avg": [ - 5315 + 5339 ], "count": [ 41, { "columns": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "distinct": [ @@ -117685,83 +118017,83 @@ export default { } ], "max": [ - 5321 + 5345 ], "min": [ - 5323 + 5347 ], "stddev": [ - 5331 + 5355 ], "stddev_pop": [ - 5333 + 5357 ], "stddev_samp": [ - 5335 + 5359 ], "sum": [ - 5339 + 5363 ], "var_pop": [ - 5343 + 5367 ], "var_samp": [ - 5345 + 5369 ], "variance": [ - 5347 + 5371 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_aggregate_order_by": { "avg": [ - 5316 + 5340 ], "count": [ - 3534 + 3558 ], "max": [ - 5322 + 5346 ], "min": [ - 5324 + 5348 ], "stddev": [ - 5332 + 5356 ], "stddev_pop": [ - 5334 + 5358 ], "stddev_samp": [ - 5336 + 5360 ], "sum": [ - 5340 + 5364 ], "var_pop": [ - 5344 + 5368 ], "var_samp": [ - 5346 + 5370 ], "variance": [ - 5348 + 5372 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_arr_rel_insert_input": { "data": [ - 5320 + 5344 ], "on_conflict": [ - 5326 + 5350 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_avg_fields": { @@ -117769,50 +118101,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_avg_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_bool_exp": { "_and": [ - 5317 + 5341 ], "_not": [ - 5317 + 5341 ], "_or": [ - 5317 + 5341 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "order": [ 42 ], "place": [ - 86 + 87 ], "prize": [ - 86 + 87 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_constraint": {}, @@ -117821,125 +118153,125 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "place": [ - 3534 + 3558 ], "prize": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "place": [ - 3534 + 3558 ], "prize": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_mutation_response": { @@ -117947,82 +118279,82 @@ export default { 41 ], "returning": [ - 5308 + 5332 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_on_conflict": { "constraint": [ - 5318 + 5342 ], "update_columns": [ - 5341 + 5365 ], "where": [ - 5317 + 5341 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "place": [ - 3534 + 3558 ], "prize": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_select_column": {}, "tournament_prizes_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_fields": { @@ -118030,15 +118362,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_pop_fields": { @@ -118046,15 +118378,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_pop_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_samp_fields": { @@ -118062,49 +118394,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stddev_samp_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stream_cursor_input": { "initial_value": [ - 5338 + 5362 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "order": [ 41 ], "place": [ - 84 + 85 ], "prize": [ - 84 + 85 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_sum_fields": { @@ -118112,30 +118444,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_sum_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_update_column": {}, "tournament_prizes_updates": { "_inc": [ - 5319 + 5343 ], "_set": [ - 5330 + 5354 ], "where": [ - 5317 + 5341 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_var_pop_fields": { @@ -118143,15 +118475,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_var_pop_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_var_samp_fields": { @@ -118159,15 +118491,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_var_samp_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_variance_fields": { @@ -118175,91 +118507,91 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_prizes_variance_order_by": { "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "stage": [ - 5390 + 5414 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_aggregate": { "aggregate": [ - 5353 + 5377 ], "nodes": [ - 5349 + 5373 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 5352 + 5376 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 5370 + 5394 ], "distinct": [ 6 ], "filter": [ - 5358 + 5382 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 5356 + 5380 ], "count": [ 41, { "columns": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -118268,83 +118600,83 @@ export default { } ], "max": [ - 5362 + 5386 ], "min": [ - 5364 + 5388 ], "stddev": [ - 5372 + 5396 ], "stddev_pop": [ - 5374 + 5398 ], "stddev_samp": [ - 5376 + 5400 ], "sum": [ - 5380 + 5404 ], "var_pop": [ - 5384 + 5408 ], "var_samp": [ - 5386 + 5410 ], "variance": [ - 5388 + 5412 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 5357 + 5381 ], "count": [ - 3534 + 3558 ], "max": [ - 5363 + 5387 ], "min": [ - 5365 + 5389 ], "stddev": [ - 5373 + 5397 ], "stddev_pop": [ - 5375 + 5399 ], "stddev_samp": [ - 5377 + 5401 ], "sum": [ - 5381 + 5405 ], "var_pop": [ - 5385 + 5409 ], "var_samp": [ - 5387 + 5411 ], "variance": [ - 5389 + 5413 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 5361 + 5385 ], "on_conflict": [ - 5367 + 5391 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_avg_fields": { @@ -118352,53 +118684,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_avg_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_bool_exp": { "_and": [ - 5358 + 5382 ], "_not": [ - 5358 + 5382 ], "_or": [ - 5358 + 5382 ], "closes_at": [ - 5130 + 5154 ], "created_at": [ - 5130 + 5154 ], "default_match_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "opens_at": [ - 5130 + 5154 ], "round": [ 42 ], "stage": [ - 5402 + 5426 ], "tournament_stage_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_constraint": {}, @@ -118407,140 +118739,140 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_insert_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "stage": [ - 5414 + 5438 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_max_fields": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_min_fields": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_mutation_response": { @@ -118548,88 +118880,88 @@ export default { 41 ], "returning": [ - 5349 + 5373 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_on_conflict": { "constraint": [ - 5359 + 5383 ], "update_columns": [ - 5382 + 5406 ], "where": [ - 5358 + 5382 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_order_by": { "closes_at": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "default_match_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "opens_at": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "stage": [ - 5416 + 5440 ], "tournament_stage_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_fields": { @@ -118637,15 +118969,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_pop_fields": { @@ -118653,15 +118985,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_samp_fields": { @@ -118669,52 +119001,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 5379 + 5403 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 5129 + 5153 ], "created_at": [ - 5129 + 5153 ], "default_match_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "opens_at": [ - 5129 + 5153 ], "round": [ 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_sum_fields": { @@ -118722,30 +119054,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_sum_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 5360 + 5384 ], "_set": [ - 5371 + 5395 ], "where": [ - 5358 + 5382 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_var_pop_fields": { @@ -118753,15 +119085,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_var_samp_fields": { @@ -118769,15 +119101,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_variance_fields": { @@ -118785,23 +119117,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stage_windows_variance_order_by": { "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages": { "brackets": [ - 5173, + 5197, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -118811,19 +119143,19 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "brackets_aggregate": [ - 5174, + 5198, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -118833,11 +119165,11 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], @@ -118848,7 +119180,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1521 + 1522 ], "final_map_advantage": [ 41 @@ -118857,10 +119189,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -118872,16 +119204,16 @@ export default { 41 ], "options": [ - 3176 + 3200 ], "order": [ 41 ], "results": [ - 7083, + 7107, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -118891,19 +119223,19 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "results_aggregate": [ - 7084, + 7108, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -118913,19 +119245,19 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "settings": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -118936,19 +119268,19 @@ export default { 6 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "type": [ - 1526 + 1527 ], "windows": [ - 5349, + 5373, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -118958,19 +119290,19 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "windows_aggregate": [ - 5350, + 5374, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -118980,103 +119312,103 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate": { "aggregate": [ - 5396 + 5420 ], "nodes": [ - 5390 + 5414 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 5393 + 5417 ], "bool_or": [ - 5394 + 5418 ], "count": [ - 5395 + 5419 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 5420 + 5444 ], "distinct": [ 6 ], "filter": [ - 5402 + 5426 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 5421 + 5445 ], "distinct": [ 6 ], "filter": [ - 5402 + 5426 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 5419 + 5443 ], "distinct": [ 6 ], "filter": [ - 5402 + 5426 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 5400 + 5424 ], "count": [ 41, { "columns": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "distinct": [ @@ -119085,91 +119417,91 @@ export default { } ], "max": [ - 5409 + 5433 ], "min": [ - 5411 + 5435 ], "stddev": [ - 5423 + 5447 ], "stddev_pop": [ - 5425 + 5449 ], "stddev_samp": [ - 5427 + 5451 ], "sum": [ - 5431 + 5455 ], "var_pop": [ - 5435 + 5459 ], "var_samp": [ - 5437 + 5461 ], "variance": [ - 5439 + 5463 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 5401 + 5425 ], "count": [ - 3534 + 3558 ], "max": [ - 5410 + 5434 ], "min": [ - 5412 + 5436 ], "stddev": [ - 5424 + 5448 ], "stddev_pop": [ - 5426 + 5450 ], "stddev_samp": [ - 5428 + 5452 ], "sum": [ - 5432 + 5456 ], "var_pop": [ - 5436 + 5460 ], "var_samp": [ - 5438 + 5462 ], "variance": [ - 5440 + 5464 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_append_input": { "settings": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 5408 + 5432 ], "on_conflict": [ - 5415 + 5439 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_avg_fields": { @@ -119198,53 +119530,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_bool_exp": { "_and": [ - 5402 + 5426 ], "_not": [ - 5402 + 5426 ], "_or": [ - 5402 + 5426 ], "brackets": [ - 5184 + 5208 ], "brackets_aggregate": [ - 5175 + 5199 ], "decider_best_of": [ 42 @@ -119253,7 +119585,7 @@ export default { 42 ], "e_tournament_stage_type": [ - 1524 + 1525 ], "final_map_advantage": [ 42 @@ -119262,10 +119594,10 @@ export default { 42 ], "id": [ - 6343 + 6367 ], "match_options_id": [ - 6343 + 6367 ], "max_rounds": [ 42 @@ -119277,19 +119609,19 @@ export default { 42 ], "options": [ - 3187 + 3211 ], "order": [ 42 ], "results": [ - 7102 + 7126 ], "results_aggregate": [ - 7085 + 7109 ], "settings": [ - 2350 + 2351 ], "swiss_no_elimination": [ 7 @@ -119298,31 +119630,31 @@ export default { 7 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "type": [ - 1527 + 1528 ], "windows": [ - 5358 + 5382 ], "windows_aggregate": [ - 5351 + 5375 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_delete_elem_input": { @@ -119330,15 +119662,15 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_delete_key_input": { "settings": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_inc_input": { @@ -119367,12 +119699,12 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_insert_input": { "brackets": [ - 5181 + 5205 ], "decider_best_of": [ 41 @@ -119381,7 +119713,7 @@ export default { 41 ], "e_tournament_stage_type": [ - 1532 + 1533 ], "final_map_advantage": [ 41 @@ -119390,10 +119722,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -119405,16 +119737,16 @@ export default { 41 ], "options": [ - 3196 + 3220 ], "order": [ 41 ], "results": [ - 7099 + 7123 ], "settings": [ - 2348 + 2349 ], "swiss_no_elimination": [ 6 @@ -119423,19 +119755,19 @@ export default { 6 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "type": [ - 1526 + 1527 ], "windows": [ - 5355 + 5379 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_max_fields": { @@ -119452,10 +119784,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -119470,48 +119802,48 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_min_fields": { @@ -119528,10 +119860,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -119546,48 +119878,48 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_mutation_response": { @@ -119595,119 +119927,119 @@ export default { 41 ], "returning": [ - 5390 + 5414 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 5408 + 5432 ], "on_conflict": [ - 5415 + 5439 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_on_conflict": { "constraint": [ - 5403 + 5427 ], "update_columns": [ - 5433 + 5457 ], "where": [ - 5402 + 5426 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 5180 + 5204 ], "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "e_tournament_stage_type": [ - 1534 + 1535 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "options": [ - 3198 + 3222 ], "order": [ - 3534 + 3558 ], "results_aggregate": [ - 7098 + 7122 ], "settings": [ - 3534 + 3558 ], "swiss_no_elimination": [ - 3534 + 3558 ], "third_place_match": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "windows_aggregate": [ - 5354 + 5378 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_prepend_input": { "settings": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_select_column": {}, @@ -119727,10 +120059,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -119745,7 +120077,7 @@ export default { 41 ], "settings": [ - 2348 + 2349 ], "swiss_no_elimination": [ 6 @@ -119754,13 +120086,13 @@ export default { 6 ], "tournament_id": [ - 6341 + 6365 ], "type": [ - 1526 + 1527 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_fields": { @@ -119789,36 +120121,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_pop_fields": { @@ -119847,36 +120179,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_samp_fields": { @@ -119905,47 +120237,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 5430 + 5454 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_stream_cursor_value_input": { @@ -119962,10 +120294,10 @@ export default { 41 ], "id": [ - 6341 + 6365 ], "match_options_id": [ - 6341 + 6365 ], "max_rounds": [ 41 @@ -119980,7 +120312,7 @@ export default { 41 ], "settings": [ - 2348 + 2349 ], "swiss_no_elimination": [ 6 @@ -119989,13 +120321,13 @@ export default { 6 ], "tournament_id": [ - 6341 + 6365 ], "type": [ - 1526 + 1527 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_sum_fields": { @@ -120024,66 +120356,66 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 5398 + 5422 ], "_delete_at_path": [ - 5404 + 5428 ], "_delete_elem": [ - 5405 + 5429 ], "_delete_key": [ - 5406 + 5430 ], "_inc": [ - 5407 + 5431 ], "_prepend": [ - 5418 + 5442 ], "_set": [ - 5422 + 5446 ], "where": [ - 5402 + 5426 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_var_pop_fields": { @@ -120112,36 +120444,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_var_samp_fields": { @@ -120170,36 +120502,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_variance_fields": { @@ -120228,112 +120560,112 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 3534 + 3558 ], "default_best_of": [ - 3534 + 3558 ], "final_map_advantage": [ - 3534 + 3558 ], "groups": [ - 3534 + 3558 ], "max_rounds": [ - 3534 + 3558 ], "max_teams": [ - 3534 + 3558 ], "min_teams": [ - 3534 + 3558 ], "order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by": [ - 4492 + 4516 ], "invited_by_player_steam_id": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "team": [ - 5523 + 5547 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 5445 + 5469 ], "nodes": [ - 5441 + 5465 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 5444 + 5468 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 5462 + 5486 ], "distinct": [ 6 ], "filter": [ - 5450 + 5474 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 5448 + 5472 ], "count": [ 41, { "columns": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -120342,83 +120674,83 @@ export default { } ], "max": [ - 5454 + 5478 ], "min": [ - 5456 + 5480 ], "stddev": [ - 5464 + 5488 ], "stddev_pop": [ - 5466 + 5490 ], "stddev_samp": [ - 5468 + 5492 ], "sum": [ - 5472 + 5496 ], "var_pop": [ - 5476 + 5500 ], "var_samp": [ - 5478 + 5502 ], "variance": [ - 5480 + 5504 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 5449 + 5473 ], "count": [ - 3534 + 3558 ], "max": [ - 5455 + 5479 ], "min": [ - 5457 + 5481 ], "stddev": [ - 5465 + 5489 ], "stddev_pop": [ - 5467 + 5491 ], "stddev_samp": [ - 5469 + 5493 ], "sum": [ - 5473 + 5497 ], "var_pop": [ - 5477 + 5501 ], "var_samp": [ - 5479 + 5503 ], "variance": [ - 5481 + 5505 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 5453 + 5477 ], "on_conflict": [ - 5459 + 5483 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_avg_fields": { @@ -120429,177 +120761,177 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 5450 + 5474 ], "_not": [ - 5450 + 5474 ], "_or": [ - 5450 + 5474 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "invited_by": [ - 4496 + 4520 ], "invited_by_player_steam_id": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "team": [ - 5532 + 5556 ], "tournament_team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by": [ - 4503 + 4527 ], "invited_by_player_steam_id": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "team": [ - 5541 + 5565 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_mutation_response": { @@ -120607,82 +120939,82 @@ export default { 41 ], "returning": [ - 5441 + 5465 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 5451 + 5475 ], "update_columns": [ - 5474 + 5498 ], "where": [ - 5450 + 5474 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_order_by": { "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invited_by": [ - 4505 + 4529 ], "invited_by_player_steam_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "team": [ - 5543 + 5567 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_fields": { @@ -120693,18 +121025,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_pop_fields": { @@ -120715,18 +121047,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_samp_fields": { @@ -120737,86 +121069,86 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 5471 + 5495 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 5452 + 5476 ], "_set": [ - 5463 + 5487 ], "where": [ - 5450 + 5474 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_var_pop_fields": { @@ -120827,18 +121159,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_var_samp_fields": { @@ -120849,18 +121181,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_variance_fields": { @@ -120871,94 +121203,94 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster": { "e_team_role": [ - 1439 + 1440 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team": [ - 5523 + 5547 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 5486 + 5510 ], "nodes": [ - 5482 + 5506 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 5485 + 5509 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 5503 + 5527 ], "distinct": [ 6 ], "filter": [ - 5491 + 5515 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 5489 + 5513 ], "count": [ 41, { "columns": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -120967,83 +121299,83 @@ export default { } ], "max": [ - 5495 + 5519 ], "min": [ - 5497 + 5521 ], "stddev": [ - 5505 + 5529 ], "stddev_pop": [ - 5507 + 5531 ], "stddev_samp": [ - 5509 + 5533 ], "sum": [ - 5513 + 5537 ], "var_pop": [ - 5517 + 5541 ], "var_samp": [ - 5519 + 5543 ], "variance": [ - 5521 + 5545 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 5490 + 5514 ], "count": [ - 3534 + 3558 ], "max": [ - 5496 + 5520 ], "min": [ - 5498 + 5522 ], "stddev": [ - 5506 + 5530 ], "stddev_pop": [ - 5508 + 5532 ], "stddev_samp": [ - 5510 + 5534 ], "sum": [ - 5514 + 5538 ], "var_pop": [ - 5518 + 5542 ], "var_samp": [ - 5520 + 5544 ], "variance": [ - 5522 + 5546 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 5494 + 5518 ], "on_conflict": [ - 5500 + 5524 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_avg_fields": { @@ -121051,147 +121383,147 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 5491 + 5515 ], "_not": [ - 5491 + 5515 ], "_or": [ - 5491 + 5515 ], "e_team_role": [ - 1442 + 1443 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "role": [ - 1445 + 1446 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "tournament_team": [ - 5532 + 5556 ], "tournament_team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1450 + 1451 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team": [ - 5541 + 5565 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_mutation_response": { @@ -121199,82 +121531,82 @@ export default { 41 ], "returning": [ - 5482 + 5506 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 5492 + 5516 ], "update_columns": [ - 5515 + 5539 ], "where": [ - 5491 + 5515 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 1452 + 1453 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "role": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team": [ - 5543 + 5567 ], "tournament_team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_fields": { @@ -121282,15 +121614,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_pop_fields": { @@ -121298,15 +121630,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_samp_fields": { @@ -121314,74 +121646,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 5512 + 5536 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 309 + 310 ], "role": [ - 1444 + 1445 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 5493 + 5517 ], "_set": [ - 5504 + 5528 ], "where": [ - 5491 + 5515 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_var_pop_fields": { @@ -121389,15 +121721,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_var_samp_fields": { @@ -121405,15 +121737,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_variance_fields": { @@ -121421,15 +121753,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams": { @@ -121437,28 +121769,28 @@ export default { 6 ], "captain": [ - 4492 + 4516 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "creator": [ - 4492 + 4516 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invites": [ - 5441, + 5465, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -121468,19 +121800,19 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "invites_aggregate": [ - 5442, + 5466, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -121490,28 +121822,28 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "results": [ - 7083 + 7107 ], "roster": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -121521,19 +121853,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "roster_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -121543,11 +121875,11 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], @@ -121555,69 +121887,69 @@ export default { 41 ], "short_name": [ - 84 + 85 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_aggregate": { "aggregate": [ - 5527 + 5551 ], "nodes": [ - 5523 + 5547 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 5526 + 5550 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 5545 + 5569 ], "distinct": [ 6 ], "filter": [ - 5532 + 5556 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 5530 + 5554 ], "count": [ 41, { "columns": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "distinct": [ @@ -121626,83 +121958,83 @@ export default { } ], "max": [ - 5536 + 5560 ], "min": [ - 5538 + 5562 ], "stddev": [ - 5547 + 5571 ], "stddev_pop": [ - 5549 + 5573 ], "stddev_samp": [ - 5551 + 5575 ], "sum": [ - 5555 + 5579 ], "var_pop": [ - 5559 + 5583 ], "var_samp": [ - 5561 + 5585 ], "variance": [ - 5563 + 5587 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 5531 + 5555 ], "count": [ - 3534 + 3558 ], "max": [ - 5537 + 5561 ], "min": [ - 5539 + 5563 ], "stddev": [ - 5548 + 5572 ], "stddev_pop": [ - 5550 + 5574 ], "stddev_samp": [ - 5552 + 5576 ], "sum": [ - 5556 + 5580 ], "var_pop": [ - 5560 + 5584 ], "var_samp": [ - 5562 + 5586 ], "variance": [ - 5564 + 5588 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 5535 + 5559 ], "on_conflict": [ - 5542 + 5566 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_avg_fields": { @@ -121716,306 +122048,306 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_bool_exp": { "_and": [ - 5532 + 5556 ], "_not": [ - 5532 + 5556 ], "_or": [ - 5532 + 5556 ], "can_manage": [ 7 ], "captain": [ - 4496 + 4520 ], "captain_steam_id": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "creator": [ - 4496 + 4520 ], "eligible_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "invites": [ - 5450 + 5474 ], "invites_aggregate": [ - 5443 + 5467 ], "name": [ - 86 + 87 ], "owner_steam_id": [ - 311 + 312 ], "results": [ - 7102 + 7126 ], "roster": [ - 5491 + 5515 ], "roster_aggregate": [ - 5484 + 5508 ], "seed": [ 42 ], "short_name": [ - 86 + 87 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 309 + 310 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_insert_input": { "captain": [ - 4503 + 4527 ], "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "creator": [ - 4503 + 4527 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "invites": [ - 5447 + 5471 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "results": [ - 7111 + 7135 ], "roster": [ - 5488 + 5512 ], "seed": [ 41 ], "short_name": [ - 84 + 85 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "short_name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "eligible_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "short_name": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "short_name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "eligible_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "short_name": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_mutation_response": { @@ -122023,138 +122355,138 @@ export default { 41 ], "returning": [ - 5523 + 5547 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 5535 + 5559 ], "on_conflict": [ - 5542 + 5566 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_on_conflict": { "constraint": [ - 5533 + 5557 ], "update_columns": [ - 5557 + 5581 ], "where": [ - 5532 + 5556 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_order_by": { "can_manage": [ - 3534 + 3558 ], "captain": [ - 4505 + 4529 ], "captain_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "creator": [ - 4505 + 4529 ], "eligible_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invites_aggregate": [ - 5446 + 5470 ], "name": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "results": [ - 7113 + 7137 ], "roster_aggregate": [ - 5487 + 5511 ], "seed": [ - 3534 + 3558 ], "short_name": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "short_name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_fields": { @@ -122168,21 +122500,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_pop_fields": { @@ -122196,21 +122528,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_samp_fields": { @@ -122224,110 +122556,110 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 5554 + 5578 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "eligible_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "short_name": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 309 + 310 ], "owner_steam_id": [ - 309 + 310 ], "seed": [ 41 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 5534 + 5558 ], "_set": [ - 5546 + 5570 ], "where": [ - 5532 + 5556 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_var_pop_fields": { @@ -122341,21 +122673,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_var_samp_fields": { @@ -122369,21 +122701,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_variance_fields": { @@ -122397,35 +122729,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 3534 + 3558 ], "owner_steam_id": [ - 3534 + 3558 ], "seed": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments": { "admin": [ - 4492 + 4516 ], "auto_start": [ 6 ], "award_configs": [ - 5131, + 5155, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -122435,19 +122767,19 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "award_configs_aggregate": [ - 5132, + 5156, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -122457,19 +122789,19 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "awards": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -122479,19 +122811,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "awards_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -122501,11 +122833,11 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], @@ -122513,7 +122845,7 @@ export default { 6 ], "banner": [ - 84 + 85 ], "can_cancel": [ 6 @@ -122540,10 +122872,10 @@ export default { 6 ], "categories": [ - 5219, + 5243, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -122553,19 +122885,19 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "categories_aggregate": [ - 5220, + 5244, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -122575,22 +122907,22 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_notifications_enabled": [ 6 @@ -122632,25 +122964,25 @@ export default { 6 ], "discord_role_id": [ - 84 + 85 ], "discord_voice_enabled": [ 6 ], "discord_webhook": [ - 84 + 85 ], "e_tournament_status": [ - 1542 + 1543 ], "has_min_teams": [ 6 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_league": [ 6 @@ -122662,22 +122994,22 @@ export default { 6 ], "latitude": [ - 2003 + 2004 ], "league_season_division": [ - 2526 + 2527 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -122686,19 +123018,19 @@ export default { 41 ], "name": [ - 84 + 85 ], "options": [ - 3176 + 3200 ], "organizer_steam_id": [ - 309 + 310 ], "organizer_teams": [ - 5243, + 5267, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -122708,19 +123040,19 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "organizer_teams_aggregate": [ - 5244, + 5268, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -122730,19 +123062,19 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "organizers": [ - 5267, + 5291, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -122752,19 +123084,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "organizers_aggregate": [ - 5268, + 5292, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -122774,19 +123106,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "player_stats": [ - 7194, + 7218, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -122796,19 +123128,19 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "player_stats_aggregate": [ - 7195, + 7219, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -122818,19 +123150,19 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "prizes": [ - 5308, + 5332, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -122840,19 +123172,19 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "prizes_aggregate": [ - 5309, + 5333, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -122862,19 +123194,19 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "results": [ - 7143, + 7167, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -122884,19 +123216,19 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "results_aggregate": [ - 7144, + 7168, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -122906,19 +123238,19 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "rosters": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -122928,19 +123260,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "rosters_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -122950,22 +123282,22 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "scheduling_mode": [ - 84 + 85 ], "stages": [ - 5390, + 5414, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -122975,19 +123307,19 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "stages_aggregate": [ - 5391, + 5415, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -122997,25 +123329,25 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "start": [ - 5129 + 5153 ], "status": [ - 1547 + 1548 ], "teams": [ - 5523, + 5547, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -123025,19 +123357,19 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "teams_aggregate": [ - 5524, + 5548, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -123047,285 +123379,285 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate": { "aggregate": [ - 5581 + 5605 ], "nodes": [ - 5565 + 5589 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp": { "avg": [ - 5568 + 5592 ], "bool_and": [ - 5569 + 5593 ], "bool_or": [ - 5570 + 5594 ], "corr": [ - 5571 + 5595 ], "count": [ - 5573 + 5597 ], "covar_samp": [ - 5574 + 5598 ], "max": [ - 5576 + 5600 ], "min": [ - 5577 + 5601 ], "stddev_samp": [ - 5578 + 5602 ], "sum": [ - 5579 + 5603 ], "var_samp": [ - 5580 + 5604 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_avg": { "arguments": [ - 5600 + 5624 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 5601 + 5625 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 5602 + 5626 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_corr": { "arguments": [ - 5572 + 5596 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_corr_arguments": { "X": [ - 5603 + 5627 ], "Y": [ - 5603 + 5627 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 5599 + 5623 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_covar_samp": { "arguments": [ - 5575 + 5599 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5604 + 5628 ], "Y": [ - 5604 + 5628 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_max": { "arguments": [ - 5605 + 5629 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_min": { "arguments": [ - 5606 + 5630 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5607 + 5631 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_sum": { "arguments": [ - 5608 + 5632 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_bool_exp_var_samp": { "arguments": [ - 5609 + 5633 ], "distinct": [ 6 ], "filter": [ - 5586 + 5610 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_fields": { "avg": [ - 5584 + 5608 ], "count": [ 41, { "columns": [ - 5599, + 5623, "[tournaments_select_column!]" ], "distinct": [ @@ -123334,83 +123666,83 @@ export default { } ], "max": [ - 5590 + 5614 ], "min": [ - 5592 + 5616 ], "stddev": [ - 5611 + 5635 ], "stddev_pop": [ - 5613 + 5637 ], "stddev_samp": [ - 5615 + 5639 ], "sum": [ - 5619 + 5643 ], "var_pop": [ - 5623 + 5647 ], "var_samp": [ - 5625 + 5649 ], "variance": [ - 5627 + 5651 ], "__typename": [ - 84 + 85 ] }, "tournaments_aggregate_order_by": { "avg": [ - 5585 + 5609 ], "count": [ - 3534 + 3558 ], "max": [ - 5591 + 5615 ], "min": [ - 5593 + 5617 ], "stddev": [ - 5612 + 5636 ], "stddev_pop": [ - 5614 + 5638 ], "stddev_samp": [ - 5616 + 5640 ], "sum": [ - 5620 + 5644 ], "var_pop": [ - 5624 + 5648 ], "var_samp": [ - 5626 + 5650 ], "variance": [ - 5628 + 5652 ], "__typename": [ - 84 + 85 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 5589 + 5613 ], "on_conflict": [ - 5596 + 5620 ], "__typename": [ - 84 + 85 ] }, "tournaments_avg_fields": { @@ -123430,56 +123762,56 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_avg_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_bool_exp": { "_and": [ - 5586 + 5610 ], "_not": [ - 5586 + 5610 ], "_or": [ - 5586 + 5610 ], "admin": [ - 4496 + 4520 ], "auto_start": [ 7 ], "award_configs": [ - 5140 + 5164 ], "award_configs_aggregate": [ - 5133 + 5157 ], "awards": [ - 249 + 250 ], "awards_aggregate": [ - 242 + 243 ], "awards_enabled": [ 7 ], "banner": [ - 86 + 87 ], "can_cancel": [ 7 @@ -123506,19 +123838,19 @@ export default { 7 ], "categories": [ - 5226 + 5250 ], "categories_aggregate": [ - 5221 + 5245 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "discord_guild_id": [ - 86 + 87 ], "discord_notifications_enabled": [ 7 @@ -123560,25 +123892,25 @@ export default { 7 ], "discord_role_id": [ - 86 + 87 ], "discord_voice_enabled": [ 7 ], "discord_webhook": [ - 86 + 87 ], "e_tournament_status": [ - 1545 + 1546 ], "has_min_teams": [ 7 ], "homepage": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "is_league": [ 7 @@ -123590,22 +123922,22 @@ export default { 7 ], "latitude": [ - 2004 + 2005 ], "league_season_division": [ - 2533 + 2534 ], "location": [ - 86 + 87 ], "logo": [ - 86 + 87 ], "longitude": [ - 2004 + 2005 ], "match_options_id": [ - 6343 + 6367 ], "max_players_per_lineup": [ 42 @@ -123614,120 +123946,120 @@ export default { 42 ], "name": [ - 86 + 87 ], "options": [ - 3187 + 3211 ], "organizer_steam_id": [ - 311 + 312 ], "organizer_teams": [ - 5250 + 5274 ], "organizer_teams_aggregate": [ - 5245 + 5269 ], "organizers": [ - 5276 + 5300 ], "organizers_aggregate": [ - 5269 + 5293 ], "player_stats": [ - 7213 + 7237 ], "player_stats_aggregate": [ - 7196 + 7220 ], "prizes": [ - 5317 + 5341 ], "prizes_aggregate": [ - 5310 + 5334 ], "results": [ - 7162 + 7186 ], "results_aggregate": [ - 7145 + 7169 ], "rosters": [ - 5491 + 5515 ], "rosters_aggregate": [ - 5484 + 5508 ], "scheduling_mode": [ - 86 + 87 ], "stages": [ - 5402 + 5426 ], "stages_aggregate": [ - 5392 + 5416 ], "start": [ - 5130 + 5154 ], "status": [ - 1548 + 1549 ], "teams": [ - 5532 + 5556 ], "teams_aggregate": [ - 5525 + 5549 ], "__typename": [ - 84 + 85 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "latitude": [ - 2003 + 2004 ], "longitude": [ - 2003 + 2004 ], "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournaments_insert_input": { "admin": [ - 4503 + 4527 ], "auto_start": [ 6 ], "award_configs": [ - 5137 + 5161 ], "awards": [ - 246 + 247 ], "awards_enabled": [ 6 ], "banner": [ - 84 + 85 ], "categories": [ - 5225 + 5249 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_notifications_enabled": [ 6 @@ -123769,129 +124101,129 @@ export default { 6 ], "discord_role_id": [ - 84 + 85 ], "discord_voice_enabled": [ 6 ], "discord_webhook": [ - 84 + 85 ], "e_tournament_status": [ - 1553 + 1554 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_league": [ 6 ], "latitude": [ - 2003 + 2004 ], "league_season_division": [ - 2541 + 2542 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "options": [ - 3196 + 3220 ], "organizer_steam_id": [ - 309 + 310 ], "organizer_teams": [ - 5249 + 5273 ], "organizers": [ - 5273 + 5297 ], "player_stats": [ - 7210 + 7234 ], "prizes": [ - 5314 + 5338 ], "results": [ - 7159 + 7183 ], "rosters": [ - 5488 + 5512 ], "scheduling_mode": [ - 84 + 85 ], "stages": [ - 5399 + 5423 ], "start": [ - 5129 + 5153 ], "status": [ - 1547 + 1548 ], "teams": [ - 5529 + 5553 ], "__typename": [ - 84 + 85 ] }, "tournaments_max_fields": { "banner": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_role_id": [ - 84 + 85 ], "discord_webhook": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "latitude": [ - 2003 + 2004 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -123900,116 +124232,116 @@ export default { 41 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "scheduling_mode": [ - 84 + 85 ], "start": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournaments_max_order_by": { "banner": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "discord_guild_id": [ - 3534 + 3558 ], "discord_role_id": [ - 3534 + 3558 ], "discord_webhook": [ - 3534 + 3558 ], "homepage": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "latitude": [ - 3534 + 3558 ], "location": [ - 3534 + 3558 ], "logo": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "scheduling_mode": [ - 3534 + 3558 ], "start": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_min_fields": { "banner": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_role_id": [ - 84 + 85 ], "discord_webhook": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "latitude": [ - 2003 + 2004 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "max_players_per_lineup": [ 41 @@ -124018,75 +124350,75 @@ export default { 41 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "scheduling_mode": [ - 84 + 85 ], "start": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "tournaments_min_order_by": { "banner": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "discord_guild_id": [ - 3534 + 3558 ], "discord_role_id": [ - 3534 + 3558 ], "discord_webhook": [ - 3534 + 3558 ], "homepage": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "latitude": [ - 3534 + 3558 ], "location": [ - 3534 + 3558 ], "logo": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "scheduling_mode": [ - 3534 + 3558 ], "start": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_mutation_response": { @@ -124094,237 +124426,237 @@ export default { 41 ], "returning": [ - 5565 + 5589 ], "__typename": [ - 84 + 85 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 5589 + 5613 ], "on_conflict": [ - 5596 + 5620 ], "__typename": [ - 84 + 85 ] }, "tournaments_on_conflict": { "constraint": [ - 5587 + 5611 ], "update_columns": [ - 5621 + 5645 ], "where": [ - 5586 + 5610 ], "__typename": [ - 84 + 85 ] }, "tournaments_order_by": { "admin": [ - 4505 + 4529 ], "auto_start": [ - 3534 + 3558 ], "award_configs_aggregate": [ - 5136 + 5160 ], "awards_aggregate": [ - 245 + 246 ], "awards_enabled": [ - 3534 + 3558 ], "banner": [ - 3534 + 3558 ], "can_cancel": [ - 3534 + 3558 ], "can_close_registration": [ - 3534 + 3558 ], "can_join": [ - 3534 + 3558 ], "can_open_registration": [ - 3534 + 3558 ], "can_pause": [ - 3534 + 3558 ], "can_resume": [ - 3534 + 3558 ], "can_setup": [ - 3534 + 3558 ], "can_start": [ - 3534 + 3558 ], "categories_aggregate": [ - 5224 + 5248 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "discord_guild_id": [ - 3534 + 3558 ], "discord_notifications_enabled": [ - 3534 + 3558 ], "discord_notify_Canceled": [ - 3534 + 3558 ], "discord_notify_Finished": [ - 3534 + 3558 ], "discord_notify_Forfeit": [ - 3534 + 3558 ], "discord_notify_Live": [ - 3534 + 3558 ], "discord_notify_MapPaused": [ - 3534 + 3558 ], "discord_notify_PickingPlayers": [ - 3534 + 3558 ], "discord_notify_Scheduled": [ - 3534 + 3558 ], "discord_notify_Surrendered": [ - 3534 + 3558 ], "discord_notify_Tie": [ - 3534 + 3558 ], "discord_notify_Veto": [ - 3534 + 3558 ], "discord_notify_WaitingForCheckIn": [ - 3534 + 3558 ], "discord_notify_WaitingForServer": [ - 3534 + 3558 ], "discord_role_id": [ - 3534 + 3558 ], "discord_voice_enabled": [ - 3534 + 3558 ], "discord_webhook": [ - 3534 + 3558 ], "e_tournament_status": [ - 1555 + 1556 ], "has_min_teams": [ - 3534 + 3558 ], "homepage": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "is_league": [ - 3534 + 3558 ], "is_organizer": [ - 3534 + 3558 ], "joined_tournament": [ - 3534 + 3558 ], "latitude": [ - 3534 + 3558 ], "league_season_division": [ - 2543 + 2544 ], "location": [ - 3534 + 3558 ], "logo": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "match_options_id": [ - 3534 + 3558 ], "max_players_per_lineup": [ - 3534 + 3558 ], "min_players_per_lineup": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "options": [ - 3198 + 3222 ], "organizer_steam_id": [ - 3534 + 3558 ], "organizer_teams_aggregate": [ - 5248 + 5272 ], "organizers_aggregate": [ - 5272 + 5296 ], "player_stats_aggregate": [ - 7209 + 7233 ], "prizes_aggregate": [ - 5313 + 5337 ], "results_aggregate": [ - 7158 + 7182 ], "rosters_aggregate": [ - 5487 + 5511 ], "scheduling_mode": [ - 3534 + 3558 ], "stages_aggregate": [ - 5397 + 5421 ], "start": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "teams_aggregate": [ - 5528 + 5552 ], "__typename": [ - 84 + 85 ] }, "tournaments_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "tournaments_select_column": {}, @@ -124346,16 +124678,16 @@ export default { 6 ], "banner": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_notifications_enabled": [ 6 @@ -124397,55 +124729,55 @@ export default { 6 ], "discord_role_id": [ - 84 + 85 ], "discord_voice_enabled": [ 6 ], "discord_webhook": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_league": [ 6 ], "latitude": [ - 2003 + 2004 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "scheduling_mode": [ - 84 + 85 ], "start": [ - 5129 + 5153 ], "status": [ - 1547 + 1548 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_fields": { @@ -124465,21 +124797,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_pop_fields": { @@ -124499,21 +124831,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_pop_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_samp_fields": { @@ -124533,32 +124865,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_stddev_samp_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 5618 + 5642 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "tournaments_stream_cursor_value_input": { @@ -124569,16 +124901,16 @@ export default { 6 ], "banner": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "discord_guild_id": [ - 84 + 85 ], "discord_notifications_enabled": [ 6 @@ -124620,63 +124952,63 @@ export default { 6 ], "discord_role_id": [ - 84 + 85 ], "discord_voice_enabled": [ 6 ], "discord_webhook": [ - 84 + 85 ], "homepage": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "is_league": [ 6 ], "latitude": [ - 2003 + 2004 ], "location": [ - 84 + 85 ], "logo": [ - 84 + 85 ], "longitude": [ - 2003 + 2004 ], "match_options_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "organizer_steam_id": [ - 309 + 310 ], "scheduling_mode": [ - 84 + 85 ], "start": [ - 5129 + 5153 ], "status": [ - 1547 + 1548 ], "__typename": [ - 84 + 85 ] }, "tournaments_sum_fields": { "latitude": [ - 2003 + 2004 ], "longitude": [ - 2003 + 2004 ], "max_players_per_lineup": [ 41 @@ -124685,39 +125017,39 @@ export default { 41 ], "organizer_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "tournaments_sum_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 5588 + 5612 ], "_set": [ - 5610 + 5634 ], "where": [ - 5586 + 5610 ], "__typename": [ - 84 + 85 ] }, "tournaments_var_pop_fields": { @@ -124737,21 +125069,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_var_pop_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_var_samp_fields": { @@ -124771,21 +125103,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_var_samp_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "tournaments_variance_fields": { @@ -124805,94 +125137,94 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "tournaments_variance_order_by": { "latitude": [ - 3534 + 3558 ], "longitude": [ - 3534 + 3558 ], "organizer_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items": { "collection": [ - 5670 + 5694 ], "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_aggregate": { "aggregate": [ - 5633 + 5657 ], "nodes": [ - 5629 + 5653 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_aggregate_bool_exp": { "count": [ - 5632 + 5656 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_aggregate_bool_exp_count": { "arguments": [ - 5650 + 5674 ], "distinct": [ 6 ], "filter": [ - 5638 + 5662 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_aggregate_fields": { "avg": [ - 5636 + 5660 ], "count": [ 41, { "columns": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "distinct": [ @@ -124901,83 +125233,83 @@ export default { } ], "max": [ - 5642 + 5666 ], "min": [ - 5644 + 5668 ], "stddev": [ - 5652 + 5676 ], "stddev_pop": [ - 5654 + 5678 ], "stddev_samp": [ - 5656 + 5680 ], "sum": [ - 5660 + 5684 ], "var_pop": [ - 5664 + 5688 ], "var_samp": [ - 5666 + 5690 ], "variance": [ - 5668 + 5692 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_aggregate_order_by": { "avg": [ - 5637 + 5661 ], "count": [ - 3534 + 3558 ], "max": [ - 5643 + 5667 ], "min": [ - 5645 + 5669 ], "stddev": [ - 5653 + 5677 ], "stddev_pop": [ - 5655 + 5679 ], "stddev_samp": [ - 5657 + 5681 ], "sum": [ - 5661 + 5685 ], "var_pop": [ - 5665 + 5689 ], "var_samp": [ - 5667 + 5691 ], "variance": [ - 5669 + 5693 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_arr_rel_insert_input": { "data": [ - 5641 + 5665 ], "on_conflict": [ - 5647 + 5671 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_avg_fields": { @@ -124985,50 +125317,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_avg_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_bool_exp": { "_and": [ - 5638 + 5662 ], "_not": [ - 5638 + 5662 ], "_or": [ - 5638 + 5662 ], "collection": [ - 5674 + 5698 ], "collection_id": [ - 6343 + 6367 ], "created_at": [ - 5130 + 5154 ], "note": [ - 86 + 87 ], "position": [ 42 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_constraint": {}, @@ -125037,113 +125369,113 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_insert_input": { "collection": [ - 5681 + 5705 ], "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_max_fields": { "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_max_order_by": { "collection_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "position": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_min_fields": { "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_min_order_by": { "collection_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "position": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_mutation_response": { @@ -125151,82 +125483,82 @@ export default { 41 ], "returning": [ - 5629 + 5653 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_on_conflict": { "constraint": [ - 5639 + 5663 ], "update_columns": [ - 5662 + 5686 ], "where": [ - 5638 + 5662 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_order_by": { "collection": [ - 5683 + 5707 ], "collection_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "position": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_pk_columns_input": { "collection_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_select_column": {}, "utility_collection_items_set_input": { "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_fields": { @@ -125234,15 +125566,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_pop_fields": { @@ -125250,15 +125582,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_pop_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_samp_fields": { @@ -125266,46 +125598,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stddev_samp_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stream_cursor_input": { "initial_value": [ - 5659 + 5683 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_stream_cursor_value_input": { "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "note": [ - 84 + 85 ], "position": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_sum_fields": { @@ -125313,30 +125645,30 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_sum_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_update_column": {}, "utility_collection_items_updates": { "_inc": [ - 5640 + 5664 ], "_set": [ - 5651 + 5675 ], "where": [ - 5638 + 5662 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_var_pop_fields": { @@ -125344,15 +125676,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_var_pop_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_var_samp_fields": { @@ -125360,15 +125692,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_var_samp_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_variance_fields": { @@ -125376,15 +125708,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collection_items_variance_order_by": { "position": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collections": { @@ -125395,19 +125727,19 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "items": [ - 5629, + 5653, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -125417,19 +125749,19 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "items_aggregate": [ - 5630, + 5654, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -125439,62 +125771,62 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner": [ - 4492 + 4516 ], "owner_steam_id": [ - 309 + 310 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_collections_aggregate": { "aggregate": [ - 5672 + 5696 ], "nodes": [ - 5670 + 5694 ], "__typename": [ - 84 + 85 ] }, "utility_collections_aggregate_fields": { "avg": [ - 5673 + 5697 ], "count": [ 41, { "columns": [ - 5685, + 5709, "[utility_collections_select_column!]" ], "distinct": [ @@ -125503,34 +125835,34 @@ export default { } ], "max": [ - 5678 + 5702 ], "min": [ - 5679 + 5703 ], "stddev": [ - 5687 + 5711 ], "stddev_pop": [ - 5688 + 5712 ], "stddev_samp": [ - 5689 + 5713 ], "sum": [ - 5692 + 5716 ], "var_pop": [ - 5695 + 5719 ], "var_samp": [ - 5696 + 5720 ], "variance": [ - 5697 + 5721 ], "__typename": [ - 84 + 85 ] }, "utility_collections_avg_fields": { @@ -125538,18 +125870,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_bool_exp": { "_and": [ - 5674 + 5698 ], "_not": [ - 5674 + 5698 ], "_or": [ - 5674 + 5698 ], "can_edit": [ 7 @@ -125558,154 +125890,154 @@ export default { 7 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "items": [ - 5638 + 5662 ], "items_aggregate": [ - 5631 + 5655 ], "map_name": [ - 86 + 87 ], "name": [ - 86 + 87 ], "owner": [ - 4496 + 4520 ], "owner_steam_id": [ - 311 + 312 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "visibility": [ - 1690 + 1691 ], "__typename": [ - 84 + 85 ] }, "utility_collections_constraint": {}, "utility_collections_inc_input": { "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_collections_insert_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "items": [ - 5635 + 5659 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner": [ - 4503 + 4527 ], "owner_steam_id": [ - 309 + 310 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_collections_max_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_collections_min_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_collections_mutation_response": { @@ -125713,123 +126045,123 @@ export default { 41 ], "returning": [ - 5670 + 5694 ], "__typename": [ - 84 + 85 ] }, "utility_collections_obj_rel_insert_input": { "data": [ - 5677 + 5701 ], "on_conflict": [ - 5682 + 5706 ], "__typename": [ - 84 + 85 ] }, "utility_collections_on_conflict": { "constraint": [ - 5675 + 5699 ], "update_columns": [ - 5693 + 5717 ], "where": [ - 5674 + 5698 ], "__typename": [ - 84 + 85 ] }, "utility_collections_order_by": { "can_edit": [ - 3534 + 3558 ], "can_view": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "items_aggregate": [ - 5634 + 5658 ], "map_name": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner": [ - 4505 + 4529 ], "owner_steam_id": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "visibility": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_collections_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_collections_select_column": {}, "utility_collections_set_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_collections_stddev_fields": { @@ -125837,7 +126169,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_stddev_pop_fields": { @@ -125845,7 +126177,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_stddev_samp_fields": { @@ -125853,73 +126185,73 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_stream_cursor_input": { "initial_value": [ - 5691 + 5715 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_collections_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_collections_sum_fields": { "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_collections_update_column": {}, "utility_collections_updates": { "_inc": [ - 5676 + 5700 ], "_set": [ - 5686 + 5710 ], "where": [ - 5674 + 5698 ], "__typename": [ - 84 + 85 ] }, "utility_collections_var_pop_fields": { @@ -125927,7 +126259,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_var_samp_fields": { @@ -125935,7 +126267,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_collections_variance_fields": { @@ -125943,18 +126275,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -125963,29 +126295,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_aggregate": { "aggregate": [ - 5700 + 5724 ], "nodes": [ - 5698 + 5722 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_aggregate_fields": { "avg": [ - 5701 + 5725 ], "count": [ 41, { "columns": [ - 5712, + 5736, "[utility_demo_mines_select_column!]" ], "distinct": [ @@ -125994,34 +126326,34 @@ export default { } ], "max": [ - 5706 + 5730 ], "min": [ - 5707 + 5731 ], "stddev": [ - 5714 + 5738 ], "stddev_pop": [ - 5715 + 5739 ], "stddev_samp": [ - 5716 + 5740 ], "sum": [ - 5719 + 5743 ], "var_pop": [ - 5722 + 5746 ], "var_samp": [ - 5723 + 5747 ], "variance": [ - 5724 + 5748 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_avg_fields": { @@ -126032,27 +126364,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_bool_exp": { "_and": [ - 5702 + 5726 ], "_not": [ - 5702 + 5726 ], "_or": [ - 5702 + 5726 ], "failed_reason": [ - 86 + 87 ], "match_map_demo_id": [ - 6343 + 6367 ], "mined_at": [ - 5130 + 5154 ], "throws": [ 42 @@ -126061,7 +126393,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_constraint": {}, @@ -126073,18 +126405,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_insert_input": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -126093,18 +126425,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_max_fields": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -126113,18 +126445,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_min_fields": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -126133,7 +126465,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_mutation_response": { @@ -126141,64 +126473,64 @@ export default { 41 ], "returning": [ - 5698 + 5722 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_on_conflict": { "constraint": [ - 5703 + 5727 ], "update_columns": [ - 5720 + 5744 ], "where": [ - 5702 + 5726 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_order_by": { "failed_reason": [ - 3534 + 3558 ], "match_map_demo_id": [ - 3534 + 3558 ], "mined_at": [ - 3534 + 3558 ], "throws": [ - 3534 + 3558 ], "version": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_pk_columns_input": { "match_map_demo_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_select_column": {}, "utility_demo_mines_set_input": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -126207,7 +126539,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_stddev_fields": { @@ -126218,7 +126550,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_stddev_pop_fields": { @@ -126229,7 +126561,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_stddev_samp_fields": { @@ -126240,29 +126572,29 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_stream_cursor_input": { "initial_value": [ - 5718 + 5742 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_stream_cursor_value_input": { "failed_reason": [ - 84 + 85 ], "match_map_demo_id": [ - 6341 + 6365 ], "mined_at": [ - 5129 + 5153 ], "throws": [ 41 @@ -126271,7 +126603,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_sum_fields": { @@ -126282,22 +126614,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_update_column": {}, "utility_demo_mines_updates": { "_inc": [ - 5704 + 5728 ], "_set": [ - 5713 + 5737 ], "where": [ - 5702 + 5726 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_var_pop_fields": { @@ -126308,7 +126640,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_var_samp_fields": { @@ -126319,7 +126651,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_mines_variance_fields": { @@ -126330,12 +126662,12 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -126344,98 +126676,98 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_aggregate": { "aggregate": [ - 5727 + 5751 ], "nodes": [ - 5725 + 5749 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_aggregate_fields": { "avg": [ - 5728 + 5752 ], "count": [ 41, { "columns": [ - 5739, + 5763, "[utility_demo_throws_select_column!]" ], "distinct": [ @@ -126444,34 +126776,34 @@ export default { } ], "max": [ - 5733 + 5757 ], "min": [ - 5734 + 5758 ], "stddev": [ - 5741 + 5765 ], "stddev_pop": [ - 5742 + 5766 ], "stddev_samp": [ - 5743 + 5767 ], "sum": [ - 5746 + 5770 ], "var_pop": [ - 5749 + 5773 ], "var_samp": [ - 5750 + 5774 ], "variance": [ - 5751 + 5775 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_avg_fields": { @@ -126515,21 +126847,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_bool_exp": { "_and": [ - 5729 + 5753 ], "_not": [ - 5729 + 5753 ], "_or": [ - 5729 + 5753 ], "created_at": [ - 5130 + 5154 ], "flight_time_ms": [ 42 @@ -126538,76 +126870,76 @@ export default { 42 ], "land_x": [ - 2004 + 2005 ], "land_y": [ - 2004 + 2005 ], "land_z": [ - 2004 + 2005 ], "lineup_bucket": [ - 86 + 87 ], "map_name": [ - 86 + 87 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_demo_id": [ - 6343 + 6367 ], "match_map_id": [ - 6343 + 6367 ], "origin_x": [ - 2004 + 2005 ], "origin_y": [ - 2004 + 2005 ], "origin_z": [ - 2004 + 2005 ], "round": [ 42 ], "side": [ - 1405 + 1406 ], "technique": [ - 1630 + 1631 ], "throw_strength": [ - 1650 + 1651 ], "thrower_steam_id": [ - 311 + 312 ], "thrown_at": [ - 5130 + 5154 ], "tick": [ 42 ], "utility_type": [ - 1670 + 1671 ], "view_pitch": [ - 2004 + 2005 ], "view_yaw": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_constraint": {}, @@ -126619,45 +126951,45 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "thrower_steam_id": [ - 309 + 310 ], "tick": [ 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_insert_input": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -126666,78 +126998,78 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "map_name": [ - 84 + 85 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_max_fields": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -126746,63 +127078,63 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_min_fields": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -126811,58 +127143,58 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_mutation_response": { @@ -126870,107 +127202,107 @@ export default { 41 ], "returning": [ - 5725 + 5749 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_on_conflict": { "constraint": [ - 5730 + 5754 ], "update_columns": [ - 5747 + 5771 ], "where": [ - 5729 + 5753 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_order_by": { "created_at": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "grenade_id": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "lineup_bucket": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_demo_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "technique": [ - 3534 + 3558 ], "throw_strength": [ - 3534 + 3558 ], "thrower_steam_id": [ - 3534 + 3558 ], "thrown_at": [ - 3534 + 3558 ], "tick": [ - 3534 + 3558 ], "utility_type": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_pk_columns_input": { @@ -126978,16 +127310,16 @@ export default { 41 ], "match_map_demo_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_select_column": {}, "utility_demo_throws_set_input": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -126996,67 +127328,67 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_stddev_fields": { @@ -127100,7 +127432,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_stddev_pop_fields": { @@ -127144,7 +127476,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_stddev_samp_fields": { @@ -127188,23 +127520,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_stream_cursor_input": { "initial_value": [ - 5745 + 5769 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "flight_time_ms": [ 41 @@ -127213,70 +127545,70 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "thrower_steam_id": [ - 309 + 310 ], "thrown_at": [ - 5129 + 5153 ], "tick": [ 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_sum_fields": { @@ -127287,55 +127619,55 @@ export default { 41 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "round": [ 41 ], "thrower_steam_id": [ - 309 + 310 ], "tick": [ 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_update_column": {}, "utility_demo_throws_updates": { "_inc": [ - 5731 + 5755 ], "_set": [ - 5740 + 5764 ], "where": [ - 5729 + 5753 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_var_pop_fields": { @@ -127379,7 +127711,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_var_samp_fields": { @@ -127423,7 +127755,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_demo_throws_variance_fields": { @@ -127467,274 +127799,274 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "scan": [ - 5811 + 5835 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate": { "aggregate": [ - 5766 + 5790 ], "nodes": [ - 5752 + 5776 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp": { "avg": [ - 5755 + 5779 ], "corr": [ - 5756 + 5780 ], "count": [ - 5758 + 5782 ], "covar_samp": [ - 5759 + 5783 ], "max": [ - 5761 + 5785 ], "min": [ - 5762 + 5786 ], "stddev_samp": [ - 5763 + 5787 ], "sum": [ - 5764 + 5788 ], "var_samp": [ - 5765 + 5789 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_avg": { "arguments": [ - 5784 + 5808 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_corr": { "arguments": [ - 5757 + 5781 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5785 + 5809 ], "Y": [ - 5785 + 5809 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_count": { "arguments": [ - 5783 + 5807 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5760 + 5784 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5786 + 5810 ], "Y": [ - 5786 + 5810 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_max": { "arguments": [ - 5787 + 5811 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_min": { "arguments": [ - 5788 + 5812 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5789 + 5813 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_sum": { "arguments": [ - 5790 + 5814 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5791 + 5815 ], "distinct": [ 6 ], "filter": [ - 5771 + 5795 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_fields": { "avg": [ - 5769 + 5793 ], "count": [ 41, { "columns": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "distinct": [ @@ -127743,83 +128075,83 @@ export default { } ], "max": [ - 5775 + 5799 ], "min": [ - 5777 + 5801 ], "stddev": [ - 5793 + 5817 ], "stddev_pop": [ - 5795 + 5819 ], "stddev_samp": [ - 5797 + 5821 ], "sum": [ - 5801 + 5825 ], "var_pop": [ - 5805 + 5829 ], "var_samp": [ - 5807 + 5831 ], "variance": [ - 5809 + 5833 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_aggregate_order_by": { "avg": [ - 5770 + 5794 ], "count": [ - 3534 + 3558 ], "max": [ - 5776 + 5800 ], "min": [ - 5778 + 5802 ], "stddev": [ - 5794 + 5818 ], "stddev_pop": [ - 5796 + 5820 ], "stddev_samp": [ - 5798 + 5822 ], "sum": [ - 5802 + 5826 ], "var_pop": [ - 5806 + 5830 ], "var_samp": [ - 5808 + 5832 ], "variance": [ - 5810 + 5834 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_arr_rel_insert_input": { "data": [ - 5774 + 5798 ], "on_conflict": [ - 5780 + 5804 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_avg_fields": { @@ -127833,249 +128165,249 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_avg_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_bool_exp": { "_and": [ - 5771 + 5795 ], "_not": [ - 5771 + 5795 ], "_or": [ - 5771 + 5795 ], "created_at": [ - 5130 + 5154 ], "distance": [ - 2004 + 2005 ], "distance_xy": [ - 2004 + 2005 ], "distance_z": [ - 2004 + 2005 ], "reason": [ - 86 + 87 ], "scan": [ - 5815 + 5839 ], "severity": [ - 86 + 87 ], "utility_drift_scan_id": [ - 6343 + 6367 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "verdict": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_constraint": {}, "utility_drift_results_inc_input": { "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_insert_input": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "scan": [ - 5822 + 5846 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_max_fields": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_max_order_by": { "created_at": [ - 3534 + 3558 ], "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "severity": [ - 3534 + 3558 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "verdict": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_min_fields": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_min_order_by": { "created_at": [ - 3534 + 3558 ], "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "severity": [ - 3534 + 3558 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "verdict": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_mutation_response": { @@ -128083,73 +128415,73 @@ export default { 41 ], "returning": [ - 5752 + 5776 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_on_conflict": { "constraint": [ - 5772 + 5796 ], "update_columns": [ - 5803 + 5827 ], "where": [ - 5771 + 5795 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_order_by": { "created_at": [ - 3534 + 3558 ], "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "reason": [ - 3534 + 3558 ], "scan": [ - 5824 + 5848 ], "severity": [ - 3534 + 3558 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "verdict": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_pk_columns_input": { "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_select_column": {}, @@ -128163,34 +128495,34 @@ export default { "utility_drift_results_select_column_utility_drift_results_aggregate_bool_exp_var_samp_arguments_columns": {}, "utility_drift_results_set_input": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_fields": { @@ -128204,21 +128536,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_pop_fields": { @@ -128232,21 +128564,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_pop_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_samp_fields": { @@ -128260,107 +128592,107 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stddev_samp_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stream_cursor_input": { "initial_value": [ - 5800 + 5824 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "reason": [ - 84 + 85 ], "severity": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "verdict": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_sum_fields": { "distance": [ - 2003 + 2004 ], "distance_xy": [ - 2003 + 2004 ], "distance_z": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_sum_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_update_column": {}, "utility_drift_results_updates": { "_inc": [ - 5773 + 5797 ], "_set": [ - 5792 + 5816 ], "where": [ - 5771 + 5795 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_var_pop_fields": { @@ -128374,21 +128706,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_var_pop_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_var_samp_fields": { @@ -128402,21 +128734,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_var_samp_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_variance_fields": { @@ -128430,21 +128762,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_results_variance_order_by": { "distance": [ - 3534 + 3558 ], "distance_xy": [ - 3534 + 3558 ], "distance_z": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans": { @@ -128452,43 +128784,43 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by": [ - 4492 + 4516 ], "requested_by_steam_id": [ - 309 + 310 ], "results": [ - 5752, + 5776, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -128498,19 +128830,19 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], "results_aggregate": [ - 5753, + 5777, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -128520,11 +128852,11 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], @@ -128532,13 +128864,13 @@ export default { 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -128547,32 +128879,32 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_aggregate": { "aggregate": [ - 5813 + 5837 ], "nodes": [ - 5811 + 5835 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_aggregate_fields": { "avg": [ - 5814 + 5838 ], "count": [ 41, { "columns": [ - 5826, + 5850, "[utility_drift_scans_select_column!]" ], "distinct": [ @@ -128581,34 +128913,34 @@ export default { } ], "max": [ - 5819 + 5843 ], "min": [ - 5820 + 5844 ], "stddev": [ - 5828 + 5852 ], "stddev_pop": [ - 5829 + 5853 ], "stddev_samp": [ - 5830 + 5854 ], "sum": [ - 5833 + 5857 ], "var_pop": [ - 5836 + 5860 ], "var_samp": [ - 5837 + 5861 ], "variance": [ - 5838 + 5862 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_avg_fields": { @@ -128637,72 +128969,72 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_bool_exp": { "_and": [ - 5815 + 5839 ], "_not": [ - 5815 + 5839 ], "_or": [ - 5815 + 5839 ], "broken": [ 42 ], "created_at": [ - 5130 + 5154 ], "failure_reason": [ - 86 + 87 ], "finished_at": [ - 5130 + 5154 ], "from_revision": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "lineups": [ 42 ], "map_name": [ - 86 + 87 ], "max_distance": [ - 2004 + 2005 ], "moved": [ 42 ], "requested_by": [ - 4496 + 4520 ], "requested_by_steam_id": [ - 311 + 312 ], "results": [ - 5771 + 5795 ], "results_aggregate": [ - 5754 + 5778 ], "scanned": [ 42 ], "started_at": [ - 5130 + 5154 ], "status": [ - 86 + 87 ], "to_revision": [ - 86 + 87 ], "unchanged": [ 42 @@ -128711,10 +129043,10 @@ export default { 42 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_constraint": {}, @@ -128726,13 +129058,13 @@ export default { 41 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 @@ -128744,7 +129076,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_insert_input": { @@ -128752,52 +129084,52 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by": [ - 4503 + 4527 ], "requested_by_steam_id": [ - 309 + 310 ], "results": [ - 5768 + 5792 ], "scanned": [ 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -128806,10 +129138,10 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_max_fields": { @@ -128817,46 +129149,46 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -128865,10 +129197,10 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_min_fields": { @@ -128876,46 +129208,46 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -128924,10 +129256,10 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_mutation_response": { @@ -128935,108 +129267,108 @@ export default { 41 ], "returning": [ - 5811 + 5835 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_obj_rel_insert_input": { "data": [ - 5818 + 5842 ], "on_conflict": [ - 5823 + 5847 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_on_conflict": { "constraint": [ - 5816 + 5840 ], "update_columns": [ - 5834 + 5858 ], "where": [ - 5815 + 5839 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_order_by": { "broken": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "failure_reason": [ - 3534 + 3558 ], "finished_at": [ - 3534 + 3558 ], "from_revision": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineups": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "max_distance": [ - 3534 + 3558 ], "moved": [ - 3534 + 3558 ], "requested_by": [ - 4505 + 4529 ], "requested_by_steam_id": [ - 3534 + 3558 ], "results_aggregate": [ - 5767 + 5791 ], "scanned": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "to_revision": [ - 3534 + 3558 ], "unchanged": [ - 3534 + 3558 ], "unsimulatable": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_select_column": {}, @@ -129045,46 +129377,46 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -129093,10 +129425,10 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_stddev_fields": { @@ -129125,7 +129457,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_stddev_pop_fields": { @@ -129154,7 +129486,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_stddev_samp_fields": { @@ -129183,18 +129515,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_stream_cursor_input": { "initial_value": [ - 5832 + 5856 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_stream_cursor_value_input": { @@ -129202,46 +129534,46 @@ export default { 41 ], "created_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "finished_at": [ - 5129 + 5153 ], "from_revision": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 ], "started_at": [ - 5129 + 5153 ], "status": [ - 84 + 85 ], "to_revision": [ - 84 + 85 ], "unchanged": [ 41 @@ -129250,10 +129582,10 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_sum_fields": { @@ -129264,13 +129596,13 @@ export default { 41 ], "max_distance": [ - 2003 + 2004 ], "moved": [ 41 ], "requested_by_steam_id": [ - 309 + 310 ], "scanned": [ 41 @@ -129282,22 +129614,22 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_update_column": {}, "utility_drift_scans_updates": { "_inc": [ - 5817 + 5841 ], "_set": [ - 5827 + 5851 ], "where": [ - 5815 + 5839 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_var_pop_fields": { @@ -129326,7 +129658,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_var_samp_fields": { @@ -129355,7 +129687,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_drift_scans_variance_fields": { @@ -129384,74 +129716,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites": { "created_at": [ - 5129 + 5153 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_aggregate": { "aggregate": [ - 5843 + 5867 ], "nodes": [ - 5839 + 5863 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_aggregate_bool_exp": { "count": [ - 5842 + 5866 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_aggregate_bool_exp_count": { "arguments": [ - 5860 + 5884 ], "distinct": [ 6 ], "filter": [ - 5848 + 5872 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_aggregate_fields": { "avg": [ - 5846 + 5870 ], "count": [ 41, { "columns": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "distinct": [ @@ -129460,83 +129792,83 @@ export default { } ], "max": [ - 5852 + 5876 ], "min": [ - 5854 + 5878 ], "stddev": [ - 5862 + 5886 ], "stddev_pop": [ - 5864 + 5888 ], "stddev_samp": [ - 5866 + 5890 ], "sum": [ - 5870 + 5894 ], "var_pop": [ - 5874 + 5898 ], "var_samp": [ - 5876 + 5900 ], "variance": [ - 5878 + 5902 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_aggregate_order_by": { "avg": [ - 5847 + 5871 ], "count": [ - 3534 + 3558 ], "max": [ - 5853 + 5877 ], "min": [ - 5855 + 5879 ], "stddev": [ - 5863 + 5887 ], "stddev_pop": [ - 5865 + 5889 ], "stddev_samp": [ - 5867 + 5891 ], "sum": [ - 5871 + 5895 ], "var_pop": [ - 5875 + 5899 ], "var_samp": [ - 5877 + 5901 ], "variance": [ - 5879 + 5903 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_arr_rel_insert_input": { "data": [ - 5851 + 5875 ], "on_conflict": [ - 5857 + 5881 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_avg_fields": { @@ -129544,129 +129876,129 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_bool_exp": { "_and": [ - 5848 + 5872 ], "_not": [ - 5848 + 5872 ], "_or": [ - 5848 + 5872 ], "created_at": [ - 5130 + 5154 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_constraint": {}, "utility_lineup_favorites_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_insert_input": { "created_at": [ - 5129 + 5153 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_max_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_max_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_min_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_min_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_mutation_response": { @@ -129674,70 +130006,70 @@ export default { 41 ], "returning": [ - 5839 + 5863 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_on_conflict": { "constraint": [ - 5849 + 5873 ], "update_columns": [ - 5872 + 5896 ], "where": [ - 5848 + 5872 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_order_by": { "created_at": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_pk_columns_input": { "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_select_column": {}, "utility_lineup_favorites_set_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_fields": { @@ -129745,15 +130077,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_pop_fields": { @@ -129761,15 +130093,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_samp_fields": { @@ -129777,71 +130109,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stream_cursor_input": { "initial_value": [ - 5869 + 5893 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_update_column": {}, "utility_lineup_favorites_updates": { "_inc": [ - 5850 + 5874 ], "_set": [ - 5861 + 5885 ], "where": [ - 5848 + 5872 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_var_pop_fields": { @@ -129849,15 +130181,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_var_samp_fields": { @@ -129865,15 +130197,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_variance_fields": { @@ -129881,15 +130213,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_favorites_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress": { @@ -129903,269 +130235,269 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate": { "aggregate": [ - 5894 + 5918 ], "nodes": [ - 5880 + 5904 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp": { "avg": [ - 5883 + 5907 ], "corr": [ - 5884 + 5908 ], "count": [ - 5886 + 5910 ], "covar_samp": [ - 5887 + 5911 ], "max": [ - 5889 + 5913 ], "min": [ - 5890 + 5914 ], "stddev_samp": [ - 5891 + 5915 ], "sum": [ - 5892 + 5916 ], "var_samp": [ - 5893 + 5917 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_avg": { "arguments": [ - 5912 + 5936 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_corr": { "arguments": [ - 5885 + 5909 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_corr_arguments": { "X": [ - 5913 + 5937 ], "Y": [ - 5913 + 5937 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_count": { "arguments": [ - 5911 + 5935 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_covar_samp": { "arguments": [ - 5888 + 5912 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5914 + 5938 ], "Y": [ - 5914 + 5938 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_max": { "arguments": [ - 5915 + 5939 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_min": { "arguments": [ - 5916 + 5940 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5917 + 5941 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_sum": { "arguments": [ - 5918 + 5942 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_bool_exp_var_samp": { "arguments": [ - 5919 + 5943 ], "distinct": [ 6 ], "filter": [ - 5899 + 5923 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_fields": { "avg": [ - 5897 + 5921 ], "count": [ 41, { "columns": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "distinct": [ @@ -130174,83 +130506,83 @@ export default { } ], "max": [ - 5903 + 5927 ], "min": [ - 5905 + 5929 ], "stddev": [ - 5921 + 5945 ], "stddev_pop": [ - 5923 + 5947 ], "stddev_samp": [ - 5925 + 5949 ], "sum": [ - 5929 + 5953 ], "var_pop": [ - 5933 + 5957 ], "var_samp": [ - 5935 + 5959 ], "variance": [ - 5937 + 5961 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_aggregate_order_by": { "avg": [ - 5898 + 5922 ], "count": [ - 3534 + 3558 ], "max": [ - 5904 + 5928 ], "min": [ - 5906 + 5930 ], "stddev": [ - 5922 + 5946 ], "stddev_pop": [ - 5924 + 5948 ], "stddev_samp": [ - 5926 + 5950 ], "sum": [ - 5930 + 5954 ], "var_pop": [ - 5934 + 5958 ], "var_samp": [ - 5936 + 5960 ], "variance": [ - 5938 + 5962 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_arr_rel_insert_input": { "data": [ - 5902 + 5926 ], "on_conflict": [ - 5908 + 5932 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_avg_fields": { @@ -130282,50 +130614,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_avg_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_bool_exp": { "_and": [ - 5899 + 5923 ], "_not": [ - 5899 + 5923 ], "_or": [ - 5899 + 5923 ], "attempts": [ 42 @@ -130337,40 +130669,40 @@ export default { 42 ], "last_practiced_at": [ - 5130 + 5154 ], "mastered_at": [ - 5130 + 5154 ], "miss_along_sum": [ - 2004 + 2005 ], "miss_lateral_sum": [ - 2004 + 2005 ], "miss_samples": [ 42 ], "miss_vertical_sum": [ - 2004 + 2005 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "successes": [ 42 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_constraint": {}, @@ -130385,25 +130717,25 @@ export default { 41 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_insert_input": { @@ -130417,40 +130749,40 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_max_fields": { @@ -130464,75 +130796,75 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_max_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "last_practiced_at": [ - 3534 + 3558 ], "mastered_at": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_min_fields": { @@ -130546,75 +130878,75 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_min_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "last_practiced_at": [ - 3534 + 3558 ], "mastered_at": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_mutation_response": { @@ -130622,82 +130954,82 @@ export default { 41 ], "returning": [ - 5880 + 5904 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_on_conflict": { "constraint": [ - 5900 + 5924 ], "update_columns": [ - 5931 + 5955 ], "where": [ - 5899 + 5923 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "last_practiced_at": [ - 3534 + 3558 ], "mastered_at": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_pk_columns_input": { "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_select_column": {}, @@ -130720,34 +131052,34 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_fields": { @@ -130779,39 +131111,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_pop_fields": { @@ -130843,39 +131175,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_pop_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_samp_fields": { @@ -130907,50 +131239,50 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stddev_samp_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stream_cursor_input": { "initial_value": [ - 5928 + 5952 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_stream_cursor_value_input": { @@ -130964,34 +131296,34 @@ export default { 41 ], "last_practiced_at": [ - 5129 + 5153 ], "mastered_at": [ - 5129 + 5153 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_sum_fields": { @@ -131005,72 +131337,72 @@ export default { 41 ], "miss_along_sum": [ - 2003 + 2004 ], "miss_lateral_sum": [ - 2003 + 2004 ], "miss_samples": [ 41 ], "miss_vertical_sum": [ - 2003 + 2004 ], "steam_id": [ - 309 + 310 ], "successes": [ 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_sum_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_update_column": {}, "utility_lineup_progress_updates": { "_inc": [ - 5901 + 5925 ], "_set": [ - 5920 + 5944 ], "where": [ - 5899 + 5923 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_var_pop_fields": { @@ -131102,39 +131434,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_var_pop_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_var_samp_fields": { @@ -131166,39 +131498,39 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_var_samp_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_variance_fields": { @@ -131230,210 +131562,210 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_progress_variance_order_by": { "attempts": [ - 3534 + 3558 ], "best_streak": [ - 3534 + 3558 ], "current_streak": [ - 3534 + 3558 ], "miss_along_sum": [ - 3534 + 3558 ], "miss_lateral_sum": [ - 3534 + 3558 ], "miss_samples": [ - 3534 + 3558 ], "miss_vertical_sum": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "successes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2224 + 2225 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "lineup": [ - 6089 + 6113 ], "map_name": [ - 84 + 85 ], "paused": [ 6 ], "practice_session": [ - 6295 + 6319 ], "progress": [ - 3532 + 3556 ], "requested_by": [ - 4492 + 4516 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "status": [ - 84 + 85 ], "status_history": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate": { "aggregate": [ - 5945 + 5969 ], "nodes": [ - 5939 + 5963 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_bool_exp": { "bool_and": [ - 5942 + 5966 ], "bool_or": [ - 5943 + 5967 ], "count": [ - 5944 + 5968 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_bool_exp_bool_and": { "arguments": [ - 5968 + 5992 ], "distinct": [ 6 ], "filter": [ - 5951 + 5975 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_bool_exp_bool_or": { "arguments": [ - 5969 + 5993 ], "distinct": [ 6 ], "filter": [ - 5951 + 5975 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_bool_exp_count": { "arguments": [ - 5967 + 5991 ], "distinct": [ 6 ], "filter": [ - 5951 + 5975 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_fields": { "avg": [ - 5949 + 5973 ], "count": [ 41, { "columns": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "distinct": [ @@ -131442,94 +131774,94 @@ export default { } ], "max": [ - 5958 + 5982 ], "min": [ - 5960 + 5984 ], "stddev": [ - 5971 + 5995 ], "stddev_pop": [ - 5973 + 5997 ], "stddev_samp": [ - 5975 + 5999 ], "sum": [ - 5979 + 6003 ], "var_pop": [ - 5983 + 6007 ], "var_samp": [ - 5985 + 6009 ], "variance": [ - 5987 + 6011 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_aggregate_order_by": { "avg": [ - 5950 + 5974 ], "count": [ - 3534 + 3558 ], "max": [ - 5959 + 5983 ], "min": [ - 5961 + 5985 ], "stddev": [ - 5972 + 5996 ], "stddev_pop": [ - 5974 + 5998 ], "stddev_samp": [ - 5976 + 6000 ], "sum": [ - 5980 + 6004 ], "var_pop": [ - 5984 + 6008 ], "var_samp": [ - 5986 + 6010 ], "variance": [ - 5988 + 6012 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_append_input": { "spec": [ - 2348 + 2349 ], "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_arr_rel_insert_input": { "data": [ - 5957 + 5981 ], "on_conflict": [ - 5963 + 5987 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_avg_fields": { @@ -131546,119 +131878,119 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_avg_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_bool_exp": { "_and": [ - 5951 + 5975 ], "_not": [ - 5951 + 5975 ], "_or": [ - 5951 + 5975 ], "created_at": [ - 5130 + 5154 ], "duration_ms": [ 42 ], "error_message": [ - 86 + 87 ], "game_server_node": [ - 2236 + 2237 ], "game_server_node_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "k8s_job_name": [ - 86 + 87 ], "last_status_at": [ - 5130 + 5154 ], "lineup": [ - 6111 + 6135 ], "map_name": [ - 86 + 87 ], "paused": [ 7 ], "practice_session": [ - 6306 + 6330 ], "progress": [ - 3533 + 3557 ], "requested_by": [ - 4496 + 4520 ], "requested_by_steam_id": [ - 311 + 312 ], "session_token": [ - 86 + 87 ], "skip_reason": [ - 86 + 87 ], "sort_index": [ 42 ], "spec": [ - 2350 + 2351 ], "status": [ - 86 + 87 ], "status_history": [ - 2350 + 2351 ], "utility_lineup_id": [ - 6343 + 6367 ], "utility_practice_session_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_constraint": {}, "utility_lineup_renders_delete_at_path_input": { "spec": [ - 84 + 85 ], "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_delete_elem_input": { @@ -131669,18 +132001,18 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_delete_key_input": { "spec": [ - 84 + 85 ], "status_history": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_inc_input": { @@ -131688,302 +132020,302 @@ export default { 41 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "sort_index": [ 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_insert_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node": [ - 2248 + 2249 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "lineup": [ - 6123 + 6147 ], "map_name": [ - 84 + 85 ], "paused": [ 6 ], "practice_session": [ - 6315 + 6339 ], "progress": [ - 3532 + 3556 ], "requested_by": [ - 4503 + 4527 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_max_fields": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "status": [ - 84 + 85 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_max_order_by": { "created_at": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "skip_reason": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_min_fields": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "status": [ - 84 + 85 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_min_order_by": { "created_at": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "skip_reason": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_mutation_response": { @@ -131991,117 +132323,117 @@ export default { 41 ], "returning": [ - 5939 + 5963 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_on_conflict": { "constraint": [ - 5952 + 5976 ], "update_columns": [ - 5981 + 6005 ], "where": [ - 5951 + 5975 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_order_by": { "created_at": [ - 3534 + 3558 ], "duration_ms": [ - 3534 + 3558 ], "error_message": [ - 3534 + 3558 ], "game_server_node": [ - 2250 + 2251 ], "game_server_node_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "k8s_job_name": [ - 3534 + 3558 ], "last_status_at": [ - 3534 + 3558 ], "lineup": [ - 6125 + 6149 ], "map_name": [ - 3534 + 3558 ], "paused": [ - 3534 + 3558 ], "practice_session": [ - 6317 + 6341 ], "progress": [ - 3534 + 3558 ], "requested_by": [ - 4505 + 4529 ], "requested_by_steam_id": [ - 3534 + 3558 ], "session_token": [ - 3534 + 3558 ], "skip_reason": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "spec": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "status_history": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_prepend_input": { "spec": [ - 2348 + 2349 ], "status_history": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_select_column": {}, @@ -132109,64 +132441,64 @@ export default { "utility_lineup_renders_select_column_utility_lineup_renders_aggregate_bool_exp_bool_or_arguments_columns": {}, "utility_lineup_renders_set_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_fields": { @@ -132183,24 +132515,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_pop_fields": { @@ -132217,24 +132549,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_pop_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_samp_fields": { @@ -132251,97 +132583,97 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stddev_samp_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stream_cursor_input": { "initial_value": [ - 5978 + 6002 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "duration_ms": [ 41 ], "error_message": [ - 84 + 85 ], "game_server_node_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "k8s_job_name": [ - 84 + 85 ], "last_status_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "paused": [ 6 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "session_token": [ - 84 + 85 ], "skip_reason": [ - 84 + 85 ], "sort_index": [ 41 ], "spec": [ - 2348 + 2349 ], "status": [ - 84 + 85 ], "status_history": [ - 2348 + 2349 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_sum_fields": { @@ -132349,63 +132681,63 @@ export default { 41 ], "progress": [ - 3532 + 3556 ], "requested_by_steam_id": [ - 309 + 310 ], "sort_index": [ 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_sum_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_update_column": {}, "utility_lineup_renders_updates": { "_append": [ - 5947 + 5971 ], "_delete_at_path": [ - 5953 + 5977 ], "_delete_elem": [ - 5954 + 5978 ], "_delete_key": [ - 5955 + 5979 ], "_inc": [ - 5956 + 5980 ], "_prepend": [ - 5966 + 5990 ], "_set": [ - 5970 + 5994 ], "where": [ - 5951 + 5975 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_var_pop_fields": { @@ -132422,24 +132754,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_var_pop_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_var_samp_fields": { @@ -132456,24 +132788,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_var_samp_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_variance_fields": { @@ -132490,306 +132822,306 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_renders_variance_order_by": { "duration_ms": [ - 3534 + 3558 ], "progress": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "sort_index": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup": [ - 6089 + 6113 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by": [ - 4492 + 4516 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan": [ - 5811 + 5835 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session": [ - 6295 + 6319 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate": { "aggregate": [ - 6003 + 6027 ], "nodes": [ - 5989 + 6013 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp": { "avg": [ - 5992 + 6016 ], "corr": [ - 5993 + 6017 ], "count": [ - 5995 + 6019 ], "covar_samp": [ - 5996 + 6020 ], "max": [ - 5998 + 6022 ], "min": [ - 5999 + 6023 ], "stddev_samp": [ - 6000 + 6024 ], "sum": [ - 6001 + 6025 ], "var_samp": [ - 6002 + 6026 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_avg": { "arguments": [ - 6021 + 6045 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_corr": { "arguments": [ - 5994 + 6018 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_corr_arguments": { "X": [ - 6022 + 6046 ], "Y": [ - 6022 + 6046 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_count": { "arguments": [ - 6020 + 6044 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_covar_samp": { "arguments": [ - 5997 + 6021 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6023 + 6047 ], "Y": [ - 6023 + 6047 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_max": { "arguments": [ - 6024 + 6048 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_min": { "arguments": [ - 6025 + 6049 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6026 + 6050 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_sum": { "arguments": [ - 6027 + 6051 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_bool_exp_var_samp": { "arguments": [ - 6028 + 6052 ], "distinct": [ 6 ], "filter": [ - 6008 + 6032 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_fields": { "avg": [ - 6006 + 6030 ], "count": [ 41, { "columns": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "distinct": [ @@ -132798,83 +133130,83 @@ export default { } ], "max": [ - 6012 + 6036 ], "min": [ - 6014 + 6038 ], "stddev": [ - 6030 + 6054 ], "stddev_pop": [ - 6032 + 6056 ], "stddev_samp": [ - 6034 + 6058 ], "sum": [ - 6038 + 6062 ], "var_pop": [ - 6042 + 6066 ], "var_samp": [ - 6044 + 6068 ], "variance": [ - 6046 + 6070 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_aggregate_order_by": { "avg": [ - 6007 + 6031 ], "count": [ - 3534 + 3558 ], "max": [ - 6013 + 6037 ], "min": [ - 6015 + 6039 ], "stddev": [ - 6031 + 6055 ], "stddev_pop": [ - 6033 + 6057 ], "stddev_samp": [ - 6035 + 6059 ], "sum": [ - 6039 + 6063 ], "var_pop": [ - 6043 + 6067 ], "var_samp": [ - 6045 + 6069 ], "variance": [ - 6047 + 6071 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_arr_rel_insert_input": { "data": [ - 6011 + 6035 ], "on_conflict": [ - 6017 + 6041 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_avg_fields": { @@ -132885,297 +133217,297 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_avg_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_bool_exp": { "_and": [ - 6008 + 6032 ], "_not": [ - 6008 + 6032 ], "_or": [ - 6008 + 6032 ], "created_at": [ - 5130 + 5154 ], "drift_distance": [ - 2004 + 2005 ], "expires_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "repaired_at": [ - 5130 + 5154 ], "repaired_utility_lineup": [ - 6111 + 6135 ], "repaired_utility_lineup_id": [ - 6343 + 6367 ], "requested_by": [ - 4496 + 4520 ], "requested_by_steam_id": [ - 311 + 312 ], "status": [ - 86 + 87 ], "utility_drift_scan": [ - 5815 + 5839 ], "utility_drift_scan_id": [ - 6343 + 6367 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "utility_practice_session": [ - 6306 + 6330 ], "utility_practice_session_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_constraint": {}, "utility_lineup_repairs_inc_input": { "drift_distance": [ - 2003 + 2004 ], "requested_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_insert_input": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup": [ - 6123 + 6147 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by": [ - 4503 + 4527 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan": [ - 5822 + 5846 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session": [ - 6315 + 6339 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_max_fields": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_max_order_by": { "created_at": [ - 3534 + 3558 ], "drift_distance": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "repaired_at": [ - 3534 + 3558 ], "repaired_utility_lineup_id": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_min_fields": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_min_order_by": { "created_at": [ - 3534 + 3558 ], "drift_distance": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "repaired_at": [ - 3534 + 3558 ], "repaired_utility_lineup_id": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_mutation_response": { @@ -133183,85 +133515,85 @@ export default { 41 ], "returning": [ - 5989 + 6013 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_on_conflict": { "constraint": [ - 6009 + 6033 ], "update_columns": [ - 6040 + 6064 ], "where": [ - 6008 + 6032 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_order_by": { "created_at": [ - 3534 + 3558 ], "drift_distance": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "repaired_at": [ - 3534 + 3558 ], "repaired_utility_lineup": [ - 6125 + 6149 ], "repaired_utility_lineup_id": [ - 3534 + 3558 ], "requested_by": [ - 4505 + 4529 ], "requested_by_steam_id": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "utility_drift_scan": [ - 5824 + 5848 ], "utility_drift_scan_id": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "utility_practice_session": [ - 6317 + 6341 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_select_column": {}, @@ -133275,40 +133607,40 @@ export default { "utility_lineup_repairs_select_column_utility_lineup_repairs_aggregate_bool_exp_var_samp_arguments_columns": {}, "utility_lineup_repairs_set_input": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_fields": { @@ -133319,18 +133651,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_pop_fields": { @@ -133341,18 +133673,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_pop_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_samp_fields": { @@ -133363,104 +133695,104 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stddev_samp_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stream_cursor_input": { "initial_value": [ - 6037 + 6061 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "drift_distance": [ - 2003 + 2004 ], "expires_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "repaired_at": [ - 5129 + 5153 ], "repaired_utility_lineup_id": [ - 6341 + 6365 ], "requested_by_steam_id": [ - 309 + 310 ], "status": [ - 84 + 85 ], "utility_drift_scan_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341 + 6365 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_sum_fields": { "drift_distance": [ - 2003 + 2004 ], "requested_by_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_sum_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_update_column": {}, "utility_lineup_repairs_updates": { "_inc": [ - 6010 + 6034 ], "_set": [ - 6029 + 6053 ], "where": [ - 6008 + 6032 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_var_pop_fields": { @@ -133471,18 +133803,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_var_pop_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_var_samp_fields": { @@ -133493,18 +133825,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_var_samp_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_variance_fields": { @@ -133515,88 +133847,88 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_repairs_variance_order_by": { "drift_distance": [ - 3534 + 3558 ], "requested_by_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes": { "created_at": [ - 5129 + 5153 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_aggregate": { "aggregate": [ - 6052 + 6076 ], "nodes": [ - 6048 + 6072 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_aggregate_bool_exp": { "count": [ - 6051 + 6075 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_aggregate_bool_exp_count": { "arguments": [ - 6069 + 6093 ], "distinct": [ 6 ], "filter": [ - 6057 + 6081 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_aggregate_fields": { "avg": [ - 6055 + 6079 ], "count": [ 41, { "columns": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "distinct": [ @@ -133605,83 +133937,83 @@ export default { } ], "max": [ - 6061 + 6085 ], "min": [ - 6063 + 6087 ], "stddev": [ - 6071 + 6095 ], "stddev_pop": [ - 6073 + 6097 ], "stddev_samp": [ - 6075 + 6099 ], "sum": [ - 6079 + 6103 ], "var_pop": [ - 6083 + 6107 ], "var_samp": [ - 6085 + 6109 ], "variance": [ - 6087 + 6111 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_aggregate_order_by": { "avg": [ - 6056 + 6080 ], "count": [ - 3534 + 3558 ], "max": [ - 6062 + 6086 ], "min": [ - 6064 + 6088 ], "stddev": [ - 6072 + 6096 ], "stddev_pop": [ - 6074 + 6098 ], "stddev_samp": [ - 6076 + 6100 ], "sum": [ - 6080 + 6104 ], "var_pop": [ - 6084 + 6108 ], "var_samp": [ - 6086 + 6110 ], "variance": [ - 6088 + 6112 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_arr_rel_insert_input": { "data": [ - 6060 + 6084 ], "on_conflict": [ - 6066 + 6090 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_avg_fields": { @@ -133692,153 +134024,153 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_avg_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_bool_exp": { "_and": [ - 6057 + 6081 ], "_not": [ - 6057 + 6081 ], "_or": [ - 6057 + 6081 ], "created_at": [ - 5130 + 5154 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "vote": [ - 4717 + 4741 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_constraint": {}, "utility_lineup_votes_inc_input": { "steam_id": [ - 309 + 310 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_insert_input": { "created_at": [ - 5129 + 5153 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_max_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_max_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_min_fields": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_min_order_by": { "created_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_mutation_response": { @@ -133846,76 +134178,76 @@ export default { 41 ], "returning": [ - 6048 + 6072 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_on_conflict": { "constraint": [ - 6058 + 6082 ], "update_columns": [ - 6081 + 6105 ], "where": [ - 6057 + 6081 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_order_by": { "created_at": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_pk_columns_input": { "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_select_column": {}, "utility_lineup_votes_set_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_fields": { @@ -133926,18 +134258,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_pop_fields": { @@ -133948,18 +134280,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_samp_fields": { @@ -133970,83 +134302,83 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stddev_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stream_cursor_input": { "initial_value": [ - 6078 + 6102 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "utility_lineup_id": [ - 6341 + 6365 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_sum_fields": { "steam_id": [ - 309 + 310 ], "vote": [ - 4716 + 4740 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_sum_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_update_column": {}, "utility_lineup_votes_updates": { "_inc": [ - 6059 + 6083 ], "_set": [ - 6070 + 6094 ], "where": [ - 6057 + 6081 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_var_pop_fields": { @@ -134057,18 +134389,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_var_pop_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_var_samp_fields": { @@ -134079,18 +134411,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_var_samp_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_variance_fields": { @@ -134101,32 +134433,32 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineup_votes_variance_order_by": { "steam_id": [ - 3534 + 3558 ], "vote": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author": [ - 4492 + 4516 ], "author_steam_id": [ - 309 + 310 ], "can_edit": [ 6 @@ -134135,10 +134467,10 @@ export default { 6 ], "collection_items": [ - 5629, + 5653, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -134148,19 +134480,19 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "collection_items_aggregate": [ - 5630, + 5654, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -134170,40 +134502,40 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "difficulty": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorited_by": [ - 5839, + 5863, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -134213,19 +134545,19 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], "favorited_by_aggregate": [ - 5840, + 5864, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -134235,11 +134567,11 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], @@ -134250,31 +134582,31 @@ export default { 41 ], "forked_from": [ - 6089 + 6113 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "is_favorited": [ 6 @@ -134283,37 +134615,37 @@ export default { 6 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "my_vote": [ - 4716 + 4740 ], "name": [ - 84 + 85 ], "origin_source": [ - 1609 + 1610 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -134328,25 +134660,25 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "preview_thumbnail_url": [ - 84 + 85 ], "preview_url": [ - 84 + 85 ], "progress": [ - 5880, + 5904, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -134356,19 +134688,19 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "progress_aggregate": [ - 5881, + 5905, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -134378,31 +134710,31 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "renders": [ - 5939, + 5963, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -134412,19 +134744,19 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "renders_aggregate": [ - 5940, + 5964, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -134434,19 +134766,19 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "repairs": [ - 5989, + 6013, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -134456,19 +134788,19 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "repairs_aggregate": [ - 5990, + 6014, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -134478,58 +134810,58 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "side": [ - 1404 + 1405 ], "source_grenade_id": [ 41 ], "source_match": [ - 3318 + 3342 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map": [ - 3134 + 3158 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "trajectory_file": [ - 84 + 85 ], "trajectory_preview": [ - 2348, + 2349, { "path": [ - 84 + 85 ] } ], @@ -134537,37 +134869,37 @@ export default { 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "utility_type": [ - 1669 + 1670 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "visibility": [ - 1689 + 1690 ], "votes": [ - 6048, + 6072, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -134577,19 +134909,19 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "votes_aggregate": [ - 6049, + 6073, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -134599,288 +134931,288 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate": { "aggregate": [ - 6105 + 6129 ], "nodes": [ - 6089 + 6113 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp": { "avg": [ - 6092 + 6116 ], "bool_and": [ - 6093 + 6117 ], "bool_or": [ - 6094 + 6118 ], "corr": [ - 6095 + 6119 ], "count": [ - 6097 + 6121 ], "covar_samp": [ - 6098 + 6122 ], "max": [ - 6100 + 6124 ], "min": [ - 6101 + 6125 ], "stddev_samp": [ - 6102 + 6126 ], "sum": [ - 6103 + 6127 ], "var_samp": [ - 6104 + 6128 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_avg": { "arguments": [ - 6129 + 6153 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_bool_and": { "arguments": [ - 6130 + 6154 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_bool_or": { "arguments": [ - 6131 + 6155 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_corr": { "arguments": [ - 6096 + 6120 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_corr_arguments": { "X": [ - 6132 + 6156 ], "Y": [ - 6132 + 6156 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_count": { "arguments": [ - 6128 + 6152 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_covar_samp": { "arguments": [ - 6099 + 6123 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6133 + 6157 ], "Y": [ - 6133 + 6157 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_max": { "arguments": [ - 6134 + 6158 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_min": { "arguments": [ - 6135 + 6159 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6136 + 6160 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_sum": { "arguments": [ - 6137 + 6161 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_bool_exp_var_samp": { "arguments": [ - 6138 + 6162 ], "distinct": [ 6 ], "filter": [ - 6111 + 6135 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_fields": { "avg": [ - 6109 + 6133 ], "count": [ 41, { "columns": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "distinct": [ @@ -134889,91 +135221,91 @@ export default { } ], "max": [ - 6118 + 6142 ], "min": [ - 6120 + 6144 ], "stddev": [ - 6140 + 6164 ], "stddev_pop": [ - 6142 + 6166 ], "stddev_samp": [ - 6144 + 6168 ], "sum": [ - 6148 + 6172 ], "var_pop": [ - 6152 + 6176 ], "var_samp": [ - 6154 + 6178 ], "variance": [ - 6156 + 6180 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_aggregate_order_by": { "avg": [ - 6110 + 6134 ], "count": [ - 3534 + 3558 ], "max": [ - 6119 + 6143 ], "min": [ - 6121 + 6145 ], "stddev": [ - 6141 + 6165 ], "stddev_pop": [ - 6143 + 6167 ], "stddev_samp": [ - 6145 + 6169 ], "sum": [ - 6149 + 6173 ], "var_pop": [ - 6153 + 6177 ], "var_samp": [ - 6155 + 6179 ], "variance": [ - 6157 + 6181 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_append_input": { "trajectory_preview": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_arr_rel_insert_input": { "data": [ - 6117 + 6141 ], "on_conflict": [ - 6124 + 6148 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_avg_fields": { @@ -135023,7 +135355,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -135071,125 +135403,125 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_avg_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_bool_exp": { "_and": [ - 6111 + 6135 ], "_not": [ - 6111 + 6135 ], "_or": [ - 6111 + 6135 ], "aim_tolerance": [ - 2004 + 2005 ], "archived_at": [ - 5130 + 5154 ], "author": [ - 4496 + 4520 ], "author_steam_id": [ - 311 + 312 ], "can_edit": [ 7 @@ -135198,37 +135530,37 @@ export default { 7 ], "collection_items": [ - 5638 + 5662 ], "collection_items_aggregate": [ - 5631 + 5655 ], "confidence": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "difficulty": [ - 86 + 87 ], "downvotes": [ 42 ], "external_id": [ - 86 + 87 ], "eye_z": [ - 2004 + 2005 ], "favorited_by": [ - 5848 + 5872 ], "favorited_by_aggregate": [ - 5841 + 5865 ], "favorites": [ 42 @@ -135237,31 +135569,31 @@ export default { 42 ], "forked_from": [ - 6111 + 6135 ], "forked_from_utility_lineup_id": [ - 6343 + 6367 ], "id": [ - 6343 + 6367 ], "initial_pos_x": [ - 2004 + 2005 ], "initial_pos_y": [ - 2004 + 2005 ], "initial_pos_z": [ - 2004 + 2005 ], "initial_vel_x": [ - 2004 + 2005 ], "initial_vel_y": [ - 2004 + 2005 ], "initial_vel_z": [ - 2004 + 2005 ], "is_favorited": [ 7 @@ -135270,37 +135602,37 @@ export default { 7 ], "land_x": [ - 2004 + 2005 ], "land_y": [ - 2004 + 2005 ], "land_z": [ - 2004 + 2005 ], "lineup_bucket": [ - 86 + 87 ], "map_name": [ - 86 + 87 ], "my_vote": [ - 4717 + 4741 ], "name": [ - 86 + 87 ], "origin_source": [ - 1610 + 1611 ], "origin_x": [ - 2004 + 2005 ], "origin_y": [ - 2004 + 2005 ], "origin_z": [ - 2004 + 2005 ], "practice_attempts": [ 42 @@ -135315,142 +135647,142 @@ export default { 42 ], "preview_file": [ - 86 + 87 ], "preview_rendered_at": [ - 5130 + 5154 ], "preview_thumbnail": [ - 86 + 87 ], "preview_thumbnail_url": [ - 86 + 87 ], "preview_url": [ - 86 + 87 ], "progress": [ - 5899 + 5923 ], "progress_aggregate": [ - 5882 + 5906 ], "public_requested_at": [ - 5130 + 5154 ], "public_review_note": [ - 86 + 87 ], "public_reviewed_at": [ - 5130 + 5154 ], "public_reviewed_by": [ - 311 + 312 ], "renders": [ - 5951 + 5975 ], "renders_aggregate": [ - 5941 + 5965 ], "repairs": [ - 6008 + 6032 ], "repairs_aggregate": [ - 5991 + 6015 ], "side": [ - 1405 + 1406 ], "source_grenade_id": [ 42 ], "source_match": [ - 3329 + 3353 ], "source_match_id": [ - 6343 + 6367 ], "source_match_map": [ - 3143 + 3167 ], "source_match_map_id": [ - 6343 + 6367 ], "source_url": [ - 86 + 87 ], "tags": [ - 85 + 86 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "technique": [ - 1630 + 1631 ], "throw_strength": [ - 1650 + 1651 ], "trajectory_file": [ - 86 + 87 ], "trajectory_preview": [ - 2350 + 2351 ], "trajectory_size": [ 42 ], "updated_at": [ - 5130 + 5154 ], "upvotes": [ 42 ], "utility_type": [ - 1670 + 1671 ], "verified_at": [ - 5130 + 5154 ], "view_pitch": [ - 2004 + 2005 ], "view_pitch_delta": [ - 2004 + 2005 ], "view_yaw": [ - 2004 + 2005 ], "view_yaw_delta": [ - 2004 + 2005 ], "visibility": [ - 1690 + 1691 ], "votes": [ - 6057 + 6081 ], "votes_aggregate": [ - 6050 + 6074 ], "workshop_map_id": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_constraint": {}, "utility_lineups_delete_at_path_input": { "trajectory_preview": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_delete_elem_input": { @@ -135458,29 +135790,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_delete_key_input": { "trajectory_preview": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_inc_input": { "aim_tolerance": [ - 2003 + 2004 ], "author_steam_id": [ - 309 + 310 ], "downvotes": [ 41 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -135489,40 +135821,40 @@ export default { 41 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -135537,7 +135869,7 @@ export default { 41 ], "public_reviewed_by": [ - 309 + 310 ], "source_grenade_id": [ 41 @@ -135549,57 +135881,57 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_insert_input": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author": [ - 4503 + 4527 ], "author_steam_id": [ - 309 + 310 ], "collection_items": [ - 5635 + 5659 ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorited_by": [ - 5845 + 5869 ], "favorites": [ 41 @@ -135608,61 +135940,61 @@ export default { 41 ], "forked_from": [ - 6123 + 6147 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "jump_throw_bind": [ 6 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "origin_source": [ - 1609 + 1610 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -135677,147 +136009,147 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "progress": [ - 5896 + 5920 ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "renders": [ - 5948 + 5972 ], "repairs": [ - 6005 + 6029 ], "side": [ - 1404 + 1405 ], "source_grenade_id": [ 41 ], "source_match": [ - 3338 + 3362 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map": [ - 3152 + 3176 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "trajectory_file": [ - 84 + 85 ], "trajectory_preview": [ - 2348 + 2349 ], "trajectory_size": [ 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "utility_type": [ - 1669 + 1670 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "visibility": [ - 1689 + 1690 ], "votes": [ - 6054 + 6078 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_max_fields": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author_steam_id": [ - 309 + 310 ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "difficulty": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -135826,58 +136158,58 @@ export default { 41 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "my_vote": [ - 4716 + 4740 ], "name": [ - 84 + 85 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -135892,284 +136224,284 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "preview_thumbnail_url": [ - 84 + 85 ], "preview_url": [ - 84 + 85 ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "source_grenade_id": [ 41 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "trajectory_file": [ - 84 + 85 ], "trajectory_size": [ 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_max_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "archived_at": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "confidence": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "forked_from_utility_lineup_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "lineup_bucket": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "preview_file": [ - 3534 + 3558 ], "preview_rendered_at": [ - 3534 + 3558 ], "preview_thumbnail": [ - 3534 + 3558 ], "public_requested_at": [ - 3534 + 3558 ], "public_review_note": [ - 3534 + 3558 ], "public_reviewed_at": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "source_match_id": [ - 3534 + 3558 ], "source_match_map_id": [ - 3534 + 3558 ], "source_url": [ - 3534 + 3558 ], "tags": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "trajectory_file": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "verified_at": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_min_fields": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author_steam_id": [ - 309 + 310 ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "difficulty": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -136178,58 +136510,58 @@ export default { 41 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "my_vote": [ - 4716 + 4740 ], "name": [ - 84 + 85 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -136244,252 +136576,252 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "preview_thumbnail_url": [ - 84 + 85 ], "preview_url": [ - 84 + 85 ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "source_grenade_id": [ 41 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "trajectory_file": [ - 84 + 85 ], "trajectory_size": [ 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_min_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "archived_at": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "confidence": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "forked_from_utility_lineup_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "lineup_bucket": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "preview_file": [ - 3534 + 3558 ], "preview_rendered_at": [ - 3534 + 3558 ], "preview_thumbnail": [ - 3534 + 3558 ], "public_requested_at": [ - 3534 + 3558 ], "public_review_note": [ - 3534 + 3558 ], "public_reviewed_at": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "source_match_id": [ - 3534 + 3558 ], "source_match_map_id": [ - 3534 + 3558 ], "source_url": [ - 3534 + 3558 ], "tags": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "trajectory_file": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "verified_at": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_mutation_response": { @@ -136497,299 +136829,299 @@ export default { 41 ], "returning": [ - 6089 + 6113 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_obj_rel_insert_input": { "data": [ - 6117 + 6141 ], "on_conflict": [ - 6124 + 6148 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_on_conflict": { "constraint": [ - 6112 + 6136 ], "update_columns": [ - 6150 + 6174 ], "where": [ - 6111 + 6135 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "archived_at": [ - 3534 + 3558 ], "author": [ - 4505 + 4529 ], "author_steam_id": [ - 3534 + 3558 ], "can_edit": [ - 3534 + 3558 ], "can_view": [ - 3534 + 3558 ], "collection_items_aggregate": [ - 5634 + 5658 ], "confidence": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "difficulty": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "external_id": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorited_by_aggregate": [ - 5844 + 5868 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "forked_from": [ - 6125 + 6149 ], "forked_from_utility_lineup_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "is_favorited": [ - 3534 + 3558 ], "jump_throw_bind": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "lineup_bucket": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "my_vote": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "origin_source": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "preview_file": [ - 3534 + 3558 ], "preview_rendered_at": [ - 3534 + 3558 ], "preview_thumbnail": [ - 3534 + 3558 ], "preview_thumbnail_url": [ - 3534 + 3558 ], "preview_url": [ - 3534 + 3558 ], "progress_aggregate": [ - 5895 + 5919 ], "public_requested_at": [ - 3534 + 3558 ], "public_review_note": [ - 3534 + 3558 ], "public_reviewed_at": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "renders_aggregate": [ - 5946 + 5970 ], "repairs_aggregate": [ - 6004 + 6028 ], "side": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "source_match": [ - 3340 + 3364 ], "source_match_id": [ - 3534 + 3558 ], "source_match_map": [ - 3154 + 3178 ], "source_match_map_id": [ - 3534 + 3558 ], "source_url": [ - 3534 + 3558 ], "tags": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "technique": [ - 3534 + 3558 ], "throw_strength": [ - 3534 + 3558 ], "trajectory_file": [ - 3534 + 3558 ], "trajectory_preview": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "utility_type": [ - 3534 + 3558 ], "verified_at": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "visibility": [ - 3534 + 3558 ], "votes_aggregate": [ - 6053 + 6077 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_prepend_input": { "trajectory_preview": [ - 2348 + 2349 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_select_column": {}, @@ -136805,31 +137137,31 @@ export default { "utility_lineups_select_column_utility_lineups_aggregate_bool_exp_var_samp_arguments_columns": {}, "utility_lineups_set_input": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author_steam_id": [ - 309 + 310 ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -136838,58 +137170,58 @@ export default { 41 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "jump_throw_bind": [ 6 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "origin_source": [ - 1609 + 1610 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -136904,94 +137236,94 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "source_grenade_id": [ 41 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "trajectory_file": [ - 84 + 85 ], "trajectory_preview": [ - 2348 + 2349 ], "trajectory_size": [ 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "utility_type": [ - 1669 + 1670 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "visibility": [ - 1689 + 1690 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_fields": { @@ -137041,7 +137373,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -137089,102 +137421,102 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_pop_fields": { @@ -137234,7 +137566,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -137282,102 +137614,102 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_pop_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_samp_fields": { @@ -137427,7 +137759,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -137475,142 +137807,142 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stddev_samp_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stream_cursor_input": { "initial_value": [ - 6147 + 6171 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_stream_cursor_value_input": { "aim_tolerance": [ - 2003 + 2004 ], "archived_at": [ - 5129 + 5153 ], "author_steam_id": [ - 309 + 310 ], "confidence": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "downvotes": [ 41 ], "external_id": [ - 84 + 85 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -137619,61 +137951,61 @@ export default { 41 ], "forked_from_utility_lineup_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "jump_throw_bind": [ 6 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineup_bucket": [ - 84 + 85 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "origin_source": [ - 1609 + 1610 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -137688,108 +138020,108 @@ export default { 41 ], "preview_file": [ - 84 + 85 ], "preview_rendered_at": [ - 5129 + 5153 ], "preview_thumbnail": [ - 84 + 85 ], "public_requested_at": [ - 5129 + 5153 ], "public_review_note": [ - 84 + 85 ], "public_reviewed_at": [ - 5129 + 5153 ], "public_reviewed_by": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "source_grenade_id": [ 41 ], "source_match_id": [ - 6341 + 6365 ], "source_match_map_id": [ - 6341 + 6365 ], "source_url": [ - 84 + 85 ], "tags": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 1649 + 1650 ], "trajectory_file": [ - 84 + 85 ], "trajectory_preview": [ - 2348 + 2349 ], "trajectory_size": [ 41 ], "updated_at": [ - 5129 + 5153 ], "upvotes": [ 41 ], "utility_type": [ - 1669 + 1670 ], "verified_at": [ - 5129 + 5153 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "visibility": [ - 1689 + 1690 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_sum_fields": { "aim_tolerance": [ - 2003 + 2004 ], "author_steam_id": [ - 309 + 310 ], "downvotes": [ 41 ], "eye_z": [ - 2003 + 2004 ], "favorites": [ 41 @@ -137798,43 +138130,43 @@ export default { 41 ], "initial_pos_x": [ - 2003 + 2004 ], "initial_pos_y": [ - 2003 + 2004 ], "initial_pos_z": [ - 2003 + 2004 ], "initial_vel_x": [ - 2003 + 2004 ], "initial_vel_y": [ - 2003 + 2004 ], "initial_vel_z": [ - 2003 + 2004 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "practice_attempts": [ 41 @@ -137849,7 +138181,7 @@ export default { 41 ], "public_reviewed_by": [ - 309 + 310 ], "source_grenade_id": [ 41 @@ -137861,144 +138193,144 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_pitch_delta": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "view_yaw_delta": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_sum_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_update_column": {}, "utility_lineups_updates": { "_append": [ - 6107 + 6131 ], "_delete_at_path": [ - 6113 + 6137 ], "_delete_elem": [ - 6114 + 6138 ], "_delete_key": [ - 6115 + 6139 ], "_inc": [ - 6116 + 6140 ], "_prepend": [ - 6127 + 6151 ], "_set": [ - 6139 + 6163 ], "where": [ - 6111 + 6135 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_var_pop_fields": { @@ -138048,7 +138380,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -138096,102 +138428,102 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_var_pop_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_var_samp_fields": { @@ -138241,7 +138573,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -138289,102 +138621,102 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_var_samp_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_variance_fields": { @@ -138434,7 +138766,7 @@ export default { 32 ], "my_vote": [ - 4716 + 4740 ], "origin_x": [ 32 @@ -138482,152 +138814,152 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_lineups_variance_order_by": { "aim_tolerance": [ - 3534 + 3558 ], "author_steam_id": [ - 3534 + 3558 ], "downvotes": [ - 3534 + 3558 ], "eye_z": [ - 3534 + 3558 ], "favorites": [ - 3534 + 3558 ], "flight_time_ms": [ - 3534 + 3558 ], "initial_pos_x": [ - 3534 + 3558 ], "initial_pos_y": [ - 3534 + 3558 ], "initial_pos_z": [ - 3534 + 3558 ], "initial_vel_x": [ - 3534 + 3558 ], "initial_vel_y": [ - 3534 + 3558 ], "initial_vel_z": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "practice_attempts": [ - 3534 + 3558 ], "practice_players": [ - 3534 + 3558 ], "practice_successes": [ - 3534 + 3558 ], "preview_duration_ms": [ - 3534 + 3558 ], "public_reviewed_by": [ - 3534 + 3558 ], "source_grenade_id": [ - 3534 + 3558 ], "trajectory_size": [ - 3534 + 3558 ], "upvotes": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_pitch_delta": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "view_yaw_delta": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -138636,38 +138968,38 @@ export default { 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_aggregate": { "aggregate": [ - 6160 + 6184 ], "nodes": [ - 6158 + 6182 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_aggregate_fields": { "avg": [ - 6161 + 6185 ], "count": [ 41, { "columns": [ - 6172, + 6196, "[utility_meta_lineups_select_column!]" ], "distinct": [ @@ -138676,34 +139008,34 @@ export default { } ], "max": [ - 6166 + 6190 ], "min": [ - 6167 + 6191 ], "stddev": [ - 6174 + 6198 ], "stddev_pop": [ - 6175 + 6199 ], "stddev_samp": [ - 6176 + 6200 ], "sum": [ - 6179 + 6203 ], "var_pop": [ - 6182 + 6206 ], "var_samp": [ - 6183 + 6207 ], "variance": [ - 6184 + 6208 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_avg_fields": { @@ -138744,66 +139076,66 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_bool_exp": { "_and": [ - 6162 + 6186 ], "_not": [ - 6162 + 6186 ], "_or": [ - 6162 + 6186 ], "first_seen_at": [ - 5130 + 5154 ], "land_x": [ - 2004 + 2005 ], "land_y": [ - 2004 + 2005 ], "land_z": [ - 2004 + 2005 ], "last_seen_at": [ - 5130 + 5154 ], "lineup_bucket": [ - 86 + 87 ], "lineups": [ 42 ], "map_name": [ - 86 + 87 ], "matches": [ 42 ], "origin_x": [ - 2004 + 2005 ], "origin_y": [ - 2004 + 2005 ], "origin_z": [ - 2004 + 2005 ], "refreshed_at": [ - 5130 + 5154 ], "side": [ - 1405 + 1406 ], "technique": [ - 1630 + 1631 ], "throw_strength": [ - 86 + 87 ], "throwers": [ 42 @@ -138812,28 +139144,28 @@ export default { 42 ], "utility_type": [ - 1670 + 1671 ], "view_pitch": [ - 2004 + 2005 ], "view_yaw": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_constraint": {}, "utility_meta_lineups_inc_input": { "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineups": [ 41 @@ -138842,13 +139174,13 @@ export default { 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "throwers": [ 41 @@ -138857,63 +139189,63 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_insert_input": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -138922,60 +139254,60 @@ export default { 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_max_fields": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -138984,57 +139316,57 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_min_fields": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -139043,13 +139375,13 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_mutation_response": { @@ -139057,151 +139389,151 @@ export default { 41 ], "returning": [ - 6158 + 6182 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_on_conflict": { "constraint": [ - 6163 + 6187 ], "update_columns": [ - 6180 + 6204 ], "where": [ - 6162 + 6186 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_order_by": { "first_seen_at": [ - 3534 + 3558 ], "land_x": [ - 3534 + 3558 ], "land_y": [ - 3534 + 3558 ], "land_z": [ - 3534 + 3558 ], "last_seen_at": [ - 3534 + 3558 ], "lineup_bucket": [ - 3534 + 3558 ], "lineups": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "matches": [ - 3534 + 3558 ], "origin_x": [ - 3534 + 3558 ], "origin_y": [ - 3534 + 3558 ], "origin_z": [ - 3534 + 3558 ], "refreshed_at": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "technique": [ - 3534 + 3558 ], "throw_strength": [ - 3534 + 3558 ], "throwers": [ - 3534 + 3558 ], "throws": [ - 3534 + 3558 ], "utility_type": [ - 3534 + 3558 ], "view_pitch": [ - 3534 + 3558 ], "view_yaw": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_pk_columns_input": { "lineup_bucket": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_select_column": {}, "utility_meta_lineups_set_input": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -139210,16 +139542,16 @@ export default { 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_stddev_fields": { @@ -139260,7 +139592,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_stddev_pop_fields": { @@ -139301,7 +139633,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_stddev_samp_fields": { @@ -139342,68 +139674,68 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_stream_cursor_input": { "initial_value": [ - 6178 + 6202 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_stream_cursor_value_input": { "first_seen_at": [ - 5129 + 5153 ], "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "last_seen_at": [ - 5129 + 5153 ], "lineup_bucket": [ - 84 + 85 ], "lineups": [ 41 ], "map_name": [ - 84 + 85 ], "matches": [ 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "refreshed_at": [ - 5129 + 5153 ], "side": [ - 1404 + 1405 ], "technique": [ - 1629 + 1630 ], "throw_strength": [ - 84 + 85 ], "throwers": [ 41 @@ -139412,27 +139744,27 @@ export default { 41 ], "utility_type": [ - 1669 + 1670 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_sum_fields": { "land_x": [ - 2003 + 2004 ], "land_y": [ - 2003 + 2004 ], "land_z": [ - 2003 + 2004 ], "lineups": [ 41 @@ -139441,13 +139773,13 @@ export default { 41 ], "origin_x": [ - 2003 + 2004 ], "origin_y": [ - 2003 + 2004 ], "origin_z": [ - 2003 + 2004 ], "throwers": [ 41 @@ -139456,28 +139788,28 @@ export default { 41 ], "view_pitch": [ - 2003 + 2004 ], "view_yaw": [ - 2003 + 2004 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_update_column": {}, "utility_meta_lineups_updates": { "_inc": [ - 6164 + 6188 ], "_set": [ - 6173 + 6197 ], "where": [ - 6162 + 6186 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_var_pop_fields": { @@ -139518,7 +139850,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_var_samp_fields": { @@ -139559,7 +139891,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_meta_lineups_variance_fields": { @@ -139600,92 +139932,92 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps": { "assigned_player": [ - 4492 + 4516 ], "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook": [ - 6226 + 6250 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup": [ - 6089 + 6113 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_aggregate": { "aggregate": [ - 6189 + 6213 ], "nodes": [ - 6185 + 6209 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_aggregate_bool_exp": { "count": [ - 6188 + 6212 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_aggregate_bool_exp_count": { "arguments": [ - 6206 + 6230 ], "distinct": [ 6 ], "filter": [ - 6194 + 6218 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_aggregate_fields": { "avg": [ - 6192 + 6216 ], "count": [ 41, { "columns": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "distinct": [ @@ -139694,83 +140026,83 @@ export default { } ], "max": [ - 6198 + 6222 ], "min": [ - 6200 + 6224 ], "stddev": [ - 6208 + 6232 ], "stddev_pop": [ - 6210 + 6234 ], "stddev_samp": [ - 6212 + 6236 ], "sum": [ - 6216 + 6240 ], "var_pop": [ - 6220 + 6244 ], "var_samp": [ - 6222 + 6246 ], "variance": [ - 6224 + 6248 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_aggregate_order_by": { "avg": [ - 6193 + 6217 ], "count": [ - 3534 + 3558 ], "max": [ - 6199 + 6223 ], "min": [ - 6201 + 6225 ], "stddev": [ - 6209 + 6233 ], "stddev_pop": [ - 6211 + 6235 ], "stddev_samp": [ - 6213 + 6237 ], "sum": [ - 6217 + 6241 ], "var_pop": [ - 6221 + 6245 ], "var_samp": [ - 6223 + 6247 ], "variance": [ - 6225 + 6249 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_arr_rel_insert_input": { "data": [ - 6197 + 6221 ], "on_conflict": [ - 6203 + 6227 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_avg_fields": { @@ -139784,74 +140116,74 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_avg_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_bool_exp": { "_and": [ - 6194 + 6218 ], "_not": [ - 6194 + 6218 ], "_or": [ - 6194 + 6218 ], "assigned_player": [ - 4496 + 4520 ], "assigned_steam_id": [ - 311 + 312 ], "created_at": [ - 5130 + 5154 ], "id": [ - 6343 + 6367 ], "note": [ - 86 + 87 ], "offset_ms": [ 42 ], "playbook": [ - 6230 + 6254 ], "playbook_id": [ - 6343 + 6367 ], "step_order": [ 42 ], "utility_lineup": [ - 6111 + 6135 ], "utility_lineup_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_constraint": {}, "utility_playbook_steps_inc_input": { "assigned_steam_id": [ - 309 + 310 ], "offset_ms": [ 41 @@ -139860,161 +140192,161 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_insert_input": { "assigned_player": [ - 4503 + 4527 ], "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook": [ - 6237 + 6261 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup": [ - 6123 + 6147 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_max_fields": { "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_max_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "playbook_id": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_min_fields": { "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_min_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "playbook_id": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_mutation_response": { @@ -140022,100 +140354,100 @@ export default { 41 ], "returning": [ - 6185 + 6209 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_on_conflict": { "constraint": [ - 6195 + 6219 ], "update_columns": [ - 6218 + 6242 ], "where": [ - 6194 + 6218 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_order_by": { "assigned_player": [ - 4505 + 4529 ], "assigned_steam_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "note": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "playbook": [ - 6239 + 6263 ], "playbook_id": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "utility_lineup": [ - 6125 + 6149 ], "utility_lineup_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_select_column": {}, "utility_playbook_steps_set_input": { "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_fields": { @@ -140129,21 +140461,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_pop_fields": { @@ -140157,21 +140489,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_pop_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_samp_fields": { @@ -140185,66 +140517,66 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stddev_samp_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stream_cursor_input": { "initial_value": [ - 6215 + 6239 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_stream_cursor_value_input": { "assigned_steam_id": [ - 309 + 310 ], "created_at": [ - 5129 + 5153 ], "id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "offset_ms": [ 41 ], "playbook_id": [ - 6341 + 6365 ], "step_order": [ 41 ], "utility_lineup_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_sum_fields": { "assigned_steam_id": [ - 309 + 310 ], "offset_ms": [ 41 @@ -140253,36 +140585,36 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_sum_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_update_column": {}, "utility_playbook_steps_updates": { "_inc": [ - 6196 + 6220 ], "_set": [ - 6207 + 6231 ], "where": [ - 6194 + 6218 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_var_pop_fields": { @@ -140296,21 +140628,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_var_pop_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_var_samp_fields": { @@ -140324,21 +140656,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_var_samp_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_variance_fields": { @@ -140352,21 +140684,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbook_steps_variance_order_by": { "assigned_steam_id": [ - 3534 + 3558 ], "offset_ms": [ - 3534 + 3558 ], "step_order": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks": { @@ -140377,34 +140709,34 @@ export default { 6 ], "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner": [ - 4492 + 4516 ], "owner_steam_id": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "steps": [ - 6185, + 6209, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -140414,19 +140746,19 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "steps_aggregate": [ - 6186, + 6210, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -140436,50 +140768,50 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_aggregate": { "aggregate": [ - 6228 + 6252 ], "nodes": [ - 6226 + 6250 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_aggregate_fields": { "avg": [ - 6229 + 6253 ], "count": [ 41, { "columns": [ - 6241, + 6265, "[utility_playbooks_select_column!]" ], "distinct": [ @@ -140488,34 +140820,34 @@ export default { } ], "max": [ - 6234 + 6258 ], "min": [ - 6235 + 6259 ], "stddev": [ - 6243 + 6267 ], "stddev_pop": [ - 6244 + 6268 ], "stddev_samp": [ - 6245 + 6269 ], "sum": [ - 6248 + 6272 ], "var_pop": [ - 6251 + 6275 ], "var_samp": [ - 6252 + 6276 ], "variance": [ - 6253 + 6277 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_avg_fields": { @@ -140523,18 +140855,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_bool_exp": { "_and": [ - 6230 + 6254 ], "_not": [ - 6230 + 6254 ], "_or": [ - 6230 + 6254 ], "can_edit": [ 7 @@ -140543,160 +140875,160 @@ export default { 7 ], "created_at": [ - 5130 + 5154 ], "description": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "map_name": [ - 86 + 87 ], "name": [ - 86 + 87 ], "owner": [ - 4496 + 4520 ], "owner_steam_id": [ - 311 + 312 ], "side": [ - 1405 + 1406 ], "steps": [ - 6194 + 6218 ], "steps_aggregate": [ - 6187 + 6211 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "visibility": [ - 1690 + 1691 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_constraint": {}, "utility_playbooks_inc_input": { "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_insert_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner": [ - 4503 + 4527 ], "owner_steam_id": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "steps": [ - 6191 + 6215 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_max_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_min_fields": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_mutation_response": { @@ -140704,129 +141036,129 @@ export default { 41 ], "returning": [ - 6226 + 6250 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_obj_rel_insert_input": { "data": [ - 6233 + 6257 ], "on_conflict": [ - 6238 + 6262 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_on_conflict": { "constraint": [ - 6231 + 6255 ], "update_columns": [ - 6249 + 6273 ], "where": [ - 6230 + 6254 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_order_by": { "can_edit": [ - 3534 + 3558 ], "can_view": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "description": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "owner": [ - 4505 + 4529 ], "owner_steam_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "steps_aggregate": [ - 6190 + 6214 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "visibility": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_select_column": {}, "utility_playbooks_set_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_stddev_fields": { @@ -140834,7 +141166,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_stddev_pop_fields": { @@ -140842,7 +141174,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_stddev_samp_fields": { @@ -140850,76 +141182,76 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_stream_cursor_input": { "initial_value": [ - 6247 + 6271 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "description": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "map_name": [ - 84 + 85 ], "name": [ - 84 + 85 ], "owner_steam_id": [ - 309 + 310 ], "side": [ - 1404 + 1405 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "visibility": [ - 1689 + 1690 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_sum_fields": { "owner_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_update_column": {}, "utility_playbooks_updates": { "_inc": [ - 6232 + 6256 ], "_set": [ - 6242 + 6266 ], "where": [ - 6230 + 6254 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_var_pop_fields": { @@ -140927,7 +141259,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_var_samp_fields": { @@ -140935,7 +141267,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_playbooks_variance_fields": { @@ -140943,80 +141275,80 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites": { "created_at": [ - 5129 + 5153 ], "invited_by": [ - 4492 + 4516 ], "invited_by_steam_id": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "session": [ - 6295 + 6319 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_aggregate": { "aggregate": [ - 6258 + 6282 ], "nodes": [ - 6254 + 6278 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_aggregate_bool_exp": { "count": [ - 6257 + 6281 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_aggregate_bool_exp_count": { "arguments": [ - 6275 + 6299 ], "distinct": [ 6 ], "filter": [ - 6263 + 6287 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_aggregate_fields": { "avg": [ - 6261 + 6285 ], "count": [ 41, { "columns": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "distinct": [ @@ -141025,83 +141357,83 @@ export default { } ], "max": [ - 6267 + 6291 ], "min": [ - 6269 + 6293 ], "stddev": [ - 6277 + 6301 ], "stddev_pop": [ - 6279 + 6303 ], "stddev_samp": [ - 6281 + 6305 ], "sum": [ - 6285 + 6309 ], "var_pop": [ - 6289 + 6313 ], "var_samp": [ - 6291 + 6315 ], "variance": [ - 6293 + 6317 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_aggregate_order_by": { "avg": [ - 6262 + 6286 ], "count": [ - 3534 + 3558 ], "max": [ - 6268 + 6292 ], "min": [ - 6270 + 6294 ], "stddev": [ - 6278 + 6302 ], "stddev_pop": [ - 6280 + 6304 ], "stddev_samp": [ - 6282 + 6306 ], "sum": [ - 6286 + 6310 ], "var_pop": [ - 6290 + 6314 ], "var_samp": [ - 6292 + 6316 ], "variance": [ - 6294 + 6318 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_arr_rel_insert_input": { "data": [ - 6266 + 6290 ], "on_conflict": [ - 6272 + 6296 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_avg_fields": { @@ -141112,159 +141444,159 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_avg_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_bool_exp": { "_and": [ - 6263 + 6287 ], "_not": [ - 6263 + 6287 ], "_or": [ - 6263 + 6287 ], "created_at": [ - 5130 + 5154 ], "invited_by": [ - 4496 + 4520 ], "invited_by_steam_id": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "session": [ - 6306 + 6330 ], "steam_id": [ - 311 + 312 ], "utility_practice_session_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_constraint": {}, "utility_practice_invites_inc_input": { "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_insert_input": { "created_at": [ - 5129 + 5153 ], "invited_by": [ - 4503 + 4527 ], "invited_by_steam_id": [ - 309 + 310 ], "player": [ - 4503 + 4527 ], "session": [ - 6315 + 6339 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_max_fields": { "created_at": [ - 5129 + 5153 ], "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_max_order_by": { "created_at": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_min_fields": { "created_at": [ - 5129 + 5153 ], "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_min_order_by": { "created_at": [ - 3534 + 3558 ], "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_mutation_response": { @@ -141272,79 +141604,79 @@ export default { 41 ], "returning": [ - 6254 + 6278 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_on_conflict": { "constraint": [ - 6264 + 6288 ], "update_columns": [ - 6287 + 6311 ], "where": [ - 6263 + 6287 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_order_by": { "created_at": [ - 3534 + 3558 ], "invited_by": [ - 4505 + 4529 ], "invited_by_steam_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "session": [ - 6317 + 6341 ], "steam_id": [ - 3534 + 3558 ], "utility_practice_session_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_pk_columns_input": { "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_select_column": {}, "utility_practice_invites_set_input": { "created_at": [ - 5129 + 5153 ], "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_fields": { @@ -141355,18 +141687,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_pop_fields": { @@ -141377,18 +141709,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_pop_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_samp_fields": { @@ -141399,83 +141731,83 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stddev_samp_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stream_cursor_input": { "initial_value": [ - 6284 + 6308 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_stream_cursor_value_input": { "created_at": [ - 5129 + 5153 ], "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "utility_practice_session_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_sum_fields": { "invited_by_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_sum_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_update_column": {}, "utility_practice_invites_updates": { "_inc": [ - 6265 + 6289 ], "_set": [ - 6276 + 6300 ], "where": [ - 6263 + 6287 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_var_pop_fields": { @@ -141486,18 +141818,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_var_pop_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_var_samp_fields": { @@ -141508,18 +141840,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_var_samp_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_variance_fields": { @@ -141530,23 +141862,23 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_invites_variance_order_by": { "invited_by_steam_id": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions": { "access": [ - 1568 + 1569 ], "can_manage": [ 6 @@ -141555,52 +141887,52 @@ export default { 6 ], "collection": [ - 5670 + 5694 ], "collection_id": [ - 6341 + 6365 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "e_utility_practice_status": [ - 1583 + 1584 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host": [ - 4492 + 4516 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "invites": [ - 6254, + 6278, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -141610,19 +141942,19 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], "invites_aggregate": [ - 6255, + 6279, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -141632,11 +141964,11 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], @@ -141650,130 +141982,130 @@ export default { 6 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "playbook": [ - 6226 + 6250 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "status": [ - 1588 + 1589 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate": { "aggregate": [ - 6301 + 6325 ], "nodes": [ - 6295 + 6319 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_bool_exp": { "bool_and": [ - 6298 + 6322 ], "bool_or": [ - 6299 + 6323 ], "count": [ - 6300 + 6324 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_bool_exp_bool_and": { "arguments": [ - 6320 + 6344 ], "distinct": [ 6 ], "filter": [ - 6306 + 6330 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_bool_exp_bool_or": { "arguments": [ - 6321 + 6345 ], "distinct": [ 6 ], "filter": [ - 6306 + 6330 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_bool_exp_count": { "arguments": [ - 6319 + 6343 ], "distinct": [ 6 ], "filter": [ - 6306 + 6330 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_fields": { "avg": [ - 6304 + 6328 ], "count": [ 41, { "columns": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "distinct": [ @@ -141782,83 +142114,83 @@ export default { } ], "max": [ - 6310 + 6334 ], "min": [ - 6312 + 6336 ], "stddev": [ - 6323 + 6347 ], "stddev_pop": [ - 6325 + 6349 ], "stddev_samp": [ - 6327 + 6351 ], "sum": [ - 6331 + 6355 ], "var_pop": [ - 6335 + 6359 ], "var_samp": [ - 6337 + 6361 ], "variance": [ - 6339 + 6363 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_aggregate_order_by": { "avg": [ - 6305 + 6329 ], "count": [ - 3534 + 3558 ], "max": [ - 6311 + 6335 ], "min": [ - 6313 + 6337 ], "stddev": [ - 6324 + 6348 ], "stddev_pop": [ - 6326 + 6350 ], "stddev_samp": [ - 6328 + 6352 ], "sum": [ - 6332 + 6356 ], "var_pop": [ - 6336 + 6360 ], "var_samp": [ - 6338 + 6362 ], "variance": [ - 6340 + 6364 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_arr_rel_insert_input": { "data": [ - 6309 + 6333 ], "on_conflict": [ - 6316 + 6340 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_avg_fields": { @@ -141866,29 +142198,29 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_avg_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_bool_exp": { "_and": [ - 6306 + 6330 ], "_not": [ - 6306 + 6330 ], "_or": [ - 6306 + 6330 ], "access": [ - 1569 + 1570 ], "can_manage": [ 7 @@ -141897,52 +142229,52 @@ export default { 7 ], "collection": [ - 5674 + 5698 ], "collection_id": [ - 6343 + 6367 ], "connection_link": [ - 86 + 87 ], "connection_string": [ - 86 + 87 ], "created_at": [ - 5130 + 5154 ], "e_utility_practice_status": [ - 1586 + 1587 ], "empty_since": [ - 5130 + 5154 ], "expires_at": [ - 5130 + 5154 ], "failure_reason": [ - 86 + 87 ], "first_joined_at": [ - 5130 + 5154 ], "host": [ - 4496 + 4520 ], "host_steam_id": [ - 311 + 312 ], "id": [ - 6343 + 6367 ], "invite_code": [ - 86 + 87 ], "invites": [ - 6263 + 6287 ], "invites_aggregate": [ - 6256 + 6280 ], "is_member": [ 7 @@ -141954,96 +142286,96 @@ export default { 7 ], "last_occupied_at": [ - 5130 + 5154 ], "map_changing_at": [ - 5130 + 5154 ], "map_name": [ - 86 + 87 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "playbook": [ - 6230 + 6254 ], "playbook_id": [ - 6343 + 6367 ], "region": [ - 86 + 87 ], "status": [ - 1589 + 1590 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "updated_at": [ - 5130 + 5154 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_constraint": {}, "utility_practice_sessions_inc_input": { "host_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_insert_input": { "access": [ - 1568 + 1569 ], "collection": [ - 5681 + 5705 ], "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "e_utility_practice_status": [ - 1594 + 1595 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host": [ - 4503 + 4527 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "invites": [ - 6260 + 6284 ], "is_open": [ 6 @@ -142052,279 +142384,279 @@ export default { 6 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "playbook": [ - 6237 + 6261 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "status": [ - 1588 + 1589 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_max_fields": { "collection_id": [ - 6341 + 6365 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_max_order_by": { "collection_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "empty_since": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "failure_reason": [ - 3534 + 3558 ], "first_joined_at": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "last_occupied_at": [ - 3534 + 3558 ], "map_changing_at": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "playbook_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_min_fields": { "collection_id": [ - 6341 + 6365 ], "connection_link": [ - 84 + 85 ], "connection_string": [ - 84 + 85 ], "created_at": [ - 5129 + 5153 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_min_order_by": { "collection_id": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "empty_since": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "failure_reason": [ - 3534 + 3558 ], "first_joined_at": [ - 3534 + 3558 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "last_occupied_at": [ - 3534 + 3558 ], "map_changing_at": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "playbook_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_mutation_response": { @@ -142332,147 +142664,147 @@ export default { 41 ], "returning": [ - 6295 + 6319 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_obj_rel_insert_input": { "data": [ - 6309 + 6333 ], "on_conflict": [ - 6316 + 6340 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_on_conflict": { "constraint": [ - 6307 + 6331 ], "update_columns": [ - 6333 + 6357 ], "where": [ - 6306 + 6330 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_order_by": { "access": [ - 3534 + 3558 ], "can_manage": [ - 3534 + 3558 ], "can_view": [ - 3534 + 3558 ], "collection": [ - 5683 + 5707 ], "collection_id": [ - 3534 + 3558 ], "connection_link": [ - 3534 + 3558 ], "connection_string": [ - 3534 + 3558 ], "created_at": [ - 3534 + 3558 ], "e_utility_practice_status": [ - 1596 + 1597 ], "empty_since": [ - 3534 + 3558 ], "expires_at": [ - 3534 + 3558 ], "failure_reason": [ - 3534 + 3558 ], "first_joined_at": [ - 3534 + 3558 ], "host": [ - 4505 + 4529 ], "host_steam_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "invite_code": [ - 3534 + 3558 ], "invites_aggregate": [ - 6259 + 6283 ], "is_member": [ - 3534 + 3558 ], "is_open": [ - 3534 + 3558 ], "is_render": [ - 3534 + 3558 ], "last_occupied_at": [ - 3534 + 3558 ], "map_changing_at": [ - 3534 + 3558 ], "map_name": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "playbook": [ - 6239 + 6263 ], "playbook_id": [ - 3534 + 3558 ], "region": [ - 3534 + 3558 ], "status": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "updated_at": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_pk_columns_input": { "id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_select_column": {}, @@ -142480,34 +142812,34 @@ export default { "utility_practice_sessions_select_column_utility_practice_sessions_aggregate_bool_exp_bool_or_arguments_columns": {}, "utility_practice_sessions_set_input": { "access": [ - 1568 + 1569 ], "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "is_open": [ 6 @@ -142516,34 +142848,34 @@ export default { 6 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "status": [ - 1588 + 1589 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_fields": { @@ -142551,15 +142883,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_pop_fields": { @@ -142567,15 +142899,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_pop_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_samp_fields": { @@ -142583,58 +142915,58 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stddev_samp_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stream_cursor_input": { "initial_value": [ - 6330 + 6354 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_stream_cursor_value_input": { "access": [ - 1568 + 1569 ], "collection_id": [ - 6341 + 6365 ], "created_at": [ - 5129 + 5153 ], "empty_since": [ - 5129 + 5153 ], "expires_at": [ - 5129 + 5153 ], "failure_reason": [ - 84 + 85 ], "first_joined_at": [ - 5129 + 5153 ], "host_steam_id": [ - 309 + 310 ], "id": [ - 6341 + 6365 ], "invite_code": [ - 84 + 85 ], "is_open": [ 6 @@ -142643,65 +142975,65 @@ export default { 6 ], "last_occupied_at": [ - 5129 + 5153 ], "map_changing_at": [ - 5129 + 5153 ], "map_name": [ - 84 + 85 ], "match_id": [ - 6341 + 6365 ], "playbook_id": [ - 6341 + 6365 ], "region": [ - 84 + 85 ], "status": [ - 1588 + 1589 ], "team_id": [ - 6341 + 6365 ], "updated_at": [ - 5129 + 5153 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_sum_fields": { "host_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_sum_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_update_column": {}, "utility_practice_sessions_updates": { "_inc": [ - 6308 + 6332 ], "_set": [ - 6322 + 6346 ], "where": [ - 6306 + 6330 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_var_pop_fields": { @@ -142709,15 +143041,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_var_pop_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_var_samp_fields": { @@ -142725,15 +143057,15 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_var_samp_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_variance_fields": { @@ -142741,86 +143073,86 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "utility_practice_sessions_variance_order_by": { "host_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 6341 + 6365 ], "_contains": [ - 6341 + 6365 ], "_eq": [ - 6341 + 6365 ], "_gt": [ - 6341 + 6365 ], "_gte": [ - 6341 + 6365 ], "_in": [ - 6341 + 6365 ], "_is_null": [ 6 ], "_lt": [ - 6341 + 6365 ], "_lte": [ - 6341 + 6365 ], "_neq": [ - 6341 + 6365 ], "_nin": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "uuid_comparison_exp": { "_eq": [ - 6341 + 6365 ], "_gt": [ - 6341 + 6365 ], "_gte": [ - 6341 + 6365 ], "_in": [ - 6341 + 6365 ], "_is_null": [ 6 ], "_lt": [ - 6341 + 6365 ], "_lte": [ - 6341 + 6365 ], "_neq": [ - 6341 + 6365 ], "_nin": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats": { @@ -142831,19 +143163,19 @@ export default { 41 ], "event": [ - 1975 + 1976 ], "event_id": [ - 6341 + 6365 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -142852,242 +143184,242 @@ export default { 41 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate": { "aggregate": [ - 6358 + 6382 ], "nodes": [ - 6344 + 6368 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 6347 + 6371 ], "corr": [ - 6348 + 6372 ], "count": [ - 6350 + 6374 ], "covar_samp": [ - 6351 + 6375 ], "max": [ - 6353 + 6377 ], "min": [ - 6354 + 6378 ], "stddev_samp": [ - 6355 + 6379 ], "sum": [ - 6356 + 6380 ], "var_samp": [ - 6357 + 6381 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 6371 + 6395 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 6349 + 6373 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 6372 + 6396 ], "Y": [ - 6372 + 6396 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 6370 + 6394 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 6352 + 6376 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6373 + 6397 ], "Y": [ - 6373 + 6397 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 6374 + 6398 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 6375 + 6399 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6376 + 6400 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 6377 + 6401 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 6378 + 6402 ], "distinct": [ 6 ], "filter": [ - 6363 + 6387 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_fields": { "avg": [ - 6361 + 6385 ], "count": [ 41, { "columns": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -143096,80 +143428,80 @@ export default { } ], "max": [ - 6365 + 6389 ], "min": [ - 6367 + 6391 ], "stddev": [ - 6379 + 6403 ], "stddev_pop": [ - 6381 + 6405 ], "stddev_samp": [ - 6383 + 6407 ], "sum": [ - 6387 + 6411 ], "var_pop": [ - 6389 + 6413 ], "var_samp": [ - 6391 + 6415 ], "variance": [ - 6393 + 6417 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 6362 + 6386 ], "count": [ - 3534 + 3558 ], "max": [ - 6366 + 6390 ], "min": [ - 6368 + 6392 ], "stddev": [ - 6380 + 6404 ], "stddev_pop": [ - 6382 + 6406 ], "stddev_samp": [ - 6384 + 6408 ], "sum": [ - 6388 + 6412 ], "var_pop": [ - 6390 + 6414 ], "var_samp": [ - 6392 + 6416 ], "variance": [ - 6394 + 6418 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 6364 + 6388 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_avg_fields": { @@ -143198,47 +143530,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_avg_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_bool_exp": { "_and": [ - 6363 + 6387 ], "_not": [ - 6363 + 6387 ], "_or": [ - 6363 + 6387 ], "assists": [ 42 @@ -143247,19 +143579,19 @@ export default { 42 ], "event": [ - 1979 + 1980 ], "event_id": [ - 6343 + 6367 ], "headshot_percentage": [ - 2004 + 2005 ], "headshots": [ 42 ], "kdr": [ - 2004 + 2005 ], "kills": [ 42 @@ -143268,13 +143600,13 @@ export default { 42 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_insert_input": { @@ -143285,19 +143617,19 @@ export default { 41 ], "event": [ - 1986 + 1987 ], "event_id": [ - 6341 + 6365 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -143306,13 +143638,13 @@ export default { 41 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_max_fields": { @@ -143323,16 +143655,16 @@ export default { 41 ], "event_id": [ - 6341 + 6365 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -143341,42 +143673,42 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_max_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_min_fields": { @@ -143387,16 +143719,16 @@ export default { 41 ], "event_id": [ - 6341 + 6365 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -143405,80 +143737,80 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_min_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "event_id": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "event": [ - 1988 + 1989 ], "event_id": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_select_column": {}, @@ -143516,36 +143848,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stddev_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stddev_pop_fields": { @@ -143574,36 +143906,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stddev_samp_fields": { @@ -143632,47 +143964,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 6386 + 6410 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_stream_cursor_value_input": { @@ -143683,16 +144015,16 @@ export default { 41 ], "event_id": [ - 6341 + 6365 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -143701,10 +144033,10 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_sum_fields": { @@ -143715,13 +144047,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -143730,39 +144062,39 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_sum_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_var_pop_fields": { @@ -143791,36 +144123,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_var_samp_fields": { @@ -143849,36 +144181,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_variance_fields": { @@ -143907,36 +144239,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_event_player_stats_variance_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status": { @@ -143983,29 +144315,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 6397 + 6421 ], "nodes": [ - 6395 + 6419 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 6398 + 6422 ], "count": [ 41, { "columns": [ - 6403, + 6427, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -144014,34 +144346,34 @@ export default { } ], "max": [ - 6400 + 6424 ], "min": [ - 6401 + 6425 ], "stddev": [ - 6404 + 6428 ], "stddev_pop": [ - 6405 + 6429 ], "stddev_samp": [ - 6406 + 6430 ], "sum": [ - 6409 + 6433 ], "var_pop": [ - 6410 + 6434 ], "var_samp": [ - 6411 + 6435 ], "variance": [ - 6412 + 6436 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_avg_fields": { @@ -144076,18 +144408,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 6399 + 6423 ], "_not": [ - 6399 + 6423 ], "_or": [ - 6399 + 6423 ], "demo_free_gpu_nodes": [ 42 @@ -144132,7 +144464,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_max_fields": { @@ -144167,7 +144499,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_min_fields": { @@ -144202,54 +144534,54 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 3534 + 3558 ], "demo_in_progress": [ - 3534 + 3558 ], "demo_total_gpu_nodes": [ - 3534 + 3558 ], "free_gpu_nodes": [ - 3534 + 3558 ], "free_gpu_nodes_for_batch": [ - 3534 + 3558 ], "highlights_in_progress": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "live_in_progress": [ - 3534 + 3558 ], "registered_gpu_nodes": [ - 3534 + 3558 ], "rendering_total_gpu_nodes": [ - 3534 + 3558 ], "renders_paused_for_active_match": [ - 3534 + 3558 ], "streaming_free_gpu_nodes": [ - 3534 + 3558 ], "streaming_total_gpu_nodes": [ - 3534 + 3558 ], "total_gpu_nodes": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_select_column": {}, @@ -144285,7 +144617,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_stddev_pop_fields": { @@ -144320,7 +144652,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_stddev_samp_fields": { @@ -144355,18 +144687,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 6408 + 6432 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_stream_cursor_value_input": { @@ -144413,7 +144745,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_sum_fields": { @@ -144448,7 +144780,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_var_pop_fields": { @@ -144483,7 +144815,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_var_samp_fields": { @@ -144518,7 +144850,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_gpu_pool_status_variance_fields": { @@ -144553,7 +144885,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings": { @@ -144564,22 +144896,22 @@ export default { 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2708 + 2709 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "losses": [ 41 @@ -144609,66 +144941,66 @@ export default { 41 ], "season_division": [ - 2526 + 2527 ], "team_season": [ - 2666 + 2667 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_aggregate": { "aggregate": [ - 6417 + 6441 ], "nodes": [ - 6413 + 6437 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 6416 + 6440 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 6429 + 6453 ], "distinct": [ 6 ], "filter": [ - 6422 + 6446 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_aggregate_fields": { "avg": [ - 6420 + 6444 ], "count": [ 41, { "columns": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -144677,80 +145009,80 @@ export default { } ], "max": [ - 6424 + 6448 ], "min": [ - 6426 + 6450 ], "stddev": [ - 6430 + 6454 ], "stddev_pop": [ - 6432 + 6456 ], "stddev_samp": [ - 6434 + 6458 ], "sum": [ - 6438 + 6462 ], "var_pop": [ - 6440 + 6464 ], "var_samp": [ - 6442 + 6466 ], "variance": [ - 6444 + 6468 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 6421 + 6445 ], "count": [ - 3534 + 3558 ], "max": [ - 6425 + 6449 ], "min": [ - 6427 + 6451 ], "stddev": [ - 6431 + 6455 ], "stddev_pop": [ - 6433 + 6457 ], "stddev_samp": [ - 6435 + 6459 ], "sum": [ - 6439 + 6463 ], "var_pop": [ - 6441 + 6465 ], "var_samp": [ - 6443 + 6467 ], "variance": [ - 6445 + 6469 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 6423 + 6447 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_avg_fields": { @@ -144791,59 +145123,59 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_bool_exp": { "_and": [ - 6422 + 6446 ], "_not": [ - 6422 + 6446 ], "_or": [ - 6422 + 6446 ], "head_to_head_match_wins": [ 42 @@ -144852,22 +145184,22 @@ export default { 42 ], "league_division_id": [ - 6343 + 6367 ], "league_season_division_id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "league_team": [ - 2711 + 2712 ], "league_team_id": [ - 6343 + 6367 ], "league_team_season_id": [ - 6343 + 6367 ], "losses": [ 42 @@ -144897,19 +145229,19 @@ export default { 42 ], "season_division": [ - 2533 + 2534 ], "team_season": [ - 2675 + 2676 ], "tournament_team_id": [ - 6343 + 6367 ], "wins": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_insert_input": { @@ -144920,22 +145252,22 @@ export default { 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2717 + 2718 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "losses": [ 41 @@ -144965,19 +145297,19 @@ export default { 41 ], "season_division": [ - 2541 + 2542 ], "team_season": [ - 2684 + 2685 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_max_fields": { @@ -144988,19 +145320,19 @@ export default { 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "losses": [ 41 @@ -145030,72 +145362,72 @@ export default { 41 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_min_fields": { @@ -145106,19 +145438,19 @@ export default { 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "losses": [ 41 @@ -145148,140 +145480,140 @@ export default { 41 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team": [ - 2719 + 2720 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "season_division": [ - 2543 + 2544 ], "team_season": [ - 2686 + 2687 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_select_column": {}, @@ -145323,48 +145655,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stddev_pop_fields": { @@ -145405,48 +145737,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stddev_samp_fields": { @@ -145487,59 +145819,59 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 6437 + 6461 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_stream_cursor_value_input": { @@ -145550,19 +145882,19 @@ export default { 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "losses": [ 41 @@ -145592,13 +145924,13 @@ export default { 41 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_sum_fields": { @@ -145639,48 +145971,48 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_var_pop_fields": { @@ -145721,48 +146053,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_var_samp_fields": { @@ -145803,48 +146135,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_variance_fields": { @@ -145885,48 +146217,48 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "round_diff": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats": { @@ -145937,275 +146269,275 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2708 + 2709 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "matches_played": [ 41 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 6460 + 6484 ], "nodes": [ - 6446 + 6470 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 6449 + 6473 ], "corr": [ - 6450 + 6474 ], "count": [ - 6452 + 6476 ], "covar_samp": [ - 6453 + 6477 ], "max": [ - 6455 + 6479 ], "min": [ - 6456 + 6480 ], "stddev_samp": [ - 6457 + 6481 ], "sum": [ - 6458 + 6482 ], "var_samp": [ - 6459 + 6483 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 6473 + 6497 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 6451 + 6475 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 6474 + 6498 ], "Y": [ - 6474 + 6498 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 6472 + 6496 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 6454 + 6478 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6475 + 6499 ], "Y": [ - 6475 + 6499 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 6476 + 6500 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 6477 + 6501 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6478 + 6502 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 6479 + 6503 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 6480 + 6504 ], "distinct": [ 6 ], "filter": [ - 6465 + 6489 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 6463 + 6487 ], "count": [ 41, { "columns": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -146214,80 +146546,80 @@ export default { } ], "max": [ - 6467 + 6491 ], "min": [ - 6469 + 6493 ], "stddev": [ - 6481 + 6505 ], "stddev_pop": [ - 6483 + 6507 ], "stddev_samp": [ - 6485 + 6509 ], "sum": [ - 6489 + 6513 ], "var_pop": [ - 6491 + 6515 ], "var_samp": [ - 6493 + 6517 ], "variance": [ - 6495 + 6519 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 6464 + 6488 ], "count": [ - 3534 + 3558 ], "max": [ - 6468 + 6492 ], "min": [ - 6470 + 6494 ], "stddev": [ - 6482 + 6506 ], "stddev_pop": [ - 6484 + 6508 ], "stddev_samp": [ - 6486 + 6510 ], "sum": [ - 6490 + 6514 ], "var_pop": [ - 6492 + 6516 ], "var_samp": [ - 6494 + 6518 ], "variance": [ - 6496 + 6520 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 6466 + 6490 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_avg_fields": { @@ -146316,47 +146648,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_bool_exp": { "_and": [ - 6465 + 6489 ], "_not": [ - 6465 + 6489 ], "_or": [ - 6465 + 6489 ], "assists": [ 42 @@ -146365,46 +146697,46 @@ export default { 42 ], "headshot_percentage": [ - 2004 + 2005 ], "headshots": [ 42 ], "kdr": [ - 2004 + 2005 ], "kills": [ 42 ], "league_division_id": [ - 6343 + 6367 ], "league_season_division_id": [ - 6343 + 6367 ], "league_season_id": [ - 6343 + 6367 ], "league_team": [ - 2711 + 2712 ], "league_team_id": [ - 6343 + 6367 ], "league_team_season_id": [ - 6343 + 6367 ], "matches_played": [ 42 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_insert_input": { @@ -146415,46 +146747,46 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team": [ - 2717 + 2718 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "matches_played": [ 41 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_max_fields": { @@ -146465,84 +146797,84 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "matches_played": [ 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_max_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_min_fields": { @@ -146553,134 +146885,134 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "matches_played": [ 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_min_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "league_division_id": [ - 3534 + 3558 ], "league_season_division_id": [ - 3534 + 3558 ], "league_season_id": [ - 3534 + 3558 ], "league_team": [ - 2719 + 2720 ], "league_team_id": [ - 3534 + 3558 ], "league_team_season_id": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_select_column": {}, @@ -146718,36 +147050,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stddev_pop_fields": { @@ -146776,36 +147108,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stddev_samp_fields": { @@ -146834,47 +147166,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 6488 + 6512 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_stream_cursor_value_input": { @@ -146885,40 +147217,40 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 ], "league_division_id": [ - 6341 + 6365 ], "league_season_division_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "league_team_id": [ - 6341 + 6365 ], "league_team_season_id": [ - 6341 + 6365 ], "matches_played": [ 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_sum_fields": { @@ -146929,13 +147261,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -146944,39 +147276,39 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_var_pop_fields": { @@ -147005,36 +147337,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_var_samp_fields": { @@ -147063,36 +147395,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_variance_fields": { @@ -147121,36 +147453,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_captains": { @@ -147158,50 +147490,50 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_aggregate": { "aggregate": [ - 6499 + 6523 ], "nodes": [ - 6497 + 6521 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 6500 + 6524 ], "count": [ 41, { "columns": [ - 6509, + 6533, "[v_match_captains_select_column!]" ], "distinct": [ @@ -147210,34 +147542,34 @@ export default { } ], "max": [ - 6504 + 6528 ], "min": [ - 6505 + 6529 ], "stddev": [ - 6511 + 6535 ], "stddev_pop": [ - 6512 + 6536 ], "stddev_samp": [ - 6513 + 6537 ], "sum": [ - 6516 + 6540 ], "var_pop": [ - 6518 + 6542 ], "var_samp": [ - 6519 + 6543 ], "variance": [ - 6520 + 6544 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_avg_fields": { @@ -147245,53 +147577,53 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_bool_exp": { "_and": [ - 6501 + 6525 ], "_not": [ - 6501 + 6525 ], "_or": [ - 6501 + 6525 ], "captain": [ 7 ], "discord_id": [ - 86 + 87 ], "id": [ - 6343 + 6367 ], "lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "placeholder_name": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_inc_input": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_insert_input": { @@ -147299,68 +147631,68 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "player": [ - 4503 + 4527 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_max_fields": { "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_min_fields": { "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_mutation_response": { @@ -147368,47 +147700,47 @@ export default { 41 ], "returning": [ - 6497 + 6521 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 6503 + 6527 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_order_by": { "captain": [ - 3534 + 3558 ], "discord_id": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "placeholder_name": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_select_column": {}, @@ -147417,22 +147749,22 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_stddev_fields": { @@ -147440,7 +147772,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_stddev_pop_fields": { @@ -147448,7 +147780,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_stddev_samp_fields": { @@ -147456,18 +147788,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 6515 + 6539 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_stream_cursor_value_input": { @@ -147475,44 +147807,44 @@ export default { 6 ], "discord_id": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "placeholder_name": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_updates": { "_inc": [ - 6502 + 6526 ], "_set": [ - 6510 + 6534 ], "where": [ - 6501 + 6525 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_var_pop_fields": { @@ -147520,7 +147852,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_var_samp_fields": { @@ -147528,7 +147860,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_captains_variance_fields": { @@ -147536,7 +147868,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches": { @@ -147544,90 +147876,90 @@ export default { 41 ], "clutcher": [ - 4492 + 4516 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "outcome": [ - 84 + 85 ], "round": [ 41 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 6525 + 6549 ], "nodes": [ - 6521 + 6545 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 6524 + 6548 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 6537 + 6561 ], "distinct": [ 6 ], "filter": [ - 6530 + 6554 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 6528 + 6552 ], "count": [ 41, { "columns": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -147636,80 +147968,80 @@ export default { } ], "max": [ - 6532 + 6556 ], "min": [ - 6534 + 6558 ], "stddev": [ - 6538 + 6562 ], "stddev_pop": [ - 6540 + 6564 ], "stddev_samp": [ - 6542 + 6566 ], "sum": [ - 6546 + 6570 ], "var_pop": [ - 6548 + 6572 ], "var_samp": [ - 6550 + 6574 ], "variance": [ - 6552 + 6576 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 6529 + 6553 ], "count": [ - 3534 + 3558 ], "max": [ - 6533 + 6557 ], "min": [ - 6535 + 6559 ], "stddev": [ - 6539 + 6563 ], "stddev_pop": [ - 6541 + 6565 ], "stddev_samp": [ - 6543 + 6567 ], "sum": [ - 6547 + 6571 ], "var_pop": [ - 6549 + 6573 ], "var_samp": [ - 6551 + 6575 ], "variance": [ - 6553 + 6577 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 6531 + 6555 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_avg_fields": { @@ -147726,77 +148058,77 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_bool_exp": { "_and": [ - 6530 + 6554 ], "_not": [ - 6530 + 6554 ], "_or": [ - 6530 + 6554 ], "against_count": [ 42 ], "clutcher": [ - 4496 + 4520 ], "clutcher_steam_id": [ - 311 + 312 ], "kills_in_clutch": [ 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "outcome": [ - 86 + 87 ], "round": [ 42 ], "side": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_insert_input": { @@ -147804,43 +148136,43 @@ export default { 41 ], "clutcher": [ - 4503 + 4527 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "outcome": [ - 84 + 85 ], "round": [ 41 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_max_fields": { @@ -147848,63 +148180,63 @@ export default { 41 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "outcome": [ - 84 + 85 ], "round": [ 41 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "outcome": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_min_fields": { @@ -147912,107 +148244,107 @@ export default { 41 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "outcome": [ - 84 + 85 ], "round": [ 41 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "outcome": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher": [ - 4505 + 4529 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "outcome": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_select_column": {}, @@ -148030,24 +148362,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stddev_pop_fields": { @@ -148064,24 +148396,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stddev_samp_fields": { @@ -148098,35 +148430,35 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 6545 + 6569 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_stream_cursor_value_input": { @@ -148134,31 +148466,31 @@ export default { 41 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "outcome": [ - 84 + 85 ], "round": [ 41 ], "side": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_sum_fields": { @@ -148166,7 +148498,7 @@ export default { 41 ], "clutcher_steam_id": [ - 309 + 310 ], "kills_in_clutch": [ 41 @@ -148175,24 +148507,24 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_var_pop_fields": { @@ -148209,24 +148541,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_var_samp_fields": { @@ -148243,24 +148575,24 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_variance_fields": { @@ -148277,81 +148609,81 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 3534 + 3558 ], "clutcher_steam_id": [ - 3534 + 3558 ], "kills_in_clutch": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs": { "killer_side": [ - 84 + 85 ], "killer_steam_id": [ - 309 + 310 ], "kills": [ 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "victim_side": [ - 84 + 85 ], "victim_steam_id": [ - 309 + 310 ], "weapon": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 6556 + 6580 ], "nodes": [ - 6554 + 6578 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 6557 + 6581 ], "count": [ 41, { "columns": [ - 6562, + 6586, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -148360,34 +148692,34 @@ export default { } ], "max": [ - 6559 + 6583 ], "min": [ - 6560 + 6584 ], "stddev": [ - 6563 + 6587 ], "stddev_pop": [ - 6564 + 6588 ], "stddev_samp": [ - 6565 + 6589 ], "sum": [ - 6568 + 6592 ], "var_pop": [ - 6569 + 6593 ], "var_samp": [ - 6570 + 6594 ], "variance": [ - 6571 + 6595 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_avg_fields": { @@ -148401,144 +148733,144 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 6558 + 6582 ], "_not": [ - 6558 + 6582 ], "_or": [ - 6558 + 6582 ], "killer_side": [ - 86 + 87 ], "killer_steam_id": [ - 311 + 312 ], "kills": [ 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "victim_side": [ - 86 + 87 ], "victim_steam_id": [ - 311 + 312 ], "weapon": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 84 + 85 ], "killer_steam_id": [ - 309 + 310 ], "kills": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "victim_side": [ - 84 + 85 ], "victim_steam_id": [ - 309 + 310 ], "weapon": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 84 + 85 ], "killer_steam_id": [ - 309 + 310 ], "kills": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "victim_side": [ - 84 + 85 ], "victim_steam_id": [ - 309 + 310 ], "weapon": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 3534 + 3558 ], "killer_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "victim_side": [ - 3534 + 3558 ], "victim_steam_id": [ - 3534 + 3558 ], "weapon": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_select_column": {}, @@ -148553,7 +148885,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_stddev_pop_fields": { @@ -148567,7 +148899,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_stddev_samp_fields": { @@ -148581,61 +148913,61 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 6567 + 6591 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 84 + 85 ], "killer_steam_id": [ - 309 + 310 ], "kills": [ 41 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "victim_side": [ - 84 + 85 ], "victim_steam_id": [ - 309 + 310 ], "weapon": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 309 + 310 ], "kills": [ 41 ], "victim_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_var_pop_fields": { @@ -148649,7 +148981,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_var_samp_fields": { @@ -148663,7 +148995,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_kill_pairs_variance_fields": { @@ -148677,64 +149009,64 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types": { "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 6574 + 6598 ], "nodes": [ - 6572 + 6596 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 6575 + 6599 ], "count": [ 41, { "columns": [ - 6580, + 6604, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -148743,34 +149075,34 @@ export default { } ], "max": [ - 6577 + 6601 ], "min": [ - 6578 + 6602 ], "stddev": [ - 6581 + 6605 ], "stddev_pop": [ - 6582 + 6606 ], "stddev_samp": [ - 6583 + 6607 ], "sum": [ - 6586 + 6610 ], "var_pop": [ - 6587 + 6611 ], "var_samp": [ - 6588 + 6612 ], "variance": [ - 6589 + 6613 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_avg_fields": { @@ -148781,138 +149113,138 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 6576 + 6600 ], "_not": [ - 6576 + 6600 ], "_or": [ - 6576 + 6600 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "matchup": [ - 86 + 87 ], "rounds": [ 42 ], "side": [ - 86 + 87 ], "wins": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "matchup": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_select_column": {}, @@ -148924,7 +149256,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { @@ -148935,7 +149267,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { @@ -148946,44 +149278,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 6585 + 6609 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_sum_fields": { @@ -148994,7 +149326,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_var_pop_fields": { @@ -149005,7 +149337,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_var_samp_fields": { @@ -149016,7 +149348,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_buy_types_variance_fields": { @@ -149027,7 +149359,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats": { @@ -149044,22 +149376,22 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "opening_attempts": [ 41 @@ -149080,7 +149412,7 @@ export default { 41 ], "side": [ - 84 + 85 ], "won_buy_eco": [ 41 @@ -149095,29 +149427,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 6592 + 6616 ], "nodes": [ - 6590 + 6614 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 6593 + 6617 ], "count": [ 41, { "columns": [ - 6598, + 6622, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -149126,34 +149458,34 @@ export default { } ], "max": [ - 6595 + 6619 ], "min": [ - 6596 + 6620 ], "stddev": [ - 6599 + 6623 ], "stddev_pop": [ - 6600 + 6624 ], "stddev_samp": [ - 6601 + 6625 ], "sum": [ - 6604 + 6628 ], "var_pop": [ - 6605 + 6629 ], "var_samp": [ - 6606 + 6630 ], "variance": [ - 6607 + 6631 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_avg_fields": { @@ -149200,18 +149532,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 6594 + 6618 ], "_not": [ - 6594 + 6618 ], "_or": [ - 6594 + 6618 ], "man_adv_rounds": [ 42 @@ -149226,22 +149558,22 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "opening_attempts": [ 42 @@ -149262,7 +149594,7 @@ export default { 42 ], "side": [ - 86 + 87 ], "won_buy_eco": [ 42 @@ -149277,7 +149609,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_max_fields": { @@ -149294,13 +149626,13 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "opening_attempts": [ 41 @@ -149321,7 +149653,7 @@ export default { 41 ], "side": [ - 84 + 85 ], "won_buy_eco": [ 41 @@ -149336,7 +149668,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_min_fields": { @@ -149353,13 +149685,13 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "opening_attempts": [ 41 @@ -149380,7 +149712,7 @@ export default { 41 ], "side": [ - 84 + 85 ], "won_buy_eco": [ 41 @@ -149395,75 +149727,75 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 3534 + 3558 ], "man_adv_wins": [ - 3534 + 3558 ], "man_dis_rounds": [ - 3534 + 3558 ], "man_dis_wins": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "opening_attempts": [ - 3534 + 3558 ], "opening_wins": [ - 3534 + 3558 ], "pistol_rounds": [ - 3534 + 3558 ], "pistol_wins": [ - 3534 + 3558 ], "round_wins": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "won_buy_eco": [ - 3534 + 3558 ], "won_buy_force": [ - 3534 + 3558 ], "won_buy_full": [ - 3534 + 3558 ], "won_buy_pistol": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_select_column": {}, @@ -149511,7 +149843,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { @@ -149558,7 +149890,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { @@ -149605,18 +149937,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 6603 + 6627 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { @@ -149633,13 +149965,13 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "opening_attempts": [ 41 @@ -149660,7 +149992,7 @@ export default { 41 ], "side": [ - 84 + 85 ], "won_buy_eco": [ 41 @@ -149675,7 +150007,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_sum_fields": { @@ -149722,7 +150054,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_var_pop_fields": { @@ -149769,7 +150101,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_var_samp_fields": { @@ -149816,7 +150148,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_lineup_map_stats_variance_fields": { @@ -149863,7 +150195,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds": { @@ -149871,35 +150203,35 @@ export default { 6 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 6610 + 6634 ], "nodes": [ - 6608 + 6632 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 6611 + 6635 ], "count": [ 41, { "columns": [ - 6619, + 6643, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -149908,34 +150240,34 @@ export default { } ], "max": [ - 6615 + 6639 ], "min": [ - 6616 + 6640 ], "stddev": [ - 6621 + 6645 ], "stddev_pop": [ - 6622 + 6646 ], "stddev_samp": [ - 6623 + 6647 ], "sum": [ - 6626 + 6650 ], "var_pop": [ - 6628 + 6652 ], "var_samp": [ - 6629 + 6653 ], "variance": [ - 6630 + 6654 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_avg_fields": { @@ -149943,30 +150275,30 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 6612 + 6636 ], "_not": [ - 6612 + 6636 ], "_or": [ - 6612 + 6636 ], "has_backup_file": [ 7 ], "match_map_id": [ - 6343 + 6367 ], "round": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_inc_input": { @@ -149974,7 +150306,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_insert_input": { @@ -149982,35 +150314,35 @@ export default { 6 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_mutation_response": { @@ -150018,24 +150350,24 @@ export default { 41 ], "returning": [ - 6608 + 6632 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -150044,13 +150376,13 @@ export default { 6 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_stddev_fields": { @@ -150058,7 +150390,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { @@ -150066,7 +150398,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { @@ -150074,18 +150406,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 6625 + 6649 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -150093,13 +150425,13 @@ export default { 6 ], "match_map_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_sum_fields": { @@ -150107,21 +150439,21 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 6613 + 6637 ], "_set": [ - 6620 + 6644 ], "where": [ - 6612 + 6636 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_var_pop_fields": { @@ -150129,7 +150461,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_var_samp_fields": { @@ -150137,7 +150469,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_map_backup_rounds_variance_fields": { @@ -150145,7 +150477,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types": { @@ -150156,62 +150488,62 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "player": [ - 4492 + 4516 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 6633 + 6657 ], "nodes": [ - 6631 + 6655 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 6634 + 6658 ], "count": [ 41, { "columns": [ - 6639, + 6663, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -150220,34 +150552,34 @@ export default { } ], "max": [ - 6636 + 6660 ], "min": [ - 6637 + 6661 ], "stddev": [ - 6640 + 6664 ], "stddev_pop": [ - 6641 + 6665 ], "stddev_samp": [ - 6642 + 6666 ], "sum": [ - 6645 + 6669 ], "var_pop": [ - 6646 + 6670 ], "var_samp": [ - 6647 + 6671 ], "variance": [ - 6648 + 6672 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_avg_fields": { @@ -150264,18 +150596,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 6635 + 6659 ], "_not": [ - 6635 + 6659 ], "_or": [ - 6635 + 6659 ], "deaths": [ 42 @@ -150284,40 +150616,40 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "matchup": [ - 86 + 87 ], "player": [ - 4496 + 4520 ], "rounds": [ 42 ], "side": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_max_fields": { @@ -150328,28 +150660,28 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_min_fields": { @@ -150360,72 +150692,72 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "matchup": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "rounds": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_select_column": {}, @@ -150443,7 +150775,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_stddev_pop_fields": { @@ -150460,7 +150792,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_stddev_samp_fields": { @@ -150477,18 +150809,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 6644 + 6668 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_stream_cursor_value_input": { @@ -150499,28 +150831,28 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "matchup": [ - 84 + 85 ], "rounds": [ 41 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_sum_fields": { @@ -150534,10 +150866,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_var_pop_fields": { @@ -150554,7 +150886,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_var_samp_fields": { @@ -150571,7 +150903,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_buy_types_variance_fields": { @@ -150588,7 +150920,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels": { @@ -150599,31 +150931,31 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2972 + 2996 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -150632,54 +150964,54 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 6653 + 6677 ], "nodes": [ - 6649 + 6673 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 6652 + 6676 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 6665 + 6689 ], "distinct": [ 6 ], "filter": [ - 6658 + 6682 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 6656 + 6680 ], "count": [ 41, { "columns": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -150688,80 +151020,80 @@ export default { } ], "max": [ - 6660 + 6684 ], "min": [ - 6662 + 6686 ], "stddev": [ - 6666 + 6690 ], "stddev_pop": [ - 6668 + 6692 ], "stddev_samp": [ - 6670 + 6694 ], "sum": [ - 6674 + 6698 ], "var_pop": [ - 6676 + 6700 ], "var_samp": [ - 6678 + 6702 ], "variance": [ - 6680 + 6704 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 6657 + 6681 ], "count": [ - 3534 + 3558 ], "max": [ - 6661 + 6685 ], "min": [ - 6663 + 6687 ], "stddev": [ - 6667 + 6691 ], "stddev_pop": [ - 6669 + 6693 ], "stddev_samp": [ - 6671 + 6695 ], "sum": [ - 6675 + 6699 ], "var_pop": [ - 6677 + 6701 ], "var_samp": [ - 6679 + 6703 ], "variance": [ - 6681 + 6705 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 6659 + 6683 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_avg_fields": { @@ -150781,38 +151113,38 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 6658 + 6682 ], "_not": [ - 6658 + 6682 ], "_or": [ - 6658 + 6682 ], "attempts": [ 42 @@ -150821,31 +151153,31 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_lineup": [ - 2981 + 3005 ], "match_lineup_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "side": [ - 86 + 87 ], "steam_id": [ - 311 + 312 ], "traded_deaths": [ 42 @@ -150854,7 +151186,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_insert_input": { @@ -150865,31 +151197,31 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_lineup": [ - 2990 + 3014 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -150898,7 +151230,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_max_fields": { @@ -150909,19 +151241,19 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -150930,39 +151262,39 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_min_fields": { @@ -150973,19 +151305,19 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -150994,83 +151326,83 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "side": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_lineup": [ - 2992 + 3016 ], "match_lineup_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "side": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_select_column": {}, @@ -151091,27 +151423,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stddev_pop_fields": { @@ -151131,27 +151463,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stddev_samp_fields": { @@ -151171,38 +151503,38 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 6673 + 6697 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { @@ -151213,19 +151545,19 @@ export default { 41 ], "match_id": [ - 6341 + 6365 ], "match_lineup_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "side": [ - 84 + 85 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -151234,7 +151566,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_sum_fields": { @@ -151245,7 +151577,7 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "traded_deaths": [ 41 @@ -151254,27 +151586,27 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_var_pop_fields": { @@ -151294,27 +151626,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_var_samp_fields": { @@ -151334,27 +151666,27 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_variance_fields": { @@ -151374,69 +151706,69 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "traded_deaths": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 309 + 310 ], "kill_count": [ - 309 + 310 ], "nemsis": [ - 4492 + 4516 ], "player": [ - 4492 + 4516 ], "victim_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 6684 + 6708 ], "nodes": [ - 6682 + 6706 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 6685 + 6709 ], "count": [ 41, { "columns": [ - 6690, + 6714, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -151445,34 +151777,34 @@ export default { } ], "max": [ - 6687 + 6711 ], "min": [ - 6688 + 6712 ], "stddev": [ - 6691 + 6715 ], "stddev_pop": [ - 6692 + 6716 ], "stddev_samp": [ - 6693 + 6717 ], "sum": [ - 6696 + 6720 ], "var_pop": [ - 6697 + 6721 ], "var_samp": [ - 6698 + 6722 ], "variance": [ - 6699 + 6723 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_avg_fields": { @@ -151486,84 +151818,84 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 6686 + 6710 ], "_not": [ - 6686 + 6710 ], "_or": [ - 6686 + 6710 ], "attacker_id": [ - 311 + 312 ], "kill_count": [ - 311 + 312 ], "nemsis": [ - 4496 + 4520 ], "player": [ - 4496 + 4520 ], "victim_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 309 + 310 ], "kill_count": [ - 309 + 310 ], "victim_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 309 + 310 ], "kill_count": [ - 309 + 310 ], "victim_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 3534 + 3558 ], "kill_count": [ - 3534 + 3558 ], "nemsis": [ - 4505 + 4529 ], "player": [ - 4505 + 4529 ], "victim_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_select_column": {}, @@ -151578,7 +151910,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_stddev_pop_fields": { @@ -151592,7 +151924,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_stddev_samp_fields": { @@ -151606,46 +151938,46 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 6695 + 6719 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 309 + 310 ], "kill_count": [ - 309 + 310 ], "victim_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 309 + 310 ], "kill_count": [ - 309 + 310 ], "victim_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_var_pop_fields": { @@ -151659,7 +151991,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_var_samp_fields": { @@ -151673,7 +152005,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_arch_nemesis_variance_fields": { @@ -151687,49 +152019,49 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage": { "avg_damage_per_round": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "total_damage": [ - 309 + 310 ], "total_rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_aggregate": { "aggregate": [ - 6702 + 6726 ], "nodes": [ - 6700 + 6724 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 6703 + 6727 ], "count": [ 41, { "columns": [ - 6708, + 6732, "[v_player_damage_select_column!]" ], "distinct": [ @@ -151738,34 +152070,34 @@ export default { } ], "max": [ - 6705 + 6729 ], "min": [ - 6706 + 6730 ], "stddev": [ - 6709 + 6733 ], "stddev_pop": [ - 6710 + 6734 ], "stddev_samp": [ - 6711 + 6735 ], "sum": [ - 6714 + 6738 ], "var_pop": [ - 6715 + 6739 ], "var_samp": [ - 6716 + 6740 ], "variance": [ - 6717 + 6741 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_avg_fields": { @@ -151782,90 +152114,90 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_bool_exp": { "_and": [ - 6704 + 6728 ], "_not": [ - 6704 + 6728 ], "_or": [ - 6704 + 6728 ], "avg_damage_per_round": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "total_damage": [ - 311 + 312 ], "total_rounds": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "total_damage": [ - 309 + 310 ], "total_rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "total_damage": [ - 309 + 310 ], "total_rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "total_damage": [ - 3534 + 3558 ], "total_rounds": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_select_column": {}, @@ -151883,7 +152215,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_stddev_pop_fields": { @@ -151900,7 +152232,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_stddev_samp_fields": { @@ -151917,52 +152249,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 6713 + 6737 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "total_damage": [ - 309 + 310 ], "total_rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "total_damage": [ - 309 + 310 ], "total_rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_var_pop_fields": { @@ -151979,7 +152311,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_var_samp_fields": { @@ -151996,7 +152328,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_damage_variance_fields": { @@ -152013,12 +152345,12 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -152030,7 +152362,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -152039,16 +152371,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -152060,281 +152392,281 @@ export default { 41 ], "match": [ - 3318 + 3342 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 84 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate": { "aggregate": [ - 6732 + 6756 ], "nodes": [ - 6718 + 6742 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 6721 + 6745 ], "corr": [ - 6722 + 6746 ], "count": [ - 6724 + 6748 ], "covar_samp": [ - 6725 + 6749 ], "max": [ - 6727 + 6751 ], "min": [ - 6728 + 6752 ], "stddev_samp": [ - 6729 + 6753 ], "sum": [ - 6730 + 6754 ], "var_samp": [ - 6731 + 6755 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 6745 + 6769 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 6723 + 6747 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 6746 + 6770 ], "Y": [ - 6746 + 6770 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 6744 + 6768 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 6726 + 6750 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 6747 + 6771 ], "Y": [ - 6747 + 6771 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 6748 + 6772 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 6749 + 6773 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 6750 + 6774 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 6751 + 6775 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 6752 + 6776 ], "distinct": [ 6 ], "filter": [ - 6737 + 6761 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 6735 + 6759 ], "count": [ 41, { "columns": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "distinct": [ @@ -152343,80 +152675,80 @@ export default { } ], "max": [ - 6739 + 6763 ], "min": [ - 6741 + 6765 ], "stddev": [ - 6753 + 6777 ], "stddev_pop": [ - 6755 + 6779 ], "stddev_samp": [ - 6757 + 6781 ], "sum": [ - 6761 + 6785 ], "var_pop": [ - 6763 + 6787 ], "var_samp": [ - 6765 + 6789 ], "variance": [ - 6767 + 6791 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 6736 + 6760 ], "count": [ - 3534 + 3558 ], "max": [ - 6740 + 6764 ], "min": [ - 6742 + 6766 ], "stddev": [ - 6754 + 6778 ], "stddev_pop": [ - 6756 + 6780 ], "stddev_samp": [ - 6758 + 6782 ], "sum": [ - 6762 + 6786 ], "var_pop": [ - 6764 + 6788 ], "var_samp": [ - 6766 + 6790 ], "variance": [ - 6768 + 6792 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 6738 + 6762 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_avg_fields": { @@ -152487,92 +152819,92 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_bool_exp": { "_and": [ - 6737 + 6761 ], "_not": [ - 6737 + 6761 ], "_or": [ - 6737 + 6761 ], "actual_score": [ - 2004 + 2005 ], "assists": [ 42 @@ -152584,7 +152916,7 @@ export default { 42 ], "damage_percent": [ - 2004 + 2005 ], "deaths": [ 42 @@ -152593,16 +152925,16 @@ export default { 42 ], "expected_score": [ - 2004 + 2005 ], "impact": [ - 2004 + 2005 ], "k_factor": [ 42 ], "kda": [ - 2004 + 2005 ], "kills": [ 42 @@ -152614,57 +152946,57 @@ export default { 42 ], "match": [ - 3329 + 3353 ], "match_created_at": [ - 5130 + 5154 ], "match_id": [ - 6343 + 6367 ], "match_result": [ - 86 + 87 ], "opponent_team_elo_avg": [ - 2004 + 2005 ], "performance_multiplier": [ - 2004 + 2005 ], "player_name": [ - 86 + 87 ], "player_steam_id": [ - 311 + 312 ], "player_team_elo_avg": [ - 2004 + 2005 ], "rating_for_expected": [ - 2004 + 2005 ], "season_id": [ - 6343 + 6367 ], "series_multiplier": [ 42 ], "team_avg_kda": [ - 2004 + 2005 ], "type": [ - 86 + 87 ], "updated_elo": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_insert_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -152676,7 +153008,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -152685,16 +153017,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -152706,57 +153038,57 @@ export default { 41 ], "match": [ - 3338 + 3362 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 84 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_max_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -152768,7 +153100,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -152777,16 +153109,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -152798,143 +153130,143 @@ export default { 41 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 84 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "match_created_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_result": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_name": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_min_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -152946,7 +153278,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -152955,16 +153287,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -152976,230 +153308,230 @@ export default { 41 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 84 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "match_created_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_result": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_name": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_created_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_result": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_name": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "season_id": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_select_column": {}, @@ -153279,78 +153611,78 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stddev_pop_fields": { @@ -153421,78 +153753,78 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stddev_samp_fields": { @@ -153563,94 +153895,94 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 6760 + 6784 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -153662,7 +153994,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -153671,16 +154003,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -153692,54 +154024,54 @@ export default { 41 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_name": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "season_id": [ - 6341 + 6365 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "type": [ - 84 + 85 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 2003 + 2004 ], "assists": [ 41 @@ -153751,7 +154083,7 @@ export default { 41 ], "damage_percent": [ - 2003 + 2004 ], "deaths": [ 41 @@ -153760,16 +154092,16 @@ export default { 41 ], "expected_score": [ - 2003 + 2004 ], "impact": [ - 2003 + 2004 ], "k_factor": [ 41 ], "kda": [ - 2003 + 2004 ], "kills": [ 41 @@ -153781,102 +154113,102 @@ export default { 41 ], "opponent_team_elo_avg": [ - 2003 + 2004 ], "performance_multiplier": [ - 2003 + 2004 ], "player_steam_id": [ - 309 + 310 ], "player_team_elo_avg": [ - 2003 + 2004 ], "rating_for_expected": [ - 2003 + 2004 ], "series_multiplier": [ 41 ], "team_avg_kda": [ - 2003 + 2004 ], "updated_elo": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_var_pop_fields": { @@ -153947,78 +154279,78 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_var_samp_fields": { @@ -154089,78 +154421,78 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_variance_fields": { @@ -154231,123 +154563,123 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 3534 + 3558 ], "assists": [ - 3534 + 3558 ], "current_elo": [ - 3534 + 3558 ], "damage": [ - 3534 + 3558 ], "damage_percent": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "elo_change": [ - 3534 + 3558 ], "expected_score": [ - 3534 + 3558 ], "impact": [ - 3534 + 3558 ], "k_factor": [ - 3534 + 3558 ], "kda": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map_losses": [ - 3534 + 3558 ], "map_wins": [ - 3534 + 3558 ], "opponent_team_elo_avg": [ - 3534 + 3558 ], "performance_multiplier": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "player_team_elo_avg": [ - 3534 + 3558 ], "rating_for_expected": [ - 3534 + 3558 ], "series_multiplier": [ - 3534 + 3558 ], "team_avg_kda": [ - 3534 + 3558 ], "updated_elo": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses": { "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 6771 + 6795 ], "nodes": [ - 6769 + 6793 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 6772 + 6796 ], "count": [ 41, { "columns": [ - 6777, + 6801, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -154356,34 +154688,34 @@ export default { } ], "max": [ - 6774 + 6798 ], "min": [ - 6775 + 6799 ], "stddev": [ - 6778 + 6802 ], "stddev_pop": [ - 6779 + 6803 ], "stddev_samp": [ - 6780 + 6804 ], "sum": [ - 6783 + 6807 ], "var_pop": [ - 6784 + 6808 ], "var_samp": [ - 6785 + 6809 ], "variance": [ - 6786 + 6810 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_avg_fields": { @@ -154391,96 +154723,96 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 6773 + 6797 ], "_not": [ - 6773 + 6797 ], "_or": [ - 6773 + 6797 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "started_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_order_by": { "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_select_column": {}, @@ -154489,7 +154821,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_stddev_pop_fields": { @@ -154497,7 +154829,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_stddev_samp_fields": { @@ -154505,43 +154837,43 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 6782 + 6806 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_var_pop_fields": { @@ -154549,7 +154881,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_var_samp_fields": { @@ -154557,7 +154889,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_losses_variance_fields": { @@ -154565,52 +154897,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins": { "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 6789 + 6813 ], "nodes": [ - 6787 + 6811 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 6790 + 6814 ], "count": [ 41, { "columns": [ - 6795, + 6819, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -154619,34 +154951,34 @@ export default { } ], "max": [ - 6792 + 6816 ], "min": [ - 6793 + 6817 ], "stddev": [ - 6796 + 6820 ], "stddev_pop": [ - 6797 + 6821 ], "stddev_samp": [ - 6798 + 6822 ], "sum": [ - 6801 + 6825 ], "var_pop": [ - 6802 + 6826 ], "var_samp": [ - 6803 + 6827 ], "variance": [ - 6804 + 6828 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_avg_fields": { @@ -154654,96 +154986,96 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 6791 + 6815 ], "_not": [ - 6791 + 6815 ], "_or": [ - 6791 + 6815 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "started_at": [ - 5130 + 5154 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_order_by": { "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "started_at": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_select_column": {}, @@ -154752,7 +155084,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_stddev_pop_fields": { @@ -154760,7 +155092,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_stddev_samp_fields": { @@ -154768,43 +155100,43 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 6800 + 6824 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "started_at": [ - 5129 + 5153 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_var_pop_fields": { @@ -154812,7 +155144,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_var_samp_fields": { @@ -154820,7 +155152,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_map_wins_variance_fields": { @@ -154828,67 +155160,67 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head": { "attacked": [ - 4492 + 4516 ], "attacked_steam_id": [ - 309 + 310 ], "attacker": [ - 4492 + 4516 ], "attacker_steam_id": [ - 309 + 310 ], "damage_dealt": [ 41 ], "flash_count": [ - 309 + 310 ], "headshot_kills": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 6807 + 6831 ], "nodes": [ - 6805 + 6829 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 6808 + 6832 ], "count": [ 41, { "columns": [ - 6813, + 6837, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -154897,34 +155229,34 @@ export default { } ], "max": [ - 6810 + 6834 ], "min": [ - 6811 + 6835 ], "stddev": [ - 6814 + 6838 ], "stddev_pop": [ - 6815 + 6839 ], "stddev_samp": [ - 6816 + 6840 ], "sum": [ - 6819 + 6843 ], "var_pop": [ - 6820 + 6844 ], "var_samp": [ - 6821 + 6845 ], "variance": [ - 6822 + 6846 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_avg_fields": { @@ -154950,150 +155282,150 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 6809 + 6833 ], "_not": [ - 6809 + 6833 ], "_or": [ - 6809 + 6833 ], "attacked": [ - 4496 + 4520 ], "attacked_steam_id": [ - 311 + 312 ], "attacker": [ - 4496 + 4520 ], "attacker_steam_id": [ - 311 + 312 ], "damage_dealt": [ 42 ], "flash_count": [ - 311 + 312 ], "headshot_kills": [ - 311 + 312 ], "hits": [ - 311 + 312 ], "kills": [ - 311 + 312 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage_dealt": [ 41 ], "flash_count": [ - 309 + 310 ], "headshot_kills": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage_dealt": [ 41 ], "flash_count": [ - 309 + 310 ], "headshot_kills": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 4505 + 4529 ], "attacked_steam_id": [ - 3534 + 3558 ], "attacker": [ - 4505 + 4529 ], "attacker_steam_id": [ - 3534 + 3558 ], "damage_dealt": [ - 3534 + 3558 ], "flash_count": [ - 3534 + 3558 ], "headshot_kills": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_select_column": {}, @@ -155120,7 +155452,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_stddev_pop_fields": { @@ -155146,7 +155478,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_stddev_samp_fields": { @@ -155172,73 +155504,73 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 6818 + 6842 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage_dealt": [ 41 ], "flash_count": [ - 309 + 310 ], "headshot_kills": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 309 + 310 ], "attacker_steam_id": [ - 309 + 310 ], "damage_dealt": [ 41 ], "flash_count": [ - 309 + 310 ], "headshot_kills": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_var_pop_fields": { @@ -155264,7 +155596,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_var_samp_fields": { @@ -155290,7 +155622,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_head_to_head_variance_fields": { @@ -155316,98 +155648,98 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 6827 + 6851 ], "nodes": [ - 6823 + 6847 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 6826 + 6850 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 6841 + 6865 ], "distinct": [ 6 ], "filter": [ - 6832 + 6856 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 6830 + 6854 ], "count": [ 41, { "columns": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -155416,80 +155748,80 @@ export default { } ], "max": [ - 6835 + 6859 ], "min": [ - 6837 + 6861 ], "stddev": [ - 6843 + 6867 ], "stddev_pop": [ - 6845 + 6869 ], "stddev_samp": [ - 6847 + 6871 ], "sum": [ - 6851 + 6875 ], "var_pop": [ - 6854 + 6878 ], "var_samp": [ - 6856 + 6880 ], "variance": [ - 6858 + 6882 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 6831 + 6855 ], "count": [ - 3534 + 3558 ], "max": [ - 6836 + 6860 ], "min": [ - 6838 + 6862 ], "stddev": [ - 6844 + 6868 ], "stddev_pop": [ - 6846 + 6870 ], "stddev_samp": [ - 6848 + 6872 ], "sum": [ - 6852 + 6876 ], "var_pop": [ - 6855 + 6879 ], "var_samp": [ - 6857 + 6881 ], "variance": [ - 6859 + 6883 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 6834 + 6858 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_avg_fields": { @@ -155518,302 +155850,302 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 6832 + 6856 ], "_not": [ - 6832 + 6856 ], "_or": [ - 6832 + 6856 ], "adr": [ - 3533 + 3557 ], "apr": [ - 3533 + 3557 ], "dpr": [ - 3533 + 3557 ], "hltv_rating": [ - 3533 + 3557 ], "kast_pct": [ - 3533 + 3557 ], "kpr": [ - 3533 + 3557 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "rounds_played": [ 42 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match": [ - 3338 + 3362 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3152 + 3176 ], "match_map_id": [ - 6341 + 6365 ], "player": [ - 4503 + 4527 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_map_id": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_mutation_response": { @@ -155821,90 +156153,90 @@ export default { 41 ], "returning": [ - 6823 + 6847 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_fields": { @@ -155933,36 +156265,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_pop_fields": { @@ -155991,36 +156323,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_samp_fields": { @@ -156049,154 +156381,154 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 6850 + 6874 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 3532 + 3556 ], "apr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 6833 + 6857 ], "_set": [ - 6842 + 6866 ], "where": [ - 6832 + 6856 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_var_pop_fields": { @@ -156225,36 +156557,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_var_samp_fields": { @@ -156283,36 +156615,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_variance_fields": { @@ -156341,86 +156673,86 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 3534 + 3558 ], "apr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles": { "adr": [ - 3532 + 3556 ], "awp_kills": [ 41 ], "awp_share": [ - 3532 + 3556 ], "deaths": [ 41 ], "dpr": [ - 3532 + 3556 ], "entry_rate": [ - 3532 + 3556 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kills": [ 41 ], "kpr": [ - 3532 + 3556 ], "lineup_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "match_map": [ - 3134 + 3158 ], "match_map_id": [ - 6341 + 6365 ], "open_deaths": [ 41 @@ -156432,19 +156764,19 @@ export default { 41 ], "player": [ - 4492 + 4516 ], "role": [ - 84 + 85 ], "rounds": [ 41 ], "steam_id": [ - 309 + 310 ], "support_idx": [ - 3532 + 3556 ], "total_kills": [ 41 @@ -156459,29 +156791,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 6862 + 6886 ], "nodes": [ - 6860 + 6884 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 6863 + 6887 ], "count": [ 41, { "columns": [ - 6868, + 6892, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -156490,34 +156822,34 @@ export default { } ], "max": [ - 6865 + 6889 ], "min": [ - 6866 + 6890 ], "stddev": [ - 6869 + 6893 ], "stddev_pop": [ - 6870 + 6894 ], "stddev_samp": [ - 6871 + 6895 ], "sum": [ - 6874 + 6898 ], "var_pop": [ - 6875 + 6899 ], "var_samp": [ - 6876 + 6900 ], "variance": [ - 6877 + 6901 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_avg_fields": { @@ -156585,66 +156917,66 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 6864 + 6888 ], "_not": [ - 6864 + 6888 ], "_or": [ - 6864 + 6888 ], "adr": [ - 3533 + 3557 ], "awp_kills": [ 42 ], "awp_share": [ - 3533 + 3557 ], "deaths": [ 42 ], "dpr": [ - 3533 + 3557 ], "entry_rate": [ - 3533 + 3557 ], "flash_assists": [ 42 ], "hltv_rating": [ - 3533 + 3557 ], "kast_pct": [ - 3533 + 3557 ], "kills": [ 42 ], "kpr": [ - 3533 + 3557 ], "lineup_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "match_map": [ - 3143 + 3167 ], "match_map_id": [ - 6343 + 6367 ], "open_deaths": [ 42 @@ -156656,19 +156988,19 @@ export default { 42 ], "player": [ - 4496 + 4520 ], "role": [ - 86 + 87 ], "rounds": [ 42 ], "steam_id": [ - 311 + 312 ], "support_idx": [ - 3533 + 3557 ], "total_kills": [ 42 @@ -156683,51 +157015,51 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 3532 + 3556 ], "awp_kills": [ 41 ], "awp_share": [ - 3532 + 3556 ], "deaths": [ 41 ], "dpr": [ - 3532 + 3556 ], "entry_rate": [ - 3532 + 3556 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kills": [ 41 ], "kpr": [ - 3532 + 3556 ], "lineup_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "open_deaths": [ 41 @@ -156739,16 +157071,16 @@ export default { 41 ], "role": [ - 84 + 85 ], "rounds": [ 41 ], "steam_id": [ - 309 + 310 ], "support_idx": [ - 3532 + 3556 ], "total_kills": [ 41 @@ -156763,51 +157095,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 3532 + 3556 ], "awp_kills": [ 41 ], "awp_share": [ - 3532 + 3556 ], "deaths": [ 41 ], "dpr": [ - 3532 + 3556 ], "entry_rate": [ - 3532 + 3556 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kills": [ 41 ], "kpr": [ - 3532 + 3556 ], "lineup_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "open_deaths": [ 41 @@ -156819,16 +157151,16 @@ export default { 41 ], "role": [ - 84 + 85 ], "rounds": [ 41 ], "steam_id": [ - 309 + 310 ], "support_idx": [ - 3532 + 3556 ], "total_kills": [ 41 @@ -156843,96 +157175,96 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 3534 + 3558 ], "awp_kills": [ - 3534 + 3558 ], "awp_share": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "entry_rate": [ - 3534 + 3558 ], "flash_assists": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "lineup_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "match_map": [ - 3154 + 3178 ], "match_map_id": [ - 3534 + 3558 ], "open_deaths": [ - 3534 + 3558 ], "open_kills": [ - 3534 + 3558 ], "opening_attempts": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "role": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "support_idx": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "trade_kill_successes": [ - 3534 + 3558 ], "traded_death_successes": [ - 3534 + 3558 ], "util_damage": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_select_column": {}, @@ -157001,7 +157333,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_stddev_pop_fields": { @@ -157069,7 +157401,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_stddev_samp_fields": { @@ -157137,62 +157469,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 6873 + 6897 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 3532 + 3556 ], "awp_kills": [ 41 ], "awp_share": [ - 3532 + 3556 ], "deaths": [ 41 ], "dpr": [ - 3532 + 3556 ], "entry_rate": [ - 3532 + 3556 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kills": [ 41 ], "kpr": [ - 3532 + 3556 ], "lineup_id": [ - 6341 + 6365 ], "match_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341 + 6365 ], "open_deaths": [ 41 @@ -157204,16 +157536,16 @@ export default { 41 ], "role": [ - 84 + 85 ], "rounds": [ 41 ], "steam_id": [ - 309 + 310 ], "support_idx": [ - 3532 + 3556 ], "total_kills": [ 41 @@ -157228,42 +157560,42 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 3532 + 3556 ], "awp_kills": [ 41 ], "awp_share": [ - 3532 + 3556 ], "deaths": [ 41 ], "dpr": [ - 3532 + 3556 ], "entry_rate": [ - 3532 + 3556 ], "flash_assists": [ 41 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kills": [ 41 ], "kpr": [ - 3532 + 3556 ], "open_deaths": [ 41 @@ -157278,10 +157610,10 @@ export default { 41 ], "steam_id": [ - 309 + 310 ], "support_idx": [ - 3532 + 3556 ], "total_kills": [ 41 @@ -157296,7 +157628,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_var_pop_fields": { @@ -157364,7 +157696,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_var_samp_fields": { @@ -157432,7 +157764,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_map_roles_variance_fields": { @@ -157500,7 +157832,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance": { @@ -157514,56 +157846,56 @@ export default { 41 ], "map": [ - 2810 + 2834 ], "map_id": [ - 6341 + 6365 ], "match": [ - 3318 + 3342 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 6880 + 6904 ], "nodes": [ - 6878 + 6902 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 6881 + 6905 ], "count": [ 41, { "columns": [ - 6886, + 6910, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -157572,34 +157904,34 @@ export default { } ], "max": [ - 6883 + 6907 ], "min": [ - 6884 + 6908 ], "stddev": [ - 6887 + 6911 ], "stddev_pop": [ - 6888 + 6912 ], "stddev_samp": [ - 6889 + 6913 ], "sum": [ - 6892 + 6916 ], "var_pop": [ - 6893 + 6917 ], "var_samp": [ - 6894 + 6918 ], "variance": [ - 6895 + 6919 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_avg_fields": { @@ -157616,18 +157948,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 6882 + 6906 ], "_not": [ - 6882 + 6906 ], "_or": [ - 6882 + 6906 ], "assists": [ 42 @@ -157639,34 +157971,34 @@ export default { 42 ], "map": [ - 2819 + 2843 ], "map_id": [ - 6343 + 6367 ], "match": [ - 3329 + 3353 ], "match_created_at": [ - 5130 + 5154 ], "match_id": [ - 6343 + 6367 ], "match_result": [ - 86 + 87 ], "player_steam_id": [ - 311 + 312 ], "source": [ - 86 + 87 ], "type": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_max_fields": { @@ -157680,28 +158012,28 @@ export default { 41 ], "map_id": [ - 6341 + 6365 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_min_fields": { @@ -157715,69 +158047,69 @@ export default { 41 ], "map_id": [ - 6341 + 6365 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "map": [ - 2829 + 2853 ], "map_id": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_created_at": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "match_result": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_select_column": {}, @@ -157795,7 +158127,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_stddev_pop_fields": { @@ -157812,7 +158144,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_stddev_samp_fields": { @@ -157829,18 +158161,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 6891 + 6915 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_stream_cursor_value_input": { @@ -157854,28 +158186,28 @@ export default { 41 ], "map_id": [ - 6341 + 6365 ], "match_created_at": [ - 5129 + 5153 ], "match_id": [ - 6341 + 6365 ], "match_result": [ - 84 + 85 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_sum_fields": { @@ -157889,10 +158221,10 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_var_pop_fields": { @@ -157909,7 +158241,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_var_samp_fields": { @@ -157926,7 +158258,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_performance_variance_fields": { @@ -157943,64 +158275,64 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating": { "adr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match": [ - 3318 + 3342 ], "match_id": [ - 6341 + 6365 ], "player": [ - 4492 + 4516 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 6898 + 6922 ], "nodes": [ - 6896 + 6920 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 6899 + 6923 ], "count": [ 41, { "columns": [ - 6904, + 6928, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -158009,34 +158341,34 @@ export default { } ], "max": [ - 6901 + 6925 ], "min": [ - 6902 + 6926 ], "stddev": [ - 6905 + 6929 ], "stddev_pop": [ - 6906 + 6930 ], "stddev_samp": [ - 6907 + 6931 ], "sum": [ - 6910 + 6934 ], "var_pop": [ - 6911 + 6935 ], "var_samp": [ - 6912 + 6936 ], "variance": [ - 6913 + 6937 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_avg_fields": { @@ -158062,144 +158394,144 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 6900 + 6924 ], "_not": [ - 6900 + 6924 ], "_or": [ - 6900 + 6924 ], "adr": [ - 3533 + 3557 ], "dpr": [ - 3533 + 3557 ], "hltv_rating": [ - 3533 + 3557 ], "kast_pct": [ - 3533 + 3557 ], "kpr": [ - 3533 + 3557 ], "match": [ - 3329 + 3353 ], "match_id": [ - 6343 + 6367 ], "player": [ - 4496 + 4520 ], "rounds_played": [ 42 ], "steam_id": [ - 311 + 312 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_max_fields": { "adr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_min_fields": { "adr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_order_by": { "adr": [ - 3534 + 3558 ], "dpr": [ - 3534 + 3558 ], "hltv_rating": [ - 3534 + 3558 ], "kast_pct": [ - 3534 + 3558 ], "kpr": [ - 3534 + 3558 ], "match": [ - 3340 + 3364 ], "match_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "rounds_played": [ - 3534 + 3558 ], "steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_select_column": {}, @@ -158226,7 +158558,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_stddev_pop_fields": { @@ -158252,7 +158584,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_stddev_samp_fields": { @@ -158278,73 +158610,73 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 6909 + 6933 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "match_id": [ - 6341 + 6365 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 3532 + 3556 ], "dpr": [ - 3532 + 3556 ], "hltv_rating": [ - 3532 + 3556 ], "kast_pct": [ - 3532 + 3556 ], "kpr": [ - 3532 + 3556 ], "rounds_played": [ 41 ], "steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_var_pop_fields": { @@ -158370,7 +158702,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_var_samp_fields": { @@ -158396,7 +158728,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_match_rating_variance_fields": { @@ -158422,71 +158754,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 6918 + 6942 ], "nodes": [ - 6914 + 6938 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 6917 + 6941 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 6930 + 6954 ], "distinct": [ 6 ], "filter": [ - 6923 + 6947 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 6921 + 6945 ], "count": [ 41, { "columns": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -158495,80 +158827,80 @@ export default { } ], "max": [ - 6925 + 6949 ], "min": [ - 6927 + 6951 ], "stddev": [ - 6931 + 6955 ], "stddev_pop": [ - 6933 + 6957 ], "stddev_samp": [ - 6935 + 6959 ], "sum": [ - 6939 + 6963 ], "var_pop": [ - 6941 + 6965 ], "var_samp": [ - 6943 + 6967 ], "variance": [ - 6945 + 6969 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 6922 + 6946 ], "count": [ - 3534 + 3558 ], "max": [ - 6926 + 6950 ], "min": [ - 6928 + 6952 ], "stddev": [ - 6932 + 6956 ], "stddev_pop": [ - 6934 + 6958 ], "stddev_samp": [ - 6936 + 6960 ], "sum": [ - 6940 + 6964 ], "var_pop": [ - 6942 + 6966 ], "var_samp": [ - 6944 + 6968 ], "variance": [ - 6946 + 6970 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 6924 + 6948 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_avg_fields": { @@ -158582,149 +158914,149 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 6923 + 6947 ], "_not": [ - 6923 + 6947 ], "_or": [ - 6923 + 6947 ], "attacker_steam_id": [ - 311 + 312 ], "kills": [ - 311 + 312 ], "match_id": [ - 6343 + 6367 ], "round": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "match_id": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_select_column": {}, @@ -158739,21 +159071,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stddev_pop_fields": { @@ -158767,21 +159099,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stddev_samp_fields": { @@ -158795,77 +159127,77 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 6938 + 6962 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "match_id": [ - 6341 + 6365 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 309 + 310 ], "kills": [ - 309 + 310 ], "round": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_var_pop_fields": { @@ -158879,21 +159211,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_var_samp_fields": { @@ -158907,21 +159239,21 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_variance_fields": { @@ -158935,72 +159267,72 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "round": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners": { "first_played_at": [ - 5129 + 5153 ], "last_played_at": [ - 5129 + 5153 ], "matches_together": [ 41 ], "partner": [ - 4492 + 4516 ], "partner_steam_id": [ - 309 + 310 ], "player": [ - 4492 + 4516 ], "steam_id": [ - 309 + 310 ], "wins_together": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_aggregate": { "aggregate": [ - 6949 + 6973 ], "nodes": [ - 6947 + 6971 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_aggregate_fields": { "avg": [ - 6950 + 6974 ], "count": [ 41, { "columns": [ - 6955, + 6979, "[v_player_queue_partners_select_column!]" ], "distinct": [ @@ -159009,34 +159341,34 @@ export default { } ], "max": [ - 6952 + 6976 ], "min": [ - 6953 + 6977 ], "stddev": [ - 6956 + 6980 ], "stddev_pop": [ - 6957 + 6981 ], "stddev_samp": [ - 6958 + 6982 ], "sum": [ - 6961 + 6985 ], "var_pop": [ - 6962 + 6986 ], "var_samp": [ - 6963 + 6987 ], "variance": [ - 6964 + 6988 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_avg_fields": { @@ -159053,120 +159385,120 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_bool_exp": { "_and": [ - 6951 + 6975 ], "_not": [ - 6951 + 6975 ], "_or": [ - 6951 + 6975 ], "first_played_at": [ - 5130 + 5154 ], "last_played_at": [ - 5130 + 5154 ], "matches_together": [ 42 ], "partner": [ - 4496 + 4520 ], "partner_steam_id": [ - 311 + 312 ], "player": [ - 4496 + 4520 ], "steam_id": [ - 311 + 312 ], "wins_together": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_max_fields": { "first_played_at": [ - 5129 + 5153 ], "last_played_at": [ - 5129 + 5153 ], "matches_together": [ 41 ], "partner_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "wins_together": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_min_fields": { "first_played_at": [ - 5129 + 5153 ], "last_played_at": [ - 5129 + 5153 ], "matches_together": [ 41 ], "partner_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "wins_together": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_order_by": { "first_played_at": [ - 3534 + 3558 ], "last_played_at": [ - 3534 + 3558 ], "matches_together": [ - 3534 + 3558 ], "partner": [ - 4505 + 4529 ], "partner_steam_id": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "steam_id": [ - 3534 + 3558 ], "wins_together": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_select_column": {}, @@ -159184,7 +159516,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_stddev_pop_fields": { @@ -159201,7 +159533,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_stddev_samp_fields": { @@ -159218,41 +159550,41 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_stream_cursor_input": { "initial_value": [ - 6960 + 6984 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_stream_cursor_value_input": { "first_played_at": [ - 5129 + 5153 ], "last_played_at": [ - 5129 + 5153 ], "matches_together": [ 41 ], "partner_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "wins_together": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_sum_fields": { @@ -159260,16 +159592,16 @@ export default { 41 ], "partner_steam_id": [ - 309 + 310 ], "steam_id": [ - 309 + 310 ], "wins_together": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_var_pop_fields": { @@ -159286,7 +159618,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_var_samp_fields": { @@ -159303,7 +159635,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_queue_partners_variance_fields": { @@ -159320,52 +159652,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage": { "damage": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 6967 + 6991 ], "nodes": [ - 6965 + 6989 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 6968 + 6992 ], "count": [ 41, { "columns": [ - 6973, + 6997, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -159374,34 +159706,34 @@ export default { } ], "max": [ - 6970 + 6994 ], "min": [ - 6971 + 6995 ], "stddev": [ - 6974 + 6998 ], "stddev_pop": [ - 6975 + 6999 ], "stddev_samp": [ - 6976 + 7000 ], "sum": [ - 6979 + 7003 ], "var_pop": [ - 6980 + 7004 ], "var_samp": [ - 6981 + 7005 ], "variance": [ - 6982 + 7006 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_avg_fields": { @@ -159415,108 +159747,108 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 6969 + 6993 ], "_not": [ - 6969 + 6993 ], "_or": [ - 6969 + 6993 ], "damage": [ - 311 + 312 ], "hits": [ - 311 + 312 ], "player_steam_id": [ - 311 + 312 ], "source": [ - 86 + 87 ], "type": [ - 86 + 87 ], "with": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 3534 + 3558 ], "hits": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_select_column": {}, @@ -159531,7 +159863,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_stddev_pop_fields": { @@ -159545,7 +159877,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_stddev_samp_fields": { @@ -159559,55 +159891,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 6978 + 7002 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 309 + 310 ], "hits": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_var_pop_fields": { @@ -159621,7 +159953,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_var_samp_fields": { @@ -159635,7 +159967,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_damage_variance_fields": { @@ -159649,52 +159981,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "rounds": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 6985 + 7009 ], "nodes": [ - 6983 + 7007 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 6986 + 7010 ], "count": [ 41, { "columns": [ - 6991, + 7015, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -159703,34 +160035,34 @@ export default { } ], "max": [ - 6988 + 7012 ], "min": [ - 6989 + 7013 ], "stddev": [ - 6992 + 7016 ], "stddev_pop": [ - 6993 + 7017 ], "stddev_samp": [ - 6994 + 7018 ], "sum": [ - 6997 + 7021 ], "var_pop": [ - 6998 + 7022 ], "var_samp": [ - 6999 + 7023 ], "variance": [ - 7000 + 7024 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_avg_fields": { @@ -159744,108 +160076,108 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 6987 + 7011 ], "_not": [ - 6987 + 7011 ], "_or": [ - 6987 + 7011 ], "kill_count": [ - 311 + 312 ], "player_steam_id": [ - 311 + 312 ], "rounds": [ - 311 + 312 ], "source": [ - 86 + 87 ], "type": [ - 86 + 87 ], "with": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "rounds": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "rounds": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "rounds": [ - 3534 + 3558 ], "source": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "with": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_select_column": {}, @@ -159860,7 +160192,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_stddev_pop_fields": { @@ -159874,7 +160206,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_stddev_samp_fields": { @@ -159888,55 +160220,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 6996 + 7020 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "rounds": [ - 309 + 310 ], "source": [ - 84 + 85 ], "type": [ - 84 + 85 ], "with": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 309 + 310 ], "player_steam_id": [ - 309 + 310 ], "rounds": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_var_pop_fields": { @@ -159950,7 +160282,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_var_samp_fields": { @@ -159964,7 +160296,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_player_weapon_kills_variance_fields": { @@ -159978,7 +160310,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps": { @@ -159986,110 +160318,110 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool": [ - 2791 + 2815 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 7007 + 7031 ], "nodes": [ - 7001 + 7025 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 7004 + 7028 ], "bool_or": [ - 7005 + 7029 ], "count": [ - 7006 + 7030 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 7019 + 7043 ], "distinct": [ 6 ], "filter": [ - 7010 + 7034 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 7020 + 7044 ], "distinct": [ 6 ], "filter": [ - 7010 + 7034 ], "predicate": [ 7 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 7018 + 7042 ], "distinct": [ 6 ], "filter": [ - 7010 + 7034 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_fields": { @@ -160097,7 +160429,7 @@ export default { 41, { "columns": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -160106,79 +160438,79 @@ export default { } ], "max": [ - 7012 + 7036 ], "min": [ - 7014 + 7038 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 3534 + 3558 ], "max": [ - 7013 + 7037 ], "min": [ - 7015 + 7039 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 7011 + 7035 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_bool_exp": { "_and": [ - 7010 + 7034 ], "_not": [ - 7010 + 7034 ], "_or": [ - 7010 + 7034 ], "active_pool": [ 7 ], "id": [ - 6343 + 6367 ], "label": [ - 86 + 87 ], "map_pool": [ - 2794 + 2818 ], "map_pool_id": [ - 6343 + 6367 ], "name": [ - 86 + 87 ], "patch": [ - 86 + 87 ], "poster": [ - 86 + 87 ], "type": [ - 86 + 87 ], "workshop_map_id": [ - 86 + 87 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_insert_input": { @@ -160186,150 +160518,150 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool": [ - 2800 + 2824 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_max_fields": { "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_max_order_by": { "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_min_fields": { "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_min_order_by": { "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "map_pool_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_mutation_response": { @@ -160337,45 +160669,45 @@ export default { 41 ], "returning": [ - 7001 + 7025 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_order_by": { "active_pool": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "label": [ - 3534 + 3558 ], "map_pool": [ - 2802 + 2826 ], "map_pool_id": [ - 3534 + 3558 ], "name": [ - 3534 + 3558 ], "patch": [ - 3534 + 3558 ], "poster": [ - 3534 + 3558 ], "type": [ - 3534 + 3558 ], "workshop_map_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_select_column": {}, @@ -160386,42 +160718,42 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 7023 + 7047 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -160429,42 +160761,42 @@ export default { 6 ], "id": [ - 6341 + 6365 ], "label": [ - 84 + 85 ], "map_pool_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "patch": [ - 84 + 85 ], "poster": [ - 84 + 85 ], "type": [ - 84 + 85 ], "workshop_map_id": [ - 84 + 85 ], "__typename": [ - 84 + 85 ] }, "v_pool_maps_updates": { "_set": [ - 7021 + 7045 ], "where": [ - 7010 + 7034 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status": { @@ -160481,29 +160813,29 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 7027 + 7051 ], "nodes": [ - 7025 + 7049 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 7028 + 7052 ], "count": [ 41, { "columns": [ - 7033, + 7057, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -160512,34 +160844,34 @@ export default { } ], "max": [ - 7030 + 7054 ], "min": [ - 7031 + 7055 ], "stddev": [ - 7034 + 7058 ], "stddev_pop": [ - 7035 + 7059 ], "stddev_samp": [ - 7036 + 7060 ], "sum": [ - 7039 + 7063 ], "var_pop": [ - 7040 + 7064 ], "var_samp": [ - 7041 + 7065 ], "variance": [ - 7042 + 7066 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_avg_fields": { @@ -160556,18 +160888,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 7029 + 7053 ], "_not": [ - 7029 + 7053 ], "_or": [ - 7029 + 7053 ], "busy_accounts": [ 42 @@ -160582,7 +160914,7 @@ export default { 42 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_max_fields": { @@ -160599,7 +160931,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_min_fields": { @@ -160616,24 +160948,24 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 3534 + 3558 ], "free_accounts": [ - 3534 + 3558 ], "id": [ - 3534 + 3558 ], "total_accounts": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_select_column": {}, @@ -160651,7 +160983,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_stddev_pop_fields": { @@ -160668,7 +161000,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_stddev_samp_fields": { @@ -160685,18 +161017,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 7038 + 7062 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { @@ -160713,7 +161045,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_sum_fields": { @@ -160730,7 +161062,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_var_pop_fields": { @@ -160747,7 +161079,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_var_samp_fields": { @@ -160764,7 +161096,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_steam_account_pool_status_variance_fields": { @@ -160781,7 +161113,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks": { @@ -160795,7 +161127,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -160810,38 +161142,38 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_aggregate": { "aggregate": [ - 7045 + 7069 ], "nodes": [ - 7043 + 7067 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_aggregate_fields": { "avg": [ - 7046 + 7070 ], "count": [ 41, { "columns": [ - 7053, + 7077, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -160850,34 +161182,34 @@ export default { } ], "max": [ - 7049 + 7073 ], "min": [ - 7050 + 7074 ], "stddev": [ - 7054 + 7078 ], "stddev_pop": [ - 7055 + 7079 ], "stddev_samp": [ - 7056 + 7080 ], "sum": [ - 7059 + 7083 ], "var_pop": [ - 7060 + 7084 ], "var_samp": [ - 7061 + 7085 ], "variance": [ - 7062 + 7086 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_avg_fields": { @@ -160909,18 +161241,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_bool_exp": { "_and": [ - 7047 + 7071 ], "_not": [ - 7047 + 7071 ], "_or": [ - 7047 + 7071 ], "avg_duel_elo": [ 42 @@ -160932,7 +161264,7 @@ export default { 42 ], "avg_faceit_level": [ - 2004 + 2005 ], "avg_premier": [ 42 @@ -160947,16 +161279,16 @@ export default { 42 ], "roster_size": [ - 311 + 312 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_insert_input": { @@ -160970,7 +161302,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -160985,16 +161317,16 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_max_fields": { @@ -161008,7 +161340,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -161023,13 +161355,13 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_min_fields": { @@ -161043,7 +161375,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -161058,59 +161390,59 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 7048 + 7072 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_order_by": { "avg_duel_elo": [ - 3534 + 3558 ], "avg_elo": [ - 3534 + 3558 ], "avg_faceit_elo": [ - 3534 + 3558 ], "avg_faceit_level": [ - 3534 + 3558 ], "avg_premier": [ - 3534 + 3558 ], "avg_wingman_elo": [ - 3534 + 3558 ], "max_elo": [ - 3534 + 3558 ], "min_elo": [ - 3534 + 3558 ], "roster_size": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_select_column": {}, @@ -161143,7 +161475,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_stddev_pop_fields": { @@ -161175,7 +161507,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_stddev_samp_fields": { @@ -161207,18 +161539,18 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 7058 + 7082 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_stream_cursor_value_input": { @@ -161232,7 +161564,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -161247,13 +161579,13 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_sum_fields": { @@ -161267,7 +161599,7 @@ export default { 41 ], "avg_faceit_level": [ - 2003 + 2004 ], "avg_premier": [ 41 @@ -161282,10 +161614,10 @@ export default { 41 ], "roster_size": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_var_pop_fields": { @@ -161317,7 +161649,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_var_samp_fields": { @@ -161349,7 +161681,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_ranks_variance_fields": { @@ -161381,52 +161713,52 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "team": [ - 5080 + 5104 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_aggregate": { "aggregate": [ - 7065 + 7089 ], "nodes": [ - 7063 + 7087 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_aggregate_fields": { "avg": [ - 7066 + 7090 ], "count": [ 41, { "columns": [ - 7073, + 7097, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -161435,34 +161767,34 @@ export default { } ], "max": [ - 7069 + 7093 ], "min": [ - 7070 + 7094 ], "stddev": [ - 7074 + 7098 ], "stddev_pop": [ - 7075 + 7099 ], "stddev_samp": [ - 7076 + 7100 ], "sum": [ - 7079 + 7103 ], "var_pop": [ - 7080 + 7104 ], "var_samp": [ - 7081 + 7105 ], "variance": [ - 7082 + 7106 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_avg_fields": { @@ -161479,133 +161811,133 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_bool_exp": { "_and": [ - 7067 + 7091 ], "_not": [ - 7067 + 7091 ], "_or": [ - 7067 + 7091 ], "late_cancels": [ - 311 + 312 ], "no_shows": [ - 311 + 312 ], "reliability_pct": [ - 3533 + 3557 ], "scrims_completed": [ - 311 + 312 ], "team": [ - 5091 + 5115 ], "team_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_insert_input": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "team": [ - 5100 + 5124 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_max_fields": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_min_fields": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 7068 + 7092 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_order_by": { "late_cancels": [ - 3534 + 3558 ], "no_shows": [ - 3534 + 3558 ], "reliability_pct": [ - 3534 + 3558 ], "scrims_completed": [ - 3534 + 3558 ], "team": [ - 5102 + 5126 ], "team_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_select_column": {}, @@ -161623,7 +161955,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_stddev_pop_fields": { @@ -161640,7 +161972,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_stddev_samp_fields": { @@ -161657,55 +161989,55 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 7078 + 7102 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_stream_cursor_value_input": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_sum_fields": { "late_cancels": [ - 309 + 310 ], "no_shows": [ - 309 + 310 ], "reliability_pct": [ - 3532 + 3556 ], "scrims_completed": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_var_pop_fields": { @@ -161722,7 +162054,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_var_samp_fields": { @@ -161739,7 +162071,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_reputation_variance_fields": { @@ -161756,7 +162088,7 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results": { @@ -161797,13 +162129,13 @@ export default { 41 ], "stage": [ - 5390 + 5414 ], "team": [ - 5523 + 5547 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -161812,245 +162144,245 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 7097 + 7121 ], "nodes": [ - 7083 + 7107 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 7086 + 7110 ], "corr": [ - 7087 + 7111 ], "count": [ - 7089 + 7113 ], "covar_samp": [ - 7090 + 7114 ], "max": [ - 7092 + 7116 ], "min": [ - 7093 + 7117 ], "stddev_samp": [ - 7094 + 7118 ], "sum": [ - 7095 + 7119 ], "var_samp": [ - 7096 + 7120 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 7116 + 7140 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 7088 + 7112 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 7117 + 7141 ], "Y": [ - 7117 + 7141 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 7115 + 7139 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 7091 + 7115 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 7118 + 7142 ], "Y": [ - 7118 + 7142 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 7119 + 7143 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 7120 + 7144 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 7121 + 7145 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 7122 + 7146 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 7123 + 7147 ], "distinct": [ 6 ], "filter": [ - 7102 + 7126 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 7100 + 7124 ], "count": [ 41, { "columns": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -162059,83 +162391,83 @@ export default { } ], "max": [ - 7106 + 7130 ], "min": [ - 7108 + 7132 ], "stddev": [ - 7125 + 7149 ], "stddev_pop": [ - 7127 + 7151 ], "stddev_samp": [ - 7129 + 7153 ], "sum": [ - 7133 + 7157 ], "var_pop": [ - 7137 + 7161 ], "var_samp": [ - 7139 + 7163 ], "variance": [ - 7141 + 7165 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 7101 + 7125 ], "count": [ - 3534 + 3558 ], "max": [ - 7107 + 7131 ], "min": [ - 7109 + 7133 ], "stddev": [ - 7126 + 7150 ], "stddev_pop": [ - 7128 + 7152 ], "stddev_samp": [ - 7130 + 7154 ], "sum": [ - 7134 + 7158 ], "var_pop": [ - 7138 + 7162 ], "var_samp": [ - 7140 + 7164 ], "variance": [ - 7142 + 7166 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 7105 + 7129 ], "on_conflict": [ - 7112 + 7136 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_avg_fields": { @@ -162188,71 +162520,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 7102 + 7126 ], "_not": [ - 7102 + 7126 ], "_or": [ - 7102 + 7126 ], "group_number": [ 42 @@ -162291,13 +162623,13 @@ export default { 42 ], "stage": [ - 5402 + 5426 ], "team": [ - 5532 + 5556 ], "team_kdr": [ - 2004 + 2005 ], "total_deaths": [ 42 @@ -162306,16 +162638,16 @@ export default { 42 ], "tournament_stage_id": [ - 6343 + 6367 ], "tournament_team_id": [ - 6343 + 6367 ], "wins": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_constraint": {}, @@ -162357,7 +162689,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -162369,7 +162701,7 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_insert_input": { @@ -162410,13 +162742,13 @@ export default { 41 ], "stage": [ - 5414 + 5438 ], "team": [ - 5541 + 5565 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -162425,16 +162757,16 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_max_fields": { @@ -162475,7 +162807,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -162484,75 +162816,75 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_min_fields": { @@ -162593,7 +162925,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -162602,75 +162934,75 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_mutation_response": { @@ -162678,111 +163010,111 @@ export default { 41 ], "returning": [ - 7083 + 7107 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 7105 + 7129 ], "on_conflict": [ - 7112 + 7136 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 7103 + 7127 ], "update_columns": [ - 7135 + 7159 ], "where": [ - 7102 + 7126 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "stage": [ - 5416 + 5440 ], "team": [ - 5543 + 5567 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament_stage_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_select_column": {}, @@ -162832,7 +163164,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -162841,16 +163173,16 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_fields": { @@ -162903,60 +163235,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_pop_fields": { @@ -163009,60 +163341,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_samp_fields": { @@ -163115,71 +163447,71 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 7132 + 7156 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_stream_cursor_value_input": { @@ -163220,7 +163552,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -163229,16 +163561,16 @@ export default { 41 ], "tournament_stage_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_sum_fields": { @@ -163279,7 +163611,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -163291,75 +163623,75 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 7104 + 7128 ], "_set": [ - 7124 + 7148 ], "where": [ - 7102 + 7126 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_var_pop_fields": { @@ -163412,60 +163744,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_var_samp_fields": { @@ -163518,60 +163850,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_variance_fields": { @@ -163624,60 +163956,60 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 3534 + 3558 ], "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "placement": [ - 3534 + 3558 ], "rank": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results": { @@ -163709,10 +164041,10 @@ export default { 41 ], "team": [ - 5523 + 5547 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -163721,248 +164053,248 @@ export default { 41 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 7157 + 7181 ], "nodes": [ - 7143 + 7167 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 7146 + 7170 ], "corr": [ - 7147 + 7171 ], "count": [ - 7149 + 7173 ], "covar_samp": [ - 7150 + 7174 ], "max": [ - 7152 + 7176 ], "min": [ - 7153 + 7177 ], "stddev_samp": [ - 7154 + 7178 ], "sum": [ - 7155 + 7179 ], "var_samp": [ - 7156 + 7180 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 7170 + 7194 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 7148 + 7172 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 7171 + 7195 ], "Y": [ - 7171 + 7195 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 7169 + 7193 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 7151 + 7175 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 7172 + 7196 ], "Y": [ - 7172 + 7196 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 7173 + 7197 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 7174 + 7198 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 7175 + 7199 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 7176 + 7200 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 7177 + 7201 ], "distinct": [ 6 ], "filter": [ - 7162 + 7186 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 7160 + 7184 ], "count": [ 41, { "columns": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -163971,80 +164303,80 @@ export default { } ], "max": [ - 7164 + 7188 ], "min": [ - 7166 + 7190 ], "stddev": [ - 7178 + 7202 ], "stddev_pop": [ - 7180 + 7204 ], "stddev_samp": [ - 7182 + 7206 ], "sum": [ - 7186 + 7210 ], "var_pop": [ - 7188 + 7212 ], "var_samp": [ - 7190 + 7214 ], "variance": [ - 7192 + 7216 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 7161 + 7185 ], "count": [ - 3534 + 3558 ], "max": [ - 7165 + 7189 ], "min": [ - 7167 + 7191 ], "stddev": [ - 7179 + 7203 ], "stddev_pop": [ - 7181 + 7205 ], "stddev_samp": [ - 7183 + 7207 ], "sum": [ - 7187 + 7211 ], "var_pop": [ - 7189 + 7213 ], "var_samp": [ - 7191 + 7215 ], "variance": [ - 7193 + 7217 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 7163 + 7187 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_avg_fields": { @@ -164088,62 +164420,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 7162 + 7186 ], "_not": [ - 7162 + 7186 ], "_or": [ - 7162 + 7186 ], "head_to_head_match_wins": [ 42 @@ -164173,10 +164505,10 @@ export default { 42 ], "team": [ - 5532 + 5556 ], "team_kdr": [ - 2004 + 2005 ], "total_deaths": [ 42 @@ -164185,19 +164517,19 @@ export default { 42 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "tournament_team_id": [ - 6343 + 6367 ], "wins": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_insert_input": { @@ -164229,10 +164561,10 @@ export default { 41 ], "team": [ - 5541 + 5565 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -164241,19 +164573,19 @@ export default { 41 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_max_fields": { @@ -164285,7 +164617,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -164294,66 +164626,66 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_min_fields": { @@ -164385,7 +164717,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -164394,122 +164726,122 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team": [ - 5543 + 5567 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "tournament_team_id": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_select_column": {}, @@ -164562,51 +164894,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stddev_pop_fields": { @@ -164650,51 +164982,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stddev_samp_fields": { @@ -164738,62 +165070,62 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 7185 + 7209 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_stream_cursor_value_input": { @@ -164825,7 +165157,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -164834,16 +165166,16 @@ export default { 41 ], "tournament_id": [ - 6341 + 6365 ], "tournament_team_id": [ - 6341 + 6365 ], "wins": [ 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_sum_fields": { @@ -164875,7 +165207,7 @@ export default { 41 ], "team_kdr": [ - 2003 + 2004 ], "total_deaths": [ 41 @@ -164887,51 +165219,51 @@ export default { 41 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_var_pop_fields": { @@ -164975,51 +165307,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_var_samp_fields": { @@ -165063,51 +165395,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_variance_fields": { @@ -165151,51 +165483,51 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 3534 + 3558 ], "head_to_head_rounds_won": [ - 3534 + 3558 ], "losses": [ - 3534 + 3558 ], "maps_lost": [ - 3534 + 3558 ], "maps_won": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "matches_remaining": [ - 3534 + 3558 ], "rounds_lost": [ - 3534 + 3558 ], "rounds_won": [ - 3534 + 3558 ], "team_kdr": [ - 3534 + 3558 ], "total_deaths": [ - 3534 + 3558 ], "total_kills": [ - 3534 + 3558 ], "wins": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats": { @@ -165206,13 +165538,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -165221,248 +165553,248 @@ export default { 41 ], "player": [ - 4492 + 4516 ], "player_steam_id": [ - 309 + 310 ], "tournament": [ - 5565 + 5589 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 7208 + 7232 ], "nodes": [ - 7194 + 7218 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 7197 + 7221 ], "corr": [ - 7198 + 7222 ], "count": [ - 7200 + 7224 ], "covar_samp": [ - 7201 + 7225 ], "max": [ - 7203 + 7227 ], "min": [ - 7204 + 7228 ], "stddev_samp": [ - 7205 + 7229 ], "sum": [ - 7206 + 7230 ], "var_samp": [ - 7207 + 7231 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 7221 + 7245 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 7199 + 7223 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 7222 + 7246 ], "Y": [ - 7222 + 7246 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 7220 + 7244 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ 42 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 7202 + 7226 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 7223 + 7247 ], "Y": [ - 7223 + 7247 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 7224 + 7248 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 7225 + 7249 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 7226 + 7250 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 7227 + 7251 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 7228 + 7252 ], "distinct": [ 6 ], "filter": [ - 7213 + 7237 ], "predicate": [ - 2004 + 2005 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 7211 + 7235 ], "count": [ 41, { "columns": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -165471,80 +165803,80 @@ export default { } ], "max": [ - 7215 + 7239 ], "min": [ - 7217 + 7241 ], "stddev": [ - 7229 + 7253 ], "stddev_pop": [ - 7231 + 7255 ], "stddev_samp": [ - 7233 + 7257 ], "sum": [ - 7237 + 7261 ], "var_pop": [ - 7239 + 7263 ], "var_samp": [ - 7241 + 7265 ], "variance": [ - 7243 + 7267 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 7212 + 7236 ], "count": [ - 3534 + 3558 ], "max": [ - 7216 + 7240 ], "min": [ - 7218 + 7242 ], "stddev": [ - 7230 + 7254 ], "stddev_pop": [ - 7232 + 7256 ], "stddev_samp": [ - 7234 + 7258 ], "sum": [ - 7238 + 7262 ], "var_pop": [ - 7240 + 7264 ], "var_samp": [ - 7242 + 7266 ], "variance": [ - 7244 + 7268 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 7214 + 7238 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_avg_fields": { @@ -165573,47 +165905,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 7213 + 7237 ], "_not": [ - 7213 + 7237 ], "_or": [ - 7213 + 7237 ], "assists": [ 42 @@ -165622,13 +165954,13 @@ export default { 42 ], "headshot_percentage": [ - 2004 + 2005 ], "headshots": [ 42 ], "kdr": [ - 2004 + 2005 ], "kills": [ 42 @@ -165637,19 +165969,19 @@ export default { 42 ], "player": [ - 4496 + 4520 ], "player_steam_id": [ - 311 + 312 ], "tournament": [ - 5586 + 5610 ], "tournament_id": [ - 6343 + 6367 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_insert_input": { @@ -165660,13 +165992,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -165675,19 +166007,19 @@ export default { 41 ], "player": [ - 4503 + 4527 ], "player_steam_id": [ - 309 + 310 ], "tournament": [ - 5595 + 5619 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_max_fields": { @@ -165698,13 +166030,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -165713,45 +166045,45 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_min_fields": { @@ -165762,13 +166094,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -165777,83 +166109,83 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player": [ - 4505 + 4529 ], "player_steam_id": [ - 3534 + 3558 ], "tournament": [ - 5597 + 5621 ], "tournament_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_select_column": {}, @@ -165891,36 +166223,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stddev_pop_fields": { @@ -165949,36 +166281,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stddev_samp_fields": { @@ -166007,47 +166339,47 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 7236 + 7260 ], "ordering": [ - 392 + 393 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_stream_cursor_value_input": { @@ -166058,13 +166390,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -166073,13 +166405,13 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "tournament_id": [ - 6341 + 6365 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_sum_fields": { @@ -166090,13 +166422,13 @@ export default { 41 ], "headshot_percentage": [ - 2003 + 2004 ], "headshots": [ 41 ], "kdr": [ - 2003 + 2004 ], "kills": [ 41 @@ -166105,39 +166437,39 @@ export default { 41 ], "player_steam_id": [ - 309 + 310 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_var_pop_fields": { @@ -166166,36 +166498,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_var_samp_fields": { @@ -166224,36 +166556,36 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_variance_fields": { @@ -166282,44 +166614,44 @@ export default { 32 ], "__typename": [ - 84 + 85 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 3534 + 3558 ], "deaths": [ - 3534 + 3558 ], "headshot_percentage": [ - 3534 + 3558 ], "headshots": [ - 3534 + 3558 ], "kdr": [ - 3534 + 3558 ], "kills": [ - 3534 + 3558 ], "matches_played": [ - 3534 + 3558 ], "player_steam_id": [ - 3534 + 3558 ], "__typename": [ - 84 + 85 ] }, "Query": { "_map_pool": [ - 152, + 153, { "distinct_on": [ - 164, + 165, "[_map_pool_select_column!]" ], "limit": [ @@ -166329,19 +166661,19 @@ export default { 41 ], "order_by": [ - 162, + 163, "[_map_pool_order_by!]" ], "where": [ - 155 + 156 ] } ], "_map_pool_aggregate": [ - 153, + 154, { "distinct_on": [ - 164, + 165, "[_map_pool_select_column!]" ], "limit": [ @@ -166351,32 +166683,32 @@ export default { 41 ], "order_by": [ - 162, + 163, "[_map_pool_order_by!]" ], "where": [ - 155 + 156 ] } ], "_map_pool_by_pk": [ - 152, + 153, { "map_id": [ - 6341, + 6365, "uuid!" ], "map_pool_id": [ - 6341, + 6365, "uuid!" ] } ], "abandoned_matches": [ - 171, + 172, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -166386,19 +166718,19 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "abandoned_matches_aggregate": [ - 172, + 173, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -166408,41 +166740,41 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "abandoned_matches_by_pk": [ - 171, + 172, { "id": [ - 6341, + 6365, "uuid!" ] } ], "analyseUtilityPlaybookCoverage": [ - 125, + 126, { "pairs": [ - 142, + 143, "[UtilitySightlinePairInput!]!" ], "playbook_id": [ - 6341, + 6365, "uuid!" ] } ], "api_keys": [ - 212, + 213, { "distinct_on": [ - 226, + 227, "[api_keys_select_column!]" ], "limit": [ @@ -166452,19 +166784,19 @@ export default { 41 ], "order_by": [ - 224, + 225, "[api_keys_order_by!]" ], "where": [ - 216 + 217 ] } ], "api_keys_aggregate": [ - 213, + 214, { "distinct_on": [ - 226, + 227, "[api_keys_select_column!]" ], "limit": [ @@ -166474,28 +166806,28 @@ export default { 41 ], "order_by": [ - 224, + 225, "[api_keys_order_by!]" ], "where": [ - 216 + 217 ] } ], "api_keys_by_pk": [ - 212, + 213, { "id": [ - 6341, + 6365, "uuid!" ] } ], "award_recipients": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -166505,19 +166837,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "award_recipients_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -166527,28 +166859,28 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "award_recipients_by_pk": [ - 240, + 241, { "id": [ - 6341, + 6365, "uuid!" ] } ], "awards": [ - 281, + 282, { "distinct_on": [ - 296, + 297, "[awards_select_column!]" ], "limit": [ @@ -166558,19 +166890,19 @@ export default { 41 ], "order_by": [ - 294, + 295, "[awards_order_by!]" ], "where": [ - 285 + 286 ] } ], "awards_aggregate": [ - 282, + 283, { "distinct_on": [ - 296, + 297, "[awards_select_column!]" ], "limit": [ @@ -166580,28 +166912,28 @@ export default { 41 ], "order_by": [ - 294, + 295, "[awards_order_by!]" ], "where": [ - 285 + 286 ] } ], "awards_by_pk": [ - 281, + 282, { "id": [ - 6341, + 6365, "uuid!" ] } ], "chat_read_state": [ - 314, + 315, { "distinct_on": [ - 328, + 329, "[chat_read_state_select_column!]" ], "limit": [ @@ -166611,19 +166943,19 @@ export default { 41 ], "order_by": [ - 326, + 327, "[chat_read_state_order_by!]" ], "where": [ - 318 + 319 ] } ], "chat_read_state_aggregate": [ - 315, + 316, { "distinct_on": [ - 328, + 329, "[chat_read_state_select_column!]" ], "limit": [ @@ -166633,49 +166965,49 @@ export default { 41 ], "order_by": [ - 326, + 327, "[chat_read_state_order_by!]" ], "where": [ - 318 + 319 ] } ], "chat_read_state_by_pk": [ - 314, + 315, { "steam_id": [ - 309, + 310, "bigint!" ], "thread": [ - 84, + 85, "String!" ] } ], "checkUtilityOneWay": [ - 123, + 124, { "lineup_id": [ - 6341, + 6365, "uuid!" ], "pairs": [ - 142, + 143, "[UtilitySightlinePairInput!]!" ] } ], "checkUtilitySightlines": [ - 141, + 142, { "lineup_id": [ - 6341, + 6365, "uuid!" ], "pairs": [ - 142, + 143, "[UtilitySightlinePairInput!]!" ], "threshold": [ @@ -166684,10 +167016,10 @@ export default { } ], "clip_render_jobs": [ - 341, + 342, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -166697,19 +167029,19 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "clip_render_jobs_aggregate": [ - 342, + 343, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -166719,28 +167051,28 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "clip_render_jobs_by_pk": [ - 341, + 342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "custom_pages": [ - 393, + 394, { "distinct_on": [ - 412, + 413, "[custom_pages_select_column!]" ], "limit": [ @@ -166750,19 +167082,19 @@ export default { 41 ], "order_by": [ - 409, + 410, "[custom_pages_order_by!]" ], "where": [ - 398 + 399 ] } ], "custom_pages_aggregate": [ - 394, + 395, { "distinct_on": [ - 412, + 413, "[custom_pages_select_column!]" ], "limit": [ @@ -166772,19 +167104,19 @@ export default { 41 ], "order_by": [ - 409, + 410, "[custom_pages_order_by!]" ], "where": [ - 398 + 399 ] } ], "custom_pages_by_pk": [ - 393, + 394, { "id": [ - 6341, + 6365, "uuid!" ] } @@ -166793,10 +167125,10 @@ export default { 20 ], "db_backups": [ - 425, + 426, { "distinct_on": [ - 439, + 440, "[db_backups_select_column!]" ], "limit": [ @@ -166806,19 +167138,19 @@ export default { 41 ], "order_by": [ - 437, + 438, "[db_backups_order_by!]" ], "where": [ - 429 + 430 ] } ], "db_backups_aggregate": [ - 426, + 427, { "distinct_on": [ - 439, + 440, "[db_backups_select_column!]" ], "limit": [ @@ -166828,28 +167160,28 @@ export default { 41 ], "order_by": [ - 437, + 438, "[db_backups_order_by!]" ], "where": [ - 429 + 430 ] } ], "db_backups_by_pk": [ - 425, + 426, { "id": [ - 6341, + 6365, "uuid!" ] } ], "direct_conversations": [ - 452, + 453, { "distinct_on": [ - 466, + 467, "[direct_conversations_select_column!]" ], "limit": [ @@ -166859,19 +167191,19 @@ export default { 41 ], "order_by": [ - 464, + 465, "[direct_conversations_order_by!]" ], "where": [ - 456 + 457 ] } ], "direct_conversations_aggregate": [ - 453, + 454, { "distinct_on": [ - 466, + 467, "[direct_conversations_select_column!]" ], "limit": [ @@ -166881,32 +167213,32 @@ export default { 41 ], "order_by": [ - 464, + 465, "[direct_conversations_order_by!]" ], "where": [ - 456 + 457 ] } ], "direct_conversations_by_pk": [ - 452, + 453, { "room_id": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "direct_messages": [ - 479, + 480, { "distinct_on": [ - 493, + 494, "[direct_messages_select_column!]" ], "limit": [ @@ -166916,19 +167248,19 @@ export default { 41 ], "order_by": [ - 491, + 492, "[direct_messages_order_by!]" ], "where": [ - 483 + 484 ] } ], "direct_messages_aggregate": [ - 480, + 481, { "distinct_on": [ - 493, + 494, "[direct_messages_select_column!]" ], "limit": [ @@ -166938,28 +167270,28 @@ export default { 41 ], "order_by": [ - 491, + 492, "[direct_messages_order_by!]" ], "where": [ - 483 + 484 ] } ], "direct_messages_by_pk": [ - 479, + 480, { "id": [ - 6341, + 6365, "uuid!" ] } ], "draft_game_picks": [ - 506, + 507, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -166969,19 +167301,19 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "draft_game_picks_aggregate": [ - 507, + 508, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -166991,28 +167323,28 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "draft_game_picks_by_pk": [ - 506, + 507, { "id": [ - 6341, + 6365, "uuid!" ] } ], "draft_game_players": [ - 551, + 552, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -167022,19 +167354,19 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "draft_game_players_aggregate": [ - 552, + 553, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -167044,32 +167376,32 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "draft_game_players_by_pk": [ - 551, + 552, { "draft_game_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "draft_games": [ - 596, + 597, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -167079,19 +167411,19 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "draft_games_aggregate": [ - 597, + 598, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -167101,28 +167433,28 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "draft_games_by_pk": [ - 596, + 597, { "id": [ - 6341, + 6365, "uuid!" ] } ], "e_award_sources": [ - 642, + 643, { "distinct_on": [ - 656, + 657, "[e_award_sources_select_column!]" ], "limit": [ @@ -167132,19 +167464,19 @@ export default { 41 ], "order_by": [ - 654, + 655, "[e_award_sources_order_by!]" ], "where": [ - 645 + 646 ] } ], "e_award_sources_aggregate": [ - 643, + 644, { "distinct_on": [ - 656, + 657, "[e_award_sources_select_column!]" ], "limit": [ @@ -167154,28 +167486,28 @@ export default { 41 ], "order_by": [ - 654, + 655, "[e_award_sources_order_by!]" ], "where": [ - 645 + 646 ] } ], "e_award_sources_by_pk": [ - 642, + 643, { "value": [ - 84, + 85, "String!" ] } ], "e_award_tiers": [ - 662, + 663, { "distinct_on": [ - 676, + 677, "[e_award_tiers_select_column!]" ], "limit": [ @@ -167185,19 +167517,19 @@ export default { 41 ], "order_by": [ - 674, + 675, "[e_award_tiers_order_by!]" ], "where": [ - 665 + 666 ] } ], "e_award_tiers_aggregate": [ - 663, + 664, { "distinct_on": [ - 676, + 677, "[e_award_tiers_select_column!]" ], "limit": [ @@ -167207,28 +167539,28 @@ export default { 41 ], "order_by": [ - 674, + 675, "[e_award_tiers_order_by!]" ], "where": [ - 665 + 666 ] } ], "e_award_tiers_by_pk": [ - 662, + 663, { "value": [ - 84, + 85, "String!" ] } ], "e_check_in_settings": [ - 682, + 683, { "distinct_on": [ - 696, + 697, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -167238,19 +167570,19 @@ export default { 41 ], "order_by": [ - 694, + 695, "[e_check_in_settings_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_check_in_settings_aggregate": [ - 683, + 684, { "distinct_on": [ - 696, + 697, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -167260,28 +167592,28 @@ export default { 41 ], "order_by": [ - 694, + 695, "[e_check_in_settings_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_check_in_settings_by_pk": [ - 682, + 683, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_captain_selection": [ - 702, + 703, { "distinct_on": [ - 717, + 718, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -167291,19 +167623,19 @@ export default { 41 ], "order_by": [ - 715, + 716, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 705 + 706 ] } ], "e_draft_game_captain_selection_aggregate": [ - 703, + 704, { "distinct_on": [ - 717, + 718, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -167313,28 +167645,28 @@ export default { 41 ], "order_by": [ - 715, + 716, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 705 + 706 ] } ], "e_draft_game_captain_selection_by_pk": [ - 702, + 703, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_draft_order": [ - 723, + 724, { "distinct_on": [ - 738, + 739, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -167344,19 +167676,19 @@ export default { 41 ], "order_by": [ - 736, + 737, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 726 + 727 ] } ], "e_draft_game_draft_order_aggregate": [ - 724, + 725, { "distinct_on": [ - 738, + 739, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -167366,28 +167698,28 @@ export default { 41 ], "order_by": [ - 736, + 737, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 726 + 727 ] } ], "e_draft_game_draft_order_by_pk": [ - 723, + 724, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_mode": [ - 744, + 745, { "distinct_on": [ - 759, + 760, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -167397,19 +167729,19 @@ export default { 41 ], "order_by": [ - 757, + 758, "[e_draft_game_mode_order_by!]" ], "where": [ - 747 + 748 ] } ], "e_draft_game_mode_aggregate": [ - 745, + 746, { "distinct_on": [ - 759, + 760, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -167419,28 +167751,28 @@ export default { 41 ], "order_by": [ - 757, + 758, "[e_draft_game_mode_order_by!]" ], "where": [ - 747 + 748 ] } ], "e_draft_game_mode_by_pk": [ - 744, + 745, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_player_status": [ - 765, + 766, { "distinct_on": [ - 780, + 781, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -167450,19 +167782,19 @@ export default { 41 ], "order_by": [ - 778, + 779, "[e_draft_game_player_status_order_by!]" ], "where": [ - 768 + 769 ] } ], "e_draft_game_player_status_aggregate": [ - 766, + 767, { "distinct_on": [ - 780, + 781, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -167472,28 +167804,28 @@ export default { 41 ], "order_by": [ - 778, + 779, "[e_draft_game_player_status_order_by!]" ], "where": [ - 768 + 769 ] } ], "e_draft_game_player_status_by_pk": [ - 765, + 766, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_status": [ - 786, + 787, { "distinct_on": [ - 801, + 802, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -167503,19 +167835,19 @@ export default { 41 ], "order_by": [ - 799, + 800, "[e_draft_game_status_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_draft_game_status_aggregate": [ - 787, + 788, { "distinct_on": [ - 801, + 802, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -167525,28 +167857,28 @@ export default { 41 ], "order_by": [ - 799, + 800, "[e_draft_game_status_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_draft_game_status_by_pk": [ - 786, + 787, { "value": [ - 84, + 85, "String!" ] } ], "e_event_media_access": [ - 807, + 808, { "distinct_on": [ - 821, + 822, "[e_event_media_access_select_column!]" ], "limit": [ @@ -167556,19 +167888,19 @@ export default { 41 ], "order_by": [ - 819, + 820, "[e_event_media_access_order_by!]" ], "where": [ - 810 + 811 ] } ], "e_event_media_access_aggregate": [ - 808, + 809, { "distinct_on": [ - 821, + 822, "[e_event_media_access_select_column!]" ], "limit": [ @@ -167578,28 +167910,28 @@ export default { 41 ], "order_by": [ - 819, + 820, "[e_event_media_access_order_by!]" ], "where": [ - 810 + 811 ] } ], "e_event_media_access_by_pk": [ - 807, + 808, { "value": [ - 84, + 85, "String!" ] } ], "e_event_visibility": [ - 827, + 828, { "distinct_on": [ - 841, + 842, "[e_event_visibility_select_column!]" ], "limit": [ @@ -167609,19 +167941,19 @@ export default { 41 ], "order_by": [ - 839, + 840, "[e_event_visibility_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_event_visibility_aggregate": [ - 828, + 829, { "distinct_on": [ - 841, + 842, "[e_event_visibility_select_column!]" ], "limit": [ @@ -167631,28 +167963,28 @@ export default { 41 ], "order_by": [ - 839, + 840, "[e_event_visibility_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_event_visibility_by_pk": [ - 827, + 828, { "value": [ - 84, + 85, "String!" ] } ], "e_friend_status": [ - 847, + 848, { "distinct_on": [ - 862, + 863, "[e_friend_status_select_column!]" ], "limit": [ @@ -167662,19 +167994,19 @@ export default { 41 ], "order_by": [ - 860, + 861, "[e_friend_status_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_friend_status_aggregate": [ - 848, + 849, { "distinct_on": [ - 862, + 863, "[e_friend_status_select_column!]" ], "limit": [ @@ -167684,28 +168016,28 @@ export default { 41 ], "order_by": [ - 860, + 861, "[e_friend_status_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_friend_status_by_pk": [ - 847, + 848, { "value": [ - 84, + 85, "String!" ] } ], "e_game_cfg_types": [ - 868, + 869, { "distinct_on": [ - 882, + 883, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -167715,19 +168047,19 @@ export default { 41 ], "order_by": [ - 880, + 881, "[e_game_cfg_types_order_by!]" ], "where": [ - 871 + 872 ] } ], "e_game_cfg_types_aggregate": [ - 869, + 870, { "distinct_on": [ - 882, + 883, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -167737,28 +168069,28 @@ export default { 41 ], "order_by": [ - 880, + 881, "[e_game_cfg_types_order_by!]" ], "where": [ - 871 + 872 ] } ], "e_game_cfg_types_by_pk": [ - 868, + 869, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_channels": [ - 888, + 889, { "distinct_on": [ - 902, + 903, "[e_game_plugin_channels_select_column!]" ], "limit": [ @@ -167768,19 +168100,19 @@ export default { 41 ], "order_by": [ - 900, + 901, "[e_game_plugin_channels_order_by!]" ], "where": [ - 891 + 892 ] } ], "e_game_plugin_channels_aggregate": [ - 889, + 890, { "distinct_on": [ - 902, + 903, "[e_game_plugin_channels_select_column!]" ], "limit": [ @@ -167790,28 +168122,28 @@ export default { 41 ], "order_by": [ - 900, + 901, "[e_game_plugin_channels_order_by!]" ], "where": [ - 891 + 892 ] } ], "e_game_plugin_channels_by_pk": [ - 888, + 889, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_install_statuses": [ - 908, + 909, { "distinct_on": [ - 922, + 923, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ @@ -167821,19 +168153,19 @@ export default { 41 ], "order_by": [ - 920, + 921, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 911 + 912 ] } ], "e_game_plugin_install_statuses_aggregate": [ - 909, + 910, { "distinct_on": [ - 922, + 923, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ @@ -167843,28 +168175,28 @@ export default { 41 ], "order_by": [ - 920, + 921, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 911 + 912 ] } ], "e_game_plugin_install_statuses_by_pk": [ - 908, + 909, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_kinds": [ - 928, + 929, { "distinct_on": [ - 942, + 943, "[e_game_plugin_kinds_select_column!]" ], "limit": [ @@ -167874,19 +168206,19 @@ export default { 41 ], "order_by": [ - 940, + 941, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_game_plugin_kinds_aggregate": [ - 929, + 930, { "distinct_on": [ - 942, + 943, "[e_game_plugin_kinds_select_column!]" ], "limit": [ @@ -167896,28 +168228,28 @@ export default { 41 ], "order_by": [ - 940, + 941, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_game_plugin_kinds_by_pk": [ - 928, + 929, { "value": [ - 84, + 85, "String!" ] } ], "e_game_server_node_statuses": [ - 948, + 949, { "distinct_on": [ - 963, + 964, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -167927,19 +168259,19 @@ export default { 41 ], "order_by": [ - 961, + 962, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 951 + 952 ] } ], "e_game_server_node_statuses_aggregate": [ - 949, + 950, { "distinct_on": [ - 963, + 964, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -167949,28 +168281,28 @@ export default { 41 ], "order_by": [ - 961, + 962, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 951 + 952 ] } ], "e_game_server_node_statuses_by_pk": [ - 948, + 949, { "value": [ - 84, + 85, "String!" ] } ], "e_league_movement_types": [ - 969, + 970, { "distinct_on": [ - 984, + 985, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -167980,19 +168312,19 @@ export default { 41 ], "order_by": [ - 982, + 983, "[e_league_movement_types_order_by!]" ], "where": [ - 972 + 973 ] } ], "e_league_movement_types_aggregate": [ - 970, + 971, { "distinct_on": [ - 984, + 985, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -168002,28 +168334,28 @@ export default { 41 ], "order_by": [ - 982, + 983, "[e_league_movement_types_order_by!]" ], "where": [ - 972 + 973 ] } ], "e_league_movement_types_by_pk": [ - 969, + 970, { "value": [ - 84, + 85, "String!" ] } ], "e_league_proposal_statuses": [ - 990, + 991, { "distinct_on": [ - 1005, + 1006, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -168033,19 +168365,19 @@ export default { 41 ], "order_by": [ - 1003, + 1004, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 993 + 994 ] } ], "e_league_proposal_statuses_aggregate": [ - 991, + 992, { "distinct_on": [ - 1005, + 1006, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -168055,28 +168387,28 @@ export default { 41 ], "order_by": [ - 1003, + 1004, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 993 + 994 ] } ], "e_league_proposal_statuses_by_pk": [ - 990, + 991, { "value": [ - 84, + 85, "String!" ] } ], "e_league_registration_statuses": [ - 1011, + 1012, { "distinct_on": [ - 1026, + 1027, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -168086,19 +168418,19 @@ export default { 41 ], "order_by": [ - 1024, + 1025, "[e_league_registration_statuses_order_by!]" ], "where": [ - 1014 + 1015 ] } ], "e_league_registration_statuses_aggregate": [ - 1012, + 1013, { "distinct_on": [ - 1026, + 1027, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -168108,28 +168440,28 @@ export default { 41 ], "order_by": [ - 1024, + 1025, "[e_league_registration_statuses_order_by!]" ], "where": [ - 1014 + 1015 ] } ], "e_league_registration_statuses_by_pk": [ - 1011, + 1012, { "value": [ - 84, + 85, "String!" ] } ], "e_league_season_statuses": [ - 1032, + 1033, { "distinct_on": [ - 1047, + 1048, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -168139,19 +168471,19 @@ export default { 41 ], "order_by": [ - 1045, + 1046, "[e_league_season_statuses_order_by!]" ], "where": [ - 1035 + 1036 ] } ], "e_league_season_statuses_aggregate": [ - 1033, + 1034, { "distinct_on": [ - 1047, + 1048, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -168161,28 +168493,28 @@ export default { 41 ], "order_by": [ - 1045, + 1046, "[e_league_season_statuses_order_by!]" ], "where": [ - 1035 + 1036 ] } ], "e_league_season_statuses_by_pk": [ - 1032, + 1033, { "value": [ - 84, + 85, "String!" ] } ], "e_lobby_access": [ - 1053, + 1054, { "distinct_on": [ - 1068, + 1069, "[e_lobby_access_select_column!]" ], "limit": [ @@ -168192,19 +168524,19 @@ export default { 41 ], "order_by": [ - 1066, + 1067, "[e_lobby_access_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_lobby_access_aggregate": [ - 1054, + 1055, { "distinct_on": [ - 1068, + 1069, "[e_lobby_access_select_column!]" ], "limit": [ @@ -168214,28 +168546,28 @@ export default { 41 ], "order_by": [ - 1066, + 1067, "[e_lobby_access_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_lobby_access_by_pk": [ - 1053, + 1054, { "value": [ - 84, + 85, "String!" ] } ], "e_lobby_player_status": [ - 1074, + 1075, { "distinct_on": [ - 1088, + 1089, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -168245,19 +168577,19 @@ export default { 41 ], "order_by": [ - 1086, + 1087, "[e_lobby_player_status_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_lobby_player_status_aggregate": [ - 1075, + 1076, { "distinct_on": [ - 1088, + 1089, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -168267,28 +168599,28 @@ export default { 41 ], "order_by": [ - 1086, + 1087, "[e_lobby_player_status_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_lobby_player_status_by_pk": [ - 1074, + 1075, { "value": [ - 84, + 85, "String!" ] } ], "e_map_pool_types": [ - 1094, + 1095, { "distinct_on": [ - 1109, + 1110, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -168298,19 +168630,19 @@ export default { 41 ], "order_by": [ - 1107, + 1108, "[e_map_pool_types_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_map_pool_types_aggregate": [ - 1095, + 1096, { "distinct_on": [ - 1109, + 1110, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -168320,28 +168652,28 @@ export default { 41 ], "order_by": [ - 1107, + 1108, "[e_map_pool_types_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_map_pool_types_by_pk": [ - 1094, + 1095, { "value": [ - 84, + 85, "String!" ] } ], "e_match_clip_visibility": [ - 1115, + 1116, { "distinct_on": [ - 1129, + 1130, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -168351,19 +168683,19 @@ export default { 41 ], "order_by": [ - 1127, + 1128, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_clip_visibility_aggregate": [ - 1116, + 1117, { "distinct_on": [ - 1129, + 1130, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -168373,28 +168705,28 @@ export default { 41 ], "order_by": [ - 1127, + 1128, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_clip_visibility_by_pk": [ - 1115, + 1116, { "value": [ - 84, + 85, "String!" ] } ], "e_match_map_status": [ - 1135, + 1136, { "distinct_on": [ - 1150, + 1151, "[e_match_map_status_select_column!]" ], "limit": [ @@ -168404,19 +168736,19 @@ export default { 41 ], "order_by": [ - 1148, + 1149, "[e_match_map_status_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_map_status_aggregate": [ - 1136, + 1137, { "distinct_on": [ - 1150, + 1151, "[e_match_map_status_select_column!]" ], "limit": [ @@ -168426,28 +168758,28 @@ export default { 41 ], "order_by": [ - 1148, + 1149, "[e_match_map_status_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_map_status_by_pk": [ - 1135, + 1136, { "value": [ - 84, + 85, "String!" ] } ], "e_match_mode": [ - 1156, + 1157, { "distinct_on": [ - 1170, + 1171, "[e_match_mode_select_column!]" ], "limit": [ @@ -168457,19 +168789,19 @@ export default { 41 ], "order_by": [ - 1168, + 1169, "[e_match_mode_order_by!]" ], "where": [ - 1159 + 1160 ] } ], "e_match_mode_aggregate": [ - 1157, + 1158, { "distinct_on": [ - 1170, + 1171, "[e_match_mode_select_column!]" ], "limit": [ @@ -168479,28 +168811,28 @@ export default { 41 ], "order_by": [ - 1168, + 1169, "[e_match_mode_order_by!]" ], "where": [ - 1159 + 1160 ] } ], "e_match_mode_by_pk": [ - 1156, + 1157, { "value": [ - 84, + 85, "String!" ] } ], "e_match_party_sources": [ - 1176, + 1177, { "distinct_on": [ - 1190, + 1191, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -168510,19 +168842,19 @@ export default { 41 ], "order_by": [ - 1188, + 1189, "[e_match_party_sources_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_party_sources_aggregate": [ - 1177, + 1178, { "distinct_on": [ - 1190, + 1191, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -168532,28 +168864,28 @@ export default { 41 ], "order_by": [ - 1188, + 1189, "[e_match_party_sources_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_party_sources_by_pk": [ - 1176, + 1177, { "value": [ - 84, + 85, "String!" ] } ], "e_match_status": [ - 1196, + 1197, { "distinct_on": [ - 1211, + 1212, "[e_match_status_select_column!]" ], "limit": [ @@ -168563,19 +168895,19 @@ export default { 41 ], "order_by": [ - 1209, + 1210, "[e_match_status_order_by!]" ], "where": [ - 1199 + 1200 ] } ], "e_match_status_aggregate": [ - 1197, + 1198, { "distinct_on": [ - 1211, + 1212, "[e_match_status_select_column!]" ], "limit": [ @@ -168585,28 +168917,28 @@ export default { 41 ], "order_by": [ - 1209, + 1210, "[e_match_status_order_by!]" ], "where": [ - 1199 + 1200 ] } ], "e_match_status_by_pk": [ - 1196, + 1197, { "value": [ - 84, + 85, "String!" ] } ], "e_match_types": [ - 1217, + 1218, { "distinct_on": [ - 1232, + 1233, "[e_match_types_select_column!]" ], "limit": [ @@ -168616,19 +168948,19 @@ export default { 41 ], "order_by": [ - 1230, + 1231, "[e_match_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_match_types_aggregate": [ - 1218, + 1219, { "distinct_on": [ - 1232, + 1233, "[e_match_types_select_column!]" ], "limit": [ @@ -168638,28 +168970,28 @@ export default { 41 ], "order_by": [ - 1230, + 1231, "[e_match_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_match_types_by_pk": [ - 1217, + 1218, { "value": [ - 84, + 85, "String!" ] } ], "e_notification_types": [ - 1238, + 1239, { "distinct_on": [ - 1252, + 1253, "[e_notification_types_select_column!]" ], "limit": [ @@ -168669,19 +169001,19 @@ export default { 41 ], "order_by": [ - 1250, + 1251, "[e_notification_types_order_by!]" ], "where": [ - 1241 + 1242 ] } ], "e_notification_types_aggregate": [ - 1239, + 1240, { "distinct_on": [ - 1252, + 1253, "[e_notification_types_select_column!]" ], "limit": [ @@ -168691,28 +169023,28 @@ export default { 41 ], "order_by": [ - 1250, + 1251, "[e_notification_types_order_by!]" ], "where": [ - 1241 + 1242 ] } ], "e_notification_types_by_pk": [ - 1238, + 1239, { "value": [ - 84, + 85, "String!" ] } ], "e_objective_types": [ - 1258, + 1259, { "distinct_on": [ - 1272, + 1273, "[e_objective_types_select_column!]" ], "limit": [ @@ -168722,19 +169054,19 @@ export default { 41 ], "order_by": [ - 1270, + 1271, "[e_objective_types_order_by!]" ], "where": [ - 1261 + 1262 ] } ], "e_objective_types_aggregate": [ - 1259, + 1260, { "distinct_on": [ - 1272, + 1273, "[e_objective_types_select_column!]" ], "limit": [ @@ -168744,28 +169076,28 @@ export default { 41 ], "order_by": [ - 1270, + 1271, "[e_objective_types_order_by!]" ], "where": [ - 1261 + 1262 ] } ], "e_objective_types_by_pk": [ - 1258, + 1259, { "value": [ - 84, + 85, "String!" ] } ], "e_player_roles": [ - 1278, + 1279, { "distinct_on": [ - 1292, + 1293, "[e_player_roles_select_column!]" ], "limit": [ @@ -168775,19 +169107,19 @@ export default { 41 ], "order_by": [ - 1290, + 1291, "[e_player_roles_order_by!]" ], "where": [ - 1281 + 1282 ] } ], "e_player_roles_aggregate": [ - 1279, + 1280, { "distinct_on": [ - 1292, + 1293, "[e_player_roles_select_column!]" ], "limit": [ @@ -168797,28 +169129,28 @@ export default { 41 ], "order_by": [ - 1290, + 1291, "[e_player_roles_order_by!]" ], "where": [ - 1281 + 1282 ] } ], "e_player_roles_by_pk": [ - 1278, + 1279, { "value": [ - 84, + 85, "String!" ] } ], "e_plugin_runtimes": [ - 1298, + 1299, { "distinct_on": [ - 1312, + 1313, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -168828,19 +169160,19 @@ export default { 41 ], "order_by": [ - 1310, + 1311, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1301 + 1302 ] } ], "e_plugin_runtimes_aggregate": [ - 1299, + 1300, { "distinct_on": [ - 1312, + 1313, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -168850,28 +169182,28 @@ export default { 41 ], "order_by": [ - 1310, + 1311, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1301 + 1302 ] } ], "e_plugin_runtimes_by_pk": [ - 1298, + 1299, { "value": [ - 84, + 85, "String!" ] } ], "e_ready_settings": [ - 1318, + 1319, { "distinct_on": [ - 1332, + 1333, "[e_ready_settings_select_column!]" ], "limit": [ @@ -168881,19 +169213,19 @@ export default { 41 ], "order_by": [ - 1330, + 1331, "[e_ready_settings_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_ready_settings_aggregate": [ - 1319, + 1320, { "distinct_on": [ - 1332, + 1333, "[e_ready_settings_select_column!]" ], "limit": [ @@ -168903,28 +169235,28 @@ export default { 41 ], "order_by": [ - 1330, + 1331, "[e_ready_settings_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_ready_settings_by_pk": [ - 1318, + 1319, { "value": [ - 84, + 85, "String!" ] } ], "e_sanction_types": [ - 1338, + 1339, { "distinct_on": [ - 1353, + 1354, "[e_sanction_types_select_column!]" ], "limit": [ @@ -168934,19 +169266,19 @@ export default { 41 ], "order_by": [ - 1351, + 1352, "[e_sanction_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_sanction_types_aggregate": [ - 1339, + 1340, { "distinct_on": [ - 1353, + 1354, "[e_sanction_types_select_column!]" ], "limit": [ @@ -168956,28 +169288,28 @@ export default { 41 ], "order_by": [ - 1351, + 1352, "[e_sanction_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_sanction_types_by_pk": [ - 1338, + 1339, { "value": [ - 84, + 85, "String!" ] } ], "e_scrim_request_statuses": [ - 1359, + 1360, { "distinct_on": [ - 1373, + 1374, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -168987,19 +169319,19 @@ export default { 41 ], "order_by": [ - 1371, + 1372, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1362 + 1363 ] } ], "e_scrim_request_statuses_aggregate": [ - 1360, + 1361, { "distinct_on": [ - 1373, + 1374, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -169009,28 +169341,28 @@ export default { 41 ], "order_by": [ - 1371, + 1372, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1362 + 1363 ] } ], "e_scrim_request_statuses_by_pk": [ - 1359, + 1360, { "value": [ - 84, + 85, "String!" ] } ], "e_server_types": [ - 1379, + 1380, { "distinct_on": [ - 1393, + 1394, "[e_server_types_select_column!]" ], "limit": [ @@ -169040,19 +169372,19 @@ export default { 41 ], "order_by": [ - 1391, + 1392, "[e_server_types_order_by!]" ], "where": [ - 1382 + 1383 ] } ], "e_server_types_aggregate": [ - 1380, + 1381, { "distinct_on": [ - 1393, + 1394, "[e_server_types_select_column!]" ], "limit": [ @@ -169062,28 +169394,28 @@ export default { 41 ], "order_by": [ - 1391, + 1392, "[e_server_types_order_by!]" ], "where": [ - 1382 + 1383 ] } ], "e_server_types_by_pk": [ - 1379, + 1380, { "value": [ - 84, + 85, "String!" ] } ], "e_sides": [ - 1399, + 1400, { "distinct_on": [ - 1413, + 1414, "[e_sides_select_column!]" ], "limit": [ @@ -169093,19 +169425,19 @@ export default { 41 ], "order_by": [ - 1411, + 1412, "[e_sides_order_by!]" ], "where": [ - 1402 + 1403 ] } ], "e_sides_aggregate": [ - 1400, + 1401, { "distinct_on": [ - 1413, + 1414, "[e_sides_select_column!]" ], "limit": [ @@ -169115,28 +169447,28 @@ export default { 41 ], "order_by": [ - 1411, + 1412, "[e_sides_order_by!]" ], "where": [ - 1402 + 1403 ] } ], "e_sides_by_pk": [ - 1399, + 1400, { "value": [ - 84, + 85, "String!" ] } ], "e_system_alert_types": [ - 1419, + 1420, { "distinct_on": [ - 1433, + 1434, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -169146,19 +169478,19 @@ export default { 41 ], "order_by": [ - 1431, + 1432, "[e_system_alert_types_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_system_alert_types_aggregate": [ - 1420, + 1421, { "distinct_on": [ - 1433, + 1434, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -169168,28 +169500,28 @@ export default { 41 ], "order_by": [ - 1431, + 1432, "[e_system_alert_types_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_system_alert_types_by_pk": [ - 1419, + 1420, { "value": [ - 84, + 85, "String!" ] } ], "e_team_roles": [ - 1439, + 1440, { "distinct_on": [ - 1454, + 1455, "[e_team_roles_select_column!]" ], "limit": [ @@ -169199,19 +169531,19 @@ export default { 41 ], "order_by": [ - 1452, + 1453, "[e_team_roles_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_team_roles_aggregate": [ - 1440, + 1441, { "distinct_on": [ - 1454, + 1455, "[e_team_roles_select_column!]" ], "limit": [ @@ -169221,28 +169553,28 @@ export default { 41 ], "order_by": [ - 1452, + 1453, "[e_team_roles_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_team_roles_by_pk": [ - 1439, + 1440, { "value": [ - 84, + 85, "String!" ] } ], "e_team_roster_statuses": [ - 1460, + 1461, { "distinct_on": [ - 1474, + 1475, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -169252,19 +169584,19 @@ export default { 41 ], "order_by": [ - 1472, + 1473, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1463 + 1464 ] } ], "e_team_roster_statuses_aggregate": [ - 1461, + 1462, { "distinct_on": [ - 1474, + 1475, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -169274,28 +169606,28 @@ export default { 41 ], "order_by": [ - 1472, + 1473, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1463 + 1464 ] } ], "e_team_roster_statuses_by_pk": [ - 1460, + 1461, { "value": [ - 84, + 85, "String!" ] } ], "e_timeout_settings": [ - 1480, + 1481, { "distinct_on": [ - 1494, + 1495, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -169305,19 +169637,19 @@ export default { 41 ], "order_by": [ - 1492, + 1493, "[e_timeout_settings_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_timeout_settings_aggregate": [ - 1481, + 1482, { "distinct_on": [ - 1494, + 1495, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -169327,28 +169659,28 @@ export default { 41 ], "order_by": [ - 1492, + 1493, "[e_timeout_settings_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_timeout_settings_by_pk": [ - 1480, + 1481, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_categories": [ - 1500, + 1501, { "distinct_on": [ - 1515, + 1516, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -169358,19 +169690,19 @@ export default { 41 ], "order_by": [ - 1513, + 1514, "[e_tournament_categories_order_by!]" ], "where": [ - 1503 + 1504 ] } ], "e_tournament_categories_aggregate": [ - 1501, + 1502, { "distinct_on": [ - 1515, + 1516, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -169380,28 +169712,28 @@ export default { 41 ], "order_by": [ - 1513, + 1514, "[e_tournament_categories_order_by!]" ], "where": [ - 1503 + 1504 ] } ], "e_tournament_categories_by_pk": [ - 1500, + 1501, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_stage_types": [ - 1521, + 1522, { "distinct_on": [ - 1536, + 1537, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -169411,19 +169743,19 @@ export default { 41 ], "order_by": [ - 1534, + 1535, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1524 + 1525 ] } ], "e_tournament_stage_types_aggregate": [ - 1522, + 1523, { "distinct_on": [ - 1536, + 1537, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -169433,28 +169765,28 @@ export default { 41 ], "order_by": [ - 1534, + 1535, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1524 + 1525 ] } ], "e_tournament_stage_types_by_pk": [ - 1521, + 1522, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_status": [ - 1542, + 1543, { "distinct_on": [ - 1557, + 1558, "[e_tournament_status_select_column!]" ], "limit": [ @@ -169464,19 +169796,19 @@ export default { 41 ], "order_by": [ - 1555, + 1556, "[e_tournament_status_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_tournament_status_aggregate": [ - 1543, + 1544, { "distinct_on": [ - 1557, + 1558, "[e_tournament_status_select_column!]" ], "limit": [ @@ -169486,28 +169818,28 @@ export default { 41 ], "order_by": [ - 1555, + 1556, "[e_tournament_status_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_tournament_status_by_pk": [ - 1542, + 1543, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_practice_access": [ - 1563, + 1564, { "distinct_on": [ - 1577, + 1578, "[e_utility_practice_access_select_column!]" ], "limit": [ @@ -169517,19 +169849,19 @@ export default { 41 ], "order_by": [ - 1575, + 1576, "[e_utility_practice_access_order_by!]" ], "where": [ - 1566 + 1567 ] } ], "e_utility_practice_access_aggregate": [ - 1564, + 1565, { "distinct_on": [ - 1577, + 1578, "[e_utility_practice_access_select_column!]" ], "limit": [ @@ -169539,28 +169871,28 @@ export default { 41 ], "order_by": [ - 1575, + 1576, "[e_utility_practice_access_order_by!]" ], "where": [ - 1566 + 1567 ] } ], "e_utility_practice_access_by_pk": [ - 1563, + 1564, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_practice_statuses": [ - 1583, + 1584, { "distinct_on": [ - 1598, + 1599, "[e_utility_practice_statuses_select_column!]" ], "limit": [ @@ -169570,19 +169902,19 @@ export default { 41 ], "order_by": [ - 1596, + 1597, "[e_utility_practice_statuses_order_by!]" ], "where": [ - 1586 + 1587 ] } ], "e_utility_practice_statuses_aggregate": [ - 1584, + 1585, { "distinct_on": [ - 1598, + 1599, "[e_utility_practice_statuses_select_column!]" ], "limit": [ @@ -169592,28 +169924,28 @@ export default { 41 ], "order_by": [ - 1596, + 1597, "[e_utility_practice_statuses_order_by!]" ], "where": [ - 1586 + 1587 ] } ], "e_utility_practice_statuses_by_pk": [ - 1583, + 1584, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_sources": [ - 1604, + 1605, { "distinct_on": [ - 1618, + 1619, "[e_utility_sources_select_column!]" ], "limit": [ @@ -169623,19 +169955,19 @@ export default { 41 ], "order_by": [ - 1616, + 1617, "[e_utility_sources_order_by!]" ], "where": [ - 1607 + 1608 ] } ], "e_utility_sources_aggregate": [ - 1605, + 1606, { "distinct_on": [ - 1618, + 1619, "[e_utility_sources_select_column!]" ], "limit": [ @@ -169645,28 +169977,28 @@ export default { 41 ], "order_by": [ - 1616, + 1617, "[e_utility_sources_order_by!]" ], "where": [ - 1607 + 1608 ] } ], "e_utility_sources_by_pk": [ - 1604, + 1605, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_techniques": [ - 1624, + 1625, { "distinct_on": [ - 1638, + 1639, "[e_utility_techniques_select_column!]" ], "limit": [ @@ -169676,19 +170008,19 @@ export default { 41 ], "order_by": [ - 1636, + 1637, "[e_utility_techniques_order_by!]" ], "where": [ - 1627 + 1628 ] } ], "e_utility_techniques_aggregate": [ - 1625, + 1626, { "distinct_on": [ - 1638, + 1639, "[e_utility_techniques_select_column!]" ], "limit": [ @@ -169698,28 +170030,28 @@ export default { 41 ], "order_by": [ - 1636, + 1637, "[e_utility_techniques_order_by!]" ], "where": [ - 1627 + 1628 ] } ], "e_utility_techniques_by_pk": [ - 1624, + 1625, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_throw_strengths": [ - 1644, + 1645, { "distinct_on": [ - 1658, + 1659, "[e_utility_throw_strengths_select_column!]" ], "limit": [ @@ -169729,19 +170061,19 @@ export default { 41 ], "order_by": [ - 1656, + 1657, "[e_utility_throw_strengths_order_by!]" ], "where": [ - 1647 + 1648 ] } ], "e_utility_throw_strengths_aggregate": [ - 1645, + 1646, { "distinct_on": [ - 1658, + 1659, "[e_utility_throw_strengths_select_column!]" ], "limit": [ @@ -169751,28 +170083,28 @@ export default { 41 ], "order_by": [ - 1656, + 1657, "[e_utility_throw_strengths_order_by!]" ], "where": [ - 1647 + 1648 ] } ], "e_utility_throw_strengths_by_pk": [ - 1644, + 1645, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_types": [ - 1664, + 1665, { "distinct_on": [ - 1678, + 1679, "[e_utility_types_select_column!]" ], "limit": [ @@ -169782,19 +170114,19 @@ export default { 41 ], "order_by": [ - 1676, + 1677, "[e_utility_types_order_by!]" ], "where": [ - 1667 + 1668 ] } ], "e_utility_types_aggregate": [ - 1665, + 1666, { "distinct_on": [ - 1678, + 1679, "[e_utility_types_select_column!]" ], "limit": [ @@ -169804,28 +170136,28 @@ export default { 41 ], "order_by": [ - 1676, + 1677, "[e_utility_types_order_by!]" ], "where": [ - 1667 + 1668 ] } ], "e_utility_types_by_pk": [ - 1664, + 1665, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_visibility": [ - 1684, + 1685, { "distinct_on": [ - 1698, + 1699, "[e_utility_visibility_select_column!]" ], "limit": [ @@ -169835,19 +170167,19 @@ export default { 41 ], "order_by": [ - 1696, + 1697, "[e_utility_visibility_order_by!]" ], "where": [ - 1687 + 1688 ] } ], "e_utility_visibility_aggregate": [ - 1685, + 1686, { "distinct_on": [ - 1698, + 1699, "[e_utility_visibility_select_column!]" ], "limit": [ @@ -169857,28 +170189,28 @@ export default { 41 ], "order_by": [ - 1696, + 1697, "[e_utility_visibility_order_by!]" ], "where": [ - 1687 + 1688 ] } ], "e_utility_visibility_by_pk": [ - 1684, + 1685, { "value": [ - 84, + 85, "String!" ] } ], "e_veto_pick_types": [ - 1704, + 1705, { "distinct_on": [ - 1718, + 1719, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -169888,19 +170220,19 @@ export default { 41 ], "order_by": [ - 1716, + 1717, "[e_veto_pick_types_order_by!]" ], "where": [ - 1707 + 1708 ] } ], "e_veto_pick_types_aggregate": [ - 1705, + 1706, { "distinct_on": [ - 1718, + 1719, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -169910,28 +170242,28 @@ export default { 41 ], "order_by": [ - 1716, + 1717, "[e_veto_pick_types_order_by!]" ], "where": [ - 1707 + 1708 ] } ], "e_veto_pick_types_by_pk": [ - 1704, + 1705, { "value": [ - 84, + 85, "String!" ] } ], "e_winning_reasons": [ - 1724, + 1725, { "distinct_on": [ - 1738, + 1739, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -169941,19 +170273,19 @@ export default { 41 ], "order_by": [ - 1736, + 1737, "[e_winning_reasons_order_by!]" ], "where": [ - 1727 + 1728 ] } ], "e_winning_reasons_aggregate": [ - 1725, + 1726, { "distinct_on": [ - 1738, + 1739, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -169963,28 +170295,28 @@ export default { 41 ], "order_by": [ - 1736, + 1737, "[e_winning_reasons_order_by!]" ], "where": [ - 1727 + 1728 ] } ], "e_winning_reasons_by_pk": [ - 1724, + 1725, { "value": [ - 84, + 85, "String!" ] } ], "event_match_links": [ - 1744, + 1745, { "distinct_on": [ - 1756, + 1757, "[event_match_links_select_column!]" ], "limit": [ @@ -169994,19 +170326,19 @@ export default { 41 ], "order_by": [ - 1754, + 1755, "[event_match_links_order_by!]" ], "where": [ - 1747 + 1748 ] } ], "event_match_links_aggregate": [ - 1745, + 1746, { "distinct_on": [ - 1756, + 1757, "[event_match_links_select_column!]" ], "limit": [ @@ -170016,32 +170348,32 @@ export default { 41 ], "order_by": [ - 1754, + 1755, "[event_match_links_order_by!]" ], "where": [ - 1747 + 1748 ] } ], "event_match_links_by_pk": [ - 1744, + 1745, { "event_id": [ - 6341, + 6365, "uuid!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "event_media": [ - 1762, + 1763, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -170051,19 +170383,19 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "event_media_aggregate": [ - 1763, + 1764, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -170073,28 +170405,28 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "event_media_by_pk": [ - 1762, + 1763, { "id": [ - 6341, + 6365, "uuid!" ] } ], "event_media_players": [ - 1784, + 1785, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -170104,19 +170436,19 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "event_media_players_aggregate": [ - 1785, + 1786, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -170126,32 +170458,32 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "event_media_players_by_pk": [ - 1784, + 1785, { "media_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_organizers": [ - 1845, + 1846, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -170161,19 +170493,19 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "event_organizers_aggregate": [ - 1846, + 1847, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -170183,32 +170515,32 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "event_organizers_by_pk": [ - 1845, + 1846, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_players": [ - 1886, + 1887, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -170218,19 +170550,19 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "event_players_aggregate": [ - 1887, + 1888, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -170240,32 +170572,32 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "event_players_by_pk": [ - 1886, + 1887, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_teams": [ - 1927, + 1928, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -170275,19 +170607,19 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "event_teams_aggregate": [ - 1928, + 1929, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -170297,32 +170629,32 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "event_teams_by_pk": [ - 1927, + 1928, { "event_id": [ - 6341, + 6365, "uuid!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "event_tournaments": [ - 1951, + 1952, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -170332,19 +170664,19 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "event_tournaments_aggregate": [ - 1952, + 1953, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -170354,32 +170686,32 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "event_tournaments_by_pk": [ - 1951, + 1952, { "event_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "events": [ - 1975, + 1976, { "distinct_on": [ - 1990, + 1991, "[events_select_column!]" ], "limit": [ @@ -170389,19 +170721,19 @@ export default { 41 ], "order_by": [ - 1988, + 1989, "[events_order_by!]" ], "where": [ - 1979 + 1980 ] } ], "events_aggregate": [ - 1976, + 1977, { "distinct_on": [ - 1990, + 1991, "[events_select_column!]" ], "limit": [ @@ -170411,25 +170743,25 @@ export default { 41 ], "order_by": [ - 1988, + 1989, "[events_order_by!]" ], "where": [ - 1979 + 1980 ] } ], "events_by_pk": [ - 1975, + 1976, { "id": [ - 6341, + 6365, "uuid!" ] } ], "findUtilityLineupsBlocking": [ - 112, + 113, { "from_x": [ 32, @@ -170447,11 +170779,11 @@ export default { 41 ], "map_name": [ - 84, + 85, "String!" ], "side": [ - 84 + 85 ], "to_x": [ 32, @@ -170468,10 +170800,10 @@ export default { } ], "friends": [ - 2005, + 2006, { "distinct_on": [ - 2019, + 2020, "[friends_select_column!]" ], "limit": [ @@ -170481,19 +170813,19 @@ export default { 41 ], "order_by": [ - 2017, + 2018, "[friends_order_by!]" ], "where": [ - 2009 + 2010 ] } ], "friends_aggregate": [ - 2006, + 2007, { "distinct_on": [ - 2019, + 2020, "[friends_select_column!]" ], "limit": [ @@ -170503,32 +170835,32 @@ export default { 41 ], "order_by": [ - 2017, + 2018, "[friends_order_by!]" ], "where": [ - 2009 + 2010 ] } ], "friends_by_pk": [ - 2005, + 2006, { "other_player_steam_id": [ - 309, + 310, "bigint!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "game_mode_plugins": [ - 2032, + 2033, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -170538,19 +170870,19 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "game_mode_plugins_aggregate": [ - 2033, + 2034, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -170560,32 +170892,32 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "game_mode_plugins_by_pk": [ - 2032, + 2033, { "game_mode_id": [ - 6341, + 6365, "uuid!" ], "plugin_slug": [ - 84, + 85, "String!" ] } ], "game_modes": [ - 2082, + 2083, { "distinct_on": [ - 2095, + 2096, "[game_modes_select_column!]" ], "limit": [ @@ -170595,19 +170927,19 @@ export default { 41 ], "order_by": [ - 2093, + 2094, "[game_modes_order_by!]" ], "where": [ - 2085 + 2086 ] } ], "game_modes_aggregate": [ - 2083, + 2084, { "distinct_on": [ - 2095, + 2096, "[game_modes_select_column!]" ], "limit": [ @@ -170617,28 +170949,28 @@ export default { 41 ], "order_by": [ - 2093, + 2094, "[game_modes_order_by!]" ], "where": [ - 2085 + 2086 ] } ], "game_modes_by_pk": [ - 2082, + 2083, { "id": [ - 6341, + 6365, "uuid!" ] } ], "game_plugin_installs": [ - 2101, + 2102, { "distinct_on": [ - 2113, + 2114, "[game_plugin_installs_select_column!]" ], "limit": [ @@ -170648,19 +170980,19 @@ export default { 41 ], "order_by": [ - 2111, + 2112, "[game_plugin_installs_order_by!]" ], "where": [ - 2104 + 2105 ] } ], "game_plugin_installs_aggregate": [ - 2102, + 2103, { "distinct_on": [ - 2113, + 2114, "[game_plugin_installs_select_column!]" ], "limit": [ @@ -170670,28 +171002,28 @@ export default { 41 ], "order_by": [ - 2111, + 2112, "[game_plugin_installs_order_by!]" ], "where": [ - 2104 + 2105 ] } ], "game_plugin_installs_by_pk": [ - 2101, + 2102, { "plugin_slug": [ - 84, + 85, "String!" ] } ], "game_plugin_versions": [ - 2119, + 2120, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -170701,19 +171033,19 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "game_plugin_versions_aggregate": [ - 2120, + 2121, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -170723,36 +171055,36 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "game_plugin_versions_by_pk": [ - 2119, + 2120, { "plugin_slug": [ - 84, + 85, "String!" ], "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "game_plugins": [ - 2164, + 2165, { "distinct_on": [ - 2183, + 2184, "[game_plugins_select_column!]" ], "limit": [ @@ -170762,19 +171094,19 @@ export default { 41 ], "order_by": [ - 2180, + 2181, "[game_plugins_order_by!]" ], "where": [ - 2169 + 2170 ] } ], "game_plugins_aggregate": [ - 2165, + 2166, { "distinct_on": [ - 2183, + 2184, "[game_plugins_select_column!]" ], "limit": [ @@ -170784,28 +171116,28 @@ export default { 41 ], "order_by": [ - 2180, + 2181, "[game_plugins_order_by!]" ], "where": [ - 2169 + 2170 ] } ], "game_plugins_by_pk": [ - 2164, + 2165, { "slug": [ - 84, + 85, "String!" ] } ], "game_server_node_plugins": [ - 2196, + 2197, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -170815,19 +171147,19 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "game_server_node_plugins_aggregate": [ - 2197, + 2198, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -170837,28 +171169,28 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "game_server_node_plugins_by_pk": [ - 2196, + 2197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "game_server_nodes": [ - 2224, + 2225, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -170868,19 +171200,19 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], "game_server_nodes_aggregate": [ - 2225, + 2226, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -170890,28 +171222,28 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], "game_server_nodes_by_pk": [ - 2224, + 2225, { "id": [ - 84, + 85, "String!" ] } ], "game_versions": [ - 2275, + 2276, { "distinct_on": [ - 2295, + 2296, "[game_versions_select_column!]" ], "limit": [ @@ -170921,19 +171253,19 @@ export default { 41 ], "order_by": [ - 2292, + 2293, "[game_versions_order_by!]" ], "where": [ - 2280 + 2281 ] } ], "game_versions_aggregate": [ - 2276, + 2277, { "distinct_on": [ - 2295, + 2296, "[game_versions_select_column!]" ], "limit": [ @@ -170943,16 +171275,16 @@ export default { 41 ], "order_by": [ - 2292, + 2293, "[game_versions_order_by!]" ], "where": [ - 2280 + 2281 ] } ], "game_versions_by_pk": [ - 2275, + 2276, { "build_id": [ 41, @@ -170961,10 +171293,10 @@ export default { } ], "gamedata_signature_validations": [ - 2308, + 2309, { "distinct_on": [ - 2327, + 2328, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -170974,19 +171306,19 @@ export default { 41 ], "order_by": [ - 2324, + 2325, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2313 + 2314 ] } ], "gamedata_signature_validations_aggregate": [ - 2309, + 2310, { "distinct_on": [ - 2327, + 2328, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -170996,19 +171328,19 @@ export default { 41 ], "order_by": [ - 2324, + 2325, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2313 + 2314 ] } ], "gamedata_signature_validations_by_pk": [ - 2308, + 2309, { "id": [ - 6341, + 6365, "uuid!" ] } @@ -171032,10 +171364,10 @@ export default { 21 ], "getDedicatedServerPlayers": [ - 74, + 75, { "serverId": [ - 84, + 85, "String!" ] } @@ -171044,11 +171376,11 @@ export default { 37, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "target_steam_id": [ - 84, + 85, "String!" ] } @@ -171057,7 +171389,7 @@ export default { 39, { "schemas": [ - 84, + 85, "[String!]" ] } @@ -171066,77 +171398,77 @@ export default { 40, { "schemas": [ - 84, + 85, "[String!]" ] } ], "getNodeStats": [ - 53, + 54, { "node": [ - 84, + 85, "String!" ] } ], "getQueryDetail": [ - 61, + 62, { "queryid": [ - 84, + 85, "String!" ] } ], "getQueryStats": [ - 62 + 63 ], "getSchemas": [ - 84 + 85 ], "getServiceStats": [ - 58 + 59 ], "getStorageStats": [ - 82, + 83, { "schemas": [ - 84, + 85, "[String!]" ] } ], "getTableIOStats": [ - 89, + 90, { "schemas": [ - 84, + 85, "[String!]" ] } ], "getTableStats": [ - 91, + 92, { "schemas": [ - 84, + 85, "[String!]" ] } ], "getTimescaleStats": [ - 109 + 110 ], "get_event_leaderboard": [ - 2351, + 2352, { "args": [ - 2340, + 2341, "get_event_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171146,23 +171478,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_event_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2340, + 2341, "get_event_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171172,23 +171504,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_leaderboard": [ - 2351, + 2352, { "args": [ - 2341, + 2342, "get_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171198,23 +171530,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2341, + 2342, "get_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171224,23 +171556,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_league_season_leaderboard": [ - 2351, + 2352, { "args": [ - 2342, + 2343, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171250,23 +171582,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_league_season_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2342, + 2343, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171276,23 +171608,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_player_leaderboard_rank": [ - 3975, + 3999, { "args": [ - 2343, + 2344, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -171302,23 +171634,23 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3976, + 4000, { "args": [ - 2343, + 2344, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -171328,19 +171660,19 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "leaderboard_entries": [ - 2351, + 2352, { "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171350,19 +171682,19 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "leaderboard_entries_aggregate": [ - 2352, + 2353, { "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -171372,19 +171704,19 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "league_divisions": [ - 2375, + 2376, { "distinct_on": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "limit": [ @@ -171394,19 +171726,19 @@ export default { 41 ], "order_by": [ - 2388, + 2389, "[league_divisions_order_by!]" ], "where": [ - 2379 + 2380 ] } ], "league_divisions_aggregate": [ - 2376, + 2377, { "distinct_on": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "limit": [ @@ -171416,28 +171748,28 @@ export default { 41 ], "order_by": [ - 2388, + 2389, "[league_divisions_order_by!]" ], "where": [ - 2379 + 2380 ] } ], "league_divisions_by_pk": [ - 2375, + 2376, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_match_weeks": [ - 2403, + 2404, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -171447,19 +171779,19 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], "league_match_weeks_aggregate": [ - 2404, + 2405, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -171469,28 +171801,28 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], "league_match_weeks_by_pk": [ - 2403, + 2404, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_relegation_playoffs": [ - 2444, + 2445, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -171500,19 +171832,19 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], "league_relegation_playoffs_aggregate": [ - 2445, + 2446, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -171522,28 +171854,28 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], "league_relegation_playoffs_by_pk": [ - 2444, + 2445, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_scheduling_proposals": [ - 2485, + 2486, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -171553,19 +171885,19 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "league_scheduling_proposals_aggregate": [ - 2486, + 2487, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -171575,28 +171907,28 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "league_scheduling_proposals_by_pk": [ - 2485, + 2486, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_season_divisions": [ - 2526, + 2527, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -171606,19 +171938,19 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "league_season_divisions_aggregate": [ - 2527, + 2528, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -171628,28 +171960,28 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "league_season_divisions_by_pk": [ - 2526, + 2527, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_seasons": [ - 2551, + 2552, { "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -171659,19 +171991,19 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "league_seasons_aggregate": [ - 2552, + 2553, { "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -171681,28 +172013,28 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "league_seasons_by_pk": [ - 2551, + 2552, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_team_movements": [ - 2584, + 2585, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -171712,19 +172044,19 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "league_team_movements_aggregate": [ - 2585, + 2586, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -171734,28 +172066,28 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "league_team_movements_by_pk": [ - 2584, + 2585, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_team_rosters": [ - 2625, + 2626, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -171765,19 +172097,19 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "league_team_rosters_aggregate": [ - 2626, + 2627, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -171787,32 +172119,32 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "league_team_rosters_by_pk": [ - 2625, + 2626, { "league_team_season_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "league_team_seasons": [ - 2666, + 2667, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -171822,19 +172154,19 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "league_team_seasons_aggregate": [ - 2667, + 2668, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -171844,28 +172176,28 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "league_team_seasons_by_pk": [ - 2666, + 2667, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_teams": [ - 2708, + 2709, { "distinct_on": [ - 2721, + 2722, "[league_teams_select_column!]" ], "limit": [ @@ -171875,19 +172207,19 @@ export default { 41 ], "order_by": [ - 2719, + 2720, "[league_teams_order_by!]" ], "where": [ - 2711 + 2712 ] } ], "league_teams_aggregate": [ - 2709, + 2710, { "distinct_on": [ - 2721, + 2722, "[league_teams_select_column!]" ], "limit": [ @@ -171897,19 +172229,19 @@ export default { 41 ], "order_by": [ - 2719, + 2720, "[league_teams_order_by!]" ], "where": [ - 2711 + 2712 ] } ], "league_teams_by_pk": [ - 2708, + 2709, { "id": [ - 6341, + 6365, "uuid!" ] } @@ -171918,22 +172250,22 @@ export default { 31, { "node_id": [ - 84, + 85, "String!" ], "path": [ - 84 + 85 ], "server_id": [ - 84 + 85 ] } ], "lobbies": [ - 2727, + 2728, { "distinct_on": [ - 2740, + 2741, "[lobbies_select_column!]" ], "limit": [ @@ -171943,19 +172275,19 @@ export default { 41 ], "order_by": [ - 2738, + 2739, "[lobbies_order_by!]" ], "where": [ - 2730 + 2731 ] } ], "lobbies_aggregate": [ - 2728, + 2729, { "distinct_on": [ - 2740, + 2741, "[lobbies_select_column!]" ], "limit": [ @@ -171965,28 +172297,28 @@ export default { 41 ], "order_by": [ - 2738, + 2739, "[lobbies_order_by!]" ], "where": [ - 2730 + 2731 ] } ], "lobbies_by_pk": [ - 2727, + 2728, { "id": [ - 6341, + 6365, "uuid!" ] } ], "lobby_players": [ - 2746, + 2747, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -171996,19 +172328,19 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "lobby_players_aggregate": [ - 2747, + 2748, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -172018,32 +172350,89 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "lobby_players_by_pk": [ - 2746, + 2747, { "lobby_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], + "map_callouts": [ + 2792, + { + "distinct_on": [ + 2809, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2806, + "[map_callouts_order_by!]" + ], + "where": [ + 2796 + ] + } + ], + "map_callouts_aggregate": [ + 2793, + { + "distinct_on": [ + 2809, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2806, + "[map_callouts_order_by!]" + ], + "where": [ + 2796 + ] + } + ], + "map_callouts_by_pk": [ + 2792, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], "map_pools": [ - 2791, + 2815, { "distinct_on": [ - 2804, + 2828, "[map_pools_select_column!]" ], "limit": [ @@ -172053,19 +172442,19 @@ export default { 41 ], "order_by": [ - 2802, + 2826, "[map_pools_order_by!]" ], "where": [ - 2794 + 2818 ] } ], "map_pools_aggregate": [ - 2792, + 2816, { "distinct_on": [ - 2804, + 2828, "[map_pools_select_column!]" ], "limit": [ @@ -172075,28 +172464,28 @@ export default { 41 ], "order_by": [ - 2802, + 2826, "[map_pools_order_by!]" ], "where": [ - 2794 + 2818 ] } ], "map_pools_by_pk": [ - 2791, + 2815, { "id": [ - 6341, + 6365, "uuid!" ] } ], "maps": [ - 2810, + 2834, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -172106,19 +172495,19 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "maps_aggregate": [ - 2811, + 2835, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -172128,28 +172517,28 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "maps_by_pk": [ - 2810, + 2834, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_clips": [ - 2839, + 2863, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -172159,19 +172548,19 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_aggregate": [ - 2840, + 2864, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -172181,28 +172570,28 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_by_pk": [ - 2839, + 2863, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_demo_sessions": [ - 2881, + 2905, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -172212,19 +172601,19 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "match_demo_sessions_aggregate": [ - 2882, + 2906, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -172234,28 +172623,28 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "match_demo_sessions_by_pk": [ - 2881, + 2905, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_lineup_players": [ - 2927, + 2951, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -172265,19 +172654,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match_lineup_players_aggregate": [ - 2928, + 2952, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -172287,28 +172676,28 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match_lineup_players_by_pk": [ - 2927, + 2951, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_lineups": [ - 2972, + 2996, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -172318,19 +172707,19 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "match_lineups_aggregate": [ - 2973, + 2997, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -172340,28 +172729,28 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "match_lineups_by_pk": [ - 2972, + 2996, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_demos": [ - 3014, + 3038, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -172371,19 +172760,19 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "match_map_demos_aggregate": [ - 3015, + 3039, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -172393,28 +172782,28 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "match_map_demos_by_pk": [ - 3014, + 3038, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_rounds": [ - 3065, + 3089, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -172424,19 +172813,19 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "match_map_rounds_aggregate": [ - 3066, + 3090, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -172446,28 +172835,28 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "match_map_rounds_by_pk": [ - 3065, + 3089, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -172477,19 +172866,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_map_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -172499,28 +172888,28 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_map_veto_picks_by_pk": [ - 3106, + 3130, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_maps": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -172530,19 +172919,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -172552,28 +172941,28 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_by_pk": [ - 3134, + 3158, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_options": [ - 3176, + 3200, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -172583,19 +172972,19 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "match_options_aggregate": [ - 3177, + 3201, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -172605,28 +172994,28 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "match_options_by_pk": [ - 3176, + 3200, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_region_veto_picks": [ - 3222, + 3246, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -172636,19 +173025,19 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], "match_region_veto_picks_aggregate": [ - 3223, + 3247, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -172658,28 +173047,28 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], "match_region_veto_picks_by_pk": [ - 3222, + 3246, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_streams": [ - 3250, + 3274, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -172689,19 +173078,19 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "match_streams_aggregate": [ - 3251, + 3275, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -172711,28 +173100,28 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "match_streams_by_pk": [ - 3250, + 3274, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_type_cfgs": [ - 3300, + 3324, { "distinct_on": [ - 3312, + 3336, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -172742,19 +173131,19 @@ export default { 41 ], "order_by": [ - 3310, + 3334, "[match_type_cfgs_order_by!]" ], "where": [ - 3303 + 3327 ] } ], "match_type_cfgs_aggregate": [ - 3301, + 3325, { "distinct_on": [ - 3312, + 3336, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -172764,28 +173153,28 @@ export default { 41 ], "order_by": [ - 3310, + 3334, "[match_type_cfgs_order_by!]" ], "where": [ - 3303 + 3327 ] } ], "match_type_cfgs_by_pk": [ - 3300, + 3324, { "type": [ - 873, + 874, "e_game_cfg_types_enum!" ] } ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -172795,19 +173184,19 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_aggregate": [ - 3319, + 3343, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -172817,31 +173206,31 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_by_pk": [ - 3318, + 3342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "me": [ - 48 + 49 ], "migration_hashes_hashes": [ - 3364, + 3388, { "distinct_on": [ - 3376, + 3400, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -172851,19 +173240,19 @@ export default { 41 ], "order_by": [ - 3374, + 3398, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3367 + 3391 ] } ], "migration_hashes_hashes_aggregate": [ - 3365, + 3389, { "distinct_on": [ - 3376, + 3400, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -172873,28 +173262,28 @@ export default { 41 ], "order_by": [ - 3374, + 3398, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3367 + 3391 ] } ], "migration_hashes_hashes_by_pk": [ - 3364, + 3388, { "name": [ - 84, + 85, "String!" ] } ], "my_friends": [ - 3382, + 3406, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -172904,19 +173293,19 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], "my_friends_aggregate": [ - 3383, + 3407, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -172926,31 +173315,31 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], "newsPostAdmin": [ - 51, + 52, { "id": [ - 6341, + 6365, "uuid!" ] } ], "newsPostsAdmin": [ - 51 + 52 ], "news_articles": [ - 3428, + 3452, { "distinct_on": [ - 3442, + 3466, "[news_articles_select_column!]" ], "limit": [ @@ -172960,19 +173349,19 @@ export default { 41 ], "order_by": [ - 3440, + 3464, "[news_articles_order_by!]" ], "where": [ - 3432 + 3456 ] } ], "news_articles_aggregate": [ - 3429, + 3453, { "distinct_on": [ - 3442, + 3466, "[news_articles_select_column!]" ], "limit": [ @@ -172982,28 +173371,28 @@ export default { 41 ], "order_by": [ - 3440, + 3464, "[news_articles_order_by!]" ], "where": [ - 3432 + 3456 ] } ], "news_articles_by_pk": [ - 3428, + 3452, { "id": [ - 6341, + 6365, "uuid!" ] } ], "notification_preferences": [ - 3455, + 3479, { "distinct_on": [ - 3469, + 3493, "[notification_preferences_select_column!]" ], "limit": [ @@ -173013,19 +173402,19 @@ export default { 41 ], "order_by": [ - 3467, + 3491, "[notification_preferences_order_by!]" ], "where": [ - 3459 + 3483 ] } ], "notification_preferences_aggregate": [ - 3456, + 3480, { "distinct_on": [ - 3469, + 3493, "[notification_preferences_select_column!]" ], "limit": [ @@ -173035,36 +173424,36 @@ export default { 41 ], "order_by": [ - 3467, + 3491, "[notification_preferences_order_by!]" ], "where": [ - 3459 + 3483 ] } ], "notification_preferences_by_pk": [ - 3455, + 3479, { "channel": [ - 84, + 85, "String!" ], "key": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "notifications": [ - 3482, + 3506, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -173074,19 +173463,19 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "notifications_aggregate": [ - 3483, + 3507, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -173096,28 +173485,28 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "notifications_by_pk": [ - 3482, + 3506, { "id": [ - 6341, + 6365, "uuid!" ] } ], "pending_match_import_players": [ - 3535, + 3559, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -173127,19 +173516,19 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "pending_match_import_players_aggregate": [ - 3536, + 3560, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -173149,32 +173538,32 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "pending_match_import_players_by_pk": [ - 3535, + 3559, { "steam_id": [ - 309, + 310, "bigint!" ], "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "pending_match_imports": [ - 3576, + 3600, { "distinct_on": [ - 3591, + 3615, "[pending_match_imports_select_column!]" ], "limit": [ @@ -173184,19 +173573,19 @@ export default { 41 ], "order_by": [ - 3589, + 3613, "[pending_match_imports_order_by!]" ], "where": [ - 3580 + 3604 ] } ], "pending_match_imports_aggregate": [ - 3577, + 3601, { "distinct_on": [ - 3591, + 3615, "[pending_match_imports_select_column!]" ], "limit": [ @@ -173206,28 +173595,28 @@ export default { 41 ], "order_by": [ - 3589, + 3613, "[pending_match_imports_order_by!]" ], "where": [ - 3580 + 3604 ] } ], "pending_match_imports_by_pk": [ - 3576, + 3600, { "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "player_aim_stats_demo": [ - 3604, + 3628, { "distinct_on": [ - 3618, + 3642, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -173237,19 +173626,19 @@ export default { 41 ], "order_by": [ - 3616, + 3640, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3608 + 3632 ] } ], "player_aim_stats_demo_aggregate": [ - 3605, + 3629, { "distinct_on": [ - 3618, + 3642, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -173259,32 +173648,32 @@ export default { 41 ], "order_by": [ - 3616, + 3640, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3608 + 3632 ] } ], "player_aim_stats_demo_by_pk": [ - 3604, + 3628, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "player_aim_weapon_stats": [ - 3631, + 3655, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -173294,19 +173683,19 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "player_aim_weapon_stats_aggregate": [ - 3632, + 3656, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -173316,36 +173705,36 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "player_aim_weapon_stats_by_pk": [ - 3631, + 3655, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "weapon_class": [ - 84, + 85, "String!" ] } ], "player_assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -173355,19 +173744,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -173377,40 +173766,40 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_by_pk": [ - 3672, + 3696, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_career_stats_v": [ - 3717, + 3741, { "distinct_on": [ - 3725, + 3749, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -173420,19 +173809,19 @@ export default { 41 ], "order_by": [ - 3724, + 3748, "[player_career_stats_v_order_by!]" ], "where": [ - 3721 + 3745 ] } ], "player_career_stats_v_aggregate": [ - 3718, + 3742, { "distinct_on": [ - 3725, + 3749, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -173442,19 +173831,19 @@ export default { 41 ], "order_by": [ - 3724, + 3748, "[player_career_stats_v_order_by!]" ], "where": [ - 3721 + 3745 ] } ], "player_damages": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -173464,19 +173853,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -173486,36 +173875,36 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_by_pk": [ - 3735, + 3759, { "id": [ - 6341, + 6365, "uuid!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_elo": [ - 3776, + 3800, { "distinct_on": [ - 3790, + 3814, "[player_elo_select_column!]" ], "limit": [ @@ -173525,19 +173914,19 @@ export default { 41 ], "order_by": [ - 3788, + 3812, "[player_elo_order_by!]" ], "where": [ - 3780 + 3804 ] } ], "player_elo_aggregate": [ - 3777, + 3801, { "distinct_on": [ - 3790, + 3814, "[player_elo_select_column!]" ], "limit": [ @@ -173547,36 +173936,36 @@ export default { 41 ], "order_by": [ - 3788, + 3812, "[player_elo_order_by!]" ], "where": [ - 3780 + 3804 ] } ], "player_elo_by_pk": [ - 3776, + 3800, { "match_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "type": [ - 1222, + 1223, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 3803, + 3827, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -173586,19 +173975,19 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], "player_faceit_rank_history_aggregate": [ - 3804, + 3828, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -173608,28 +173997,28 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], "player_faceit_rank_history_by_pk": [ - 3803, + 3827, { "id": [ - 6341, + 6365, "uuid!" ] } ], "player_flashes": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -173639,19 +174028,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_flashes_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -173661,40 +174050,40 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_flashes_by_pk": [ - 3844, + 3868, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -173704,19 +174093,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -173726,40 +174115,40 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_by_pk": [ - 3889, + 3913, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3901, + 3925, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -173769,19 +174158,19 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "player_kills_by_weapon_aggregate": [ - 3902, + 3926, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -173791,32 +174180,32 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "player_kills_by_weapon_by_pk": [ - 3901, + 3925, { "player_steam_id": [ - 309, + 310, "bigint!" ], "with": [ - 84, + 85, "String!" ] } ], "player_leaderboard_rank": [ - 3975, + 3999, { "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -173826,19 +174215,19 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "player_leaderboard_rank_aggregate": [ - 3976, + 4000, { "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -173848,19 +174237,19 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "player_match_map_stats": [ - 3998, + 4022, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -173870,19 +174259,19 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "player_match_map_stats_aggregate": [ - 3999, + 4023, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -173892,32 +174281,32 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "player_match_map_stats_by_pk": [ - 3998, + 4022, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_match_performance_v": [ - 4039, + 4063, { "distinct_on": [ - 4047, + 4071, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -173927,19 +174316,19 @@ export default { 41 ], "order_by": [ - 4046, + 4070, "[player_match_performance_v_order_by!]" ], "where": [ - 4043 + 4067 ] } ], "player_match_performance_v_aggregate": [ - 4040, + 4064, { "distinct_on": [ - 4047, + 4071, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -173949,19 +174338,19 @@ export default { 41 ], "order_by": [ - 4046, + 4070, "[player_match_performance_v_order_by!]" ], "where": [ - 4043 + 4067 ] } ], "player_match_stats_v": [ - 4057, + 4081, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -173971,19 +174360,19 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "player_match_stats_v_aggregate": [ - 4058, + 4082, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -173993,19 +174382,19 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "player_objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -174015,19 +174404,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -174037,36 +174426,36 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_by_pk": [ - 4090, + 4114, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_performance_v": [ - 4131, + 4155, { "distinct_on": [ - 4139, + 4163, "[player_performance_v_select_column!]" ], "limit": [ @@ -174076,19 +174465,19 @@ export default { 41 ], "order_by": [ - 4138, + 4162, "[player_performance_v_order_by!]" ], "where": [ - 4135 + 4159 ] } ], "player_performance_v_aggregate": [ - 4132, + 4156, { "distinct_on": [ - 4139, + 4163, "[player_performance_v_select_column!]" ], "limit": [ @@ -174098,19 +174487,19 @@ export default { 41 ], "order_by": [ - 4138, + 4162, "[player_performance_v_order_by!]" ], "where": [ - 4135 + 4159 ] } ], "player_premier_rank_history": [ - 4149, + 4173, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -174120,19 +174509,19 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "player_premier_rank_history_aggregate": [ - 4150, + 4174, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -174142,28 +174531,28 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "player_premier_rank_history_by_pk": [ - 4149, + 4173, { "id": [ - 6341, + 6365, "uuid!" ] } ], "player_sanctions": [ - 4190, + 4214, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -174173,19 +174562,19 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "player_sanctions_aggregate": [ - 4191, + 4215, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -174195,32 +174584,32 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "player_sanctions_by_pk": [ - 4190, + 4214, { "created_at": [ - 5129, + 5153, "timestamptz!" ], "id": [ - 6341, + 6365, "uuid!" ] } ], "player_season_stats": [ - 4231, + 4255, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -174230,19 +174619,19 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "player_season_stats_aggregate": [ - 4232, + 4256, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -174252,32 +174641,32 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "player_season_stats_by_pk": [ - 4231, + 4255, { "player_steam_id": [ - 309, + 310, "bigint!" ], "season_id": [ - 6341, + 6365, "uuid!" ] } ], "player_stats": [ - 4290, + 4314, { "distinct_on": [ - 4305, + 4329, "[player_stats_select_column!]" ], "limit": [ @@ -174287,19 +174676,19 @@ export default { 41 ], "order_by": [ - 4303, + 4327, "[player_stats_order_by!]" ], "where": [ - 4294 + 4318 ] } ], "player_stats_aggregate": [ - 4291, + 4315, { "distinct_on": [ - 4305, + 4329, "[player_stats_select_column!]" ], "limit": [ @@ -174309,28 +174698,28 @@ export default { 41 ], "order_by": [ - 4303, + 4327, "[player_stats_order_by!]" ], "where": [ - 4294 + 4318 ] } ], "player_stats_by_pk": [ - 4290, + 4314, { "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "player_steam_bot_friend": [ - 4318, + 4342, { "distinct_on": [ - 4337, + 4361, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -174340,19 +174729,19 @@ export default { 41 ], "order_by": [ - 4334, + 4358, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4323 + 4347 ] } ], "player_steam_bot_friend_aggregate": [ - 4319, + 4343, { "distinct_on": [ - 4337, + 4361, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -174362,28 +174751,28 @@ export default { 41 ], "order_by": [ - 4334, + 4358, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4323 + 4347 ] } ], "player_steam_bot_friend_by_pk": [ - 4318, + 4342, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_steam_match_auth": [ - 4350, + 4374, { "distinct_on": [ - 4364, + 4388, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -174393,19 +174782,19 @@ export default { 41 ], "order_by": [ - 4362, + 4386, "[player_steam_match_auth_order_by!]" ], "where": [ - 4354 + 4378 ] } ], "player_steam_match_auth_aggregate": [ - 4351, + 4375, { "distinct_on": [ - 4364, + 4388, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -174415,28 +174804,28 @@ export default { 41 ], "order_by": [ - 4362, + 4386, "[player_steam_match_auth_order_by!]" ], "where": [ - 4354 + 4378 ] } ], "player_steam_match_auth_by_pk": [ - 4350, + 4374, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_unused_utility": [ - 4377, + 4401, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -174446,19 +174835,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utility_aggregate": [ - 4378, + 4402, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -174468,32 +174857,32 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utility_by_pk": [ - 4377, + 4401, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "player_utility": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -174503,19 +174892,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utility_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -174525,36 +174914,36 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utility_by_pk": [ - 4418, + 4442, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 4459, + 4483, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -174564,19 +174953,19 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], "player_weapon_stats_v_aggregate": [ - 4460, + 4484, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -174586,19 +174975,19 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], "players": [ - 4492, + 4516, { "distinct_on": [ - 4507, + 4531, "[players_select_column!]" ], "limit": [ @@ -174608,19 +174997,19 @@ export default { 41 ], "order_by": [ - 4505, + 4529, "[players_order_by!]" ], "where": [ - 4496 + 4520 ] } ], "players_aggregate": [ - 4493, + 4517, { "distinct_on": [ - 4507, + 4531, "[players_select_column!]" ], "limit": [ @@ -174630,28 +175019,28 @@ export default { 41 ], "order_by": [ - 4505, + 4529, "[players_order_by!]" ], "where": [ - 4496 + 4520 ] } ], "players_by_pk": [ - 4492, + 4516, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "plugin_versions": [ - 4520, + 4544, { "distinct_on": [ - 4534, + 4558, "[plugin_versions_select_column!]" ], "limit": [ @@ -174661,19 +175050,19 @@ export default { 41 ], "order_by": [ - 4532, + 4556, "[plugin_versions_order_by!]" ], "where": [ - 4524 + 4548 ] } ], "plugin_versions_aggregate": [ - 4521, + 4545, { "distinct_on": [ - 4534, + 4558, "[plugin_versions_select_column!]" ], "limit": [ @@ -174683,32 +175072,32 @@ export default { 41 ], "order_by": [ - 4532, + 4556, "[plugin_versions_order_by!]" ], "where": [ - 4524 + 4548 ] } ], "plugin_versions_by_pk": [ - 4520, + 4544, { "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "push_subscriptions": [ - 4547, + 4571, { "distinct_on": [ - 4561, + 4585, "[push_subscriptions_select_column!]" ], "limit": [ @@ -174718,19 +175107,19 @@ export default { 41 ], "order_by": [ - 4559, + 4583, "[push_subscriptions_order_by!]" ], "where": [ - 4551 + 4575 ] } ], "push_subscriptions_aggregate": [ - 4548, + 4572, { "distinct_on": [ - 4561, + 4585, "[push_subscriptions_select_column!]" ], "limit": [ @@ -174740,19 +175129,19 @@ export default { 41 ], "order_by": [ - 4559, + 4583, "[push_subscriptions_order_by!]" ], "where": [ - 4551 + 4575 ] } ], "push_subscriptions_by_pk": [ - 4547, + 4571, { "id": [ - 6341, + 6365, "uuid!" ] } @@ -174761,23 +175150,23 @@ export default { 29, { "file_path": [ - 84, + 85, "String!" ], "node_id": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ] } ], "role_permissions": [ - 4578, + 4602, { "distinct_on": [ - 4587, + 4611, "[role_permissions_select_column!]" ], "limit": [ @@ -174787,19 +175176,19 @@ export default { 41 ], "order_by": [ - 4586, + 4610, "[role_permissions_order_by!]" ], "where": [ - 4581 + 4605 ] } ], "role_permissions_aggregate": [ - 4579, + 4603, { "distinct_on": [ - 4587, + 4611, "[role_permissions_select_column!]" ], "limit": [ @@ -174809,19 +175198,19 @@ export default { 41 ], "order_by": [ - 4586, + 4610, "[role_permissions_order_by!]" ], "where": [ - 4581 + 4605 ] } ], "seasons": [ - 4592, + 4616, { "distinct_on": [ - 4607, + 4631, "[seasons_select_column!]" ], "limit": [ @@ -174831,19 +175220,19 @@ export default { 41 ], "order_by": [ - 4605, + 4629, "[seasons_order_by!]" ], "where": [ - 4596 + 4620 ] } ], "seasons_aggregate": [ - 4593, + 4617, { "distinct_on": [ - 4607, + 4631, "[seasons_select_column!]" ], "limit": [ @@ -174853,28 +175242,28 @@ export default { 41 ], "order_by": [ - 4605, + 4629, "[seasons_order_by!]" ], "where": [ - 4596 + 4620 ] } ], "seasons_by_pk": [ - 4592, + 4616, { "id": [ - 6341, + 6365, "uuid!" ] } ], "server_regions": [ - 4620, + 4644, { "distinct_on": [ - 4634, + 4658, "[server_regions_select_column!]" ], "limit": [ @@ -174884,19 +175273,19 @@ export default { 41 ], "order_by": [ - 4632, + 4656, "[server_regions_order_by!]" ], "where": [ - 4624 + 4648 ] } ], "server_regions_aggregate": [ - 4621, + 4645, { "distinct_on": [ - 4634, + 4658, "[server_regions_select_column!]" ], "limit": [ @@ -174906,28 +175295,28 @@ export default { 41 ], "order_by": [ - 4632, + 4656, "[server_regions_order_by!]" ], "where": [ - 4624 + 4648 ] } ], "server_regions_by_pk": [ - 4620, + 4644, { "value": [ - 84, + 85, "String!" ] } ], "servers": [ - 4647, + 4671, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -174937,19 +175326,19 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_aggregate": [ - 4648, + 4672, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -174959,28 +175348,28 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_by_pk": [ - 4647, + 4671, { "id": [ - 6341, + 6365, "uuid!" ] } ], "settings": [ - 4698, + 4722, { "distinct_on": [ - 4710, + 4734, "[settings_select_column!]" ], "limit": [ @@ -174990,19 +175379,19 @@ export default { 41 ], "order_by": [ - 4708, + 4732, "[settings_order_by!]" ], "where": [ - 4701 + 4725 ] } ], "settings_aggregate": [ - 4699, + 4723, { "distinct_on": [ - 4710, + 4734, "[settings_select_column!]" ], "limit": [ @@ -175012,31 +175401,31 @@ export default { 41 ], "order_by": [ - 4708, + 4732, "[settings_order_by!]" ], "where": [ - 4701 + 4725 ] } ], "settings_by_pk": [ - 4698, + 4722, { "name": [ - 84, + 85, "String!" ] } ], "steamPresenceAdminStatus": [ - 78 + 79 ], "steam_account_claims": [ - 4718, + 4742, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -175046,19 +175435,19 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "steam_account_claims_aggregate": [ - 4719, + 4743, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -175068,28 +175457,28 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "steam_account_claims_by_pk": [ - 4718, + 4742, { "id": [ - 6341, + 6365, "uuid!" ] } ], "steam_accounts": [ - 4742, + 4766, { "distinct_on": [ - 4757, + 4781, "[steam_accounts_select_column!]" ], "limit": [ @@ -175099,19 +175488,19 @@ export default { 41 ], "order_by": [ - 4755, + 4779, "[steam_accounts_order_by!]" ], "where": [ - 4746 + 4770 ] } ], "steam_accounts_aggregate": [ - 4743, + 4767, { "distinct_on": [ - 4757, + 4781, "[steam_accounts_select_column!]" ], "limit": [ @@ -175121,28 +175510,28 @@ export default { 41 ], "order_by": [ - 4755, + 4779, "[steam_accounts_order_by!]" ], "where": [ - 4746 + 4770 ] } ], "steam_accounts_by_pk": [ - 4742, + 4766, { "id": [ - 6341, + 6365, "uuid!" ] } ], "system_alerts": [ - 4770, + 4794, { "distinct_on": [ - 4784, + 4808, "[system_alerts_select_column!]" ], "limit": [ @@ -175152,19 +175541,19 @@ export default { 41 ], "order_by": [ - 4782, + 4806, "[system_alerts_order_by!]" ], "where": [ - 4774 + 4798 ] } ], "system_alerts_aggregate": [ - 4771, + 4795, { "distinct_on": [ - 4784, + 4808, "[system_alerts_select_column!]" ], "limit": [ @@ -175174,37 +175563,37 @@ export default { 41 ], "order_by": [ - 4782, + 4806, "[system_alerts_order_by!]" ], "where": [ - 4774 + 4798 ] } ], "system_alerts_by_pk": [ - 4770, + 4794, { "id": [ - 6341, + 6365, "uuid!" ] } ], "teamCalendarUrl": [ - 92, + 93, { "team_id": [ - 6341, + 6365, "uuid!" ] } ], "team_invites": [ - 4797, + 4821, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -175214,19 +175603,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_invites_aggregate": [ - 4798, + 4822, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -175236,28 +175625,28 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_invites_by_pk": [ - 4797, + 4821, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_roster": [ - 4838, + 4862, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -175267,19 +175656,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_roster_aggregate": [ - 4839, + 4863, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -175289,32 +175678,32 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_roster_by_pk": [ - 4838, + 4862, { "player_steam_id": [ - 309, + 310, "bigint!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_alerts": [ - 4883, + 4907, { "distinct_on": [ - 4897, + 4921, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -175324,19 +175713,19 @@ export default { 41 ], "order_by": [ - 4895, + 4919, "[team_scrim_alerts_order_by!]" ], "where": [ - 4887 + 4911 ] } ], "team_scrim_alerts_aggregate": [ - 4884, + 4908, { "distinct_on": [ - 4897, + 4921, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -175346,28 +175735,28 @@ export default { 41 ], "order_by": [ - 4895, + 4919, "[team_scrim_alerts_order_by!]" ], "where": [ - 4887 + 4911 ] } ], "team_scrim_alerts_by_pk": [ - 4883, + 4907, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_availability": [ - 4910, + 4934, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -175377,19 +175766,19 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "team_scrim_availability_aggregate": [ - 4911, + 4935, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -175399,28 +175788,28 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "team_scrim_availability_by_pk": [ - 4910, + 4934, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4938, + 4962, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -175430,19 +175819,19 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "team_scrim_request_proposals_aggregate": [ - 4939, + 4963, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -175452,28 +175841,28 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "team_scrim_request_proposals_by_pk": [ - 4938, + 4962, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_requests": [ - 4979, + 5003, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -175483,19 +175872,19 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "team_scrim_requests_aggregate": [ - 4980, + 5004, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -175505,28 +175894,28 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "team_scrim_requests_by_pk": [ - 4979, + 5003, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_settings": [ - 5025, + 5049, { "distinct_on": [ - 5040, + 5064, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -175536,19 +175925,19 @@ export default { 41 ], "order_by": [ - 5038, + 5062, "[team_scrim_settings_order_by!]" ], "where": [ - 5029 + 5053 ] } ], "team_scrim_settings_aggregate": [ - 5026, + 5050, { "distinct_on": [ - 5040, + 5064, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -175558,28 +175947,28 @@ export default { 41 ], "order_by": [ - 5038, + 5062, "[team_scrim_settings_order_by!]" ], "where": [ - 5029 + 5053 ] } ], "team_scrim_settings_by_pk": [ - 5025, + 5049, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_suggestions": [ - 5053, + 5077, { "distinct_on": [ - 5067, + 5091, "[team_suggestions_select_column!]" ], "limit": [ @@ -175589,19 +175978,19 @@ export default { 41 ], "order_by": [ - 5065, + 5089, "[team_suggestions_order_by!]" ], "where": [ - 5057 + 5081 ] } ], "team_suggestions_aggregate": [ - 5054, + 5078, { "distinct_on": [ - 5067, + 5091, "[team_suggestions_select_column!]" ], "limit": [ @@ -175611,28 +176000,28 @@ export default { 41 ], "order_by": [ - 5065, + 5089, "[team_suggestions_order_by!]" ], "where": [ - 5057 + 5081 ] } ], "team_suggestions_by_pk": [ - 5053, + 5077, { "id": [ - 6341, + 6365, "uuid!" ] } ], "teams": [ - 5080, + 5104, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -175642,19 +176031,19 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "teams_aggregate": [ - 5081, + 5105, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -175664,31 +176053,31 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "teams_by_pk": [ - 5080, + 5104, { "id": [ - 6341, + 6365, "uuid!" ] } ], "telemetryStats": [ - 102 + 103 ], "tournament_awards": [ - 5131, + 5155, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -175698,19 +176087,19 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_awards_aggregate": [ - 5132, + 5156, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -175720,28 +176109,28 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_awards_by_pk": [ - 5131, + 5155, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_brackets": [ - 5173, + 5197, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -175751,19 +176140,19 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tournament_brackets_aggregate": [ - 5174, + 5198, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -175773,28 +176162,28 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tournament_brackets_by_pk": [ - 5173, + 5197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_categories": [ - 5219, + 5243, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -175804,19 +176193,19 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "tournament_categories_aggregate": [ - 5220, + 5244, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -175826,32 +176215,32 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "tournament_categories_by_pk": [ - 5219, + 5243, { "category": [ - 1505, + 1506, "e_tournament_categories_enum!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_organizer_teams": [ - 5243, + 5267, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -175861,19 +176250,19 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "tournament_organizer_teams_aggregate": [ - 5244, + 5268, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -175883,32 +176272,32 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "tournament_organizer_teams_by_pk": [ - 5243, + 5267, { "team_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_organizers": [ - 5267, + 5291, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -175918,19 +176307,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_organizers_aggregate": [ - 5268, + 5292, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -175940,32 +176329,32 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_organizers_by_pk": [ - 5267, + 5291, { "steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_prizes": [ - 5308, + 5332, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -175975,19 +176364,19 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "tournament_prizes_aggregate": [ - 5309, + 5333, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -175997,28 +176386,28 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "tournament_prizes_by_pk": [ - 5308, + 5332, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_stage_windows": [ - 5349, + 5373, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -176028,19 +176417,19 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "tournament_stage_windows_aggregate": [ - 5350, + 5374, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -176050,28 +176439,28 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "tournament_stage_windows_by_pk": [ - 5349, + 5373, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_stages": [ - 5390, + 5414, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -176081,19 +176470,19 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "tournament_stages_aggregate": [ - 5391, + 5415, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -176103,28 +176492,28 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "tournament_stages_by_pk": [ - 5390, + 5414, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_team_invites": [ - 5441, + 5465, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -176134,19 +176523,19 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "tournament_team_invites_aggregate": [ - 5442, + 5466, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -176156,28 +176545,28 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "tournament_team_invites_by_pk": [ - 5441, + 5465, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_team_roster": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -176187,19 +176576,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_team_roster_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -176209,32 +176598,32 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_team_roster_by_pk": [ - 5482, + 5506, { "player_steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_teams": [ - 5523, + 5547, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -176244,19 +176633,19 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "tournament_teams_aggregate": [ - 5524, + 5548, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -176266,28 +176655,28 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "tournament_teams_by_pk": [ - 5523, + 5547, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournaments": [ - 5565, + 5589, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -176297,19 +176686,19 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_aggregate": [ - 5566, + 5590, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -176319,97 +176708,97 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_by_pk": [ - 5565, + 5589, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utilityLineupMissPattern": [ - 122, + 123, { "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utilityMatchUtilityReport": [ - 147, + 148, { "match_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 84 + 85 ] } ], "utilityPracticePlan": [ - 131, + 132, { "limit": [ 41 ], "map_name": [ - 84, + 85, "String!" ], "order": [ - 84 + 85 ], "side": [ - 84 + 85 ] } ], "utilityPracticeServers": [ - 133 + 134 ], "utilityPracticeWhereAmI": [ - 135 + 136 ], "utilitySolverCalibration": [ - 114, + 115, { "session_id": [ - 6341, + 6365, "uuid!" ] } ], "utilityTeamUtilityReport": [ - 146, + 147, { "limit": [ 41 ], "map_name": [ - 84 + 85 ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_collection_items": [ - 5629, + 5653, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -176419,19 +176808,19 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "utility_collection_items_aggregate": [ - 5630, + 5654, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -176441,32 +176830,32 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "utility_collection_items_by_pk": [ - 5629, + 5653, { "collection_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_collections": [ - 5670, + 5694, { "distinct_on": [ - 5685, + 5709, "[utility_collections_select_column!]" ], "limit": [ @@ -176476,19 +176865,19 @@ export default { 41 ], "order_by": [ - 5683, + 5707, "[utility_collections_order_by!]" ], "where": [ - 5674 + 5698 ] } ], "utility_collections_aggregate": [ - 5671, + 5695, { "distinct_on": [ - 5685, + 5709, "[utility_collections_select_column!]" ], "limit": [ @@ -176498,28 +176887,28 @@ export default { 41 ], "order_by": [ - 5683, + 5707, "[utility_collections_order_by!]" ], "where": [ - 5674 + 5698 ] } ], "utility_collections_by_pk": [ - 5670, + 5694, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_demo_mines": [ - 5698, + 5722, { "distinct_on": [ - 5712, + 5736, "[utility_demo_mines_select_column!]" ], "limit": [ @@ -176529,19 +176918,19 @@ export default { 41 ], "order_by": [ - 5710, + 5734, "[utility_demo_mines_order_by!]" ], "where": [ - 5702 + 5726 ] } ], "utility_demo_mines_aggregate": [ - 5699, + 5723, { "distinct_on": [ - 5712, + 5736, "[utility_demo_mines_select_column!]" ], "limit": [ @@ -176551,28 +176940,28 @@ export default { 41 ], "order_by": [ - 5710, + 5734, "[utility_demo_mines_order_by!]" ], "where": [ - 5702 + 5726 ] } ], "utility_demo_mines_by_pk": [ - 5698, + 5722, { "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_demo_throws": [ - 5725, + 5749, { "distinct_on": [ - 5739, + 5763, "[utility_demo_throws_select_column!]" ], "limit": [ @@ -176582,19 +176971,19 @@ export default { 41 ], "order_by": [ - 5737, + 5761, "[utility_demo_throws_order_by!]" ], "where": [ - 5729 + 5753 ] } ], "utility_demo_throws_aggregate": [ - 5726, + 5750, { "distinct_on": [ - 5739, + 5763, "[utility_demo_throws_select_column!]" ], "limit": [ @@ -176604,32 +176993,32 @@ export default { 41 ], "order_by": [ - 5737, + 5761, "[utility_demo_throws_order_by!]" ], "where": [ - 5729 + 5753 ] } ], "utility_demo_throws_by_pk": [ - 5725, + 5749, { "grenade_id": [ 41, "Int!" ], "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_drift_results": [ - 5752, + 5776, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -176639,19 +177028,19 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], "utility_drift_results_aggregate": [ - 5753, + 5777, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -176661,32 +177050,32 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], "utility_drift_results_by_pk": [ - 5752, + 5776, { "utility_drift_scan_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_drift_scans": [ - 5811, + 5835, { "distinct_on": [ - 5826, + 5850, "[utility_drift_scans_select_column!]" ], "limit": [ @@ -176696,19 +177085,19 @@ export default { 41 ], "order_by": [ - 5824, + 5848, "[utility_drift_scans_order_by!]" ], "where": [ - 5815 + 5839 ] } ], "utility_drift_scans_aggregate": [ - 5812, + 5836, { "distinct_on": [ - 5826, + 5850, "[utility_drift_scans_select_column!]" ], "limit": [ @@ -176718,28 +177107,28 @@ export default { 41 ], "order_by": [ - 5824, + 5848, "[utility_drift_scans_order_by!]" ], "where": [ - 5815 + 5839 ] } ], "utility_drift_scans_by_pk": [ - 5811, + 5835, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_favorites": [ - 5839, + 5863, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -176749,19 +177138,19 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], "utility_lineup_favorites_aggregate": [ - 5840, + 5864, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -176771,32 +177160,32 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], "utility_lineup_favorites_by_pk": [ - 5839, + 5863, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_progress": [ - 5880, + 5904, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -176806,19 +177195,19 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "utility_lineup_progress_aggregate": [ - 5881, + 5905, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -176828,32 +177217,32 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "utility_lineup_progress_by_pk": [ - 5880, + 5904, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_renders": [ - 5939, + 5963, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -176863,19 +177252,19 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "utility_lineup_renders_aggregate": [ - 5940, + 5964, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -176885,28 +177274,28 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "utility_lineup_renders_by_pk": [ - 5939, + 5963, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_repairs": [ - 5989, + 6013, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -176916,19 +177305,19 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "utility_lineup_repairs_aggregate": [ - 5990, + 6014, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -176938,28 +177327,28 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "utility_lineup_repairs_by_pk": [ - 5989, + 6013, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_votes": [ - 6048, + 6072, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -176969,19 +177358,19 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "utility_lineup_votes_aggregate": [ - 6049, + 6073, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -176991,32 +177380,32 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "utility_lineup_votes_by_pk": [ - 6048, + 6072, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -177026,19 +177415,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -177048,28 +177437,28 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_by_pk": [ - 6089, + 6113, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_meta_lineups": [ - 6158, + 6182, { "distinct_on": [ - 6172, + 6196, "[utility_meta_lineups_select_column!]" ], "limit": [ @@ -177079,19 +177468,19 @@ export default { 41 ], "order_by": [ - 6170, + 6194, "[utility_meta_lineups_order_by!]" ], "where": [ - 6162 + 6186 ] } ], "utility_meta_lineups_aggregate": [ - 6159, + 6183, { "distinct_on": [ - 6172, + 6196, "[utility_meta_lineups_select_column!]" ], "limit": [ @@ -177101,28 +177490,28 @@ export default { 41 ], "order_by": [ - 6170, + 6194, "[utility_meta_lineups_order_by!]" ], "where": [ - 6162 + 6186 ] } ], "utility_meta_lineups_by_pk": [ - 6158, + 6182, { "lineup_bucket": [ - 84, + 85, "String!" ] } ], "utility_playbook_steps": [ - 6185, + 6209, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -177132,19 +177521,19 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "utility_playbook_steps_aggregate": [ - 6186, + 6210, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -177154,28 +177543,28 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "utility_playbook_steps_by_pk": [ - 6185, + 6209, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_playbooks": [ - 6226, + 6250, { "distinct_on": [ - 6241, + 6265, "[utility_playbooks_select_column!]" ], "limit": [ @@ -177185,19 +177574,19 @@ export default { 41 ], "order_by": [ - 6239, + 6263, "[utility_playbooks_order_by!]" ], "where": [ - 6230 + 6254 ] } ], "utility_playbooks_aggregate": [ - 6227, + 6251, { "distinct_on": [ - 6241, + 6265, "[utility_playbooks_select_column!]" ], "limit": [ @@ -177207,28 +177596,28 @@ export default { 41 ], "order_by": [ - 6239, + 6263, "[utility_playbooks_order_by!]" ], "where": [ - 6230 + 6254 ] } ], "utility_playbooks_by_pk": [ - 6226, + 6250, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_practice_invites": [ - 6254, + 6278, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -177238,19 +177627,19 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], "utility_practice_invites_aggregate": [ - 6255, + 6279, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -177260,32 +177649,32 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], "utility_practice_invites_by_pk": [ - 6254, + 6278, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_practice_session_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_practice_sessions": [ - 6295, + 6319, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -177295,19 +177684,19 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_aggregate": [ - 6296, + 6320, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -177317,28 +177706,28 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_by_pk": [ - 6295, + 6319, { "id": [ - 6341, + 6365, "uuid!" ] } ], "v_event_player_stats": [ - 6344, + 6368, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -177348,19 +177737,19 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "v_event_player_stats_aggregate": [ - 6345, + 6369, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -177370,19 +177759,19 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "v_gpu_pool_status": [ - 6395, + 6419, { "distinct_on": [ - 6403, + 6427, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -177392,19 +177781,19 @@ export default { 41 ], "order_by": [ - 6402, + 6426, "[v_gpu_pool_status_order_by!]" ], "where": [ - 6399 + 6423 ] } ], "v_gpu_pool_status_aggregate": [ - 6396, + 6420, { "distinct_on": [ - 6403, + 6427, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -177414,19 +177803,19 @@ export default { 41 ], "order_by": [ - 6402, + 6426, "[v_gpu_pool_status_order_by!]" ], "where": [ - 6399 + 6423 ] } ], "v_league_division_standings": [ - 6413, + 6437, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -177436,19 +177825,19 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "v_league_division_standings_aggregate": [ - 6414, + 6438, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -177458,19 +177847,19 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "v_league_season_player_stats": [ - 6446, + 6470, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -177480,19 +177869,19 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], "v_league_season_player_stats_aggregate": [ - 6447, + 6471, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -177502,19 +177891,19 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], "v_match_captains": [ - 6497, + 6521, { "distinct_on": [ - 6509, + 6533, "[v_match_captains_select_column!]" ], "limit": [ @@ -177524,19 +177913,19 @@ export default { 41 ], "order_by": [ - 6508, + 6532, "[v_match_captains_order_by!]" ], "where": [ - 6501 + 6525 ] } ], "v_match_captains_aggregate": [ - 6498, + 6522, { "distinct_on": [ - 6509, + 6533, "[v_match_captains_select_column!]" ], "limit": [ @@ -177546,19 +177935,19 @@ export default { 41 ], "order_by": [ - 6508, + 6532, "[v_match_captains_order_by!]" ], "where": [ - 6501 + 6525 ] } ], "v_match_clutches": [ - 6521, + 6545, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -177568,19 +177957,19 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "v_match_clutches_aggregate": [ - 6522, + 6546, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -177590,19 +177979,19 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "v_match_kill_pairs": [ - 6554, + 6578, { "distinct_on": [ - 6562, + 6586, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -177612,19 +178001,19 @@ export default { 41 ], "order_by": [ - 6561, + 6585, "[v_match_kill_pairs_order_by!]" ], "where": [ - 6558 + 6582 ] } ], "v_match_kill_pairs_aggregate": [ - 6555, + 6579, { "distinct_on": [ - 6562, + 6586, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -177634,19 +178023,19 @@ export default { 41 ], "order_by": [ - 6561, + 6585, "[v_match_kill_pairs_order_by!]" ], "where": [ - 6558 + 6582 ] } ], "v_match_lineup_buy_types": [ - 6572, + 6596, { "distinct_on": [ - 6580, + 6604, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -177656,19 +178045,19 @@ export default { 41 ], "order_by": [ - 6579, + 6603, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 6576 + 6600 ] } ], "v_match_lineup_buy_types_aggregate": [ - 6573, + 6597, { "distinct_on": [ - 6580, + 6604, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -177678,19 +178067,19 @@ export default { 41 ], "order_by": [ - 6579, + 6603, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 6576 + 6600 ] } ], "v_match_lineup_map_stats": [ - 6590, + 6614, { "distinct_on": [ - 6598, + 6622, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -177700,19 +178089,19 @@ export default { 41 ], "order_by": [ - 6597, + 6621, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 6594 + 6618 ] } ], "v_match_lineup_map_stats_aggregate": [ - 6591, + 6615, { "distinct_on": [ - 6598, + 6622, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -177722,19 +178111,19 @@ export default { 41 ], "order_by": [ - 6597, + 6621, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 6594 + 6618 ] } ], "v_match_map_backup_rounds": [ - 6608, + 6632, { "distinct_on": [ - 6619, + 6643, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -177744,19 +178133,19 @@ export default { 41 ], "order_by": [ - 6618, + 6642, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 6612 + 6636 ] } ], "v_match_map_backup_rounds_aggregate": [ - 6609, + 6633, { "distinct_on": [ - 6619, + 6643, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -177766,19 +178155,19 @@ export default { 41 ], "order_by": [ - 6618, + 6642, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 6612 + 6636 ] } ], "v_match_player_buy_types": [ - 6631, + 6655, { "distinct_on": [ - 6639, + 6663, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -177788,19 +178177,19 @@ export default { 41 ], "order_by": [ - 6638, + 6662, "[v_match_player_buy_types_order_by!]" ], "where": [ - 6635 + 6659 ] } ], "v_match_player_buy_types_aggregate": [ - 6632, + 6656, { "distinct_on": [ - 6639, + 6663, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -177810,19 +178199,19 @@ export default { 41 ], "order_by": [ - 6638, + 6662, "[v_match_player_buy_types_order_by!]" ], "where": [ - 6635 + 6659 ] } ], "v_match_player_opening_duels": [ - 6649, + 6673, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -177832,19 +178221,19 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "v_match_player_opening_duels_aggregate": [ - 6650, + 6674, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -177854,19 +178243,19 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "v_player_arch_nemesis": [ - 6682, + 6706, { "distinct_on": [ - 6690, + 6714, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -177876,19 +178265,19 @@ export default { 41 ], "order_by": [ - 6689, + 6713, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 6686 + 6710 ] } ], "v_player_arch_nemesis_aggregate": [ - 6683, + 6707, { "distinct_on": [ - 6690, + 6714, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -177898,19 +178287,19 @@ export default { 41 ], "order_by": [ - 6689, + 6713, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 6686 + 6710 ] } ], "v_player_damage": [ - 6700, + 6724, { "distinct_on": [ - 6708, + 6732, "[v_player_damage_select_column!]" ], "limit": [ @@ -177920,19 +178309,19 @@ export default { 41 ], "order_by": [ - 6707, + 6731, "[v_player_damage_order_by!]" ], "where": [ - 6704 + 6728 ] } ], "v_player_damage_aggregate": [ - 6701, + 6725, { "distinct_on": [ - 6708, + 6732, "[v_player_damage_select_column!]" ], "limit": [ @@ -177942,19 +178331,19 @@ export default { 41 ], "order_by": [ - 6707, + 6731, "[v_player_damage_order_by!]" ], "where": [ - 6704 + 6728 ] } ], "v_player_elo": [ - 6718, + 6742, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -177964,19 +178353,19 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "v_player_elo_aggregate": [ - 6719, + 6743, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -177986,19 +178375,19 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "v_player_map_losses": [ - 6769, + 6793, { "distinct_on": [ - 6777, + 6801, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -178008,19 +178397,19 @@ export default { 41 ], "order_by": [ - 6776, + 6800, "[v_player_map_losses_order_by!]" ], "where": [ - 6773 + 6797 ] } ], "v_player_map_losses_aggregate": [ - 6770, + 6794, { "distinct_on": [ - 6777, + 6801, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -178030,19 +178419,19 @@ export default { 41 ], "order_by": [ - 6776, + 6800, "[v_player_map_losses_order_by!]" ], "where": [ - 6773 + 6797 ] } ], "v_player_map_wins": [ - 6787, + 6811, { "distinct_on": [ - 6795, + 6819, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -178052,19 +178441,19 @@ export default { 41 ], "order_by": [ - 6794, + 6818, "[v_player_map_wins_order_by!]" ], "where": [ - 6791 + 6815 ] } ], "v_player_map_wins_aggregate": [ - 6788, + 6812, { "distinct_on": [ - 6795, + 6819, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -178074,19 +178463,19 @@ export default { 41 ], "order_by": [ - 6794, + 6818, "[v_player_map_wins_order_by!]" ], "where": [ - 6791 + 6815 ] } ], "v_player_match_head_to_head": [ - 6805, + 6829, { "distinct_on": [ - 6813, + 6837, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -178096,19 +178485,19 @@ export default { 41 ], "order_by": [ - 6812, + 6836, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 6809 + 6833 ] } ], "v_player_match_head_to_head_aggregate": [ - 6806, + 6830, { "distinct_on": [ - 6813, + 6837, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -178118,19 +178507,19 @@ export default { 41 ], "order_by": [ - 6812, + 6836, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 6809 + 6833 ] } ], "v_player_match_map_hltv": [ - 6823, + 6847, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -178140,19 +178529,19 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "v_player_match_map_hltv_aggregate": [ - 6824, + 6848, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -178162,19 +178551,19 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "v_player_match_map_roles": [ - 6860, + 6884, { "distinct_on": [ - 6868, + 6892, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -178184,19 +178573,19 @@ export default { 41 ], "order_by": [ - 6867, + 6891, "[v_player_match_map_roles_order_by!]" ], "where": [ - 6864 + 6888 ] } ], "v_player_match_map_roles_aggregate": [ - 6861, + 6885, { "distinct_on": [ - 6868, + 6892, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -178206,19 +178595,19 @@ export default { 41 ], "order_by": [ - 6867, + 6891, "[v_player_match_map_roles_order_by!]" ], "where": [ - 6864 + 6888 ] } ], "v_player_match_performance": [ - 6878, + 6902, { "distinct_on": [ - 6886, + 6910, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -178228,19 +178617,19 @@ export default { 41 ], "order_by": [ - 6885, + 6909, "[v_player_match_performance_order_by!]" ], "where": [ - 6882 + 6906 ] } ], "v_player_match_performance_aggregate": [ - 6879, + 6903, { "distinct_on": [ - 6886, + 6910, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -178250,19 +178639,19 @@ export default { 41 ], "order_by": [ - 6885, + 6909, "[v_player_match_performance_order_by!]" ], "where": [ - 6882 + 6906 ] } ], "v_player_match_rating": [ - 6896, + 6920, { "distinct_on": [ - 6904, + 6928, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -178272,19 +178661,19 @@ export default { 41 ], "order_by": [ - 6903, + 6927, "[v_player_match_rating_order_by!]" ], "where": [ - 6900 + 6924 ] } ], "v_player_match_rating_aggregate": [ - 6897, + 6921, { "distinct_on": [ - 6904, + 6928, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -178294,19 +178683,19 @@ export default { 41 ], "order_by": [ - 6903, + 6927, "[v_player_match_rating_order_by!]" ], "where": [ - 6900 + 6924 ] } ], "v_player_multi_kills": [ - 6914, + 6938, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -178316,19 +178705,19 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "v_player_multi_kills_aggregate": [ - 6915, + 6939, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -178338,19 +178727,19 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "v_player_queue_partners": [ - 6947, + 6971, { "distinct_on": [ - 6955, + 6979, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -178360,19 +178749,19 @@ export default { 41 ], "order_by": [ - 6954, + 6978, "[v_player_queue_partners_order_by!]" ], "where": [ - 6951 + 6975 ] } ], "v_player_queue_partners_aggregate": [ - 6948, + 6972, { "distinct_on": [ - 6955, + 6979, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -178382,19 +178771,19 @@ export default { 41 ], "order_by": [ - 6954, + 6978, "[v_player_queue_partners_order_by!]" ], "where": [ - 6951 + 6975 ] } ], "v_player_weapon_damage": [ - 6965, + 6989, { "distinct_on": [ - 6973, + 6997, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -178404,19 +178793,19 @@ export default { 41 ], "order_by": [ - 6972, + 6996, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6969 + 6993 ] } ], "v_player_weapon_damage_aggregate": [ - 6966, + 6990, { "distinct_on": [ - 6973, + 6997, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -178426,19 +178815,19 @@ export default { 41 ], "order_by": [ - 6972, + 6996, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6969 + 6993 ] } ], "v_player_weapon_kills": [ - 6983, + 7007, { "distinct_on": [ - 6991, + 7015, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -178448,19 +178837,19 @@ export default { 41 ], "order_by": [ - 6990, + 7014, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6987 + 7011 ] } ], "v_player_weapon_kills_aggregate": [ - 6984, + 7008, { "distinct_on": [ - 6991, + 7015, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -178470,19 +178859,19 @@ export default { 41 ], "order_by": [ - 6990, + 7014, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6987 + 7011 ] } ], "v_pool_maps": [ - 7001, + 7025, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -178492,19 +178881,19 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], "v_pool_maps_aggregate": [ - 7002, + 7026, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -178514,19 +178903,19 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], "v_steam_account_pool_status": [ - 7025, + 7049, { "distinct_on": [ - 7033, + 7057, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -178536,19 +178925,19 @@ export default { 41 ], "order_by": [ - 7032, + 7056, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 7029 + 7053 ] } ], "v_steam_account_pool_status_aggregate": [ - 7026, + 7050, { "distinct_on": [ - 7033, + 7057, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -178558,19 +178947,19 @@ export default { 41 ], "order_by": [ - 7032, + 7056, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 7029 + 7053 ] } ], "v_team_ranks": [ - 7043, + 7067, { "distinct_on": [ - 7053, + 7077, "[v_team_ranks_select_column!]" ], "limit": [ @@ -178580,19 +178969,19 @@ export default { 41 ], "order_by": [ - 7052, + 7076, "[v_team_ranks_order_by!]" ], "where": [ - 7047 + 7071 ] } ], "v_team_ranks_aggregate": [ - 7044, + 7068, { "distinct_on": [ - 7053, + 7077, "[v_team_ranks_select_column!]" ], "limit": [ @@ -178602,19 +178991,19 @@ export default { 41 ], "order_by": [ - 7052, + 7076, "[v_team_ranks_order_by!]" ], "where": [ - 7047 + 7071 ] } ], "v_team_reputation": [ - 7063, + 7087, { "distinct_on": [ - 7073, + 7097, "[v_team_reputation_select_column!]" ], "limit": [ @@ -178624,19 +179013,19 @@ export default { 41 ], "order_by": [ - 7072, + 7096, "[v_team_reputation_order_by!]" ], "where": [ - 7067 + 7091 ] } ], "v_team_reputation_aggregate": [ - 7064, + 7088, { "distinct_on": [ - 7073, + 7097, "[v_team_reputation_select_column!]" ], "limit": [ @@ -178646,19 +179035,19 @@ export default { 41 ], "order_by": [ - 7072, + 7096, "[v_team_reputation_order_by!]" ], "where": [ - 7067 + 7091 ] } ], "v_team_stage_results": [ - 7083, + 7107, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -178668,19 +179057,19 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "v_team_stage_results_aggregate": [ - 7084, + 7108, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -178690,32 +179079,32 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "v_team_stage_results_by_pk": [ - 7083, + 7107, { "tournament_stage_id": [ - 6341, + 6365, "uuid!" ], "tournament_team_id": [ - 6341, + 6365, "uuid!" ] } ], "v_team_tournament_results": [ - 7143, + 7167, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -178725,19 +179114,19 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "v_team_tournament_results_aggregate": [ - 7144, + 7168, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -178747,19 +179136,19 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "v_tournament_player_stats": [ - 7194, + 7218, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -178769,19 +179158,19 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "v_tournament_player_stats_aggregate": [ - 7195, + 7219, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -178791,58 +179180,58 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "webPushStatus": [ - 151 + 152 ], "__typename": [ - 84 + 85 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 60, + 61, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "ResetTournamentMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "reset_status": [ - 84 + 85 ], "scheduled_at": [ - 5129 + 5153 ], "winning_lineup_id": [ - 6341 + 6365 ] } ], "acceptInvite": [ - 87, + 88, { "invite_id": [ - 6341, + 6365, "uuid!" ], "type": [ - 84, + 85, "String!" ] } @@ -178851,87 +179240,87 @@ export default { 2, { "description": [ - 84 + 85 ], "installPath": [ - 84 + 85 ], "layout": [ - 84 + 85 ], "name": [ - 84 + 85 ], "runtime": [ - 84, + 85, "String!" ], "slug": [ - 84 + 85 ], "url": [ - 84, + 85, "String!" ], "version": [ - 84 + 85 ] } ], "addDraftPlayer": [ - 87, + 88, { "draftGameId": [ - 6341, + 6365, "uuid!" ], "lineup": [ 41 ], "steamId": [ - 84, + 85, "String!" ] } ], "addSteamPresenceBotAccount": [ - 87, + 88, { "bot_secret": [ - 84, + 85, "String!" ], "friend_capacity": [ 41 ], "username": [ - 84, + 85, "String!" ] } ], "approveNameChange": [ - 87, + 88, { "name": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "approve_league_season_movements": [ - 2584, + 2585, { "args": [ - 239, + 240, "approve_league_season_movements_args!" ], "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -178941,34 +179330,34 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "assignSteamPresenceBot": [ - 80 + 81 ], "attachDemo": [ - 149 + 150 ], "backfillSeasonElo": [ - 63, + 64, { "season_id": [ - 84, + 85, "String!" ] } ], "backfillSeasonEloStatus": [ - 73 + 74 ], "backfillUtilityLaunchSeeds": [ - 119, + 120, { "limit": [ 41 @@ -178976,154 +179365,154 @@ export default { } ], "bakeShaders": [ - 87, + 88, { "game_server_node_id": [ - 6341, + 6365, "uuid!" ] } ], "callForOrganizer": [ - 87, + 88, { "match_id": [ - 84, + 85, "String!" ] } ], "cancelBackfillSeasonElo": [ - 87 + 88 ], "cancelBakeShaders": [ - 87, + 88, { "game_server_node_id": [ - 6341, + 6365, "uuid!" ] } ], "cancelClipRender": [ - 87, + 88, { "job_id": [ - 6341, + 6365, "uuid!" ] } ], "cancelClipRenderBatch": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "cancelMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "cancelRecomputePlayerElo": [ - 87 + 88 ], "cancelRefreshAllPlayers": [ - 87 + 88 ], "cancelReparseAllDemos": [ - 87 + 88 ], "cancelScrimRequest": [ - 87, + 88, { "request_id": [ - 6341, + 6365, "uuid!" ] } ], "cancelUtilityLineupRender": [ - 87, + 88, { "render_id": [ - 6341, + 6365, "uuid!" ] } ], "changeUtilityPracticeMap": [ - 129, + 130, { "lineup_id": [ - 6341 + 6365 ], "lineup_ids": [ - 6341, + 6365, "[uuid!]" ], "map_name": [ - 84, + 85, "String!" ], "scratch": [ - 140 + 141 ], "session_id": [ - 6341, + 6365, "uuid!" ] } ], "checkIntoMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "clearClipRenderBatch": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "clearFinishedClipRenders": [ - 87 + 88 ], "clearFinishedUtilityLineupRenders": [ - 138 + 139 ], "clearPendingMatchImport": [ - 56, + 57, { "valve_match_id": [ - 84, + 85, "String!" ] } ], "clone_league_season": [ - 2551, + 2552, { "args": [ - 391, + 392, "clone_league_season_args!" ], "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -179133,23 +179522,23 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "counterScrimRequest": [ - 87, + 88, { "proposed_scheduled_at": [ - 5129, + 5153, "timestamptz!" ], "request_id": [ - 6341, + 6365, "uuid!" ] } @@ -179158,7 +179547,7 @@ export default { 3, { "label": [ - 84, + 85, "String!" ] } @@ -179170,25 +179559,25 @@ export default { 41 ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "preset": [ - 84, + 85, "String!" ], "resolution": [ - 84 + 85 ], "target_name": [ - 84 + 85 ], "target_steam_id": [ - 84, + 85, "String!" ], "title": [ - 84 + 85 ] } ], @@ -179202,10 +179591,10 @@ export default { } ], "createClips": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } @@ -179214,7 +179603,7 @@ export default { 17, { "settings": [ - 2348, + 2349, "jsonb!" ] } @@ -179223,71 +179612,71 @@ export default { 18, { "lineup_1": [ - 72, + 73, "ScheduledLineupInput!" ], "lineup_2": [ - 72, + 73, "ScheduledLineupInput!" ], "options": [ - 2348, + 2349, "jsonb!" ], "scheduled_at": [ - 84, + 85, "String!" ] } ], "createServerDirectory": [ - 87, + 88, { "dir_path": [ - 84, + 85, "String!" ], "node_id": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ] } ], "deleteAward": [ - 87, + 88, { "id": [ - 6341, + 6365, "uuid!" ] } ], "deleteClip": [ - 87, + 88, { "clip_id": [ - 6341, + 6365, "uuid!" ] } ], "deleteMatch": [ - 87, + 88, { "match_id": [ - 84, + 85, "String!" ] } ], "deleteNewsPost": [ - 87, + 88, { "id": [ - 6341, + 6365, "uuid!" ] } @@ -179296,1633 +179685,1633 @@ export default { 22, { "keys": [ - 84, + 85, "[String!]" ] } ], "deleteServerItem": [ - 87, + 88, { "node_id": [ - 84, + 85, "String!" ], "path": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ] } ], "deleteTournament": [ - 87, + 88, { "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "deleteUtilityLineupRender": [ - 87, + 88, { "render_id": [ - 6341, + 6365, "uuid!" ] } ], "deleteUtilityPlaybook": [ - 87, + 88, { "playbook_id": [ - 6341, + 6365, "uuid!" ] } ], "delete__map_pool": [ - 160, + 161, { "where": [ - 155, + 156, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 152, + 153, { "map_id": [ - 6341, + 6365, "uuid!" ], "map_pool_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_abandoned_matches": [ - 188, + 189, { "where": [ - 180, + 181, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 171, + 172, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_api_keys": [ - 222, + 223, { "where": [ - 216, + 217, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 212, + 213, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_award_recipients": [ - 257, + 258, { "where": [ - 249, + 250, "award_recipients_bool_exp!" ] } ], "delete_award_recipients_by_pk": [ - 240, + 241, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_awards": [ - 291, + 292, { "where": [ - 285, + 286, "awards_bool_exp!" ] } ], "delete_awards_by_pk": [ - 281, + 282, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_chat_read_state": [ - 324, + 325, { "where": [ - 318, + 319, "chat_read_state_bool_exp!" ] } ], "delete_chat_read_state_by_pk": [ - 314, + 315, { "steam_id": [ - 309, + 310, "bigint!" ], "thread": [ - 84, + 85, "String!" ] } ], "delete_clip_render_jobs": [ - 364, + 365, { "where": [ - 353, + 354, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 341, + 342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_custom_pages": [ - 407, + 408, { "where": [ - 398, + 399, "custom_pages_bool_exp!" ] } ], "delete_custom_pages_by_pk": [ - 393, + 394, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_db_backups": [ - 435, + 436, { "where": [ - 429, + 430, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 425, + 426, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_direct_conversations": [ - 462, + 463, { "where": [ - 456, + 457, "direct_conversations_bool_exp!" ] } ], "delete_direct_conversations_by_pk": [ - 452, + 453, { "room_id": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_direct_messages": [ - 489, + 490, { "where": [ - 483, + 484, "direct_messages_bool_exp!" ] } ], "delete_direct_messages_by_pk": [ - 479, + 480, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_draft_game_picks": [ - 525, + 526, { "where": [ - 517, + 518, "draft_game_picks_bool_exp!" ] } ], "delete_draft_game_picks_by_pk": [ - 506, + 507, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_draft_game_players": [ - 570, + 571, { "where": [ - 562, + 563, "draft_game_players_bool_exp!" ] } ], "delete_draft_game_players_by_pk": [ - 551, + 552, { "draft_game_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_draft_games": [ - 615, + 616, { "where": [ - 607, + 608, "draft_games_bool_exp!" ] } ], "delete_draft_games_by_pk": [ - 596, + 597, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_e_award_sources": [ - 652, + 653, { "where": [ - 645, + 646, "e_award_sources_bool_exp!" ] } ], "delete_e_award_sources_by_pk": [ - 642, + 643, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_award_tiers": [ - 672, + 673, { "where": [ - 665, + 666, "e_award_tiers_bool_exp!" ] } ], "delete_e_award_tiers_by_pk": [ - 662, + 663, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_check_in_settings": [ - 692, + 693, { "where": [ - 685, + 686, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 682, + 683, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_draft_game_captain_selection": [ - 712, + 713, { "where": [ - 705, + 706, "e_draft_game_captain_selection_bool_exp!" ] } ], "delete_e_draft_game_captain_selection_by_pk": [ - 702, + 703, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_draft_game_draft_order": [ - 733, + 734, { "where": [ - 726, + 727, "e_draft_game_draft_order_bool_exp!" ] } ], "delete_e_draft_game_draft_order_by_pk": [ - 723, + 724, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_draft_game_mode": [ - 754, + 755, { "where": [ - 747, + 748, "e_draft_game_mode_bool_exp!" ] } ], "delete_e_draft_game_mode_by_pk": [ - 744, + 745, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_draft_game_player_status": [ - 775, + 776, { "where": [ - 768, + 769, "e_draft_game_player_status_bool_exp!" ] } ], "delete_e_draft_game_player_status_by_pk": [ - 765, + 766, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_draft_game_status": [ - 796, + 797, { "where": [ - 789, + 790, "e_draft_game_status_bool_exp!" ] } ], "delete_e_draft_game_status_by_pk": [ - 786, + 787, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_event_media_access": [ - 817, + 818, { "where": [ - 810, + 811, "e_event_media_access_bool_exp!" ] } ], "delete_e_event_media_access_by_pk": [ - 807, + 808, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_event_visibility": [ - 837, + 838, { "where": [ - 830, + 831, "e_event_visibility_bool_exp!" ] } ], "delete_e_event_visibility_by_pk": [ - 827, + 828, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_friend_status": [ - 857, + 858, { "where": [ - 850, + 851, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 847, + 848, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_game_cfg_types": [ - 878, + 879, { "where": [ - 871, + 872, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 868, + 869, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_game_plugin_channels": [ - 898, + 899, { "where": [ - 891, + 892, "e_game_plugin_channels_bool_exp!" ] } ], "delete_e_game_plugin_channels_by_pk": [ - 888, + 889, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_game_plugin_install_statuses": [ - 918, + 919, { "where": [ - 911, + 912, "e_game_plugin_install_statuses_bool_exp!" ] } ], "delete_e_game_plugin_install_statuses_by_pk": [ - 908, + 909, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_game_plugin_kinds": [ - 938, + 939, { "where": [ - 931, + 932, "e_game_plugin_kinds_bool_exp!" ] } ], "delete_e_game_plugin_kinds_by_pk": [ - 928, + 929, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 958, + 959, { "where": [ - 951, + 952, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 948, + 949, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_league_movement_types": [ - 979, + 980, { "where": [ - 972, + 973, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 969, + 970, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_league_proposal_statuses": [ - 1000, + 1001, { "where": [ - 993, + 994, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 990, + 991, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_league_registration_statuses": [ - 1021, + 1022, { "where": [ - 1014, + 1015, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 1011, + 1012, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_league_season_statuses": [ - 1042, + 1043, { "where": [ - 1035, + 1036, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 1032, + 1033, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_lobby_access": [ - 1063, + 1064, { "where": [ - 1056, + 1057, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 1053, + 1054, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_lobby_player_status": [ - 1084, + 1085, { "where": [ - 1077, + 1078, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 1074, + 1075, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_map_pool_types": [ - 1104, + 1105, { "where": [ - 1097, + 1098, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 1094, + 1095, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_clip_visibility": [ - 1125, + 1126, { "where": [ - 1118, + 1119, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 1115, + 1116, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_map_status": [ - 1145, + 1146, { "where": [ - 1138, + 1139, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 1135, + 1136, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_mode": [ - 1166, + 1167, { "where": [ - 1159, + 1160, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 1156, + 1157, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_party_sources": [ - 1186, + 1187, { "where": [ - 1179, + 1180, "e_match_party_sources_bool_exp!" ] } ], "delete_e_match_party_sources_by_pk": [ - 1176, + 1177, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_status": [ - 1206, + 1207, { "where": [ - 1199, + 1200, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 1196, + 1197, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_match_types": [ - 1227, + 1228, { "where": [ - 1220, + 1221, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 1217, + 1218, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_notification_types": [ - 1248, + 1249, { "where": [ - 1241, + 1242, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 1238, + 1239, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_objective_types": [ - 1268, + 1269, { "where": [ - 1261, + 1262, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 1258, + 1259, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_player_roles": [ - 1288, + 1289, { "where": [ - 1281, + 1282, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 1278, + 1279, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_plugin_runtimes": [ - 1308, + 1309, { "where": [ - 1301, + 1302, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 1298, + 1299, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_ready_settings": [ - 1328, + 1329, { "where": [ - 1321, + 1322, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 1318, + 1319, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_sanction_types": [ - 1348, + 1349, { "where": [ - 1341, + 1342, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 1338, + 1339, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_scrim_request_statuses": [ - 1369, + 1370, { "where": [ - 1362, + 1363, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 1359, + 1360, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_server_types": [ - 1389, + 1390, { "where": [ - 1382, + 1383, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 1379, + 1380, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_sides": [ - 1409, + 1410, { "where": [ - 1402, + 1403, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1399, + 1400, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_system_alert_types": [ - 1429, + 1430, { "where": [ - 1422, + 1423, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1419, + 1420, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_team_roles": [ - 1449, + 1450, { "where": [ - 1442, + 1443, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1439, + 1440, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_team_roster_statuses": [ - 1470, + 1471, { "where": [ - 1463, + 1464, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1460, + 1461, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_timeout_settings": [ - 1490, + 1491, { "where": [ - 1483, + 1484, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1480, + 1481, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_tournament_categories": [ - 1510, + 1511, { "where": [ - 1503, + 1504, "e_tournament_categories_bool_exp!" ] } ], "delete_e_tournament_categories_by_pk": [ - 1500, + 1501, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_tournament_stage_types": [ - 1531, + 1532, { "where": [ - 1524, + 1525, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1521, + 1522, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_tournament_status": [ - 1552, + 1553, { "where": [ - 1545, + 1546, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1542, + 1543, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_practice_access": [ - 1573, + 1574, { "where": [ - 1566, + 1567, "e_utility_practice_access_bool_exp!" ] } ], "delete_e_utility_practice_access_by_pk": [ - 1563, + 1564, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_practice_statuses": [ - 1593, + 1594, { "where": [ - 1586, + 1587, "e_utility_practice_statuses_bool_exp!" ] } ], "delete_e_utility_practice_statuses_by_pk": [ - 1583, + 1584, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_sources": [ - 1614, + 1615, { "where": [ - 1607, + 1608, "e_utility_sources_bool_exp!" ] } ], "delete_e_utility_sources_by_pk": [ - 1604, + 1605, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_techniques": [ - 1634, + 1635, { "where": [ - 1627, + 1628, "e_utility_techniques_bool_exp!" ] } ], "delete_e_utility_techniques_by_pk": [ - 1624, + 1625, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_throw_strengths": [ - 1654, + 1655, { "where": [ - 1647, + 1648, "e_utility_throw_strengths_bool_exp!" ] } ], "delete_e_utility_throw_strengths_by_pk": [ - 1644, + 1645, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_types": [ - 1674, + 1675, { "where": [ - 1667, + 1668, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1664, + 1665, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_utility_visibility": [ - 1694, + 1695, { "where": [ - 1687, + 1688, "e_utility_visibility_bool_exp!" ] } ], "delete_e_utility_visibility_by_pk": [ - 1684, + 1685, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_veto_pick_types": [ - 1714, + 1715, { "where": [ - 1707, + 1708, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1704, + 1705, { "value": [ - 84, + 85, "String!" ] } ], "delete_e_winning_reasons": [ - 1734, + 1735, { "where": [ - 1727, + 1728, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1724, + 1725, { "value": [ - 84, + 85, "String!" ] } ], "delete_event_match_links": [ - 1752, + 1753, { "where": [ - 1747, + 1748, "event_match_links_bool_exp!" ] } ], "delete_event_match_links_by_pk": [ - 1744, + 1745, { "event_id": [ - 6341, + 6365, "uuid!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_event_media": [ - 1779, + 1780, { "where": [ - 1771, + 1772, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1762, + 1763, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_event_media_players": [ - 1801, + 1802, { "where": [ - 1793, + 1794, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1784, + 1785, { "media_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_event_organizers": [ - 1862, + 1863, { "where": [ - 1854, + 1855, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1845, + 1846, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_event_players": [ - 1903, + 1904, { "where": [ - 1895, + 1896, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1886, + 1887, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_event_teams": [ - 1941, + 1942, { "where": [ - 1934, + 1935, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1927, + 1928, { "event_id": [ - 6341, + 6365, "uuid!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_event_tournaments": [ - 1965, + 1966, { "where": [ - 1958, + 1959, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1951, + 1952, { "event_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_events": [ - 1985, + 1986, { "where": [ - 1979, + 1980, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1975, + 1976, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_friends": [ - 2015, + 2016, { "where": [ - 2009, + 2010, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 2005, + 2006, { "other_player_steam_id": [ - 309, + 310, "bigint!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_game_mode_plugins": [ - 2055, + 2056, { "where": [ - 2044, + 2045, "game_mode_plugins_bool_exp!" ] } ], "delete_game_mode_plugins_by_pk": [ - 2032, + 2033, { "game_mode_id": [ - 6341, + 6365, "uuid!" ], "plugin_slug": [ - 84, + 85, "String!" ] } ], "delete_game_modes": [ - 2090, + 2091, { "where": [ - 2085, + 2086, "game_modes_bool_exp!" ] } ], "delete_game_modes_by_pk": [ - 2082, + 2083, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_game_plugin_installs": [ - 2109, + 2110, { "where": [ - 2104, + 2105, "game_plugin_installs_bool_exp!" ] } ], "delete_game_plugin_installs_by_pk": [ - 2101, + 2102, { "plugin_slug": [ - 84, + 85, "String!" ] } ], "delete_game_plugin_versions": [ - 2138, + 2139, { "where": [ - 2130, + 2131, "game_plugin_versions_bool_exp!" ] } ], "delete_game_plugin_versions_by_pk": [ - 2119, + 2120, { "plugin_slug": [ - 84, + 85, "String!" ], "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "delete_game_plugins": [ - 2177, + 2178, { "where": [ - 2169, + 2170, "game_plugins_bool_exp!" ] } ], "delete_game_plugins_by_pk": [ - 2164, + 2165, { "slug": [ - 84, + 85, "String!" ] } ], "delete_game_server_node_plugins": [ - 2212, + 2213, { "where": [ - 2205, + 2206, "game_server_node_plugins_bool_exp!" ] } ], "delete_game_server_node_plugins_by_pk": [ - 2196, + 2197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_game_server_nodes": [ - 2247, + 2248, { "where": [ - 2236, + 2237, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 2224, + 2225, { "id": [ - 84, + 85, "String!" ] } ], "delete_game_versions": [ - 2289, + 2290, { "where": [ - 2280, + 2281, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 2275, + 2276, { "build_id": [ 41, @@ -180931,2139 +181320,2161 @@ export default { } ], "delete_gamedata_signature_validations": [ - 2322, + 2323, { "where": [ - 2313, + 2314, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 2308, + 2309, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_leaderboard_entries": [ - 2360, + 2361, { "where": [ - 2355, + 2356, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 2385, + 2386, { "where": [ - 2379, + 2380, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 2375, + 2376, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_match_weeks": [ - 2420, + 2421, { "where": [ - 2412, + 2413, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 2403, + 2404, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 2461, + 2462, { "where": [ - 2453, + 2454, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 2444, + 2445, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 2502, + 2503, { "where": [ - 2494, + 2495, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 2485, + 2486, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_season_divisions": [ - 2540, + 2541, { "where": [ - 2533, + 2534, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 2526, + 2527, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_seasons": [ - 2565, + 2566, { "where": [ - 2556, + 2557, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 2551, + 2552, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_team_movements": [ - 2601, + 2602, { "where": [ - 2593, + 2594, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 2584, + 2585, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_team_rosters": [ - 2642, + 2643, { "where": [ - 2634, + 2635, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 2625, + 2626, { "league_team_season_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_league_team_seasons": [ - 2683, + 2684, { "where": [ - 2675, + 2676, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 2666, + 2667, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_league_teams": [ - 2716, + 2717, { "where": [ - 2711, + 2712, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 2708, + 2709, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_lobbies": [ - 2735, + 2736, { "where": [ - 2730, + 2731, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2727, + 2728, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_lobby_players": [ - 2765, + 2766, { "where": [ - 2757, + 2758, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2746, + 2747, { "lobby_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], + "delete_map_callouts": [ + 2804, + { + "where": [ + 2796, + "map_callouts_bool_exp!" + ] + } + ], + "delete_map_callouts_by_pk": [ + 2792, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], "delete_map_pools": [ - 2799, + 2823, { "where": [ - 2794, + 2818, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2791, + 2815, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_maps": [ - 2826, + 2850, { "where": [ - 2819, + 2843, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2810, + 2834, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_clips": [ - 2856, + 2880, { "where": [ - 2848, + 2872, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2839, + 2863, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2902, + 2926, { "where": [ - 2891, + 2915, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2881, + 2905, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_lineup_players": [ - 2946, + 2970, { "where": [ - 2938, + 2962, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2927, + 2951, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_lineups": [ - 2989, + 3013, { "where": [ - 2981, + 3005, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2972, + 2996, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_map_demos": [ - 3037, + 3061, { "where": [ - 3026, + 3050, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 3014, + 3038, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_map_rounds": [ - 3082, + 3106, { "where": [ - 3074, + 3098, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 3065, + 3089, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 3122, + 3146, { "where": [ - 3115, + 3139, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 3106, + 3130, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_maps": [ - 3151, + 3175, { "where": [ - 3143, + 3167, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 3134, + 3158, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_options": [ - 3195, + 3219, { "where": [ - 3187, + 3211, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 3176, + 3200, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 3238, + 3262, { "where": [ - 3231, + 3255, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 3222, + 3246, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_streams": [ - 3273, + 3297, { "where": [ - 3262, + 3286, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 3250, + 3274, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_match_type_cfgs": [ - 3308, + 3332, { "where": [ - 3303, + 3327, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 3300, + 3324, { "type": [ - 873, + 874, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 3337, + 3361, { "where": [ - 3329, + 3353, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 3318, + 3342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 3372, + 3396, { "where": [ - 3367, + 3391, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 3364, + 3388, { "name": [ - 84, + 85, "String!" ] } ], "delete_my_friends": [ - 3404, + 3428, { "where": [ - 3394, + 3418, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 3438, + 3462, { "where": [ - 3432, + 3456, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 3428, + 3452, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_notification_preferences": [ - 3465, + 3489, { "where": [ - 3459, + 3483, "notification_preferences_bool_exp!" ] } ], "delete_notification_preferences_by_pk": [ - 3455, + 3479, { "channel": [ - 84, + 85, "String!" ], "key": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_notifications": [ - 3505, + 3529, { "where": [ - 3494, + 3518, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 3482, + 3506, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_pending_match_import_players": [ - 3552, + 3576, { "where": [ - 3544, + 3568, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 3535, + 3559, { "steam_id": [ - 309, + 310, "bigint!" ], "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "delete_pending_match_imports": [ - 3586, + 3610, { "where": [ - 3580, + 3604, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 3576, + 3600, { "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 3614, + 3638, { "where": [ - 3608, + 3632, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 3604, + 3628, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 3648, + 3672, { "where": [ - 3640, + 3664, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 3631, + 3655, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "weapon_class": [ - 84, + 85, "String!" ] } ], "delete_player_assists": [ - 3691, + 3715, { "where": [ - 3683, + 3707, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 3672, + 3696, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_player_damages": [ - 3752, + 3776, { "where": [ - 3744, + 3768, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 3735, + 3759, { "id": [ - 6341, + 6365, "uuid!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_player_elo": [ - 3786, + 3810, { "where": [ - 3780, + 3804, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3776, + 3800, { "match_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "type": [ - 1222, + 1223, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 3820, + 3844, { "where": [ - 3812, + 3836, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3803, + 3827, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_player_flashes": [ - 3863, + 3887, { "where": [ - 3855, + 3879, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3844, + 3868, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_player_kills": [ - 3949, + 3973, { "where": [ - 3900, + 3924, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3889, + 3913, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3918, + 3942, { "where": [ - 3910, + 3934, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3901, + 3925, { "player_steam_id": [ - 309, + 310, "bigint!" ], "with": [ - 84, + 85, "String!" ] } ], "delete_player_leaderboard_rank": [ - 3984, + 4008, { "where": [ - 3979, + 4003, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 4015, + 4039, { "where": [ - 4007, + 4031, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3998, + 4022, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_player_objectives": [ - 4107, + 4131, { "where": [ - 4099, + 4123, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 4090, + 4114, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 4166, + 4190, { "where": [ - 4158, + 4182, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 4149, + 4173, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_player_sanctions": [ - 4207, + 4231, { "where": [ - 4199, + 4223, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 4190, + 4214, { "created_at": [ - 5129, + 5153, "timestamptz!" ], "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_player_season_stats": [ - 4258, + 4282, { "where": [ - 4250, + 4274, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 4231, + 4255, { "player_steam_id": [ - 309, + 310, "bigint!" ], "season_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_player_stats": [ - 4300, + 4324, { "where": [ - 4294, + 4318, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 4290, + 4314, { "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_player_steam_bot_friend": [ - 4332, + 4356, { "where": [ - 4323, + 4347, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 4318, + 4342, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 4360, + 4384, { "where": [ - 4354, + 4378, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 4350, + 4374, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_player_unused_utility": [ - 4394, + 4418, { "where": [ - 4386, + 4410, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 4377, + 4401, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_player_utility": [ - 4435, + 4459, { "where": [ - 4427, + 4451, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 4418, + 4442, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "delete_players": [ - 4502, + 4526, { "where": [ - 4496, + 4520, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 4492, + 4516, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "delete_plugin_versions": [ - 4530, + 4554, { "where": [ - 4524, + 4548, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 4520, + 4544, { "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "delete_push_subscriptions": [ - 4557, + 4581, { "where": [ - 4551, + 4575, "push_subscriptions_bool_exp!" ] } ], "delete_push_subscriptions_by_pk": [ - 4547, + 4571, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_role_permissions": [ - 4585, + 4609, { "where": [ - 4581, + 4605, "role_permissions_bool_exp!" ] } ], "delete_seasons": [ - 4602, + 4626, { "where": [ - 4596, + 4620, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 4592, + 4616, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_server_regions": [ - 4629, + 4653, { "where": [ - 4624, + 4648, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 4620, + 4644, { "value": [ - 84, + 85, "String!" ] } ], "delete_servers": [ - 4670, + 4694, { "where": [ - 4659, + 4683, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 4647, + 4671, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_settings": [ - 4706, + 4730, { "where": [ - 4701, + 4725, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 4698, + 4722, { "name": [ - 84, + 85, "String!" ] } ], "delete_steam_account_claims": [ - 4732, + 4756, { "where": [ - 4725, + 4749, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 4718, + 4742, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_steam_accounts": [ - 4752, + 4776, { "where": [ - 4746, + 4770, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 4742, + 4766, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_system_alerts": [ - 4780, + 4804, { "where": [ - 4774, + 4798, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 4770, + 4794, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_invites": [ - 4814, + 4838, { "where": [ - 4806, + 4830, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 4797, + 4821, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_roster": [ - 4857, + 4881, { "where": [ - 4849, + 4873, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4838, + 4862, { "player_steam_id": [ - 309, + 310, "bigint!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4893, + 4917, { "where": [ - 4887, + 4911, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4883, + 4907, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4926, + 4950, { "where": [ - 4919, + 4943, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4910, + 4934, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4955, + 4979, { "where": [ - 4947, + 4971, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4938, + 4962, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4998, + 5022, { "where": [ - 4990, + 5014, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4979, + 5003, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_scrim_settings": [ - 5035, + 5059, { "where": [ - 5029, + 5053, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 5025, + 5049, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_team_suggestions": [ - 5063, + 5087, { "where": [ - 5057, + 5081, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 5053, + 5077, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_teams": [ - 5099, + 5123, { "where": [ - 5091, + 5115, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 5080, + 5104, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_awards": [ - 5148, + 5172, { "where": [ - 5140, + 5164, "tournament_awards_bool_exp!" ] } ], "delete_tournament_awards_by_pk": [ - 5131, + 5155, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_brackets": [ - 5192, + 5216, { "where": [ - 5184, + 5208, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 5173, + 5197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_categories": [ - 5233, + 5257, { "where": [ - 5226, + 5250, "tournament_categories_bool_exp!" ] } ], "delete_tournament_categories_by_pk": [ - 5219, + 5243, { "category": [ - 1505, + 1506, "e_tournament_categories_enum!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_organizer_teams": [ - 5257, + 5281, { "where": [ - 5250, + 5274, "tournament_organizer_teams_bool_exp!" ] } ], "delete_tournament_organizer_teams_by_pk": [ - 5243, + 5267, { "team_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_organizers": [ - 5284, + 5308, { "where": [ - 5276, + 5300, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 5267, + 5291, { "steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_prizes": [ - 5325, + 5349, { "where": [ - 5317, + 5341, "tournament_prizes_bool_exp!" ] } ], "delete_tournament_prizes_by_pk": [ - 5308, + 5332, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 5366, + 5390, { "where": [ - 5358, + 5382, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 5349, + 5373, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_stages": [ - 5413, + 5437, { "where": [ - 5402, + 5426, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 5390, + 5414, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_team_invites": [ - 5458, + 5482, { "where": [ - 5450, + 5474, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 5441, + 5465, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_team_roster": [ - 5499, + 5523, { "where": [ - 5491, + 5515, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 5482, + 5506, { "player_steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournament_teams": [ - 5540, + 5564, { "where": [ - 5532, + 5556, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 5523, + 5547, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_tournaments": [ - 5594, + 5618, { "where": [ - 5586, + 5610, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 5565, + 5589, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_collection_items": [ - 5646, + 5670, { "where": [ - 5638, + 5662, "utility_collection_items_bool_exp!" ] } ], "delete_utility_collection_items_by_pk": [ - 5629, + 5653, { "collection_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_collections": [ - 5680, + 5704, { "where": [ - 5674, + 5698, "utility_collections_bool_exp!" ] } ], "delete_utility_collections_by_pk": [ - 5670, + 5694, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_demo_mines": [ - 5708, + 5732, { "where": [ - 5702, + 5726, "utility_demo_mines_bool_exp!" ] } ], "delete_utility_demo_mines_by_pk": [ - 5698, + 5722, { "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_demo_throws": [ - 5735, + 5759, { "where": [ - 5729, + 5753, "utility_demo_throws_bool_exp!" ] } ], "delete_utility_demo_throws_by_pk": [ - 5725, + 5749, { "grenade_id": [ 41, "Int!" ], "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_drift_results": [ - 5779, + 5803, { "where": [ - 5771, + 5795, "utility_drift_results_bool_exp!" ] } ], "delete_utility_drift_results_by_pk": [ - 5752, + 5776, { "utility_drift_scan_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_drift_scans": [ - 5821, + 5845, { "where": [ - 5815, + 5839, "utility_drift_scans_bool_exp!" ] } ], "delete_utility_drift_scans_by_pk": [ - 5811, + 5835, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineup_favorites": [ - 5856, + 5880, { "where": [ - 5848, + 5872, "utility_lineup_favorites_bool_exp!" ] } ], "delete_utility_lineup_favorites_by_pk": [ - 5839, + 5863, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineup_progress": [ - 5907, + 5931, { "where": [ - 5899, + 5923, "utility_lineup_progress_bool_exp!" ] } ], "delete_utility_lineup_progress_by_pk": [ - 5880, + 5904, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineup_renders": [ - 5962, + 5986, { "where": [ - 5951, + 5975, "utility_lineup_renders_bool_exp!" ] } ], "delete_utility_lineup_renders_by_pk": [ - 5939, + 5963, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineup_repairs": [ - 6016, + 6040, { "where": [ - 6008, + 6032, "utility_lineup_repairs_bool_exp!" ] } ], "delete_utility_lineup_repairs_by_pk": [ - 5989, + 6013, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineup_votes": [ - 6065, + 6089, { "where": [ - 6057, + 6081, "utility_lineup_votes_bool_exp!" ] } ], "delete_utility_lineup_votes_by_pk": [ - 6048, + 6072, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_lineups": [ - 6122, + 6146, { "where": [ - 6111, + 6135, "utility_lineups_bool_exp!" ] } ], "delete_utility_lineups_by_pk": [ - 6089, + 6113, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_meta_lineups": [ - 6168, + 6192, { "where": [ - 6162, + 6186, "utility_meta_lineups_bool_exp!" ] } ], "delete_utility_meta_lineups_by_pk": [ - 6158, + 6182, { "lineup_bucket": [ - 84, + 85, "String!" ] } ], "delete_utility_playbook_steps": [ - 6202, + 6226, { "where": [ - 6194, + 6218, "utility_playbook_steps_bool_exp!" ] } ], "delete_utility_playbook_steps_by_pk": [ - 6185, + 6209, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_playbooks": [ - 6236, + 6260, { "where": [ - 6230, + 6254, "utility_playbooks_bool_exp!" ] } ], "delete_utility_playbooks_by_pk": [ - 6226, + 6250, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_practice_invites": [ - 6271, + 6295, { "where": [ - 6263, + 6287, "utility_practice_invites_bool_exp!" ] } ], "delete_utility_practice_invites_by_pk": [ - 6254, + 6278, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_practice_session_id": [ - 6341, + 6365, "uuid!" ] } ], "delete_utility_practice_sessions": [ - 6314, + 6338, { "where": [ - 6306, + 6330, "utility_practice_sessions_bool_exp!" ] } ], "delete_utility_practice_sessions_by_pk": [ - 6295, + 6319, { "id": [ - 6341, + 6365, "uuid!" ] } ], "delete_v_match_captains": [ - 6506, + 6530, { "where": [ - 6501, + 6525, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 6617, + 6641, { "where": [ - 6612, + 6636, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 6839, + 6863, { "where": [ - 6832, + 6856, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 7016, + 7040, { "where": [ - 7010, + 7034, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 7110, + 7134, { "where": [ - 7102, + 7126, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 7083, + 7107, { "tournament_stage_id": [ - 6341, + 6365, "uuid!" ], "tournament_team_id": [ - 6341, + 6365, "uuid!" ] } ], "denyInvite": [ - 87, + 88, { "invite_id": [ - 6341, + 6365, "uuid!" ], "type": [ - 84, + 85, "String!" ] } ], "denyNameChange": [ - 87, + 88, { "name": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "forfeitMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "winning_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "forkUtilityLineup": [ - 120, + 121, { "collection_id": [ - 6341 + 6365 ], "name": [ - 84 + 85 ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } @@ -183072,19 +183483,19 @@ export default { 46, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "getPluginReadme": [ - 57, + 58, { "runtime": [ - 84 + 85 ], "slug": [ - 84, + 85, "String!" ] } @@ -183096,4733 +183507,4757 @@ export default { 5, { "award_id": [ - 6341, + 6365, "uuid!" ], "event_id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "note": [ - 84 + 85 ], "player_steam_id": [ - 84 + 85 ], "season_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ], "tournament_id": [ - 6341 + 6365 ] } ], "importUtilityLineups": [ - 118, + 119, { "dry_run": [ 6 ], "payload": [ - 2348, + 2349, "jsonb!" ] } ], "insert__map_pool": [ - 160, + 161, { "objects": [ - 157, + 158, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 161 + 162 ] } ], "insert__map_pool_one": [ - 152, + 153, { "object": [ - 157, + 158, "_map_pool_insert_input!" ], "on_conflict": [ - 161 + 162 ] } ], "insert_abandoned_matches": [ - 188, + 189, { "objects": [ - 183, + 184, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 189 + 190 ] } ], "insert_abandoned_matches_one": [ - 171, + 172, { "object": [ - 183, + 184, "abandoned_matches_insert_input!" ], "on_conflict": [ - 189 + 190 ] } ], "insert_api_keys": [ - 222, + 223, { "objects": [ - 219, + 220, "[api_keys_insert_input!]!" ], "on_conflict": [ - 223 + 224 ] } ], "insert_api_keys_one": [ - 212, + 213, { "object": [ - 219, + 220, "api_keys_insert_input!" ], "on_conflict": [ - 223 + 224 ] } ], "insert_award_recipients": [ - 257, + 258, { "objects": [ - 252, + 253, "[award_recipients_insert_input!]!" ], "on_conflict": [ - 258 + 259 ] } ], "insert_award_recipients_one": [ - 240, + 241, { "object": [ - 252, + 253, "award_recipients_insert_input!" ], "on_conflict": [ - 258 + 259 ] } ], "insert_awards": [ - 291, + 292, { "objects": [ - 288, + 289, "[awards_insert_input!]!" ], "on_conflict": [ - 293 + 294 ] } ], "insert_awards_one": [ - 281, + 282, { "object": [ - 288, + 289, "awards_insert_input!" ], "on_conflict": [ - 293 + 294 ] } ], "insert_chat_read_state": [ - 324, + 325, { "objects": [ - 321, + 322, "[chat_read_state_insert_input!]!" ], "on_conflict": [ - 325 + 326 ] } ], "insert_chat_read_state_one": [ - 314, + 315, { "object": [ - 321, + 322, "chat_read_state_insert_input!" ], "on_conflict": [ - 325 + 326 ] } ], "insert_clip_render_jobs": [ - 364, + 365, { "objects": [ - 359, + 360, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 365 + 366 ] } ], "insert_clip_render_jobs_one": [ - 341, + 342, { "object": [ - 359, + 360, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 365 + 366 ] } ], "insert_custom_pages": [ - 407, + 408, { "objects": [ - 404, + 405, "[custom_pages_insert_input!]!" ], "on_conflict": [ - 408 + 409 ] } ], "insert_custom_pages_one": [ - 393, + 394, { "object": [ - 404, + 405, "custom_pages_insert_input!" ], "on_conflict": [ - 408 + 409 ] } ], "insert_db_backups": [ - 435, + 436, { "objects": [ - 432, + 433, "[db_backups_insert_input!]!" ], "on_conflict": [ - 436 + 437 ] } ], "insert_db_backups_one": [ - 425, + 426, { "object": [ - 432, + 433, "db_backups_insert_input!" ], "on_conflict": [ - 436 + 437 ] } ], "insert_direct_conversations": [ - 462, + 463, { "objects": [ - 459, + 460, "[direct_conversations_insert_input!]!" ], "on_conflict": [ - 463 + 464 ] } ], "insert_direct_conversations_one": [ - 452, + 453, { "object": [ - 459, + 460, "direct_conversations_insert_input!" ], "on_conflict": [ - 463 + 464 ] } ], "insert_direct_messages": [ - 489, + 490, { "objects": [ - 486, + 487, "[direct_messages_insert_input!]!" ], "on_conflict": [ - 490 + 491 ] } ], "insert_direct_messages_one": [ - 479, + 480, { "object": [ - 486, + 487, "direct_messages_insert_input!" ], "on_conflict": [ - 490 + 491 ] } ], "insert_draft_game_picks": [ - 525, + 526, { "objects": [ - 520, + 521, "[draft_game_picks_insert_input!]!" ], "on_conflict": [ - 526 + 527 ] } ], "insert_draft_game_picks_one": [ - 506, + 507, { "object": [ - 520, + 521, "draft_game_picks_insert_input!" ], "on_conflict": [ - 526 + 527 ] } ], "insert_draft_game_players": [ - 570, + 571, { "objects": [ - 565, + 566, "[draft_game_players_insert_input!]!" ], "on_conflict": [ - 571 + 572 ] } ], "insert_draft_game_players_one": [ - 551, + 552, { "object": [ - 565, + 566, "draft_game_players_insert_input!" ], "on_conflict": [ - 571 + 572 ] } ], "insert_draft_games": [ - 615, + 616, { "objects": [ - 610, + 611, "[draft_games_insert_input!]!" ], "on_conflict": [ - 617 + 618 ] } ], "insert_draft_games_one": [ - 596, + 597, { "object": [ - 610, + 611, "draft_games_insert_input!" ], "on_conflict": [ - 617 + 618 ] } ], "insert_e_award_sources": [ - 652, + 653, { "objects": [ - 649, + 650, "[e_award_sources_insert_input!]!" ], "on_conflict": [ - 653 + 654 ] } ], "insert_e_award_sources_one": [ - 642, + 643, { "object": [ - 649, + 650, "e_award_sources_insert_input!" ], "on_conflict": [ - 653 + 654 ] } ], "insert_e_award_tiers": [ - 672, + 673, { "objects": [ - 669, + 670, "[e_award_tiers_insert_input!]!" ], "on_conflict": [ - 673 + 674 ] } ], "insert_e_award_tiers_one": [ - 662, + 663, { "object": [ - 669, + 670, "e_award_tiers_insert_input!" ], "on_conflict": [ - 673 + 674 ] } ], "insert_e_check_in_settings": [ - 692, + 693, { "objects": [ - 689, + 690, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 693 + 694 ] } ], "insert_e_check_in_settings_one": [ - 682, + 683, { "object": [ - 689, + 690, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 693 + 694 ] } ], "insert_e_draft_game_captain_selection": [ - 712, + 713, { "objects": [ - 709, + 710, "[e_draft_game_captain_selection_insert_input!]!" ], "on_conflict": [ - 714 + 715 ] } ], "insert_e_draft_game_captain_selection_one": [ - 702, + 703, { "object": [ - 709, + 710, "e_draft_game_captain_selection_insert_input!" ], "on_conflict": [ - 714 + 715 ] } ], "insert_e_draft_game_draft_order": [ - 733, + 734, { "objects": [ - 730, + 731, "[e_draft_game_draft_order_insert_input!]!" ], "on_conflict": [ - 735 + 736 ] } ], "insert_e_draft_game_draft_order_one": [ - 723, + 724, { "object": [ - 730, + 731, "e_draft_game_draft_order_insert_input!" ], "on_conflict": [ - 735 + 736 ] } ], "insert_e_draft_game_mode": [ - 754, + 755, { "objects": [ - 751, + 752, "[e_draft_game_mode_insert_input!]!" ], "on_conflict": [ - 756 + 757 ] } ], "insert_e_draft_game_mode_one": [ - 744, + 745, { "object": [ - 751, + 752, "e_draft_game_mode_insert_input!" ], "on_conflict": [ - 756 + 757 ] } ], "insert_e_draft_game_player_status": [ - 775, + 776, { "objects": [ - 772, + 773, "[e_draft_game_player_status_insert_input!]!" ], "on_conflict": [ - 777 + 778 ] } ], "insert_e_draft_game_player_status_one": [ - 765, + 766, { "object": [ - 772, + 773, "e_draft_game_player_status_insert_input!" ], "on_conflict": [ - 777 + 778 ] } ], "insert_e_draft_game_status": [ - 796, + 797, { "objects": [ - 793, + 794, "[e_draft_game_status_insert_input!]!" ], "on_conflict": [ - 798 + 799 ] } ], "insert_e_draft_game_status_one": [ - 786, + 787, { "object": [ - 793, + 794, "e_draft_game_status_insert_input!" ], "on_conflict": [ - 798 + 799 ] } ], "insert_e_event_media_access": [ - 817, + 818, { "objects": [ - 814, + 815, "[e_event_media_access_insert_input!]!" ], "on_conflict": [ - 818 + 819 ] } ], "insert_e_event_media_access_one": [ - 807, + 808, { "object": [ - 814, + 815, "e_event_media_access_insert_input!" ], "on_conflict": [ - 818 + 819 ] } ], "insert_e_event_visibility": [ - 837, + 838, { "objects": [ - 834, + 835, "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 838 + 839 ] } ], "insert_e_event_visibility_one": [ - 827, + 828, { "object": [ - 834, + 835, "e_event_visibility_insert_input!" ], "on_conflict": [ - 838 + 839 ] } ], "insert_e_friend_status": [ - 857, + 858, { "objects": [ - 854, + 855, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 859 + 860 ] } ], "insert_e_friend_status_one": [ - 847, + 848, { "object": [ - 854, + 855, "e_friend_status_insert_input!" ], "on_conflict": [ - 859 + 860 ] } ], "insert_e_game_cfg_types": [ - 878, + 879, { "objects": [ - 875, + 876, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 879 + 880 ] } ], "insert_e_game_cfg_types_one": [ - 868, + 869, { "object": [ - 875, + 876, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 879 + 880 ] } ], "insert_e_game_plugin_channels": [ - 898, + 899, { "objects": [ - 895, + 896, "[e_game_plugin_channels_insert_input!]!" ], "on_conflict": [ - 899 + 900 ] } ], "insert_e_game_plugin_channels_one": [ - 888, + 889, { "object": [ - 895, + 896, "e_game_plugin_channels_insert_input!" ], "on_conflict": [ - 899 + 900 ] } ], "insert_e_game_plugin_install_statuses": [ - 918, + 919, { "objects": [ - 915, + 916, "[e_game_plugin_install_statuses_insert_input!]!" ], "on_conflict": [ - 919 + 920 ] } ], "insert_e_game_plugin_install_statuses_one": [ - 908, + 909, { "object": [ - 915, + 916, "e_game_plugin_install_statuses_insert_input!" ], "on_conflict": [ - 919 + 920 ] } ], "insert_e_game_plugin_kinds": [ - 938, + 939, { "objects": [ - 935, + 936, "[e_game_plugin_kinds_insert_input!]!" ], "on_conflict": [ - 939 + 940 ] } ], "insert_e_game_plugin_kinds_one": [ - 928, + 929, { "object": [ - 935, + 936, "e_game_plugin_kinds_insert_input!" ], "on_conflict": [ - 939 + 940 ] } ], "insert_e_game_server_node_statuses": [ - 958, + 959, { "objects": [ - 955, + 956, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 960 + 961 ] } ], "insert_e_game_server_node_statuses_one": [ - 948, + 949, { "object": [ - 955, + 956, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 960 + 961 ] } ], "insert_e_league_movement_types": [ - 979, + 980, { "objects": [ - 976, + 977, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 981 + 982 ] } ], "insert_e_league_movement_types_one": [ - 969, + 970, { "object": [ - 976, + 977, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 981 + 982 ] } ], "insert_e_league_proposal_statuses": [ - 1000, + 1001, { "objects": [ - 997, + 998, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 1002 + 1003 ] } ], "insert_e_league_proposal_statuses_one": [ - 990, + 991, { "object": [ - 997, + 998, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 1002 + 1003 ] } ], "insert_e_league_registration_statuses": [ - 1021, + 1022, { "objects": [ - 1018, + 1019, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 1023 + 1024 ] } ], "insert_e_league_registration_statuses_one": [ - 1011, + 1012, { "object": [ - 1018, + 1019, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 1023 + 1024 ] } ], "insert_e_league_season_statuses": [ - 1042, + 1043, { "objects": [ - 1039, + 1040, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 1044 + 1045 ] } ], "insert_e_league_season_statuses_one": [ - 1032, + 1033, { "object": [ - 1039, + 1040, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 1044 + 1045 ] } ], "insert_e_lobby_access": [ - 1063, + 1064, { "objects": [ - 1060, + 1061, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 1065 + 1066 ] } ], "insert_e_lobby_access_one": [ - 1053, + 1054, { "object": [ - 1060, + 1061, "e_lobby_access_insert_input!" ], "on_conflict": [ - 1065 + 1066 ] } ], "insert_e_lobby_player_status": [ - 1084, + 1085, { "objects": [ - 1081, + 1082, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 1085 + 1086 ] } ], "insert_e_lobby_player_status_one": [ - 1074, + 1075, { "object": [ - 1081, + 1082, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 1085 + 1086 ] } ], "insert_e_map_pool_types": [ - 1104, + 1105, { "objects": [ - 1101, + 1102, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 1106 + 1107 ] } ], "insert_e_map_pool_types_one": [ - 1094, + 1095, { "object": [ - 1101, + 1102, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 1106 + 1107 ] } ], "insert_e_match_clip_visibility": [ - 1125, + 1126, { "objects": [ - 1122, + 1123, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 1126 + 1127 ] } ], "insert_e_match_clip_visibility_one": [ - 1115, + 1116, { "object": [ - 1122, + 1123, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 1126 + 1127 ] } ], "insert_e_match_map_status": [ - 1145, + 1146, { "objects": [ - 1142, + 1143, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 1147 + 1148 ] } ], "insert_e_match_map_status_one": [ - 1135, + 1136, { "object": [ - 1142, + 1143, "e_match_map_status_insert_input!" ], "on_conflict": [ - 1147 + 1148 ] } ], "insert_e_match_mode": [ - 1166, + 1167, { "objects": [ - 1163, + 1164, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 1167 + 1168 ] } ], "insert_e_match_mode_one": [ - 1156, + 1157, { "object": [ - 1163, + 1164, "e_match_mode_insert_input!" ], "on_conflict": [ - 1167 + 1168 ] } ], "insert_e_match_party_sources": [ - 1186, + 1187, { "objects": [ - 1183, + 1184, "[e_match_party_sources_insert_input!]!" ], "on_conflict": [ - 1187 + 1188 ] } ], "insert_e_match_party_sources_one": [ - 1176, + 1177, { "object": [ - 1183, + 1184, "e_match_party_sources_insert_input!" ], "on_conflict": [ - 1187 + 1188 ] } ], "insert_e_match_status": [ - 1206, + 1207, { "objects": [ - 1203, + 1204, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 1208 + 1209 ] } ], "insert_e_match_status_one": [ - 1196, + 1197, { "object": [ - 1203, + 1204, "e_match_status_insert_input!" ], "on_conflict": [ - 1208 + 1209 ] } ], "insert_e_match_types": [ - 1227, + 1228, { "objects": [ - 1224, + 1225, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 1229 + 1230 ] } ], "insert_e_match_types_one": [ - 1217, + 1218, { "object": [ - 1224, + 1225, "e_match_types_insert_input!" ], "on_conflict": [ - 1229 + 1230 ] } ], "insert_e_notification_types": [ - 1248, + 1249, { "objects": [ - 1245, + 1246, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 1249 + 1250 ] } ], "insert_e_notification_types_one": [ - 1238, + 1239, { "object": [ - 1245, + 1246, "e_notification_types_insert_input!" ], "on_conflict": [ - 1249 + 1250 ] } ], "insert_e_objective_types": [ - 1268, + 1269, { "objects": [ - 1265, + 1266, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 1269 + 1270 ] } ], "insert_e_objective_types_one": [ - 1258, + 1259, { "object": [ - 1265, + 1266, "e_objective_types_insert_input!" ], "on_conflict": [ - 1269 + 1270 ] } ], "insert_e_player_roles": [ - 1288, + 1289, { "objects": [ - 1285, + 1286, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 1289 + 1290 ] } ], "insert_e_player_roles_one": [ - 1278, + 1279, { "object": [ - 1285, + 1286, "e_player_roles_insert_input!" ], "on_conflict": [ - 1289 + 1290 ] } ], "insert_e_plugin_runtimes": [ - 1308, + 1309, { "objects": [ - 1305, + 1306, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 1309 + 1310 ] } ], "insert_e_plugin_runtimes_one": [ - 1298, + 1299, { "object": [ - 1305, + 1306, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 1309 + 1310 ] } ], "insert_e_ready_settings": [ - 1328, + 1329, { "objects": [ - 1325, + 1326, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 1329 + 1330 ] } ], "insert_e_ready_settings_one": [ - 1318, + 1319, { "object": [ - 1325, + 1326, "e_ready_settings_insert_input!" ], "on_conflict": [ - 1329 + 1330 ] } ], "insert_e_sanction_types": [ - 1348, + 1349, { "objects": [ - 1345, + 1346, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 1350 + 1351 ] } ], "insert_e_sanction_types_one": [ - 1338, + 1339, { "object": [ - 1345, + 1346, "e_sanction_types_insert_input!" ], "on_conflict": [ - 1350 + 1351 ] } ], "insert_e_scrim_request_statuses": [ - 1369, + 1370, { "objects": [ - 1366, + 1367, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 1370 + 1371 ] } ], "insert_e_scrim_request_statuses_one": [ - 1359, + 1360, { "object": [ - 1366, + 1367, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 1370 + 1371 ] } ], "insert_e_server_types": [ - 1389, + 1390, { "objects": [ - 1386, + 1387, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1390 + 1391 ] } ], "insert_e_server_types_one": [ - 1379, + 1380, { "object": [ - 1386, + 1387, "e_server_types_insert_input!" ], "on_conflict": [ - 1390 + 1391 ] } ], "insert_e_sides": [ - 1409, + 1410, { "objects": [ - 1406, + 1407, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1410 + 1411 ] } ], "insert_e_sides_one": [ - 1399, + 1400, { "object": [ - 1406, + 1407, "e_sides_insert_input!" ], "on_conflict": [ - 1410 + 1411 ] } ], "insert_e_system_alert_types": [ - 1429, + 1430, { "objects": [ - 1426, + 1427, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1430 + 1431 ] } ], "insert_e_system_alert_types_one": [ - 1419, + 1420, { "object": [ - 1426, + 1427, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1430 + 1431 ] } ], "insert_e_team_roles": [ - 1449, + 1450, { "objects": [ - 1446, + 1447, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1451 + 1452 ] } ], "insert_e_team_roles_one": [ - 1439, + 1440, { "object": [ - 1446, + 1447, "e_team_roles_insert_input!" ], "on_conflict": [ - 1451 + 1452 ] } ], "insert_e_team_roster_statuses": [ - 1470, + 1471, { "objects": [ - 1467, + 1468, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1471 + 1472 ] } ], "insert_e_team_roster_statuses_one": [ - 1460, + 1461, { "object": [ - 1467, + 1468, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1471 + 1472 ] } ], "insert_e_timeout_settings": [ - 1490, + 1491, { "objects": [ - 1487, + 1488, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1491 + 1492 ] } ], "insert_e_timeout_settings_one": [ - 1480, + 1481, { "object": [ - 1487, + 1488, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1491 + 1492 ] } ], "insert_e_tournament_categories": [ - 1510, + 1511, { "objects": [ - 1507, + 1508, "[e_tournament_categories_insert_input!]!" ], "on_conflict": [ - 1512 + 1513 ] } ], "insert_e_tournament_categories_one": [ - 1500, + 1501, { "object": [ - 1507, + 1508, "e_tournament_categories_insert_input!" ], "on_conflict": [ - 1512 + 1513 ] } ], "insert_e_tournament_stage_types": [ - 1531, + 1532, { "objects": [ - 1528, + 1529, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1533 + 1534 ] } ], "insert_e_tournament_stage_types_one": [ - 1521, + 1522, { "object": [ - 1528, + 1529, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1533 + 1534 ] } ], "insert_e_tournament_status": [ - 1552, + 1553, { "objects": [ - 1549, + 1550, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1554 + 1555 ] } ], "insert_e_tournament_status_one": [ - 1542, + 1543, { "object": [ - 1549, + 1550, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1554 + 1555 ] } ], "insert_e_utility_practice_access": [ - 1573, + 1574, { "objects": [ - 1570, + 1571, "[e_utility_practice_access_insert_input!]!" ], "on_conflict": [ - 1574 + 1575 ] } ], "insert_e_utility_practice_access_one": [ - 1563, + 1564, { "object": [ - 1570, + 1571, "e_utility_practice_access_insert_input!" ], "on_conflict": [ - 1574 + 1575 ] } ], "insert_e_utility_practice_statuses": [ - 1593, + 1594, { "objects": [ - 1590, + 1591, "[e_utility_practice_statuses_insert_input!]!" ], "on_conflict": [ - 1595 + 1596 ] } ], "insert_e_utility_practice_statuses_one": [ - 1583, + 1584, { "object": [ - 1590, + 1591, "e_utility_practice_statuses_insert_input!" ], "on_conflict": [ - 1595 + 1596 ] } ], "insert_e_utility_sources": [ - 1614, + 1615, { "objects": [ - 1611, + 1612, "[e_utility_sources_insert_input!]!" ], "on_conflict": [ - 1615 + 1616 ] } ], "insert_e_utility_sources_one": [ - 1604, + 1605, { "object": [ - 1611, + 1612, "e_utility_sources_insert_input!" ], "on_conflict": [ - 1615 + 1616 ] } ], "insert_e_utility_techniques": [ - 1634, + 1635, { "objects": [ - 1631, + 1632, "[e_utility_techniques_insert_input!]!" ], "on_conflict": [ - 1635 + 1636 ] } ], "insert_e_utility_techniques_one": [ - 1624, + 1625, { "object": [ - 1631, + 1632, "e_utility_techniques_insert_input!" ], "on_conflict": [ - 1635 + 1636 ] } ], "insert_e_utility_throw_strengths": [ - 1654, + 1655, { "objects": [ - 1651, + 1652, "[e_utility_throw_strengths_insert_input!]!" ], "on_conflict": [ - 1655 + 1656 ] } ], "insert_e_utility_throw_strengths_one": [ - 1644, + 1645, { "object": [ - 1651, + 1652, "e_utility_throw_strengths_insert_input!" ], "on_conflict": [ - 1655 + 1656 ] } ], "insert_e_utility_types": [ - 1674, + 1675, { "objects": [ - 1671, + 1672, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1675 + 1676 ] } ], "insert_e_utility_types_one": [ - 1664, + 1665, { "object": [ - 1671, + 1672, "e_utility_types_insert_input!" ], "on_conflict": [ - 1675 + 1676 ] } ], "insert_e_utility_visibility": [ - 1694, + 1695, { "objects": [ - 1691, + 1692, "[e_utility_visibility_insert_input!]!" ], "on_conflict": [ - 1695 + 1696 ] } ], "insert_e_utility_visibility_one": [ - 1684, + 1685, { "object": [ - 1691, + 1692, "e_utility_visibility_insert_input!" ], "on_conflict": [ - 1695 + 1696 ] } ], "insert_e_veto_pick_types": [ - 1714, + 1715, { "objects": [ - 1711, + 1712, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1715 + 1716 ] } ], "insert_e_veto_pick_types_one": [ - 1704, + 1705, { "object": [ - 1711, + 1712, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1715 + 1716 ] } ], "insert_e_winning_reasons": [ - 1734, + 1735, { "objects": [ - 1731, + 1732, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1735 + 1736 ] } ], "insert_e_winning_reasons_one": [ - 1724, + 1725, { "object": [ - 1731, + 1732, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1735 + 1736 ] } ], "insert_event_match_links": [ - 1752, + 1753, { "objects": [ - 1749, + 1750, "[event_match_links_insert_input!]!" ], "on_conflict": [ - 1753 + 1754 ] } ], "insert_event_match_links_one": [ - 1744, + 1745, { "object": [ - 1749, + 1750, "event_match_links_insert_input!" ], "on_conflict": [ - 1753 + 1754 ] } ], "insert_event_media": [ - 1779, + 1780, { "objects": [ - 1774, + 1775, "[event_media_insert_input!]!" ], "on_conflict": [ - 1781 + 1782 ] } ], "insert_event_media_one": [ - 1762, + 1763, { "object": [ - 1774, + 1775, "event_media_insert_input!" ], "on_conflict": [ - 1781 + 1782 ] } ], "insert_event_media_players": [ - 1801, + 1802, { "objects": [ - 1796, + 1797, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1802 + 1803 ] } ], "insert_event_media_players_one": [ - 1784, + 1785, { "object": [ - 1796, + 1797, "event_media_players_insert_input!" ], "on_conflict": [ - 1802 + 1803 ] } ], "insert_event_organizers": [ - 1862, + 1863, { "objects": [ - 1857, + 1858, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1863 + 1864 ] } ], "insert_event_organizers_one": [ - 1845, + 1846, { "object": [ - 1857, + 1858, "event_organizers_insert_input!" ], "on_conflict": [ - 1863 + 1864 ] } ], "insert_event_players": [ - 1903, + 1904, { "objects": [ - 1898, + 1899, "[event_players_insert_input!]!" ], "on_conflict": [ - 1904 + 1905 ] } ], "insert_event_players_one": [ - 1886, + 1887, { "object": [ - 1898, + 1899, "event_players_insert_input!" ], "on_conflict": [ - 1904 + 1905 ] } ], "insert_event_teams": [ - 1941, + 1942, { "objects": [ - 1936, + 1937, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1942 + 1943 ] } ], "insert_event_teams_one": [ - 1927, + 1928, { "object": [ - 1936, + 1937, "event_teams_insert_input!" ], "on_conflict": [ - 1942 + 1943 ] } ], "insert_event_tournaments": [ - 1965, + 1966, { "objects": [ - 1960, + 1961, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1966 + 1967 ] } ], "insert_event_tournaments_one": [ - 1951, + 1952, { "object": [ - 1960, + 1961, "event_tournaments_insert_input!" ], "on_conflict": [ - 1966 + 1967 ] } ], "insert_events": [ - 1985, + 1986, { "objects": [ - 1982, + 1983, "[events_insert_input!]!" ], "on_conflict": [ - 1987 + 1988 ] } ], "insert_events_one": [ - 1975, + 1976, { "object": [ - 1982, + 1983, "events_insert_input!" ], "on_conflict": [ - 1987 + 1988 ] } ], "insert_friends": [ - 2015, + 2016, { "objects": [ - 2012, + 2013, "[friends_insert_input!]!" ], "on_conflict": [ - 2016 + 2017 ] } ], "insert_friends_one": [ - 2005, + 2006, { "object": [ - 2012, + 2013, "friends_insert_input!" ], "on_conflict": [ - 2016 + 2017 ] } ], "insert_game_mode_plugins": [ - 2055, + 2056, { "objects": [ - 2050, + 2051, "[game_mode_plugins_insert_input!]!" ], "on_conflict": [ - 2056 + 2057 ] } ], "insert_game_mode_plugins_one": [ - 2032, + 2033, { "object": [ - 2050, + 2051, "game_mode_plugins_insert_input!" ], "on_conflict": [ - 2056 + 2057 ] } ], "insert_game_modes": [ - 2090, + 2091, { "objects": [ - 2087, + 2088, "[game_modes_insert_input!]!" ], "on_conflict": [ - 2092 + 2093 ] } ], "insert_game_modes_one": [ - 2082, + 2083, { "object": [ - 2087, + 2088, "game_modes_insert_input!" ], "on_conflict": [ - 2092 + 2093 ] } ], "insert_game_plugin_installs": [ - 2109, + 2110, { "objects": [ - 2106, + 2107, "[game_plugin_installs_insert_input!]!" ], "on_conflict": [ - 2110 + 2111 ] } ], "insert_game_plugin_installs_one": [ - 2101, + 2102, { "object": [ - 2106, + 2107, "game_plugin_installs_insert_input!" ], "on_conflict": [ - 2110 + 2111 ] } ], "insert_game_plugin_versions": [ - 2138, + 2139, { "objects": [ - 2133, + 2134, "[game_plugin_versions_insert_input!]!" ], "on_conflict": [ - 2139 + 2140 ] } ], "insert_game_plugin_versions_one": [ - 2119, + 2120, { "object": [ - 2133, + 2134, "game_plugin_versions_insert_input!" ], "on_conflict": [ - 2139 + 2140 ] } ], "insert_game_plugins": [ - 2177, + 2178, { "objects": [ - 2174, + 2175, "[game_plugins_insert_input!]!" ], "on_conflict": [ - 2179 + 2180 ] } ], "insert_game_plugins_one": [ - 2164, + 2165, { "object": [ - 2174, + 2175, "game_plugins_insert_input!" ], "on_conflict": [ - 2179 + 2180 ] } ], "insert_game_server_node_plugins": [ - 2212, + 2213, { "objects": [ - 2207, + 2208, "[game_server_node_plugins_insert_input!]!" ], "on_conflict": [ - 2213 + 2214 ] } ], "insert_game_server_node_plugins_one": [ - 2196, + 2197, { "object": [ - 2207, + 2208, "game_server_node_plugins_insert_input!" ], "on_conflict": [ - 2213 + 2214 ] } ], "insert_game_server_nodes": [ - 2247, + 2248, { "objects": [ - 2242, + 2243, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 2249 + 2250 ] } ], "insert_game_server_nodes_one": [ - 2224, + 2225, { "object": [ - 2242, + 2243, "game_server_nodes_insert_input!" ], "on_conflict": [ - 2249 + 2250 ] } ], "insert_game_versions": [ - 2289, + 2290, { "objects": [ - 2286, + 2287, "[game_versions_insert_input!]!" ], "on_conflict": [ - 2291 + 2292 ] } ], "insert_game_versions_one": [ - 2275, + 2276, { "object": [ - 2286, + 2287, "game_versions_insert_input!" ], "on_conflict": [ - 2291 + 2292 ] } ], "insert_gamedata_signature_validations": [ - 2322, + 2323, { "objects": [ - 2319, + 2320, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 2323 + 2324 ] } ], "insert_gamedata_signature_validations_one": [ - 2308, + 2309, { "object": [ - 2319, + 2320, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 2323 + 2324 ] } ], "insert_leaderboard_entries": [ - 2360, + 2361, { "objects": [ - 2357, + 2358, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 2351, + 2352, { "object": [ - 2357, + 2358, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 2385, + 2386, { "objects": [ - 2382, + 2383, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 2387 + 2388 ] } ], "insert_league_divisions_one": [ - 2375, + 2376, { "object": [ - 2382, + 2383, "league_divisions_insert_input!" ], "on_conflict": [ - 2387 + 2388 ] } ], "insert_league_match_weeks": [ - 2420, + 2421, { "objects": [ - 2415, + 2416, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 2421 + 2422 ] } ], "insert_league_match_weeks_one": [ - 2403, + 2404, { "object": [ - 2415, + 2416, "league_match_weeks_insert_input!" ], "on_conflict": [ - 2421 + 2422 ] } ], "insert_league_relegation_playoffs": [ - 2461, + 2462, { "objects": [ - 2456, + 2457, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 2462 + 2463 ] } ], "insert_league_relegation_playoffs_one": [ - 2444, + 2445, { "object": [ - 2456, + 2457, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 2462 + 2463 ] } ], "insert_league_scheduling_proposals": [ - 2502, + 2503, { "objects": [ - 2497, + 2498, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 2503 + 2504 ] } ], "insert_league_scheduling_proposals_one": [ - 2485, + 2486, { "object": [ - 2497, + 2498, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 2503 + 2504 ] } ], "insert_league_season_divisions": [ - 2540, + 2541, { "objects": [ - 2535, + 2536, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 2542 + 2543 ] } ], "insert_league_season_divisions_one": [ - 2526, + 2527, { "object": [ - 2535, + 2536, "league_season_divisions_insert_input!" ], "on_conflict": [ - 2542 + 2543 ] } ], "insert_league_seasons": [ - 2565, + 2566, { "objects": [ - 2562, + 2563, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 2567 + 2568 ] } ], "insert_league_seasons_one": [ - 2551, + 2552, { "object": [ - 2562, + 2563, "league_seasons_insert_input!" ], "on_conflict": [ - 2567 + 2568 ] } ], "insert_league_team_movements": [ - 2601, + 2602, { "objects": [ - 2596, + 2597, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 2602 + 2603 ] } ], "insert_league_team_movements_one": [ - 2584, + 2585, { "object": [ - 2596, + 2597, "league_team_movements_insert_input!" ], "on_conflict": [ - 2602 + 2603 ] } ], "insert_league_team_rosters": [ - 2642, + 2643, { "objects": [ - 2637, + 2638, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 2643 + 2644 ] } ], "insert_league_team_rosters_one": [ - 2625, + 2626, { "object": [ - 2637, + 2638, "league_team_rosters_insert_input!" ], "on_conflict": [ - 2643 + 2644 ] } ], "insert_league_team_seasons": [ - 2683, + 2684, { "objects": [ - 2678, + 2679, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 2685 + 2686 ] } ], "insert_league_team_seasons_one": [ - 2666, + 2667, { "object": [ - 2678, + 2679, "league_team_seasons_insert_input!" ], "on_conflict": [ - 2685 + 2686 ] } ], "insert_league_teams": [ - 2716, + 2717, { "objects": [ - 2713, + 2714, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2718 + 2719 ] } ], "insert_league_teams_one": [ - 2708, + 2709, { "object": [ - 2713, + 2714, "league_teams_insert_input!" ], "on_conflict": [ - 2718 + 2719 ] } ], "insert_lobbies": [ - 2735, + 2736, { "objects": [ - 2732, + 2733, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2737 + 2738 ] } ], "insert_lobbies_one": [ - 2727, + 2728, { "object": [ - 2732, + 2733, "lobbies_insert_input!" ], "on_conflict": [ - 2737 + 2738 ] } ], "insert_lobby_players": [ - 2765, + 2766, { "objects": [ - 2760, + 2761, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2766 + 2767 ] } ], "insert_lobby_players_one": [ - 2746, + 2747, { "object": [ - 2760, + 2761, "lobby_players_insert_input!" ], "on_conflict": [ - 2766 + 2767 + ] + } + ], + "insert_map_callouts": [ + 2804, + { + "objects": [ + 2801, + "[map_callouts_insert_input!]!" + ], + "on_conflict": [ + 2805 + ] + } + ], + "insert_map_callouts_one": [ + 2792, + { + "object": [ + 2801, + "map_callouts_insert_input!" + ], + "on_conflict": [ + 2805 ] } ], "insert_map_pools": [ - 2799, + 2823, { "objects": [ - 2796, + 2820, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2801 + 2825 ] } ], "insert_map_pools_one": [ - 2791, + 2815, { "object": [ - 2796, + 2820, "map_pools_insert_input!" ], "on_conflict": [ - 2801 + 2825 ] } ], "insert_maps": [ - 2826, + 2850, { "objects": [ - 2821, + 2845, "[maps_insert_input!]!" ], "on_conflict": [ - 2828 + 2852 ] } ], "insert_maps_one": [ - 2810, + 2834, { "object": [ - 2821, + 2845, "maps_insert_input!" ], "on_conflict": [ - 2828 + 2852 ] } ], "insert_match_clips": [ - 2856, + 2880, { "objects": [ - 2851, + 2875, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2858 + 2882 ] } ], "insert_match_clips_one": [ - 2839, + 2863, { "object": [ - 2851, + 2875, "match_clips_insert_input!" ], "on_conflict": [ - 2858 + 2882 ] } ], "insert_match_demo_sessions": [ - 2902, + 2926, { "objects": [ - 2897, + 2921, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2903 + 2927 ] } ], "insert_match_demo_sessions_one": [ - 2881, + 2905, { "object": [ - 2897, + 2921, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2903 + 2927 ] } ], "insert_match_lineup_players": [ - 2946, + 2970, { "objects": [ - 2941, + 2965, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2947 + 2971 ] } ], "insert_match_lineup_players_one": [ - 2927, + 2951, { "object": [ - 2941, + 2965, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2947 + 2971 ] } ], "insert_match_lineups": [ - 2989, + 3013, { "objects": [ - 2984, + 3008, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2991 + 3015 ] } ], "insert_match_lineups_one": [ - 2972, + 2996, { "object": [ - 2984, + 3008, "match_lineups_insert_input!" ], "on_conflict": [ - 2991 + 3015 ] } ], "insert_match_map_demos": [ - 3037, + 3061, { "objects": [ - 3032, + 3056, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 3039 + 3063 ] } ], "insert_match_map_demos_one": [ - 3014, + 3038, { "object": [ - 3032, + 3056, "match_map_demos_insert_input!" ], "on_conflict": [ - 3039 + 3063 ] } ], "insert_match_map_rounds": [ - 3082, + 3106, { "objects": [ - 3077, + 3101, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 3083 + 3107 ] } ], "insert_match_map_rounds_one": [ - 3065, + 3089, { "object": [ - 3077, + 3101, "match_map_rounds_insert_input!" ], "on_conflict": [ - 3083 + 3107 ] } ], "insert_match_map_veto_picks": [ - 3122, + 3146, { "objects": [ - 3117, + 3141, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 3123 + 3147 ] } ], "insert_match_map_veto_picks_one": [ - 3106, + 3130, { "object": [ - 3117, + 3141, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 3123 + 3147 ] } ], "insert_match_maps": [ - 3151, + 3175, { "objects": [ - 3146, + 3170, "[match_maps_insert_input!]!" ], "on_conflict": [ - 3153 + 3177 ] } ], "insert_match_maps_one": [ - 3134, + 3158, { "object": [ - 3146, + 3170, "match_maps_insert_input!" ], "on_conflict": [ - 3153 + 3177 ] } ], "insert_match_options": [ - 3195, + 3219, { "objects": [ - 3190, + 3214, "[match_options_insert_input!]!" ], "on_conflict": [ - 3197 + 3221 ] } ], "insert_match_options_one": [ - 3176, + 3200, { "object": [ - 3190, + 3214, "match_options_insert_input!" ], "on_conflict": [ - 3197 + 3221 ] } ], "insert_match_region_veto_picks": [ - 3238, + 3262, { "objects": [ - 3233, + 3257, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 3239 + 3263 ] } ], "insert_match_region_veto_picks_one": [ - 3222, + 3246, { "object": [ - 3233, + 3257, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 3239 + 3263 ] } ], "insert_match_streams": [ - 3273, + 3297, { "objects": [ - 3268, + 3292, "[match_streams_insert_input!]!" ], "on_conflict": [ - 3274 + 3298 ] } ], "insert_match_streams_one": [ - 3250, + 3274, { "object": [ - 3268, + 3292, "match_streams_insert_input!" ], "on_conflict": [ - 3274 + 3298 ] } ], "insert_match_type_cfgs": [ - 3308, + 3332, { "objects": [ - 3305, + 3329, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 3309 + 3333 ] } ], "insert_match_type_cfgs_one": [ - 3300, + 3324, { "object": [ - 3305, + 3329, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 3309 + 3333 ] } ], "insert_matches": [ - 3337, + 3361, { "objects": [ - 3332, + 3356, "[matches_insert_input!]!" ], "on_conflict": [ - 3339 + 3363 ] } ], "insert_matches_one": [ - 3318, + 3342, { "object": [ - 3332, + 3356, "matches_insert_input!" ], "on_conflict": [ - 3339 + 3363 ] } ], "insert_migration_hashes_hashes": [ - 3372, + 3396, { "objects": [ - 3369, + 3393, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 3373 + 3397 ] } ], "insert_migration_hashes_hashes_one": [ - 3364, + 3388, { "object": [ - 3369, + 3393, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 3373 + 3397 ] } ], "insert_my_friends": [ - 3404, + 3428, { "objects": [ - 3399, + 3423, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 3382, + 3406, { "object": [ - 3399, + 3423, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 3438, + 3462, { "objects": [ - 3435, + 3459, "[news_articles_insert_input!]!" ], "on_conflict": [ - 3439 + 3463 ] } ], "insert_news_articles_one": [ - 3428, + 3452, { "object": [ - 3435, + 3459, "news_articles_insert_input!" ], "on_conflict": [ - 3439 + 3463 ] } ], "insert_notification_preferences": [ - 3465, + 3489, { "objects": [ - 3462, + 3486, "[notification_preferences_insert_input!]!" ], "on_conflict": [ - 3466 + 3490 ] } ], "insert_notification_preferences_one": [ - 3455, + 3479, { "object": [ - 3462, + 3486, "notification_preferences_insert_input!" ], "on_conflict": [ - 3466 + 3490 ] } ], "insert_notifications": [ - 3505, + 3529, { "objects": [ - 3500, + 3524, "[notifications_insert_input!]!" ], "on_conflict": [ - 3506 + 3530 ] } ], "insert_notifications_one": [ - 3482, + 3506, { "object": [ - 3500, + 3524, "notifications_insert_input!" ], "on_conflict": [ - 3506 + 3530 ] } ], "insert_pending_match_import_players": [ - 3552, + 3576, { "objects": [ - 3547, + 3571, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 3553 + 3577 ] } ], "insert_pending_match_import_players_one": [ - 3535, + 3559, { "object": [ - 3547, + 3571, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 3553 + 3577 ] } ], "insert_pending_match_imports": [ - 3586, + 3610, { "objects": [ - 3583, + 3607, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 3588 + 3612 ] } ], "insert_pending_match_imports_one": [ - 3576, + 3600, { "object": [ - 3583, + 3607, "pending_match_imports_insert_input!" ], "on_conflict": [ - 3588 + 3612 ] } ], "insert_player_aim_stats_demo": [ - 3614, + 3638, { "objects": [ - 3611, + 3635, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 3615 + 3639 ] } ], "insert_player_aim_stats_demo_one": [ - 3604, + 3628, { "object": [ - 3611, + 3635, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 3615 + 3639 ] } ], "insert_player_aim_weapon_stats": [ - 3648, + 3672, { "objects": [ - 3643, + 3667, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 3649 + 3673 ] } ], "insert_player_aim_weapon_stats_one": [ - 3631, + 3655, { "object": [ - 3643, + 3667, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 3649 + 3673 ] } ], "insert_player_assists": [ - 3691, + 3715, { "objects": [ - 3686, + 3710, "[player_assists_insert_input!]!" ], "on_conflict": [ - 3692 + 3716 ] } ], "insert_player_assists_one": [ - 3672, + 3696, { "object": [ - 3686, + 3710, "player_assists_insert_input!" ], "on_conflict": [ - 3692 + 3716 ] } ], "insert_player_damages": [ - 3752, + 3776, { "objects": [ - 3747, + 3771, "[player_damages_insert_input!]!" ], "on_conflict": [ - 3753 + 3777 ] } ], "insert_player_damages_one": [ - 3735, + 3759, { "object": [ - 3747, + 3771, "player_damages_insert_input!" ], "on_conflict": [ - 3753 + 3777 ] } ], "insert_player_elo": [ - 3786, + 3810, { "objects": [ - 3783, + 3807, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3787 + 3811 ] } ], "insert_player_elo_one": [ - 3776, + 3800, { "object": [ - 3783, + 3807, "player_elo_insert_input!" ], "on_conflict": [ - 3787 + 3811 ] } ], "insert_player_faceit_rank_history": [ - 3820, + 3844, { "objects": [ - 3815, + 3839, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3821 + 3845 ] } ], "insert_player_faceit_rank_history_one": [ - 3803, + 3827, { "object": [ - 3815, + 3839, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3821 + 3845 ] } ], "insert_player_flashes": [ - 3863, + 3887, { "objects": [ - 3858, + 3882, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3864 + 3888 ] } ], "insert_player_flashes_one": [ - 3844, + 3868, { "object": [ - 3858, + 3882, "player_flashes_insert_input!" ], "on_conflict": [ - 3864 + 3888 ] } ], "insert_player_kills": [ - 3949, + 3973, { "objects": [ - 3944, + 3968, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3950 + 3974 ] } ], "insert_player_kills_by_weapon": [ - 3918, + 3942, { "objects": [ - 3913, + 3937, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3919 + 3943 ] } ], "insert_player_kills_by_weapon_one": [ - 3901, + 3925, { "object": [ - 3913, + 3937, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3919 + 3943 ] } ], "insert_player_kills_one": [ - 3889, + 3913, { "object": [ - 3944, + 3968, "player_kills_insert_input!" ], "on_conflict": [ - 3950 + 3974 ] } ], "insert_player_leaderboard_rank": [ - 3984, + 4008, { "objects": [ - 3981, + 4005, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3975, + 3999, { "object": [ - 3981, + 4005, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 4015, + 4039, { "objects": [ - 4010, + 4034, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 4016 + 4040 ] } ], "insert_player_match_map_stats_one": [ - 3998, + 4022, { "object": [ - 4010, + 4034, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 4016 + 4040 ] } ], "insert_player_objectives": [ - 4107, + 4131, { "objects": [ - 4102, + 4126, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 4108 + 4132 ] } ], "insert_player_objectives_one": [ - 4090, + 4114, { "object": [ - 4102, + 4126, "player_objectives_insert_input!" ], "on_conflict": [ - 4108 + 4132 ] } ], "insert_player_premier_rank_history": [ - 4166, + 4190, { "objects": [ - 4161, + 4185, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 4167 + 4191 ] } ], "insert_player_premier_rank_history_one": [ - 4149, + 4173, { "object": [ - 4161, + 4185, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 4167 + 4191 ] } ], "insert_player_sanctions": [ - 4207, + 4231, { "objects": [ - 4202, + 4226, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 4208 + 4232 ] } ], "insert_player_sanctions_one": [ - 4190, + 4214, { "object": [ - 4202, + 4226, "player_sanctions_insert_input!" ], "on_conflict": [ - 4208 + 4232 ] } ], "insert_player_season_stats": [ - 4258, + 4282, { "objects": [ - 4253, + 4277, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 4259 + 4283 ] } ], "insert_player_season_stats_one": [ - 4231, + 4255, { "object": [ - 4253, + 4277, "player_season_stats_insert_input!" ], "on_conflict": [ - 4259 + 4283 ] } ], "insert_player_stats": [ - 4300, + 4324, { "objects": [ - 4297, + 4321, "[player_stats_insert_input!]!" ], "on_conflict": [ - 4302 + 4326 ] } ], "insert_player_stats_one": [ - 4290, + 4314, { "object": [ - 4297, + 4321, "player_stats_insert_input!" ], "on_conflict": [ - 4302 + 4326 ] } ], "insert_player_steam_bot_friend": [ - 4332, + 4356, { "objects": [ - 4329, + 4353, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 4333 + 4357 ] } ], "insert_player_steam_bot_friend_one": [ - 4318, + 4342, { "object": [ - 4329, + 4353, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 4333 + 4357 ] } ], "insert_player_steam_match_auth": [ - 4360, + 4384, { "objects": [ - 4357, + 4381, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 4361 + 4385 ] } ], "insert_player_steam_match_auth_one": [ - 4350, + 4374, { "object": [ - 4357, + 4381, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 4361 + 4385 ] } ], "insert_player_unused_utility": [ - 4394, + 4418, { "objects": [ - 4389, + 4413, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 4395 + 4419 ] } ], "insert_player_unused_utility_one": [ - 4377, + 4401, { "object": [ - 4389, + 4413, "player_unused_utility_insert_input!" ], "on_conflict": [ - 4395 + 4419 ] } ], "insert_player_utility": [ - 4435, + 4459, { "objects": [ - 4430, + 4454, "[player_utility_insert_input!]!" ], "on_conflict": [ - 4436 + 4460 ] } ], "insert_player_utility_one": [ - 4418, + 4442, { "object": [ - 4430, + 4454, "player_utility_insert_input!" ], "on_conflict": [ - 4436 + 4460 ] } ], "insert_players": [ - 4502, + 4526, { "objects": [ - 4499, + 4523, "[players_insert_input!]!" ], "on_conflict": [ - 4504 + 4528 ] } ], "insert_players_one": [ - 4492, + 4516, { "object": [ - 4499, + 4523, "players_insert_input!" ], "on_conflict": [ - 4504 + 4528 ] } ], "insert_plugin_versions": [ - 4530, + 4554, { "objects": [ - 4527, + 4551, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 4531 + 4555 ] } ], "insert_plugin_versions_one": [ - 4520, + 4544, { "object": [ - 4527, + 4551, "plugin_versions_insert_input!" ], "on_conflict": [ - 4531 + 4555 ] } ], "insert_push_subscriptions": [ - 4557, + 4581, { "objects": [ - 4554, + 4578, "[push_subscriptions_insert_input!]!" ], "on_conflict": [ - 4558 + 4582 ] } ], "insert_push_subscriptions_one": [ - 4547, + 4571, { "object": [ - 4554, + 4578, "push_subscriptions_insert_input!" ], "on_conflict": [ - 4558 + 4582 ] } ], "insert_role_permissions": [ - 4585, + 4609, { "objects": [ - 4582, + 4606, "[role_permissions_insert_input!]!" ] } ], "insert_role_permissions_one": [ - 4578, + 4602, { "object": [ - 4582, + 4606, "role_permissions_insert_input!" ] } ], "insert_seasons": [ - 4602, + 4626, { "objects": [ - 4599, + 4623, "[seasons_insert_input!]!" ], "on_conflict": [ - 4604 + 4628 ] } ], "insert_seasons_one": [ - 4592, + 4616, { "object": [ - 4599, + 4623, "seasons_insert_input!" ], "on_conflict": [ - 4604 + 4628 ] } ], "insert_server_regions": [ - 4629, + 4653, { "objects": [ - 4626, + 4650, "[server_regions_insert_input!]!" ], "on_conflict": [ - 4631 + 4655 ] } ], "insert_server_regions_one": [ - 4620, + 4644, { "object": [ - 4626, + 4650, "server_regions_insert_input!" ], "on_conflict": [ - 4631 + 4655 ] } ], "insert_servers": [ - 4670, + 4694, { "objects": [ - 4665, + 4689, "[servers_insert_input!]!" ], "on_conflict": [ - 4672 + 4696 ] } ], "insert_servers_one": [ - 4647, + 4671, { "object": [ - 4665, + 4689, "servers_insert_input!" ], "on_conflict": [ - 4672 + 4696 ] } ], "insert_settings": [ - 4706, + 4730, { "objects": [ - 4703, + 4727, "[settings_insert_input!]!" ], "on_conflict": [ - 4707 + 4731 ] } ], "insert_settings_one": [ - 4698, + 4722, { "object": [ - 4703, + 4727, "settings_insert_input!" ], "on_conflict": [ - 4707 + 4731 ] } ], "insert_steam_account_claims": [ - 4732, + 4756, { "objects": [ - 4727, + 4751, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 4733 + 4757 ] } ], "insert_steam_account_claims_one": [ - 4718, + 4742, { "object": [ - 4727, + 4751, "steam_account_claims_insert_input!" ], "on_conflict": [ - 4733 + 4757 ] } ], "insert_steam_accounts": [ - 4752, + 4776, { "objects": [ - 4749, + 4773, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 4754 + 4778 ] } ], "insert_steam_accounts_one": [ - 4742, + 4766, { "object": [ - 4749, + 4773, "steam_accounts_insert_input!" ], "on_conflict": [ - 4754 + 4778 ] } ], "insert_system_alerts": [ - 4780, + 4804, { "objects": [ - 4777, + 4801, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 4781 + 4805 ] } ], "insert_system_alerts_one": [ - 4770, + 4794, { "object": [ - 4777, + 4801, "system_alerts_insert_input!" ], "on_conflict": [ - 4781 + 4805 ] } ], "insert_team_invites": [ - 4814, + 4838, { "objects": [ - 4809, + 4833, "[team_invites_insert_input!]!" ], "on_conflict": [ - 4815 + 4839 ] } ], "insert_team_invites_one": [ - 4797, + 4821, { "object": [ - 4809, + 4833, "team_invites_insert_input!" ], "on_conflict": [ - 4815 + 4839 ] } ], "insert_team_roster": [ - 4857, + 4881, { "objects": [ - 4852, + 4876, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4858 + 4882 ] } ], "insert_team_roster_one": [ - 4838, + 4862, { "object": [ - 4852, + 4876, "team_roster_insert_input!" ], "on_conflict": [ - 4858 + 4882 ] } ], "insert_team_scrim_alerts": [ - 4893, + 4917, { "objects": [ - 4890, + 4914, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4894 + 4918 ] } ], "insert_team_scrim_alerts_one": [ - 4883, + 4907, { "object": [ - 4890, + 4914, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4894 + 4918 ] } ], "insert_team_scrim_availability": [ - 4926, + 4950, { "objects": [ - 4921, + 4945, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4927 + 4951 ] } ], "insert_team_scrim_availability_one": [ - 4910, + 4934, { "object": [ - 4921, + 4945, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4927 + 4951 ] } ], "insert_team_scrim_request_proposals": [ - 4955, + 4979, { "objects": [ - 4950, + 4974, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4956 + 4980 ] } ], "insert_team_scrim_request_proposals_one": [ - 4938, + 4962, { "object": [ - 4950, + 4974, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4956 + 4980 ] } ], "insert_team_scrim_requests": [ - 4998, + 5022, { "objects": [ - 4993, + 5017, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 5000 + 5024 ] } ], "insert_team_scrim_requests_one": [ - 4979, + 5003, { "object": [ - 4993, + 5017, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 5000 + 5024 ] } ], "insert_team_scrim_settings": [ - 5035, + 5059, { "objects": [ - 5032, + 5056, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 5037 + 5061 ] } ], "insert_team_scrim_settings_one": [ - 5025, + 5049, { "object": [ - 5032, + 5056, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 5037 + 5061 ] } ], "insert_team_suggestions": [ - 5063, + 5087, { "objects": [ - 5060, + 5084, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 5064 + 5088 ] } ], "insert_team_suggestions_one": [ - 5053, + 5077, { "object": [ - 5060, + 5084, "team_suggestions_insert_input!" ], "on_conflict": [ - 5064 + 5088 ] } ], "insert_teams": [ - 5099, + 5123, { "objects": [ - 5094, + 5118, "[teams_insert_input!]!" ], "on_conflict": [ - 5101 + 5125 ] } ], "insert_teams_one": [ - 5080, + 5104, { "object": [ - 5094, + 5118, "teams_insert_input!" ], "on_conflict": [ - 5101 + 5125 ] } ], "insert_tournament_awards": [ - 5148, + 5172, { "objects": [ - 5143, + 5167, "[tournament_awards_insert_input!]!" ], "on_conflict": [ - 5150 + 5174 ] } ], "insert_tournament_awards_one": [ - 5131, + 5155, { "object": [ - 5143, + 5167, "tournament_awards_insert_input!" ], "on_conflict": [ - 5150 + 5174 ] } ], "insert_tournament_brackets": [ - 5192, + 5216, { "objects": [ - 5187, + 5211, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 5194 + 5218 ] } ], "insert_tournament_brackets_one": [ - 5173, + 5197, { "object": [ - 5187, + 5211, "tournament_brackets_insert_input!" ], "on_conflict": [ - 5194 + 5218 ] } ], "insert_tournament_categories": [ - 5233, + 5257, { "objects": [ - 5228, + 5252, "[tournament_categories_insert_input!]!" ], "on_conflict": [ - 5234 + 5258 ] } ], "insert_tournament_categories_one": [ - 5219, + 5243, { "object": [ - 5228, + 5252, "tournament_categories_insert_input!" ], "on_conflict": [ - 5234 + 5258 ] } ], "insert_tournament_organizer_teams": [ - 5257, + 5281, { "objects": [ - 5252, + 5276, "[tournament_organizer_teams_insert_input!]!" ], "on_conflict": [ - 5258 + 5282 ] } ], "insert_tournament_organizer_teams_one": [ - 5243, + 5267, { "object": [ - 5252, + 5276, "tournament_organizer_teams_insert_input!" ], "on_conflict": [ - 5258 + 5282 ] } ], "insert_tournament_organizers": [ - 5284, + 5308, { "objects": [ - 5279, + 5303, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 5285 + 5309 ] } ], "insert_tournament_organizers_one": [ - 5267, + 5291, { "object": [ - 5279, + 5303, "tournament_organizers_insert_input!" ], "on_conflict": [ - 5285 + 5309 ] } ], "insert_tournament_prizes": [ - 5325, + 5349, { "objects": [ - 5320, + 5344, "[tournament_prizes_insert_input!]!" ], "on_conflict": [ - 5326 + 5350 ] } ], "insert_tournament_prizes_one": [ - 5308, + 5332, { "object": [ - 5320, + 5344, "tournament_prizes_insert_input!" ], "on_conflict": [ - 5326 + 5350 ] } ], "insert_tournament_stage_windows": [ - 5366, + 5390, { "objects": [ - 5361, + 5385, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 5367 + 5391 ] } ], "insert_tournament_stage_windows_one": [ - 5349, + 5373, { "object": [ - 5361, + 5385, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 5367 + 5391 ] } ], "insert_tournament_stages": [ - 5413, + 5437, { "objects": [ - 5408, + 5432, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 5415 + 5439 ] } ], "insert_tournament_stages_one": [ - 5390, + 5414, { "object": [ - 5408, + 5432, "tournament_stages_insert_input!" ], "on_conflict": [ - 5415 + 5439 ] } ], "insert_tournament_team_invites": [ - 5458, + 5482, { "objects": [ - 5453, + 5477, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 5459 + 5483 ] } ], "insert_tournament_team_invites_one": [ - 5441, + 5465, { "object": [ - 5453, + 5477, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 5459 + 5483 ] } ], "insert_tournament_team_roster": [ - 5499, + 5523, { "objects": [ - 5494, + 5518, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 5500 + 5524 ] } ], "insert_tournament_team_roster_one": [ - 5482, + 5506, { "object": [ - 5494, + 5518, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 5500 + 5524 ] } ], "insert_tournament_teams": [ - 5540, + 5564, { "objects": [ - 5535, + 5559, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 5542 + 5566 ] } ], "insert_tournament_teams_one": [ - 5523, + 5547, { "object": [ - 5535, + 5559, "tournament_teams_insert_input!" ], "on_conflict": [ - 5542 + 5566 ] } ], "insert_tournaments": [ - 5594, + 5618, { "objects": [ - 5589, + 5613, "[tournaments_insert_input!]!" ], "on_conflict": [ - 5596 + 5620 ] } ], "insert_tournaments_one": [ - 5565, + 5589, { "object": [ - 5589, + 5613, "tournaments_insert_input!" ], "on_conflict": [ - 5596 + 5620 ] } ], "insert_utility_collection_items": [ - 5646, + 5670, { "objects": [ - 5641, + 5665, "[utility_collection_items_insert_input!]!" ], "on_conflict": [ - 5647 + 5671 ] } ], "insert_utility_collection_items_one": [ - 5629, + 5653, { "object": [ - 5641, + 5665, "utility_collection_items_insert_input!" ], "on_conflict": [ - 5647 + 5671 ] } ], "insert_utility_collections": [ - 5680, + 5704, { "objects": [ - 5677, + 5701, "[utility_collections_insert_input!]!" ], "on_conflict": [ - 5682 + 5706 ] } ], "insert_utility_collections_one": [ - 5670, + 5694, { "object": [ - 5677, + 5701, "utility_collections_insert_input!" ], "on_conflict": [ - 5682 + 5706 ] } ], "insert_utility_demo_mines": [ - 5708, + 5732, { "objects": [ - 5705, + 5729, "[utility_demo_mines_insert_input!]!" ], "on_conflict": [ - 5709 + 5733 ] } ], "insert_utility_demo_mines_one": [ - 5698, + 5722, { "object": [ - 5705, + 5729, "utility_demo_mines_insert_input!" ], "on_conflict": [ - 5709 + 5733 ] } ], "insert_utility_demo_throws": [ - 5735, + 5759, { "objects": [ - 5732, + 5756, "[utility_demo_throws_insert_input!]!" ], "on_conflict": [ - 5736 + 5760 ] } ], "insert_utility_demo_throws_one": [ - 5725, + 5749, { "object": [ - 5732, + 5756, "utility_demo_throws_insert_input!" ], "on_conflict": [ - 5736 + 5760 ] } ], "insert_utility_drift_results": [ - 5779, + 5803, { "objects": [ - 5774, + 5798, "[utility_drift_results_insert_input!]!" ], "on_conflict": [ - 5780 + 5804 ] } ], "insert_utility_drift_results_one": [ - 5752, + 5776, { "object": [ - 5774, + 5798, "utility_drift_results_insert_input!" ], "on_conflict": [ - 5780 + 5804 ] } ], "insert_utility_drift_scans": [ - 5821, + 5845, { "objects": [ - 5818, + 5842, "[utility_drift_scans_insert_input!]!" ], "on_conflict": [ - 5823 + 5847 ] } ], "insert_utility_drift_scans_one": [ - 5811, + 5835, { "object": [ - 5818, + 5842, "utility_drift_scans_insert_input!" ], "on_conflict": [ - 5823 + 5847 ] } ], "insert_utility_lineup_favorites": [ - 5856, + 5880, { "objects": [ - 5851, + 5875, "[utility_lineup_favorites_insert_input!]!" ], "on_conflict": [ - 5857 + 5881 ] } ], "insert_utility_lineup_favorites_one": [ - 5839, + 5863, { "object": [ - 5851, + 5875, "utility_lineup_favorites_insert_input!" ], "on_conflict": [ - 5857 + 5881 ] } ], "insert_utility_lineup_progress": [ - 5907, + 5931, { "objects": [ - 5902, + 5926, "[utility_lineup_progress_insert_input!]!" ], "on_conflict": [ - 5908 + 5932 ] } ], "insert_utility_lineup_progress_one": [ - 5880, + 5904, { "object": [ - 5902, + 5926, "utility_lineup_progress_insert_input!" ], "on_conflict": [ - 5908 + 5932 ] } ], "insert_utility_lineup_renders": [ - 5962, + 5986, { "objects": [ - 5957, + 5981, "[utility_lineup_renders_insert_input!]!" ], "on_conflict": [ - 5963 + 5987 ] } ], "insert_utility_lineup_renders_one": [ - 5939, + 5963, { "object": [ - 5957, + 5981, "utility_lineup_renders_insert_input!" ], "on_conflict": [ - 5963 + 5987 ] } ], "insert_utility_lineup_repairs": [ - 6016, + 6040, { "objects": [ - 6011, + 6035, "[utility_lineup_repairs_insert_input!]!" ], "on_conflict": [ - 6017 + 6041 ] } ], "insert_utility_lineup_repairs_one": [ - 5989, + 6013, { "object": [ - 6011, + 6035, "utility_lineup_repairs_insert_input!" ], "on_conflict": [ - 6017 + 6041 ] } ], "insert_utility_lineup_votes": [ - 6065, + 6089, { "objects": [ - 6060, + 6084, "[utility_lineup_votes_insert_input!]!" ], "on_conflict": [ - 6066 + 6090 ] } ], "insert_utility_lineup_votes_one": [ - 6048, + 6072, { "object": [ - 6060, + 6084, "utility_lineup_votes_insert_input!" ], "on_conflict": [ - 6066 + 6090 ] } ], "insert_utility_lineups": [ - 6122, + 6146, { "objects": [ - 6117, + 6141, "[utility_lineups_insert_input!]!" ], "on_conflict": [ - 6124 + 6148 ] } ], "insert_utility_lineups_one": [ - 6089, + 6113, { "object": [ - 6117, + 6141, "utility_lineups_insert_input!" ], "on_conflict": [ - 6124 + 6148 ] } ], "insert_utility_meta_lineups": [ - 6168, + 6192, { "objects": [ - 6165, + 6189, "[utility_meta_lineups_insert_input!]!" ], "on_conflict": [ - 6169 + 6193 ] } ], "insert_utility_meta_lineups_one": [ - 6158, + 6182, { "object": [ - 6165, + 6189, "utility_meta_lineups_insert_input!" ], "on_conflict": [ - 6169 + 6193 ] } ], "insert_utility_playbook_steps": [ - 6202, + 6226, { "objects": [ - 6197, + 6221, "[utility_playbook_steps_insert_input!]!" ], "on_conflict": [ - 6203 + 6227 ] } ], "insert_utility_playbook_steps_one": [ - 6185, + 6209, { "object": [ - 6197, + 6221, "utility_playbook_steps_insert_input!" ], "on_conflict": [ - 6203 + 6227 ] } ], "insert_utility_playbooks": [ - 6236, + 6260, { "objects": [ - 6233, + 6257, "[utility_playbooks_insert_input!]!" ], "on_conflict": [ - 6238 + 6262 ] } ], "insert_utility_playbooks_one": [ - 6226, + 6250, { "object": [ - 6233, + 6257, "utility_playbooks_insert_input!" ], "on_conflict": [ - 6238 + 6262 ] } ], "insert_utility_practice_invites": [ - 6271, + 6295, { "objects": [ - 6266, + 6290, "[utility_practice_invites_insert_input!]!" ], "on_conflict": [ - 6272 + 6296 ] } ], "insert_utility_practice_invites_one": [ - 6254, + 6278, { "object": [ - 6266, + 6290, "utility_practice_invites_insert_input!" ], "on_conflict": [ - 6272 + 6296 ] } ], "insert_utility_practice_sessions": [ - 6314, + 6338, { "objects": [ - 6309, + 6333, "[utility_practice_sessions_insert_input!]!" ], "on_conflict": [ - 6316 + 6340 ] } ], "insert_utility_practice_sessions_one": [ - 6295, + 6319, { "object": [ - 6309, + 6333, "utility_practice_sessions_insert_input!" ], "on_conflict": [ - 6316 + 6340 ] } ], "insert_v_match_captains": [ - 6506, + 6530, { "objects": [ - 6503, + 6527, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 6497, + 6521, { "object": [ - 6503, + 6527, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 6617, + 6641, { "objects": [ - 6614, + 6638, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 6608, + 6632, { "object": [ - 6614, + 6638, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 6839, + 6863, { "objects": [ - 6834, + 6858, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 6823, + 6847, { "object": [ - 6834, + 6858, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 7016, + 7040, { "objects": [ - 7011, + 7035, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 7001, + 7025, { "object": [ - 7011, + 7035, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 7110, + 7134, { "objects": [ - 7105, + 7129, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 7112 + 7136 ] } ], "insert_v_team_stage_results_one": [ - 7083, + 7107, { "object": [ - 7105, + 7129, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 7112 + 7136 ] } ], "installGamePlugin": [ - 87, + 88, { "slug": [ - 84, + 85, "String!" ], "version": [ - 84 + 85 ] } ], "inviteToUtilityPractice": [ - 87, + 88, { "session_id": [ - 6341, + 6365, "uuid!" ], "steam_ids": [ - 84, + 85, "[String!]!" ] } ], "joinDraftGame": [ - 87, + 88, { "draftGameId": [ - 6341, + 6365, "uuid!" ], "inviteCode": [ - 84 + 85 ] } ], "joinDraftGameAsParty": [ - 87, + 88, { "draftGameId": [ - 6341, + 6365, "uuid!" ], "inviteCode": [ - 84 + 85 ] } ], "joinUtilityPractice": [ - 134, + 135, { "invite_code": [ - 84 + 85 ], "session_id": [ - 6341 + 6365 ] } ], @@ -187830,27 +188265,27 @@ export default { 43, { "reason": [ - 84 + 85 ], "serverId": [ - 84, + 85, "String!" ], "steam_id": [ - 84, + 85, "String!" ] } ], "league_award_forfeit": [ - 3318, + 3342, { "args": [ - 2374, + 2375, "league_award_forfeit_args!" ], "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -187860,127 +188295,127 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "leaveLineup": [ - 87, + 88, { "match_id": [ - 84, + 85, "String!" ] } ], "leaveUtilityPractice": [ - 87, + 88, { "session_id": [ - 6341, + 6365, "uuid!" ] } ], "linkSteamMatchHistory": [ - 76, + 77, { "auth_code": [ - 84, + 85, "String!" ], "share_code": [ - 84, + 85, "String!" ] } ], "loadFixtures": [ - 87 + 88 ], "loadUtilityPlaybookIntoSession": [ - 87, + 88, { "playbook_id": [ - 6341 + 6365 ], "session_id": [ - 6341, + 6365, "uuid!" ] } ], "logout": [ - 87 + 88 ], "moveServerItem": [ - 87, + 88, { "dest_path": [ - 84, + 85, "String!" ], "node_id": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ], "source_path": [ - 84, + 85, "String!" ] } ], "orphanedDemosScanResult": [ - 55 + 56 ], "pauseClipRenderBatch": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "pollSteamMatchHistory": [ - 77 + 78 ], "previewDraftGame": [ 25, { "draftGameId": [ - 6341, + 6365, "uuid!" ], "inviteCode": [ - 84 + 85 ] } ], "previewGameMode": [ - 59, + 60, { "gameModeId": [ - 6341, + 6365, "uuid!" ] } ], "purgeUtilityLineupSource": [ - 136, + 137, { "dry_run": [ 6 ], "origin_source": [ - 84, + 85, "String!" ] } @@ -187992,55 +188427,55 @@ export default { 41 ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "preset": [ - 84, + 85, "String!" ], "resolution": [ - 84 + 85 ], "target_name": [ - 84 + 85 ], "target_steam_id": [ - 84, + 85, "String!" ], "title": [ - 84 + 85 ] } ], "randomizeTeams": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "rebootMatchServer": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "recalculate_tournament_awards": [ - 240, + 241, { "args": [ - 4574, + 4598, "recalculate_tournament_awards_args!" ], "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -188050,95 +188485,95 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "recomputePlayerElo": [ - 63 + 64 ], "recomputePlayerEloStatus": [ - 64 + 65 ], "reconcileNodePlugins": [ - 65, + 66, { "nodeId": [ - 84, + 85, "String!" ] } ], "reconnectLive": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "refreshAllPlayers": [ - 66 + 67 ], "refreshAllPlayersStatus": [ - 67 + 68 ], "refreshFaceitRank": [ - 87, + 88, { "steam_id": [ - 84, + 85, "String!" ] } ], "refreshLiveHud": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "registerName": [ - 87, + 88, { "name": [ - 84, + 85, "String!" ] } ], "remineUtilityMeta": [ - 137 + 138 ], "removeFixtures": [ - 87 + 88 ], "removeSteamPresenceBotAccount": [ - 87, + 88, { "account_id": [ - 84, + 85, "String!" ] } ], "remove_league_team_from_season": [ - 2666, + 2667, { "args": [ - 4575, + 4599, "remove_league_team_from_season_args!" ], "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -188148,52 +188583,52 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "renameServerItem": [ - 87, + 88, { "new_path": [ - 84, + 85, "String!" ], "node_id": [ - 84, + 85, "String!" ], "old_path": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ] } ], "renderUtilityLineupPreview": [ - 139, + 140, { "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "reorder_league_divisions": [ - 2375, + 2376, { "args": [ - 4576, + 4600, "reorder_league_divisions_args!" ], "distinct_on": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "limit": [ @@ -188203,117 +188638,117 @@ export default { 41 ], "order_by": [ - 2388, + 2389, "[league_divisions_order_by!]" ], "where": [ - 2379 + 2380 ] } ], "repairUtilityLineup": [ - 144, + 145, { "session_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "reparseAllDemos": [ - 68 + 69 ], "reparseAllDemosStatus": [ - 69 + 70 ], "reparseDemo": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "reparseMatchDemos": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "requestNameChange": [ - 87, + 88, { "name": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "requeueClipRender": [ - 87, + 88, { "job_id": [ - 6341, + 6365, "uuid!" ] } ], "respondDraftInvite": [ - 87, + 88, { "accept": [ 6, "Boolean!" ], "draftGameId": [ - 6341, + 6365, "uuid!" ] } ], "respondToScrimRequest": [ - 87, + 88, { "accept": [ 6, "Boolean!" ], "request_id": [ - 6341, + 6365, "uuid!" ] } ], "restartService": [ - 87, + 88, { "service": [ - 84, + 85, "String!" ] } ], "restart_league_season": [ - 2551, + 2552, { "args": [ - 4577, + 4601, "restart_league_season_args!" ], "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -188323,28 +188758,28 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "resumeClipRenderBatch": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "retryClipRenderBatch": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "only_failed": [ @@ -188353,41 +188788,41 @@ export default { } ], "retryPendingMatchImport": [ - 56, + 57, { "valve_match_id": [ - 84, + 85, "String!" ] } ], "revokeAward": [ - 87, + 88, { "id": [ - 6341, + 6365, "uuid!" ] } ], "sanctionServerPlayer": [ - 70, + 71, { "duration": [ 32 ], "reason": [ - 84 + 85 ], "serverId": [ - 84 + 85 ], "steam_id": [ - 84, + 85, "String!" ], "type": [ - 84, + 85, "String!" ] } @@ -188399,319 +188834,319 @@ export default { 6 ], "description": [ - 84 + 85 ], "event_id": [ - 6341 + 6365 ], "id": [ - 6341 + 6365 ], "league_season_id": [ - 6341 + 6365 ], "name": [ - 84, + 85, "String!" ], "season_id": [ - 6341 + 6365 ], "silhouette": [ 41 ], "tier": [ - 84, + 85, "String!" ], "tournament_id": [ - 6341 + 6365 ] } ], "saveNewsPost": [ - 51, + 52, { "content_markdown": [ - 84, + 85, "String!" ], "cover_image_url": [ - 84 + 85 ], "id": [ - 6341 + 6365 ], "teaser": [ - 84 + 85 ], "title": [ - 84, + 85, "String!" ] } ], "saveUtilityLineupFromDemo": [ - 120, + 121, { "collection_id": [ - 6341 + 6365 ], "description": [ - 84 + 85 ], "grenade_id": [ 41, "Int!" ], "match_id": [ - 6341, + 6365, "uuid!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "name": [ - 84, + 85, "String!" ], "tags": [ - 84, + 85, "[String!]" ], "team_id": [ - 6341 + 6365 ], "visibility": [ - 84 + 85 ] } ], "saveUtilityLineupFromPractice": [ - 120, + 121, { "collection_id": [ - 6341 + 6365 ], "description": [ - 84 + 85 ], "name": [ - 84, + 85, "String!" ], "session_id": [ - 6341, + 6365, "uuid!" ], "tags": [ - 84, + 85, "[String!]" ], "team_id": [ - 6341 + 6365 ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ], "visibility": [ - 84 + 85 ] } ], "saveUtilityPlaybook": [ - 127, + 128, { "description": [ - 84 + 85 ], "map_name": [ - 84, + 85, "String!" ], "name": [ - 84, + 85, "String!" ], "playbook_id": [ - 6341 + 6365 ], "side": [ - 84, + 85, "String!" ], "steps": [ - 128, + 129, "[UtilityPlaybookStepInput!]" ], "team_id": [ - 6341 + 6365 ], "visibility": [ - 84 + 85 ] } ], "scanOrphanedDemos": [ - 71 + 72 ], "scanSteamBans": [ - 87 + 88 ], "scheduleMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129 + 5153 ] } ], "sendScrimRequest": [ - 87, + 88, { "best_of": [ 41 ], "from_team_id": [ - 6341, + 6365, "uuid!" ], "proposed_scheduled_at": [ - 5129, + 5153, "timestamptz!" ], "region": [ - 84 + 85 ], "to_team_id": [ - 6341, + 6365, "uuid!" ] } ], "sendUtilityDrillToServer": [ - 116, + 117, { "lineup_ids": [ - 84, + 85, "[String!]!" ] } ], "sendUtilityLineupToServer": [ - 121, + 122, { "lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "sendUtilityScratchToServer": [ - 121, + 122, { "lineup": [ - 140, + 141, "UtilityScratchLineupInput!" ] } ], "setGameNodeSchedulingState": [ - 87, + 88, { "enabled": [ 6, "Boolean!" ], "game_server_node_id": [ - 84, + 85, "String!" ] } ], "setGamePluginAutoUpdate": [ - 87, + 88, { "enabled": [ 6, "Boolean!" ], "slug": [ - 84, + 85, "String!" ] } ], "setHudMode": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "mode": [ - 84, + 85, "String!" ] } ], "setMapWinner": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "winning_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "setMatchWinner": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "winning_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "setNewsPostStatus": [ - 51, + 52, { "id": [ - 6341, + 6365, "uuid!" ], "status": [ - 84, + 85, "String!" ] } ], "setTournamentAward": [ - 110, + 111, { "award_id": [ - 6341 + 6365 ], "custom_name": [ - 84 + 85 ], "placement": [ 41, @@ -188721,38 +189156,38 @@ export default { 41 ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "setUtilityPracticeAccess": [ - 87, + 88, { "access": [ - 84, + 85, "String!" ], "session_id": [ - 6341, + 6365, "uuid!" ] } ], "setupGameServer": [ - 75 + 76 ], "skipShaders": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "solveUtilityLineup": [ - 144, + 145, { "from_x": [ 32 @@ -188764,10 +189199,10 @@ export default { 32 ], "name": [ - 84 + 85 ], "session_id": [ - 6341, + 6365, "uuid!" ], "target_x": [ @@ -188786,41 +189221,41 @@ export default { 32 ], "utility_type": [ - 84 + 85 ] } ], "specAutodirector": [ - 87, + 88, { "enabled": [ 6, "Boolean!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "specClick": [ - 87, + 88, { "button": [ - 84, + 85, "String!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "specHud": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "visible": [ @@ -188830,41 +189265,41 @@ export default { } ], "specHudSides": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "specJump": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "specPlayer": [ - 87, + 88, { "accountid": [ 41, "Int!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "specScoreboard": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "show": [ @@ -188874,10 +189309,10 @@ export default { } ], "specSlot": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "slot": [ @@ -188887,7853 +189322,7919 @@ export default { } ], "specXray": [ - 87, + 88, { "enabled": [ 6, "Boolean!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "startLive": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "mode": [ - 84, + 85, "String!" ] } ], "startMatch": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ], "server_id": [ - 6341 + 6365 ] } ], "startUtilityDriftScan": [ - 115, + 116, { "from_revision": [ - 84 + 85 ], "map_name": [ - 84, + 85, "String!" ], "to_revision": [ - 84 + 85 ] } ], "startUtilityPractice": [ - 134, + 135, { "access": [ - 84 + 85 ], "collection_id": [ - 6341 + 6365 ], "is_open": [ 6 ], "map_name": [ - 84, + 85, "String!" ], "region": [ - 84 + 85 ], "server_id": [ - 6341 + 6365 ], "team_id": [ - 6341 + 6365 ] } ], "stopGpuSession": [ - 87, + 88, { "game_server_node_id": [ - 6341, + 6365, "uuid!" ] } ], "stopLive": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "stopUtilityPractice": [ - 87, + 88, { "session_id": [ - 6341, + 6365, "uuid!" ] } ], "stopWatchDemo": [ - 87, + 88, { "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "submitSteamPresenceSteamGuard": [ - 87, + 88, { "account_id": [ - 84, + 85, "String!" ], "code": [ - 84, + 85, "String!" ] } ], "swapLineups": [ - 87, + 88, { "match_id": [ - 6341, + 6365, "uuid!" ] } ], "switchLineup": [ - 87, + 88, { "match_id": [ - 84, + 85, "String!" ] } ], "switchLiveMatch": [ - 87, + 88, { "from_match_id": [ - 6341, + 6365, "uuid!" ], "mode": [ - 84, + 85, "String!" ], "to_match_id": [ - 6341, + 6365, "uuid!" ] } ], + "syncMapCallouts": [ + 48 + ], "syncPluginRegistry": [ - 88 + 89 ], "syncSteamFriends": [ - 87 + 88 ], "testFaceitIntegration": [ 27 ], "testUpload": [ - 107 + 108 ], "uninstallGamePlugin": [ - 87, + 88, { "force": [ 6 ], "slug": [ - 84, + 85, "String!" ] } ], "unlinkDiscord": [ - 87 + 88 ], "unlinkSteamMatchHistory": [ - 87 + 88 ], "unsanctionServerPlayer": [ - 70, + 71, { "serverId": [ - 84 + 85 ], "steam_id": [ - 84, + 85, "String!" ], "type": [ - 84, + 85, "String!" ] } ], "updateClip": [ - 87, + 88, { "clip_id": [ - 6341, + 6365, "uuid!" ], "target_steam_id": [ - 84 + 85 ], "title": [ - 84 + 85 ], "visibility": [ - 84 + 85 ] } ], "updateCs": [ - 87, + 88, { "game": [ - 84 + 85 ], "game_server_node_id": [ - 6341 + 6365 ] } ], "updateDraftGame": [ - 87, + 88, { "draftGameId": [ - 6341, + 6365, "uuid!" ], "settings": [ - 2348, + 2349, "jsonb!" ] } ], "updateServices": [ - 87 + 88 ], "update__map_pool": [ - 160, + 161, { "_set": [ - 165 + 166 ], "where": [ - 155, + 156, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 152, + 153, { "_set": [ - 165 + 166 ], "pk_columns": [ - 163, + 164, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 160, + 161, { "updates": [ - 169, + 170, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 188, + 189, { "_inc": [ - 182 + 183 ], "_set": [ - 193 + 194 ], "where": [ - 180, + 181, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 171, + 172, { "_inc": [ - 182 + 183 ], "_set": [ - 193 + 194 ], "pk_columns": [ - 191, + 192, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 188, + 189, { "updates": [ - 205, + 206, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 222, + 223, { "_inc": [ - 218 + 219 ], "_set": [ - 227 + 228 ], "where": [ - 216, + 217, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 212, + 213, { "_inc": [ - 218 + 219 ], "_set": [ - 227 + 228 ], "pk_columns": [ - 225, + 226, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 222, + 223, { "updates": [ - 235, + 236, "[api_keys_updates!]!" ] } ], "update_award_recipients": [ - 257, + 258, { "_inc": [ - 251 + 252 ], "_set": [ - 262 + 263 ], "where": [ - 249, + 250, "award_recipients_bool_exp!" ] } ], "update_award_recipients_by_pk": [ - 240, + 241, { "_inc": [ - 251 + 252 ], "_set": [ - 262 + 263 ], "pk_columns": [ - 260, + 261, "award_recipients_pk_columns_input!" ] } ], "update_award_recipients_many": [ - 257, + 258, { "updates": [ - 274, + 275, "[award_recipients_updates!]!" ] } ], "update_awards": [ - 291, + 292, { "_inc": [ - 287 + 288 ], "_set": [ - 297 + 298 ], "where": [ - 285, + 286, "awards_bool_exp!" ] } ], "update_awards_by_pk": [ - 281, + 282, { "_inc": [ - 287 + 288 ], "_set": [ - 297 + 298 ], "pk_columns": [ - 295, + 296, "awards_pk_columns_input!" ] } ], "update_awards_many": [ - 291, + 292, { "updates": [ - 305, + 306, "[awards_updates!]!" ] } ], "update_chat_read_state": [ - 324, + 325, { "_inc": [ - 320 + 321 ], "_set": [ - 329 + 330 ], "where": [ - 318, + 319, "chat_read_state_bool_exp!" ] } ], "update_chat_read_state_by_pk": [ - 314, + 315, { "_inc": [ - 320 + 321 ], "_set": [ - 329 + 330 ], "pk_columns": [ - 327, + 328, "chat_read_state_pk_columns_input!" ] } ], "update_chat_read_state_many": [ - 324, + 325, { "updates": [ - 337, + 338, "[chat_read_state_updates!]!" ] } ], "update_clip_render_jobs": [ - 364, + 365, { "_append": [ - 349 + 350 ], "_delete_at_path": [ - 355 + 356 ], "_delete_elem": [ - 356 + 357 ], "_delete_key": [ - 357 + 358 ], "_inc": [ - 358 + 359 ], "_prepend": [ - 368 + 369 ], "_set": [ - 372 + 373 ], "where": [ - 353, + 354, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 341, + 342, { "_append": [ - 349 + 350 ], "_delete_at_path": [ - 355 + 356 ], "_delete_elem": [ - 356 + 357 ], "_delete_key": [ - 357 + 358 ], "_inc": [ - 358 + 359 ], "_prepend": [ - 368 + 369 ], "_set": [ - 372 + 373 ], "pk_columns": [ - 367, + 368, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 364, + 365, { "updates": [ - 384, + 385, "[clip_render_jobs_updates!]!" ] } ], "update_custom_pages": [ - 407, + 408, { "_append": [ - 396 + 397 ], "_delete_at_path": [ - 400 + 401 ], "_delete_elem": [ - 401 + 402 ], "_delete_key": [ - 402 + 403 ], "_inc": [ - 403 + 404 ], "_prepend": [ - 411 + 412 ], "_set": [ - 413 + 414 ], "where": [ - 398, + 399, "custom_pages_bool_exp!" ] } ], "update_custom_pages_by_pk": [ - 393, + 394, { "_append": [ - 396 + 397 ], "_delete_at_path": [ - 400 + 401 ], "_delete_elem": [ - 401 + 402 ], "_delete_key": [ - 402 + 403 ], "_inc": [ - 403 + 404 ], "_prepend": [ - 411 + 412 ], "_set": [ - 413 + 414 ], "pk_columns": [ - 410, + 411, "custom_pages_pk_columns_input!" ] } ], "update_custom_pages_many": [ - 407, + 408, { "updates": [ - 421, + 422, "[custom_pages_updates!]!" ] } ], "update_db_backups": [ - 435, + 436, { "_inc": [ - 431 + 432 ], "_set": [ - 440 + 441 ], "where": [ - 429, + 430, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 425, + 426, { "_inc": [ - 431 + 432 ], "_set": [ - 440 + 441 ], "pk_columns": [ - 438, + 439, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 435, + 436, { "updates": [ - 448, + 449, "[db_backups_updates!]!" ] } ], "update_direct_conversations": [ - 462, + 463, { "_inc": [ - 458 + 459 ], "_set": [ - 467 + 468 ], "where": [ - 456, + 457, "direct_conversations_bool_exp!" ] } ], "update_direct_conversations_by_pk": [ - 452, + 453, { "_inc": [ - 458 + 459 ], "_set": [ - 467 + 468 ], "pk_columns": [ - 465, + 466, "direct_conversations_pk_columns_input!" ] } ], "update_direct_conversations_many": [ - 462, + 463, { "updates": [ - 475, + 476, "[direct_conversations_updates!]!" ] } ], "update_direct_messages": [ - 489, + 490, { "_inc": [ - 485 + 486 ], "_set": [ - 494 + 495 ], "where": [ - 483, + 484, "direct_messages_bool_exp!" ] } ], "update_direct_messages_by_pk": [ - 479, + 480, { "_inc": [ - 485 + 486 ], "_set": [ - 494 + 495 ], "pk_columns": [ - 492, + 493, "direct_messages_pk_columns_input!" ] } ], "update_direct_messages_many": [ - 489, + 490, { "updates": [ - 502, + 503, "[direct_messages_updates!]!" ] } ], "update_draft_game_picks": [ - 525, + 526, { "_inc": [ - 519 + 520 ], "_set": [ - 532 + 533 ], "where": [ - 517, + 518, "draft_game_picks_bool_exp!" ] } ], "update_draft_game_picks_by_pk": [ - 506, + 507, { "_inc": [ - 519 + 520 ], "_set": [ - 532 + 533 ], "pk_columns": [ - 528, + 529, "draft_game_picks_pk_columns_input!" ] } ], "update_draft_game_picks_many": [ - 525, + 526, { "updates": [ - 544, + 545, "[draft_game_picks_updates!]!" ] } ], "update_draft_game_players": [ - 570, + 571, { "_inc": [ - 564 + 565 ], "_set": [ - 577 + 578 ], "where": [ - 562, + 563, "draft_game_players_bool_exp!" ] } ], "update_draft_game_players_by_pk": [ - 551, + 552, { "_inc": [ - 564 + 565 ], "_set": [ - 577 + 578 ], "pk_columns": [ - 573, + 574, "draft_game_players_pk_columns_input!" ] } ], "update_draft_game_players_many": [ - 570, + 571, { "updates": [ - 589, + 590, "[draft_game_players_updates!]!" ] } ], "update_draft_games": [ - 615, + 616, { "_inc": [ - 609 + 610 ], "_set": [ - 623 + 624 ], "where": [ - 607, + 608, "draft_games_bool_exp!" ] } ], "update_draft_games_by_pk": [ - 596, + 597, { "_inc": [ - 609 + 610 ], "_set": [ - 623 + 624 ], "pk_columns": [ - 619, + 620, "draft_games_pk_columns_input!" ] } ], "update_draft_games_many": [ - 615, + 616, { "updates": [ - 635, + 636, "[draft_games_updates!]!" ] } ], "update_e_award_sources": [ - 652, + 653, { "_set": [ - 657 + 658 ], "where": [ - 645, + 646, "e_award_sources_bool_exp!" ] } ], "update_e_award_sources_by_pk": [ - 642, + 643, { "_set": [ - 657 + 658 ], "pk_columns": [ - 655, + 656, "e_award_sources_pk_columns_input!" ] } ], "update_e_award_sources_many": [ - 652, + 653, { "updates": [ - 661, + 662, "[e_award_sources_updates!]!" ] } ], "update_e_award_tiers": [ - 672, + 673, { "_set": [ - 677 + 678 ], "where": [ - 665, + 666, "e_award_tiers_bool_exp!" ] } ], "update_e_award_tiers_by_pk": [ - 662, + 663, { "_set": [ - 677 + 678 ], "pk_columns": [ - 675, + 676, "e_award_tiers_pk_columns_input!" ] } ], "update_e_award_tiers_many": [ - 672, + 673, { "updates": [ - 681, + 682, "[e_award_tiers_updates!]!" ] } ], "update_e_check_in_settings": [ - 692, + 693, { "_set": [ - 697 + 698 ], "where": [ - 685, + 686, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 682, + 683, { "_set": [ - 697 + 698 ], "pk_columns": [ - 695, + 696, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 692, + 693, { "updates": [ - 701, + 702, "[e_check_in_settings_updates!]!" ] } ], "update_e_draft_game_captain_selection": [ - 712, + 713, { "_set": [ - 718 + 719 ], "where": [ - 705, + 706, "e_draft_game_captain_selection_bool_exp!" ] } ], "update_e_draft_game_captain_selection_by_pk": [ - 702, + 703, { "_set": [ - 718 + 719 ], "pk_columns": [ - 716, + 717, "e_draft_game_captain_selection_pk_columns_input!" ] } ], "update_e_draft_game_captain_selection_many": [ - 712, + 713, { "updates": [ - 722, + 723, "[e_draft_game_captain_selection_updates!]!" ] } ], "update_e_draft_game_draft_order": [ - 733, + 734, { "_set": [ - 739 + 740 ], "where": [ - 726, + 727, "e_draft_game_draft_order_bool_exp!" ] } ], "update_e_draft_game_draft_order_by_pk": [ - 723, + 724, { "_set": [ - 739 + 740 ], "pk_columns": [ - 737, + 738, "e_draft_game_draft_order_pk_columns_input!" ] } ], "update_e_draft_game_draft_order_many": [ - 733, + 734, { "updates": [ - 743, + 744, "[e_draft_game_draft_order_updates!]!" ] } ], "update_e_draft_game_mode": [ - 754, + 755, { "_set": [ - 760 + 761 ], "where": [ - 747, + 748, "e_draft_game_mode_bool_exp!" ] } ], "update_e_draft_game_mode_by_pk": [ - 744, + 745, { "_set": [ - 760 + 761 ], "pk_columns": [ - 758, + 759, "e_draft_game_mode_pk_columns_input!" ] } ], "update_e_draft_game_mode_many": [ - 754, + 755, { "updates": [ - 764, + 765, "[e_draft_game_mode_updates!]!" ] } ], "update_e_draft_game_player_status": [ - 775, + 776, { "_set": [ - 781 + 782 ], "where": [ - 768, + 769, "e_draft_game_player_status_bool_exp!" ] } ], "update_e_draft_game_player_status_by_pk": [ - 765, + 766, { "_set": [ - 781 + 782 ], "pk_columns": [ - 779, + 780, "e_draft_game_player_status_pk_columns_input!" ] } ], "update_e_draft_game_player_status_many": [ - 775, + 776, { "updates": [ - 785, + 786, "[e_draft_game_player_status_updates!]!" ] } ], "update_e_draft_game_status": [ - 796, + 797, { "_set": [ - 802 + 803 ], "where": [ - 789, + 790, "e_draft_game_status_bool_exp!" ] } ], "update_e_draft_game_status_by_pk": [ - 786, + 787, { "_set": [ - 802 + 803 ], "pk_columns": [ - 800, + 801, "e_draft_game_status_pk_columns_input!" ] } ], "update_e_draft_game_status_many": [ - 796, + 797, { "updates": [ - 806, + 807, "[e_draft_game_status_updates!]!" ] } ], "update_e_event_media_access": [ - 817, + 818, { "_set": [ - 822 + 823 ], "where": [ - 810, + 811, "e_event_media_access_bool_exp!" ] } ], "update_e_event_media_access_by_pk": [ - 807, + 808, { "_set": [ - 822 + 823 ], "pk_columns": [ - 820, + 821, "e_event_media_access_pk_columns_input!" ] } ], "update_e_event_media_access_many": [ - 817, + 818, { "updates": [ - 826, + 827, "[e_event_media_access_updates!]!" ] } ], "update_e_event_visibility": [ - 837, + 838, { "_set": [ - 842 + 843 ], "where": [ - 830, + 831, "e_event_visibility_bool_exp!" ] } ], "update_e_event_visibility_by_pk": [ - 827, + 828, { "_set": [ - 842 + 843 ], "pk_columns": [ - 840, + 841, "e_event_visibility_pk_columns_input!" ] } ], "update_e_event_visibility_many": [ - 837, + 838, { "updates": [ - 846, + 847, "[e_event_visibility_updates!]!" ] } ], "update_e_friend_status": [ - 857, + 858, { "_set": [ - 863 + 864 ], "where": [ - 850, + 851, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 847, + 848, { "_set": [ - 863 + 864 ], "pk_columns": [ - 861, + 862, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 857, + 858, { "updates": [ - 867, + 868, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 878, + 879, { "_set": [ - 883 + 884 ], "where": [ - 871, + 872, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 868, + 869, { "_set": [ - 883 + 884 ], "pk_columns": [ - 881, + 882, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 878, + 879, { "updates": [ - 887, + 888, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_plugin_channels": [ - 898, + 899, { "_set": [ - 903 + 904 ], "where": [ - 891, + 892, "e_game_plugin_channels_bool_exp!" ] } ], "update_e_game_plugin_channels_by_pk": [ - 888, + 889, { "_set": [ - 903 + 904 ], "pk_columns": [ - 901, + 902, "e_game_plugin_channels_pk_columns_input!" ] } ], "update_e_game_plugin_channels_many": [ - 898, + 899, { "updates": [ - 907, + 908, "[e_game_plugin_channels_updates!]!" ] } ], "update_e_game_plugin_install_statuses": [ - 918, + 919, { "_set": [ - 923 + 924 ], "where": [ - 911, + 912, "e_game_plugin_install_statuses_bool_exp!" ] } ], "update_e_game_plugin_install_statuses_by_pk": [ - 908, + 909, { "_set": [ - 923 + 924 ], "pk_columns": [ - 921, + 922, "e_game_plugin_install_statuses_pk_columns_input!" ] } ], "update_e_game_plugin_install_statuses_many": [ - 918, + 919, { "updates": [ - 927, + 928, "[e_game_plugin_install_statuses_updates!]!" ] } ], "update_e_game_plugin_kinds": [ - 938, + 939, { "_set": [ - 943 + 944 ], "where": [ - 931, + 932, "e_game_plugin_kinds_bool_exp!" ] } ], "update_e_game_plugin_kinds_by_pk": [ - 928, + 929, { "_set": [ - 943 + 944 ], "pk_columns": [ - 941, + 942, "e_game_plugin_kinds_pk_columns_input!" ] } ], "update_e_game_plugin_kinds_many": [ - 938, + 939, { "updates": [ - 947, + 948, "[e_game_plugin_kinds_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 958, + 959, { "_set": [ - 964 + 965 ], "where": [ - 951, + 952, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 948, + 949, { "_set": [ - 964 + 965 ], "pk_columns": [ - 962, + 963, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 958, + 959, { "updates": [ - 968, + 969, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 979, + 980, { "_set": [ - 985 + 986 ], "where": [ - 972, + 973, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 969, + 970, { "_set": [ - 985 + 986 ], "pk_columns": [ - 983, + 984, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 979, + 980, { "updates": [ - 989, + 990, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 1000, + 1001, { "_set": [ - 1006 + 1007 ], "where": [ - 993, + 994, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 990, + 991, { "_set": [ - 1006 + 1007 ], "pk_columns": [ - 1004, + 1005, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 1000, + 1001, { "updates": [ - 1010, + 1011, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 1021, + 1022, { "_set": [ - 1027 + 1028 ], "where": [ - 1014, + 1015, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 1011, + 1012, { "_set": [ - 1027 + 1028 ], "pk_columns": [ - 1025, + 1026, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 1021, + 1022, { "updates": [ - 1031, + 1032, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 1042, + 1043, { "_set": [ - 1048 + 1049 ], "where": [ - 1035, + 1036, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 1032, + 1033, { "_set": [ - 1048 + 1049 ], "pk_columns": [ - 1046, + 1047, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 1042, + 1043, { "updates": [ - 1052, + 1053, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 1063, + 1064, { "_set": [ - 1069 + 1070 ], "where": [ - 1056, + 1057, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 1053, + 1054, { "_set": [ - 1069 + 1070 ], "pk_columns": [ - 1067, + 1068, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 1063, + 1064, { "updates": [ - 1073, + 1074, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 1084, + 1085, { "_set": [ - 1089 + 1090 ], "where": [ - 1077, + 1078, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 1074, + 1075, { "_set": [ - 1089 + 1090 ], "pk_columns": [ - 1087, + 1088, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 1084, + 1085, { "updates": [ - 1093, + 1094, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 1104, + 1105, { "_set": [ - 1110 + 1111 ], "where": [ - 1097, + 1098, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 1094, + 1095, { "_set": [ - 1110 + 1111 ], "pk_columns": [ - 1108, + 1109, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 1104, + 1105, { "updates": [ - 1114, + 1115, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 1125, + 1126, { "_set": [ - 1130 + 1131 ], "where": [ - 1118, + 1119, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 1115, + 1116, { "_set": [ - 1130 + 1131 ], "pk_columns": [ - 1128, + 1129, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 1125, + 1126, { "updates": [ - 1134, + 1135, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 1145, + 1146, { "_set": [ - 1151 + 1152 ], "where": [ - 1138, + 1139, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 1135, + 1136, { "_set": [ - 1151 + 1152 ], "pk_columns": [ - 1149, + 1150, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 1145, + 1146, { "updates": [ - 1155, + 1156, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 1166, + 1167, { "_set": [ - 1171 + 1172 ], "where": [ - 1159, + 1160, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 1156, + 1157, { "_set": [ - 1171 + 1172 ], "pk_columns": [ - 1169, + 1170, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 1166, + 1167, { "updates": [ - 1175, + 1176, "[e_match_mode_updates!]!" ] } ], "update_e_match_party_sources": [ - 1186, + 1187, { "_set": [ - 1191 + 1192 ], "where": [ - 1179, + 1180, "e_match_party_sources_bool_exp!" ] } ], "update_e_match_party_sources_by_pk": [ - 1176, + 1177, { "_set": [ - 1191 + 1192 ], "pk_columns": [ - 1189, + 1190, "e_match_party_sources_pk_columns_input!" ] } ], "update_e_match_party_sources_many": [ - 1186, + 1187, { "updates": [ - 1195, + 1196, "[e_match_party_sources_updates!]!" ] } ], "update_e_match_status": [ - 1206, + 1207, { "_set": [ - 1212 + 1213 ], "where": [ - 1199, + 1200, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 1196, + 1197, { "_set": [ - 1212 + 1213 ], "pk_columns": [ - 1210, + 1211, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 1206, + 1207, { "updates": [ - 1216, + 1217, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 1227, + 1228, { "_set": [ - 1233 + 1234 ], "where": [ - 1220, + 1221, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 1217, + 1218, { "_set": [ - 1233 + 1234 ], "pk_columns": [ - 1231, + 1232, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 1227, + 1228, { "updates": [ - 1237, + 1238, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 1248, + 1249, { "_set": [ - 1253 + 1254 ], "where": [ - 1241, + 1242, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 1238, + 1239, { "_set": [ - 1253 + 1254 ], "pk_columns": [ - 1251, + 1252, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 1248, + 1249, { "updates": [ - 1257, + 1258, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 1268, + 1269, { "_set": [ - 1273 + 1274 ], "where": [ - 1261, + 1262, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 1258, + 1259, { "_set": [ - 1273 + 1274 ], "pk_columns": [ - 1271, + 1272, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 1268, + 1269, { "updates": [ - 1277, + 1278, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 1288, + 1289, { "_set": [ - 1293 + 1294 ], "where": [ - 1281, + 1282, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 1278, + 1279, { "_set": [ - 1293 + 1294 ], "pk_columns": [ - 1291, + 1292, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 1288, + 1289, { "updates": [ - 1297, + 1298, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 1308, + 1309, { "_set": [ - 1313 + 1314 ], "where": [ - 1301, + 1302, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 1298, + 1299, { "_set": [ - 1313 + 1314 ], "pk_columns": [ - 1311, + 1312, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 1308, + 1309, { "updates": [ - 1317, + 1318, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 1328, + 1329, { "_set": [ - 1333 + 1334 ], "where": [ - 1321, + 1322, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 1318, + 1319, { "_set": [ - 1333 + 1334 ], "pk_columns": [ - 1331, + 1332, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 1328, + 1329, { "updates": [ - 1337, + 1338, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 1348, + 1349, { "_set": [ - 1354 + 1355 ], "where": [ - 1341, + 1342, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 1338, + 1339, { "_set": [ - 1354 + 1355 ], "pk_columns": [ - 1352, + 1353, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 1348, + 1349, { "updates": [ - 1358, + 1359, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 1369, + 1370, { "_set": [ - 1374 + 1375 ], "where": [ - 1362, + 1363, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 1359, + 1360, { "_set": [ - 1374 + 1375 ], "pk_columns": [ - 1372, + 1373, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 1369, + 1370, { "updates": [ - 1378, + 1379, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1389, + 1390, { "_set": [ - 1394 + 1395 ], "where": [ - 1382, + 1383, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 1379, + 1380, { "_set": [ - 1394 + 1395 ], "pk_columns": [ - 1392, + 1393, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1389, + 1390, { "updates": [ - 1398, + 1399, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1409, + 1410, { "_set": [ - 1414 + 1415 ], "where": [ - 1402, + 1403, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1399, + 1400, { "_set": [ - 1414 + 1415 ], "pk_columns": [ - 1412, + 1413, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1409, + 1410, { "updates": [ - 1418, + 1419, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1429, + 1430, { "_set": [ - 1434 + 1435 ], "where": [ - 1422, + 1423, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1419, + 1420, { "_set": [ - 1434 + 1435 ], "pk_columns": [ - 1432, + 1433, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1429, + 1430, { "updates": [ - 1438, + 1439, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1449, + 1450, { "_set": [ - 1455 + 1456 ], "where": [ - 1442, + 1443, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1439, + 1440, { "_set": [ - 1455 + 1456 ], "pk_columns": [ - 1453, + 1454, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1449, + 1450, { "updates": [ - 1459, + 1460, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1470, + 1471, { "_set": [ - 1475 + 1476 ], "where": [ - 1463, + 1464, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1460, + 1461, { "_set": [ - 1475 + 1476 ], "pk_columns": [ - 1473, + 1474, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1470, + 1471, { "updates": [ - 1479, + 1480, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1490, + 1491, { "_set": [ - 1495 + 1496 ], "where": [ - 1483, + 1484, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1480, + 1481, { "_set": [ - 1495 + 1496 ], "pk_columns": [ - 1493, + 1494, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1490, + 1491, { "updates": [ - 1499, + 1500, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_categories": [ - 1510, + 1511, { "_set": [ - 1516 + 1517 ], "where": [ - 1503, + 1504, "e_tournament_categories_bool_exp!" ] } ], "update_e_tournament_categories_by_pk": [ - 1500, + 1501, { "_set": [ - 1516 + 1517 ], "pk_columns": [ - 1514, + 1515, "e_tournament_categories_pk_columns_input!" ] } ], "update_e_tournament_categories_many": [ - 1510, + 1511, { "updates": [ - 1520, + 1521, "[e_tournament_categories_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1531, + 1532, { "_set": [ - 1537 + 1538 ], "where": [ - 1524, + 1525, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1521, + 1522, { "_set": [ - 1537 + 1538 ], "pk_columns": [ - 1535, + 1536, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1531, + 1532, { "updates": [ - 1541, + 1542, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1552, + 1553, { "_set": [ - 1558 + 1559 ], "where": [ - 1545, + 1546, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1542, + 1543, { "_set": [ - 1558 + 1559 ], "pk_columns": [ - 1556, + 1557, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1552, + 1553, { "updates": [ - 1562, + 1563, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_practice_access": [ - 1573, + 1574, { "_set": [ - 1578 + 1579 ], "where": [ - 1566, + 1567, "e_utility_practice_access_bool_exp!" ] } ], "update_e_utility_practice_access_by_pk": [ - 1563, + 1564, { "_set": [ - 1578 + 1579 ], "pk_columns": [ - 1576, + 1577, "e_utility_practice_access_pk_columns_input!" ] } ], "update_e_utility_practice_access_many": [ - 1573, + 1574, { "updates": [ - 1582, + 1583, "[e_utility_practice_access_updates!]!" ] } ], "update_e_utility_practice_statuses": [ - 1593, + 1594, { "_set": [ - 1599 + 1600 ], "where": [ - 1586, + 1587, "e_utility_practice_statuses_bool_exp!" ] } ], "update_e_utility_practice_statuses_by_pk": [ - 1583, + 1584, { "_set": [ - 1599 + 1600 ], "pk_columns": [ - 1597, + 1598, "e_utility_practice_statuses_pk_columns_input!" ] } ], "update_e_utility_practice_statuses_many": [ - 1593, + 1594, { "updates": [ - 1603, + 1604, "[e_utility_practice_statuses_updates!]!" ] } ], "update_e_utility_sources": [ - 1614, + 1615, { "_set": [ - 1619 + 1620 ], "where": [ - 1607, + 1608, "e_utility_sources_bool_exp!" ] } ], "update_e_utility_sources_by_pk": [ - 1604, + 1605, { "_set": [ - 1619 + 1620 ], "pk_columns": [ - 1617, + 1618, "e_utility_sources_pk_columns_input!" ] } ], "update_e_utility_sources_many": [ - 1614, + 1615, { "updates": [ - 1623, + 1624, "[e_utility_sources_updates!]!" ] } ], "update_e_utility_techniques": [ - 1634, + 1635, { "_set": [ - 1639 + 1640 ], "where": [ - 1627, + 1628, "e_utility_techniques_bool_exp!" ] } ], "update_e_utility_techniques_by_pk": [ - 1624, + 1625, { "_set": [ - 1639 + 1640 ], "pk_columns": [ - 1637, + 1638, "e_utility_techniques_pk_columns_input!" ] } ], "update_e_utility_techniques_many": [ - 1634, + 1635, { "updates": [ - 1643, + 1644, "[e_utility_techniques_updates!]!" ] } ], "update_e_utility_throw_strengths": [ - 1654, + 1655, { "_set": [ - 1659 + 1660 ], "where": [ - 1647, + 1648, "e_utility_throw_strengths_bool_exp!" ] } ], "update_e_utility_throw_strengths_by_pk": [ - 1644, + 1645, { "_set": [ - 1659 + 1660 ], "pk_columns": [ - 1657, + 1658, "e_utility_throw_strengths_pk_columns_input!" ] } ], "update_e_utility_throw_strengths_many": [ - 1654, + 1655, { "updates": [ - 1663, + 1664, "[e_utility_throw_strengths_updates!]!" ] } ], "update_e_utility_types": [ - 1674, + 1675, { "_set": [ - 1679 + 1680 ], "where": [ - 1667, + 1668, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1664, + 1665, { "_set": [ - 1679 + 1680 ], "pk_columns": [ - 1677, + 1678, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1674, + 1675, { "updates": [ - 1683, + 1684, "[e_utility_types_updates!]!" ] } ], "update_e_utility_visibility": [ - 1694, + 1695, { "_set": [ - 1699 + 1700 ], "where": [ - 1687, + 1688, "e_utility_visibility_bool_exp!" ] } ], "update_e_utility_visibility_by_pk": [ - 1684, + 1685, { "_set": [ - 1699 + 1700 ], "pk_columns": [ - 1697, + 1698, "e_utility_visibility_pk_columns_input!" ] } ], "update_e_utility_visibility_many": [ - 1694, + 1695, { "updates": [ - 1703, + 1704, "[e_utility_visibility_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1714, + 1715, { "_set": [ - 1719 + 1720 ], "where": [ - 1707, + 1708, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1704, + 1705, { "_set": [ - 1719 + 1720 ], "pk_columns": [ - 1717, + 1718, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1714, + 1715, { "updates": [ - 1723, + 1724, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1734, + 1735, { "_set": [ - 1739 + 1740 ], "where": [ - 1727, + 1728, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1724, + 1725, { "_set": [ - 1739 + 1740 ], "pk_columns": [ - 1737, + 1738, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1734, + 1735, { "updates": [ - 1743, + 1744, "[e_winning_reasons_updates!]!" ] } ], "update_event_match_links": [ - 1752, + 1753, { "_set": [ - 1757 + 1758 ], "where": [ - 1747, + 1748, "event_match_links_bool_exp!" ] } ], "update_event_match_links_by_pk": [ - 1744, + 1745, { "_set": [ - 1757 + 1758 ], "pk_columns": [ - 1755, + 1756, "event_match_links_pk_columns_input!" ] } ], "update_event_match_links_many": [ - 1752, + 1753, { "updates": [ - 1761, + 1762, "[event_match_links_updates!]!" ] } ], "update_event_media": [ - 1779, + 1780, { "_inc": [ - 1773 + 1774 ], "_set": [ - 1826 + 1827 ], "where": [ - 1771, + 1772, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1762, + 1763, { "_inc": [ - 1773 + 1774 ], "_set": [ - 1826 + 1827 ], "pk_columns": [ - 1783, + 1784, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1779, + 1780, { "updates": [ - 1838, + 1839, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1801, + 1802, { "_inc": [ - 1795 + 1796 ], "_set": [ - 1806 + 1807 ], "where": [ - 1793, + 1794, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1784, + 1785, { "_inc": [ - 1795 + 1796 ], "_set": [ - 1806 + 1807 ], "pk_columns": [ - 1804, + 1805, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1801, + 1802, { "updates": [ - 1818, + 1819, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1862, + 1863, { "_inc": [ - 1856 + 1857 ], "_set": [ - 1867 + 1868 ], "where": [ - 1854, + 1855, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1845, + 1846, { "_inc": [ - 1856 + 1857 ], "_set": [ - 1867 + 1868 ], "pk_columns": [ - 1865, + 1866, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1862, + 1863, { "updates": [ - 1879, + 1880, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1903, + 1904, { "_inc": [ - 1897 + 1898 ], "_set": [ - 1908 + 1909 ], "where": [ - 1895, + 1896, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1886, + 1887, { "_inc": [ - 1897 + 1898 ], "_set": [ - 1908 + 1909 ], "pk_columns": [ - 1906, + 1907, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1903, + 1904, { "updates": [ - 1920, + 1921, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1941, + 1942, { "_set": [ - 1946 + 1947 ], "where": [ - 1934, + 1935, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1927, + 1928, { "_set": [ - 1946 + 1947 ], "pk_columns": [ - 1944, + 1945, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1941, + 1942, { "updates": [ - 1950, + 1951, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1965, + 1966, { "_set": [ - 1970 + 1971 ], "where": [ - 1958, + 1959, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1951, + 1952, { "_set": [ - 1970 + 1971 ], "pk_columns": [ - 1968, + 1969, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1965, + 1966, { "updates": [ - 1974, + 1975, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1985, + 1986, { "_inc": [ - 1981 + 1982 ], "_set": [ - 1991 + 1992 ], "where": [ - 1979, + 1980, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1975, + 1976, { "_inc": [ - 1981 + 1982 ], "_set": [ - 1991 + 1992 ], "pk_columns": [ - 1989, + 1990, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1985, + 1986, { "updates": [ - 1999, + 2000, "[events_updates!]!" ] } ], "update_friends": [ - 2015, + 2016, { "_inc": [ - 2011 + 2012 ], "_set": [ - 2020 + 2021 ], "where": [ - 2009, + 2010, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 2005, + 2006, { "_inc": [ - 2011 + 2012 ], "_set": [ - 2020 + 2021 ], "pk_columns": [ - 2018, + 2019, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 2015, + 2016, { "updates": [ - 2028, + 2029, "[friends_updates!]!" ] } ], "update_game_mode_plugins": [ - 2055, + 2056, { "_append": [ - 2040 + 2041 ], "_delete_at_path": [ - 2046 + 2047 ], "_delete_elem": [ - 2047 + 2048 ], "_delete_key": [ - 2048 + 2049 ], "_inc": [ - 2049 + 2050 ], "_prepend": [ - 2059 + 2060 ], "_set": [ - 2063 + 2064 ], "where": [ - 2044, + 2045, "game_mode_plugins_bool_exp!" ] } ], "update_game_mode_plugins_by_pk": [ - 2032, + 2033, { "_append": [ - 2040 + 2041 ], "_delete_at_path": [ - 2046 + 2047 ], "_delete_elem": [ - 2047 + 2048 ], "_delete_key": [ - 2048 + 2049 ], "_inc": [ - 2049 + 2050 ], "_prepend": [ - 2059 + 2060 ], "_set": [ - 2063 + 2064 ], "pk_columns": [ - 2058, + 2059, "game_mode_plugins_pk_columns_input!" ] } ], "update_game_mode_plugins_many": [ - 2055, + 2056, { "updates": [ - 2075, + 2076, "[game_mode_plugins_updates!]!" ] } ], "update_game_modes": [ - 2090, + 2091, { "_set": [ - 2096 + 2097 ], "where": [ - 2085, + 2086, "game_modes_bool_exp!" ] } ], "update_game_modes_by_pk": [ - 2082, + 2083, { "_set": [ - 2096 + 2097 ], "pk_columns": [ - 2094, + 2095, "game_modes_pk_columns_input!" ] } ], "update_game_modes_many": [ - 2090, + 2091, { "updates": [ - 2100, + 2101, "[game_modes_updates!]!" ] } ], "update_game_plugin_installs": [ - 2109, + 2110, { "_set": [ - 2114 + 2115 ], "where": [ - 2104, + 2105, "game_plugin_installs_bool_exp!" ] } ], "update_game_plugin_installs_by_pk": [ - 2101, + 2102, { "_set": [ - 2114 + 2115 ], "pk_columns": [ - 2112, + 2113, "game_plugin_installs_pk_columns_input!" ] } ], "update_game_plugin_installs_many": [ - 2109, + 2110, { "updates": [ - 2118, + 2119, "[game_plugin_installs_updates!]!" ] } ], "update_game_plugin_versions": [ - 2138, + 2139, { "_inc": [ - 2132 + 2133 ], "_set": [ - 2145 + 2146 ], "where": [ - 2130, + 2131, "game_plugin_versions_bool_exp!" ] } ], "update_game_plugin_versions_by_pk": [ - 2119, + 2120, { "_inc": [ - 2132 + 2133 ], "_set": [ - 2145 + 2146 ], "pk_columns": [ - 2141, + 2142, "game_plugin_versions_pk_columns_input!" ] } ], "update_game_plugin_versions_many": [ - 2138, + 2139, { "updates": [ - 2157, + 2158, "[game_plugin_versions_updates!]!" ] } ], "update_game_plugins": [ - 2177, + 2178, { "_append": [ - 2167 + 2168 ], "_delete_at_path": [ - 2171 + 2172 ], "_delete_elem": [ - 2172 + 2173 ], "_delete_key": [ - 2173 + 2174 ], "_prepend": [ - 2182 + 2183 ], "_set": [ - 2184 + 2185 ], "where": [ - 2169, + 2170, "game_plugins_bool_exp!" ] } ], "update_game_plugins_by_pk": [ - 2164, + 2165, { "_append": [ - 2167 + 2168 ], "_delete_at_path": [ - 2171 + 2172 ], "_delete_elem": [ - 2172 + 2173 ], "_delete_key": [ - 2173 + 2174 ], "_prepend": [ - 2182 + 2183 ], "_set": [ - 2184 + 2185 ], "pk_columns": [ - 2181, + 2182, "game_plugins_pk_columns_input!" ] } ], "update_game_plugins_many": [ - 2177, + 2178, { "updates": [ - 2192, + 2193, "[game_plugins_updates!]!" ] } ], "update_game_server_node_plugins": [ - 2212, + 2213, { "_set": [ - 2219 + 2220 ], "where": [ - 2205, + 2206, "game_server_node_plugins_bool_exp!" ] } ], "update_game_server_node_plugins_by_pk": [ - 2196, + 2197, { "_set": [ - 2219 + 2220 ], "pk_columns": [ - 2215, + 2216, "game_server_node_plugins_pk_columns_input!" ] } ], "update_game_server_node_plugins_many": [ - 2212, + 2213, { "updates": [ - 2223, + 2224, "[game_server_node_plugins_updates!]!" ] } ], "update_game_server_nodes": [ - 2247, + 2248, { "_append": [ - 2232 + 2233 ], "_delete_at_path": [ - 2238 + 2239 ], "_delete_elem": [ - 2239 + 2240 ], "_delete_key": [ - 2240 + 2241 ], "_inc": [ - 2241 + 2242 ], "_prepend": [ - 2252 + 2253 ], "_set": [ - 2256 + 2257 ], "where": [ - 2236, + 2237, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 2224, + 2225, { "_append": [ - 2232 + 2233 ], "_delete_at_path": [ - 2238 + 2239 ], "_delete_elem": [ - 2239 + 2240 ], "_delete_key": [ - 2240 + 2241 ], "_inc": [ - 2241 + 2242 ], "_prepend": [ - 2252 + 2253 ], "_set": [ - 2256 + 2257 ], "pk_columns": [ - 2251, + 2252, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 2247, + 2248, { "updates": [ - 2268, + 2269, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 2289, + 2290, { "_append": [ - 2278 + 2279 ], "_delete_at_path": [ - 2282 + 2283 ], "_delete_elem": [ - 2283 + 2284 ], "_delete_key": [ - 2284 + 2285 ], "_inc": [ - 2285 + 2286 ], "_prepend": [ - 2294 + 2295 ], "_set": [ - 2296 + 2297 ], "where": [ - 2280, + 2281, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 2275, + 2276, { "_append": [ - 2278 + 2279 ], "_delete_at_path": [ - 2282 + 2283 ], "_delete_elem": [ - 2283 + 2284 ], "_delete_key": [ - 2284 + 2285 ], "_inc": [ - 2285 + 2286 ], "_prepend": [ - 2294 + 2295 ], "_set": [ - 2296 + 2297 ], "pk_columns": [ - 2293, + 2294, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 2289, + 2290, { "updates": [ - 2304, + 2305, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 2322, + 2323, { "_append": [ - 2311 + 2312 ], "_delete_at_path": [ - 2315 + 2316 ], "_delete_elem": [ - 2316 + 2317 ], "_delete_key": [ - 2317 + 2318 ], "_inc": [ - 2318 + 2319 ], "_prepend": [ - 2326 + 2327 ], "_set": [ - 2328 + 2329 ], "where": [ - 2313, + 2314, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 2308, + 2309, { "_append": [ - 2311 + 2312 ], "_delete_at_path": [ - 2315 + 2316 ], "_delete_elem": [ - 2316 + 2317 ], "_delete_key": [ - 2317 + 2318 ], "_inc": [ - 2318 + 2319 ], "_prepend": [ - 2326 + 2327 ], "_set": [ - 2328 + 2329 ], "pk_columns": [ - 2325, + 2326, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 2322, + 2323, { "updates": [ - 2336, + 2337, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 2360, + 2361, { "_inc": [ - 2356 + 2357 ], "_set": [ - 2363 + 2364 ], "where": [ - 2355, + 2356, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 2360, + 2361, { "updates": [ - 2370, + 2371, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 2385, + 2386, { "_inc": [ - 2381 + 2382 ], "_set": [ - 2391 + 2392 ], "where": [ - 2379, + 2380, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 2375, + 2376, { "_inc": [ - 2381 + 2382 ], "_set": [ - 2391 + 2392 ], "pk_columns": [ - 2389, + 2390, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 2385, + 2386, { "updates": [ - 2399, + 2400, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 2420, + 2421, { "_inc": [ - 2414 + 2415 ], "_set": [ - 2425 + 2426 ], "where": [ - 2412, + 2413, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 2403, + 2404, { "_inc": [ - 2414 + 2415 ], "_set": [ - 2425 + 2426 ], "pk_columns": [ - 2423, + 2424, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 2420, + 2421, { "updates": [ - 2437, + 2438, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 2461, + 2462, { "_inc": [ - 2455 + 2456 ], "_set": [ - 2466 + 2467 ], "where": [ - 2453, + 2454, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 2444, + 2445, { "_inc": [ - 2455 + 2456 ], "_set": [ - 2466 + 2467 ], "pk_columns": [ - 2464, + 2465, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 2461, + 2462, { "updates": [ - 2478, + 2479, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 2502, + 2503, { "_inc": [ - 2496 + 2497 ], "_set": [ - 2507 + 2508 ], "where": [ - 2494, + 2495, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 2485, + 2486, { "_inc": [ - 2496 + 2497 ], "_set": [ - 2507 + 2508 ], "pk_columns": [ - 2505, + 2506, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 2502, + 2503, { "updates": [ - 2519, + 2520, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 2540, + 2541, { "_set": [ - 2546 + 2547 ], "where": [ - 2533, + 2534, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 2526, + 2527, { "_set": [ - 2546 + 2547 ], "pk_columns": [ - 2544, + 2545, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 2540, + 2541, { "updates": [ - 2550, + 2551, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 2565, + 2566, { "_append": [ - 2554 + 2555 ], "_delete_at_path": [ - 2558 + 2559 ], "_delete_elem": [ - 2559 + 2560 ], "_delete_key": [ - 2560 + 2561 ], "_inc": [ - 2561 + 2562 ], "_prepend": [ - 2570 + 2571 ], "_set": [ - 2572 + 2573 ], "where": [ - 2556, + 2557, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 2551, + 2552, { "_append": [ - 2554 + 2555 ], "_delete_at_path": [ - 2558 + 2559 ], "_delete_elem": [ - 2559 + 2560 ], "_delete_key": [ - 2560 + 2561 ], "_inc": [ - 2561 + 2562 ], "_prepend": [ - 2570 + 2571 ], "_set": [ - 2572 + 2573 ], "pk_columns": [ - 2569, + 2570, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 2565, + 2566, { "updates": [ - 2580, + 2581, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 2601, + 2602, { "_inc": [ - 2595 + 2596 ], "_set": [ - 2606 + 2607 ], "where": [ - 2593, + 2594, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 2584, + 2585, { "_inc": [ - 2595 + 2596 ], "_set": [ - 2606 + 2607 ], "pk_columns": [ - 2604, + 2605, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 2601, + 2602, { "updates": [ - 2618, + 2619, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 2642, + 2643, { "_inc": [ - 2636 + 2637 ], "_set": [ - 2647 + 2648 ], "where": [ - 2634, + 2635, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 2625, + 2626, { "_inc": [ - 2636 + 2637 ], "_set": [ - 2647 + 2648 ], "pk_columns": [ - 2645, + 2646, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 2642, + 2643, { "updates": [ - 2659, + 2660, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 2683, + 2684, { "_inc": [ - 2677 + 2678 ], "_set": [ - 2689 + 2690 ], "where": [ - 2675, + 2676, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 2666, + 2667, { "_inc": [ - 2677 + 2678 ], "_set": [ - 2689 + 2690 ], "pk_columns": [ - 2687, + 2688, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 2683, + 2684, { "updates": [ - 2701, + 2702, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2716, + 2717, { "_set": [ - 2722 + 2723 ], "where": [ - 2711, + 2712, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 2708, + 2709, { "_set": [ - 2722 + 2723 ], "pk_columns": [ - 2720, + 2721, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2716, + 2717, { "updates": [ - 2726, + 2727, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2735, + 2736, { "_set": [ - 2741 + 2742 ], "where": [ - 2730, + 2731, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2727, + 2728, { "_set": [ - 2741 + 2742 ], "pk_columns": [ - 2739, + 2740, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2735, + 2736, { "updates": [ - 2745, + 2746, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2765, + 2766, { "_inc": [ - 2759 + 2760 ], "_set": [ - 2772 + 2773 ], "where": [ - 2757, + 2758, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2746, + 2747, { "_inc": [ - 2759 + 2760 ], "_set": [ - 2772 + 2773 ], "pk_columns": [ - 2768, + 2769, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2765, + 2766, { "updates": [ - 2784, + 2785, "[lobby_players_updates!]!" ] } ], + "update_map_callouts": [ + 2804, + { + "_append": [ + 2795 + ], + "_delete_at_path": [ + 2798 + ], + "_delete_elem": [ + 2799 + ], + "_delete_key": [ + 2800 + ], + "_prepend": [ + 2808 + ], + "_set": [ + 2810 + ], + "where": [ + 2796, + "map_callouts_bool_exp!" + ] + } + ], + "update_map_callouts_by_pk": [ + 2792, + { + "_append": [ + 2795 + ], + "_delete_at_path": [ + 2798 + ], + "_delete_elem": [ + 2799 + ], + "_delete_key": [ + 2800 + ], + "_prepend": [ + 2808 + ], + "_set": [ + 2810 + ], + "pk_columns": [ + 2807, + "map_callouts_pk_columns_input!" + ] + } + ], + "update_map_callouts_many": [ + 2804, + { + "updates": [ + 2814, + "[map_callouts_updates!]!" + ] + } + ], "update_map_pools": [ - 2799, + 2823, { "_set": [ - 2805 + 2829 ], "where": [ - 2794, + 2818, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2791, + 2815, { "_set": [ - 2805 + 2829 ], "pk_columns": [ - 2803, + 2827, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2799, + 2823, { "updates": [ - 2809, + 2833, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2826, + 2850, { "_set": [ - 2834 + 2858 ], "where": [ - 2819, + 2843, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2810, + 2834, { "_set": [ - 2834 + 2858 ], "pk_columns": [ - 2830, + 2854, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2826, + 2850, { "updates": [ - 2838, + 2862, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2856, + 2880, { "_inc": [ - 2850 + 2874 ], "_set": [ - 2862 + 2886 ], "where": [ - 2848, + 2872, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2839, + 2863, { "_inc": [ - 2850 + 2874 ], "_set": [ - 2862 + 2886 ], "pk_columns": [ - 2860, + 2884, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2856, + 2880, { "updates": [ - 2874, + 2898, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2902, + 2926, { "_append": [ - 2887 + 2911 ], "_delete_at_path": [ - 2893 + 2917 ], "_delete_elem": [ - 2894 + 2918 ], "_delete_key": [ - 2895 + 2919 ], "_inc": [ - 2896 + 2920 ], "_prepend": [ - 2906 + 2930 ], "_set": [ - 2908 + 2932 ], "where": [ - 2891, + 2915, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2881, + 2905, { "_append": [ - 2887 + 2911 ], "_delete_at_path": [ - 2893 + 2917 ], "_delete_elem": [ - 2894 + 2918 ], "_delete_key": [ - 2895 + 2919 ], "_inc": [ - 2896 + 2920 ], "_prepend": [ - 2906 + 2930 ], "_set": [ - 2908 + 2932 ], "pk_columns": [ - 2905, + 2929, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2902, + 2926, { "updates": [ - 2920, + 2944, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2946, + 2970, { "_inc": [ - 2940 + 2964 ], "_set": [ - 2953 + 2977 ], "where": [ - 2938, + 2962, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2927, + 2951, { "_inc": [ - 2940 + 2964 ], "_set": [ - 2953 + 2977 ], "pk_columns": [ - 2949, + 2973, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2946, + 2970, { "updates": [ - 2965, + 2989, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2989, + 3013, { "_inc": [ - 2983 + 3007 ], "_set": [ - 2995 + 3019 ], "where": [ - 2981, + 3005, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2972, + 2996, { "_inc": [ - 2983 + 3007 ], "_set": [ - 2995 + 3019 ], "pk_columns": [ - 2993, + 3017, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2989, + 3013, { "updates": [ - 3007, + 3031, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 3037, + 3061, { "_append": [ - 3022 + 3046 ], "_delete_at_path": [ - 3028 + 3052 ], "_delete_elem": [ - 3029 + 3053 ], "_delete_key": [ - 3030 + 3054 ], "_inc": [ - 3031 + 3055 ], "_prepend": [ - 3042 + 3066 ], "_set": [ - 3046 + 3070 ], "where": [ - 3026, + 3050, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 3014, + 3038, { "_append": [ - 3022 + 3046 ], "_delete_at_path": [ - 3028 + 3052 ], "_delete_elem": [ - 3029 + 3053 ], "_delete_key": [ - 3030 + 3054 ], "_inc": [ - 3031 + 3055 ], "_prepend": [ - 3042 + 3066 ], "_set": [ - 3046 + 3070 ], "pk_columns": [ - 3041, + 3065, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 3037, + 3061, { "updates": [ - 3058, + 3082, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 3082, + 3106, { "_inc": [ - 3076 + 3100 ], "_set": [ - 3087 + 3111 ], "where": [ - 3074, + 3098, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 3065, + 3089, { "_inc": [ - 3076 + 3100 ], "_set": [ - 3087 + 3111 ], "pk_columns": [ - 3085, + 3109, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 3082, + 3106, { "updates": [ - 3099, + 3123, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 3122, + 3146, { "_set": [ - 3129 + 3153 ], "where": [ - 3115, + 3139, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 3106, + 3130, { "_set": [ - 3129 + 3153 ], "pk_columns": [ - 3125, + 3149, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 3122, + 3146, { "updates": [ - 3133, + 3157, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 3151, + 3175, { "_inc": [ - 3145 + 3169 ], "_set": [ - 3157 + 3181 ], "where": [ - 3143, + 3167, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 3134, + 3158, { "_inc": [ - 3145 + 3169 ], "_set": [ - 3157 + 3181 ], "pk_columns": [ - 3155, + 3179, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 3151, + 3175, { "updates": [ - 3169, + 3193, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 3195, + 3219, { "_inc": [ - 3189 + 3213 ], "_set": [ - 3203 + 3227 ], "where": [ - 3187, + 3211, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 3176, + 3200, { "_inc": [ - 3189 + 3213 ], "_set": [ - 3203 + 3227 ], "pk_columns": [ - 3199, + 3223, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 3195, + 3219, { "updates": [ - 3215, + 3239, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 3238, + 3262, { "_set": [ - 3245 + 3269 ], "where": [ - 3231, + 3255, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 3222, + 3246, { "_set": [ - 3245 + 3269 ], "pk_columns": [ - 3241, + 3265, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 3238, + 3262, { "updates": [ - 3249, + 3273, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 3273, + 3297, { "_append": [ - 3258 + 3282 ], "_delete_at_path": [ - 3264 + 3288 ], "_delete_elem": [ - 3265 + 3289 ], "_delete_key": [ - 3266 + 3290 ], "_inc": [ - 3267 + 3291 ], "_prepend": [ - 3277 + 3301 ], "_set": [ - 3281 + 3305 ], "where": [ - 3262, + 3286, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 3250, + 3274, { "_append": [ - 3258 + 3282 ], "_delete_at_path": [ - 3264 + 3288 ], "_delete_elem": [ - 3265 + 3289 ], "_delete_key": [ - 3266 + 3290 ], "_inc": [ - 3267 + 3291 ], "_prepend": [ - 3277 + 3301 ], "_set": [ - 3281 + 3305 ], "pk_columns": [ - 3276, + 3300, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 3273, + 3297, { "updates": [ - 3293, + 3317, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 3308, + 3332, { "_set": [ - 3313 + 3337 ], "where": [ - 3303, + 3327, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 3300, + 3324, { "_set": [ - 3313 + 3337 ], "pk_columns": [ - 3311, + 3335, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 3308, + 3332, { "updates": [ - 3317, + 3341, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 3337, + 3361, { "_inc": [ - 3331 + 3355 ], "_set": [ - 3345 + 3369 ], "where": [ - 3329, + 3353, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 3318, + 3342, { "_inc": [ - 3331 + 3355 ], "_set": [ - 3345 + 3369 ], "pk_columns": [ - 3341, + 3365, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 3337, + 3361, { "updates": [ - 3357, + 3381, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 3372, + 3396, { "_set": [ - 3377 + 3401 ], "where": [ - 3367, + 3391, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 3364, + 3388, { "_set": [ - 3377 + 3401 ], "pk_columns": [ - 3375, + 3399, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 3372, + 3396, { "updates": [ - 3381, + 3405, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 3404, + 3428, { "_append": [ - 3390 + 3414 ], "_delete_at_path": [ - 3395 + 3419 ], "_delete_elem": [ - 3396 + 3420 ], "_delete_key": [ - 3397 + 3421 ], "_inc": [ - 3398 + 3422 ], "_prepend": [ - 3406 + 3430 ], "_set": [ - 3410 + 3434 ], "where": [ - 3394, + 3418, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 3404, + 3428, { "updates": [ - 3421, + 3445, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 3438, + 3462, { "_inc": [ - 3434 + 3458 ], "_set": [ - 3443 + 3467 ], "where": [ - 3432, + 3456, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 3428, + 3452, { "_inc": [ - 3434 + 3458 ], "_set": [ - 3443 + 3467 ], "pk_columns": [ - 3441, + 3465, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 3438, + 3462, { "updates": [ - 3451, + 3475, "[news_articles_updates!]!" ] } ], "update_notification_preferences": [ - 3465, + 3489, { "_inc": [ - 3461 + 3485 ], "_set": [ - 3470 + 3494 ], "where": [ - 3459, + 3483, "notification_preferences_bool_exp!" ] } ], "update_notification_preferences_by_pk": [ - 3455, + 3479, { "_inc": [ - 3461 + 3485 ], "_set": [ - 3470 + 3494 ], "pk_columns": [ - 3468, + 3492, "notification_preferences_pk_columns_input!" ] } ], "update_notification_preferences_many": [ - 3465, + 3489, { "updates": [ - 3478, + 3502, "[notification_preferences_updates!]!" ] } ], "update_notifications": [ - 3505, + 3529, { "_append": [ - 3490 + 3514 ], "_delete_at_path": [ - 3496 + 3520 ], "_delete_elem": [ - 3497 + 3521 ], "_delete_key": [ - 3498 + 3522 ], "_inc": [ - 3499 + 3523 ], "_prepend": [ - 3509 + 3533 ], "_set": [ - 3513 + 3537 ], "where": [ - 3494, + 3518, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 3482, + 3506, { "_append": [ - 3490 + 3514 ], "_delete_at_path": [ - 3496 + 3520 ], "_delete_elem": [ - 3497 + 3521 ], "_delete_key": [ - 3498 + 3522 ], "_inc": [ - 3499 + 3523 ], "_prepend": [ - 3509 + 3533 ], "_set": [ - 3513 + 3537 ], "pk_columns": [ - 3508, + 3532, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 3505, + 3529, { "updates": [ - 3525, + 3549, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 3552, + 3576, { "_inc": [ - 3546 + 3570 ], "_set": [ - 3557 + 3581 ], "where": [ - 3544, + 3568, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 3535, + 3559, { "_inc": [ - 3546 + 3570 ], "_set": [ - 3557 + 3581 ], "pk_columns": [ - 3555, + 3579, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 3552, + 3576, { "updates": [ - 3569, + 3593, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 3586, + 3610, { "_inc": [ - 3582 + 3606 ], "_set": [ - 3592 + 3616 ], "where": [ - 3580, + 3604, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 3576, + 3600, { "_inc": [ - 3582 + 3606 ], "_set": [ - 3592 + 3616 ], "pk_columns": [ - 3590, + 3614, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 3586, + 3610, { "updates": [ - 3600, + 3624, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 3614, + 3638, { "_inc": [ - 3610 + 3634 ], "_set": [ - 3619 + 3643 ], "where": [ - 3608, + 3632, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 3604, + 3628, { "_inc": [ - 3610 + 3634 ], "_set": [ - 3619 + 3643 ], "pk_columns": [ - 3617, + 3641, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 3614, + 3638, { "updates": [ - 3627, + 3651, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 3648, + 3672, { "_inc": [ - 3642 + 3666 ], "_set": [ - 3653 + 3677 ], "where": [ - 3640, + 3664, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 3631, + 3655, { "_inc": [ - 3642 + 3666 ], "_set": [ - 3653 + 3677 ], "pk_columns": [ - 3651, + 3675, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 3648, + 3672, { "updates": [ - 3665, + 3689, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 3691, + 3715, { "_inc": [ - 3685 + 3709 ], "_set": [ - 3698 + 3722 ], "where": [ - 3683, + 3707, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 3672, + 3696, { "_inc": [ - 3685 + 3709 ], "_set": [ - 3698 + 3722 ], "pk_columns": [ - 3694, + 3718, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 3691, + 3715, { "updates": [ - 3710, + 3734, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 3752, + 3776, { "_inc": [ - 3746 + 3770 ], "_set": [ - 3757 + 3781 ], "where": [ - 3744, + 3768, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 3735, + 3759, { "_inc": [ - 3746 + 3770 ], "_set": [ - 3757 + 3781 ], "pk_columns": [ - 3755, + 3779, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 3752, + 3776, { "updates": [ - 3769, + 3793, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3786, + 3810, { "_inc": [ - 3782 + 3806 ], "_set": [ - 3791 + 3815 ], "where": [ - 3780, + 3804, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3776, + 3800, { "_inc": [ - 3782 + 3806 ], "_set": [ - 3791 + 3815 ], "pk_columns": [ - 3789, + 3813, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3786, + 3810, { "updates": [ - 3799, + 3823, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3820, + 3844, { "_inc": [ - 3814 + 3838 ], "_set": [ - 3825 + 3849 ], "where": [ - 3812, + 3836, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3803, + 3827, { "_inc": [ - 3814 + 3838 ], "_set": [ - 3825 + 3849 ], "pk_columns": [ - 3823, + 3847, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3820, + 3844, { "updates": [ - 3837, + 3861, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3863, + 3887, { "_inc": [ - 3857 + 3881 ], "_set": [ - 3870 + 3894 ], "where": [ - 3855, + 3879, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3844, + 3868, { "_inc": [ - 3857 + 3881 ], "_set": [ - 3870 + 3894 ], "pk_columns": [ - 3866, + 3890, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3863, + 3887, { "updates": [ - 3882, + 3906, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3949, + 3973, { "_inc": [ - 3943 + 3967 ], "_set": [ - 3956 + 3980 ], "where": [ - 3900, + 3924, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3889, + 3913, { "_inc": [ - 3943 + 3967 ], "_set": [ - 3956 + 3980 ], "pk_columns": [ - 3952, + 3976, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3918, + 3942, { "_inc": [ - 3912 + 3936 ], "_set": [ - 3923 + 3947 ], "where": [ - 3910, + 3934, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3901, + 3925, { "_inc": [ - 3912 + 3936 ], "_set": [ - 3923 + 3947 ], "pk_columns": [ - 3921, + 3945, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3918, + 3942, { "updates": [ - 3935, + 3959, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3949, + 3973, { "updates": [ - 3968, + 3992, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3984, + 4008, { "_inc": [ - 3980 + 4004 ], "_set": [ - 3987 + 4011 ], "where": [ - 3979, + 4003, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3984, + 4008, { "updates": [ - 3994, + 4018, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 4015, + 4039, { "_inc": [ - 4009 + 4033 ], "_set": [ - 4020 + 4044 ], "where": [ - 4007, + 4031, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3998, + 4022, { "_inc": [ - 4009 + 4033 ], "_set": [ - 4020 + 4044 ], "pk_columns": [ - 4018, + 4042, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 4015, + 4039, { "updates": [ - 4032, + 4056, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 4107, + 4131, { "_inc": [ - 4101 + 4125 ], "_set": [ - 4112 + 4136 ], "where": [ - 4099, + 4123, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 4090, + 4114, { "_inc": [ - 4101 + 4125 ], "_set": [ - 4112 + 4136 ], "pk_columns": [ - 4110, + 4134, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 4107, + 4131, { "updates": [ - 4124, + 4148, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 4166, + 4190, { "_inc": [ - 4160 + 4184 ], "_set": [ - 4171 + 4195 ], "where": [ - 4158, + 4182, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 4149, + 4173, { "_inc": [ - 4160 + 4184 ], "_set": [ - 4171 + 4195 ], "pk_columns": [ - 4169, + 4193, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 4166, + 4190, { "updates": [ - 4183, + 4207, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 4207, + 4231, { "_inc": [ - 4201 + 4225 ], "_set": [ - 4212 + 4236 ], "where": [ - 4199, + 4223, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 4190, + 4214, { "_inc": [ - 4201 + 4225 ], "_set": [ - 4212 + 4236 ], "pk_columns": [ - 4210, + 4234, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 4207, + 4231, { "updates": [ - 4224, + 4248, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 4258, + 4282, { "_inc": [ - 4252 + 4276 ], "_set": [ - 4271 + 4295 ], "where": [ - 4250, + 4274, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 4231, + 4255, { "_inc": [ - 4252 + 4276 ], "_set": [ - 4271 + 4295 ], "pk_columns": [ - 4261, + 4285, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 4258, + 4282, { "updates": [ - 4283, + 4307, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 4300, + 4324, { "_inc": [ - 4296 + 4320 ], "_set": [ - 4306 + 4330 ], "where": [ - 4294, + 4318, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 4290, + 4314, { "_inc": [ - 4296 + 4320 ], "_set": [ - 4306 + 4330 ], "pk_columns": [ - 4304, + 4328, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 4300, + 4324, { "updates": [ - 4314, + 4338, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 4332, + 4356, { "_append": [ - 4321 + 4345 ], "_delete_at_path": [ - 4325 + 4349 ], "_delete_elem": [ - 4326 + 4350 ], "_delete_key": [ - 4327 + 4351 ], "_inc": [ - 4328 + 4352 ], "_prepend": [ - 4336 + 4360 ], "_set": [ - 4338 + 4362 ], "where": [ - 4323, + 4347, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 4318, + 4342, { "_append": [ - 4321 + 4345 ], "_delete_at_path": [ - 4325 + 4349 ], "_delete_elem": [ - 4326 + 4350 ], "_delete_key": [ - 4327 + 4351 ], "_inc": [ - 4328 + 4352 ], "_prepend": [ - 4336 + 4360 ], "_set": [ - 4338 + 4362 ], "pk_columns": [ - 4335, + 4359, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 4332, + 4356, { "updates": [ - 4346, + 4370, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 4360, + 4384, { "_inc": [ - 4356 + 4380 ], "_set": [ - 4365 + 4389 ], "where": [ - 4354, + 4378, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 4350, + 4374, { "_inc": [ - 4356 + 4380 ], "_set": [ - 4365 + 4389 ], "pk_columns": [ - 4363, + 4387, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 4360, + 4384, { "updates": [ - 4373, + 4397, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 4394, + 4418, { "_inc": [ - 4388 + 4412 ], "_set": [ - 4399 + 4423 ], "where": [ - 4386, + 4410, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 4377, + 4401, { "_inc": [ - 4388 + 4412 ], "_set": [ - 4399 + 4423 ], "pk_columns": [ - 4397, + 4421, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 4394, + 4418, { "updates": [ - 4411, + 4435, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 4435, + 4459, { "_inc": [ - 4429 + 4453 ], "_set": [ - 4440 + 4464 ], "where": [ - 4427, + 4451, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 4418, + 4442, { "_inc": [ - 4429 + 4453 ], "_set": [ - 4440 + 4464 ], "pk_columns": [ - 4438, + 4462, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 4435, + 4459, { "updates": [ - 4452, + 4476, "[player_utility_updates!]!" ] } ], "update_players": [ - 4502, + 4526, { "_inc": [ - 4498 + 4522 ], "_set": [ - 4508 + 4532 ], "where": [ - 4496, + 4520, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 4492, + 4516, { "_inc": [ - 4498 + 4522 ], "_set": [ - 4508 + 4532 ], "pk_columns": [ - 4506, + 4530, "players_pk_columns_input!" ] } ], "update_players_many": [ - 4502, + 4526, { "updates": [ - 4516, + 4540, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 4530, + 4554, { "_inc": [ - 4526 + 4550 ], "_set": [ - 4535 + 4559 ], "where": [ - 4524, + 4548, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 4520, + 4544, { "_inc": [ - 4526 + 4550 ], "_set": [ - 4535 + 4559 ], "pk_columns": [ - 4533, + 4557, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 4530, + 4554, { "updates": [ - 4543, + 4567, "[plugin_versions_updates!]!" ] } ], "update_push_subscriptions": [ - 4557, + 4581, { "_inc": [ - 4553 + 4577 ], "_set": [ - 4562 + 4586 ], "where": [ - 4551, + 4575, "push_subscriptions_bool_exp!" ] } ], "update_push_subscriptions_by_pk": [ - 4547, + 4571, { "_inc": [ - 4553 + 4577 ], "_set": [ - 4562 + 4586 ], "pk_columns": [ - 4560, + 4584, "push_subscriptions_pk_columns_input!" ] } ], "update_push_subscriptions_many": [ - 4557, + 4581, { "updates": [ - 4570, + 4594, "[push_subscriptions_updates!]!" ] } ], "update_role_permissions": [ - 4585, + 4609, { "_set": [ - 4588 + 4612 ], "where": [ - 4581, + 4605, "role_permissions_bool_exp!" ] } ], "update_role_permissions_many": [ - 4585, + 4609, { "updates": [ - 4591, + 4615, "[role_permissions_updates!]!" ] } ], "update_seasons": [ - 4602, + 4626, { "_inc": [ - 4598 + 4622 ], "_set": [ - 4608 + 4632 ], "where": [ - 4596, + 4620, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 4592, + 4616, { "_inc": [ - 4598 + 4622 ], "_set": [ - 4608 + 4632 ], "pk_columns": [ - 4606, + 4630, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 4602, + 4626, { "updates": [ - 4616, + 4640, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 4629, + 4653, { "_set": [ - 4635 + 4659 ], "where": [ - 4624, + 4648, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 4620, + 4644, { "_set": [ - 4635 + 4659 ], "pk_columns": [ - 4633, + 4657, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 4629, + 4653, { "updates": [ - 4643, + 4667, "[server_regions_updates!]!" ] } ], "update_servers": [ - 4670, + 4694, { "_append": [ - 4655 + 4679 ], "_delete_at_path": [ - 4661 + 4685 ], "_delete_elem": [ - 4662 + 4686 ], "_delete_key": [ - 4663 + 4687 ], "_inc": [ - 4664 + 4688 ], "_prepend": [ - 4675 + 4699 ], "_set": [ - 4679 + 4703 ], "where": [ - 4659, + 4683, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 4647, + 4671, { "_append": [ - 4655 + 4679 ], "_delete_at_path": [ - 4661 + 4685 ], "_delete_elem": [ - 4662 + 4686 ], "_delete_key": [ - 4663 + 4687 ], "_inc": [ - 4664 + 4688 ], "_prepend": [ - 4675 + 4699 ], "_set": [ - 4679 + 4703 ], "pk_columns": [ - 4674, + 4698, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 4670, + 4694, { "updates": [ - 4691, + 4715, "[servers_updates!]!" ] } ], "update_settings": [ - 4706, + 4730, { "_set": [ - 4711 + 4735 ], "where": [ - 4701, + 4725, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 4698, + 4722, { "_set": [ - 4711 + 4735 ], "pk_columns": [ - 4709, + 4733, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 4706, + 4730, { "updates": [ - 4715, + 4739, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 4732, + 4756, { "_set": [ - 4737 + 4761 ], "where": [ - 4725, + 4749, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 4718, + 4742, { "_set": [ - 4737 + 4761 ], "pk_columns": [ - 4735, + 4759, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 4732, + 4756, { "updates": [ - 4741, + 4765, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 4752, + 4776, { "_inc": [ - 4748 + 4772 ], "_set": [ - 4758 + 4782 ], "where": [ - 4746, + 4770, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 4742, + 4766, { "_inc": [ - 4748 + 4772 ], "_set": [ - 4758 + 4782 ], "pk_columns": [ - 4756, + 4780, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 4752, + 4776, { "updates": [ - 4766, + 4790, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 4780, + 4804, { "_inc": [ - 4776 + 4800 ], "_set": [ - 4785 + 4809 ], "where": [ - 4774, + 4798, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 4770, + 4794, { "_inc": [ - 4776 + 4800 ], "_set": [ - 4785 + 4809 ], "pk_columns": [ - 4783, + 4807, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 4780, + 4804, { "updates": [ - 4793, + 4817, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 4814, + 4838, { "_inc": [ - 4808 + 4832 ], "_set": [ - 4819 + 4843 ], "where": [ - 4806, + 4830, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 4797, + 4821, { "_inc": [ - 4808 + 4832 ], "_set": [ - 4819 + 4843 ], "pk_columns": [ - 4817, + 4841, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 4814, + 4838, { "updates": [ - 4831, + 4855, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4857, + 4881, { "_inc": [ - 4851 + 4875 ], "_set": [ - 4864 + 4888 ], "where": [ - 4849, + 4873, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4838, + 4862, { "_inc": [ - 4851 + 4875 ], "_set": [ - 4864 + 4888 ], "pk_columns": [ - 4860, + 4884, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4857, + 4881, { "updates": [ - 4876, + 4900, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4893, + 4917, { "_inc": [ - 4889 + 4913 ], "_set": [ - 4898 + 4922 ], "where": [ - 4887, + 4911, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4883, + 4907, { "_inc": [ - 4889 + 4913 ], "_set": [ - 4898 + 4922 ], "pk_columns": [ - 4896, + 4920, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4893, + 4917, { "updates": [ - 4906, + 4930, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4926, + 4950, { "_set": [ - 4933 + 4957 ], "where": [ - 4919, + 4943, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4910, + 4934, { "_set": [ - 4933 + 4957 ], "pk_columns": [ - 4929, + 4953, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4926, + 4950, { "updates": [ - 4937, + 4961, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4955, + 4979, { "_inc": [ - 4949 + 4973 ], "_set": [ - 4960 + 4984 ], "where": [ - 4947, + 4971, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4938, + 4962, { "_inc": [ - 4949 + 4973 ], "_set": [ - 4960 + 4984 ], "pk_columns": [ - 4958, + 4982, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4955, + 4979, { "updates": [ - 4972, + 4996, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4998, + 5022, { "_inc": [ - 4992 + 5016 ], "_set": [ - 5006 + 5030 ], "where": [ - 4990, + 5014, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4979, + 5003, { "_inc": [ - 4992 + 5016 ], "_set": [ - 5006 + 5030 ], "pk_columns": [ - 5002, + 5026, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4998, + 5022, { "updates": [ - 5018, + 5042, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 5035, + 5059, { "_inc": [ - 5031 + 5055 ], "_set": [ - 5041 + 5065 ], "where": [ - 5029, + 5053, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 5025, + 5049, { "_inc": [ - 5031 + 5055 ], "_set": [ - 5041 + 5065 ], "pk_columns": [ - 5039, + 5063, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 5035, + 5059, { "updates": [ - 5049, + 5073, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 5063, + 5087, { "_inc": [ - 5059 + 5083 ], "_set": [ - 5068 + 5092 ], "where": [ - 5057, + 5081, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 5053, + 5077, { "_inc": [ - 5059 + 5083 ], "_set": [ - 5068 + 5092 ], "pk_columns": [ - 5066, + 5090, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 5063, + 5087, { "updates": [ - 5076, + 5100, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 5099, + 5123, { "_inc": [ - 5093 + 5117 ], "_set": [ - 5107 + 5131 ], "where": [ - 5091, + 5115, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 5080, + 5104, { "_inc": [ - 5093 + 5117 ], "_set": [ - 5107 + 5131 ], "pk_columns": [ - 5103, + 5127, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 5099, + 5123, { "updates": [ - 5119, + 5143, "[teams_updates!]!" ] } ], "update_tournament_awards": [ - 5148, + 5172, { "_inc": [ - 5142 + 5166 ], "_set": [ - 5154 + 5178 ], "where": [ - 5140, + 5164, "tournament_awards_bool_exp!" ] } ], "update_tournament_awards_by_pk": [ - 5131, + 5155, { "_inc": [ - 5142 + 5166 ], "_set": [ - 5154 + 5178 ], "pk_columns": [ - 5152, + 5176, "tournament_awards_pk_columns_input!" ] } ], "update_tournament_awards_many": [ - 5148, + 5172, { "updates": [ - 5166, + 5190, "[tournament_awards_updates!]!" ] } ], "update_tournament_brackets": [ - 5192, + 5216, { "_inc": [ - 5186 + 5210 ], "_set": [ - 5200 + 5224 ], "where": [ - 5184, + 5208, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 5173, + 5197, { "_inc": [ - 5186 + 5210 ], "_set": [ - 5200 + 5224 ], "pk_columns": [ - 5196, + 5220, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 5192, + 5216, { "updates": [ - 5212, + 5236, "[tournament_brackets_updates!]!" ] } ], "update_tournament_categories": [ - 5233, + 5257, { "_set": [ - 5238 + 5262 ], "where": [ - 5226, + 5250, "tournament_categories_bool_exp!" ] } ], "update_tournament_categories_by_pk": [ - 5219, + 5243, { "_set": [ - 5238 + 5262 ], "pk_columns": [ - 5236, + 5260, "tournament_categories_pk_columns_input!" ] } ], "update_tournament_categories_many": [ - 5233, + 5257, { "updates": [ - 5242, + 5266, "[tournament_categories_updates!]!" ] } ], "update_tournament_organizer_teams": [ - 5257, + 5281, { "_set": [ - 5262 + 5286 ], "where": [ - 5250, + 5274, "tournament_organizer_teams_bool_exp!" ] } ], "update_tournament_organizer_teams_by_pk": [ - 5243, + 5267, { "_set": [ - 5262 + 5286 ], "pk_columns": [ - 5260, + 5284, "tournament_organizer_teams_pk_columns_input!" ] } ], "update_tournament_organizer_teams_many": [ - 5257, + 5281, { "updates": [ - 5266, + 5290, "[tournament_organizer_teams_updates!]!" ] } ], "update_tournament_organizers": [ - 5284, + 5308, { "_inc": [ - 5278 + 5302 ], "_set": [ - 5289 + 5313 ], "where": [ - 5276, + 5300, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 5267, + 5291, { "_inc": [ - 5278 + 5302 ], "_set": [ - 5289 + 5313 ], "pk_columns": [ - 5287, + 5311, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 5284, + 5308, { "updates": [ - 5301, + 5325, "[tournament_organizers_updates!]!" ] } ], "update_tournament_prizes": [ - 5325, + 5349, { "_inc": [ - 5319 + 5343 ], "_set": [ - 5330 + 5354 ], "where": [ - 5317, + 5341, "tournament_prizes_bool_exp!" ] } ], "update_tournament_prizes_by_pk": [ - 5308, + 5332, { "_inc": [ - 5319 + 5343 ], "_set": [ - 5330 + 5354 ], "pk_columns": [ - 5328, + 5352, "tournament_prizes_pk_columns_input!" ] } ], "update_tournament_prizes_many": [ - 5325, + 5349, { "updates": [ - 5342, + 5366, "[tournament_prizes_updates!]!" ] } ], "update_tournament_stage_windows": [ - 5366, + 5390, { "_inc": [ - 5360 + 5384 ], "_set": [ - 5371 + 5395 ], "where": [ - 5358, + 5382, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 5349, + 5373, { "_inc": [ - 5360 + 5384 ], "_set": [ - 5371 + 5395 ], "pk_columns": [ - 5369, + 5393, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 5366, + 5390, { "updates": [ - 5383, + 5407, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 5413, + 5437, { "_append": [ - 5398 + 5422 ], "_delete_at_path": [ - 5404 + 5428 ], "_delete_elem": [ - 5405 + 5429 ], "_delete_key": [ - 5406 + 5430 ], "_inc": [ - 5407 + 5431 ], "_prepend": [ - 5418 + 5442 ], "_set": [ - 5422 + 5446 ], "where": [ - 5402, + 5426, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 5390, + 5414, { "_append": [ - 5398 + 5422 ], "_delete_at_path": [ - 5404 + 5428 ], "_delete_elem": [ - 5405 + 5429 ], "_delete_key": [ - 5406 + 5430 ], "_inc": [ - 5407 + 5431 ], "_prepend": [ - 5418 + 5442 ], "_set": [ - 5422 + 5446 ], "pk_columns": [ - 5417, + 5441, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 5413, + 5437, { "updates": [ - 5434, + 5458, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 5458, + 5482, { "_inc": [ - 5452 + 5476 ], "_set": [ - 5463 + 5487 ], "where": [ - 5450, + 5474, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 5441, + 5465, { "_inc": [ - 5452 + 5476 ], "_set": [ - 5463 + 5487 ], "pk_columns": [ - 5461, + 5485, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 5458, + 5482, { "updates": [ - 5475, + 5499, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 5499, + 5523, { "_inc": [ - 5493 + 5517 ], "_set": [ - 5504 + 5528 ], "where": [ - 5491, + 5515, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 5482, + 5506, { "_inc": [ - 5493 + 5517 ], "_set": [ - 5504 + 5528 ], "pk_columns": [ - 5502, + 5526, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 5499, + 5523, { "updates": [ - 5516, + 5540, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 5540, + 5564, { "_inc": [ - 5534 + 5558 ], "_set": [ - 5546 + 5570 ], "where": [ - 5532, + 5556, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 5523, + 5547, { "_inc": [ - 5534 + 5558 ], "_set": [ - 5546 + 5570 ], "pk_columns": [ - 5544, + 5568, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 5540, + 5564, { "updates": [ - 5558, + 5582, "[tournament_teams_updates!]!" ] } ], "update_tournaments": [ - 5594, + 5618, { "_inc": [ - 5588 + 5612 ], "_set": [ - 5610 + 5634 ], "where": [ - 5586, + 5610, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 5565, + 5589, { "_inc": [ - 5588 + 5612 ], "_set": [ - 5610 + 5634 ], "pk_columns": [ - 5598, + 5622, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 5594, + 5618, { "updates": [ - 5622, + 5646, "[tournaments_updates!]!" ] } ], "update_utility_collection_items": [ - 5646, + 5670, { "_inc": [ - 5640 + 5664 ], "_set": [ - 5651 + 5675 ], "where": [ - 5638, + 5662, "utility_collection_items_bool_exp!" ] } ], "update_utility_collection_items_by_pk": [ - 5629, + 5653, { "_inc": [ - 5640 + 5664 ], "_set": [ - 5651 + 5675 ], "pk_columns": [ - 5649, + 5673, "utility_collection_items_pk_columns_input!" ] } ], "update_utility_collection_items_many": [ - 5646, + 5670, { "updates": [ - 5663, + 5687, "[utility_collection_items_updates!]!" ] } ], "update_utility_collections": [ - 5680, + 5704, { "_inc": [ - 5676 + 5700 ], "_set": [ - 5686 + 5710 ], "where": [ - 5674, + 5698, "utility_collections_bool_exp!" ] } ], "update_utility_collections_by_pk": [ - 5670, + 5694, { "_inc": [ - 5676 + 5700 ], "_set": [ - 5686 + 5710 ], "pk_columns": [ - 5684, + 5708, "utility_collections_pk_columns_input!" ] } ], "update_utility_collections_many": [ - 5680, + 5704, { "updates": [ - 5694, + 5718, "[utility_collections_updates!]!" ] } ], "update_utility_demo_mines": [ - 5708, + 5732, { "_inc": [ - 5704 + 5728 ], "_set": [ - 5713 + 5737 ], "where": [ - 5702, + 5726, "utility_demo_mines_bool_exp!" ] } ], "update_utility_demo_mines_by_pk": [ - 5698, + 5722, { "_inc": [ - 5704 + 5728 ], "_set": [ - 5713 + 5737 ], "pk_columns": [ - 5711, + 5735, "utility_demo_mines_pk_columns_input!" ] } ], "update_utility_demo_mines_many": [ - 5708, + 5732, { "updates": [ - 5721, + 5745, "[utility_demo_mines_updates!]!" ] } ], "update_utility_demo_throws": [ - 5735, + 5759, { "_inc": [ - 5731 + 5755 ], "_set": [ - 5740 + 5764 ], "where": [ - 5729, + 5753, "utility_demo_throws_bool_exp!" ] } ], "update_utility_demo_throws_by_pk": [ - 5725, + 5749, { "_inc": [ - 5731 + 5755 ], "_set": [ - 5740 + 5764 ], "pk_columns": [ - 5738, + 5762, "utility_demo_throws_pk_columns_input!" ] } ], "update_utility_demo_throws_many": [ - 5735, + 5759, { "updates": [ - 5748, + 5772, "[utility_demo_throws_updates!]!" ] } ], "update_utility_drift_results": [ - 5779, + 5803, { "_inc": [ - 5773 + 5797 ], "_set": [ - 5792 + 5816 ], "where": [ - 5771, + 5795, "utility_drift_results_bool_exp!" ] } ], "update_utility_drift_results_by_pk": [ - 5752, + 5776, { "_inc": [ - 5773 + 5797 ], "_set": [ - 5792 + 5816 ], "pk_columns": [ - 5782, + 5806, "utility_drift_results_pk_columns_input!" ] } ], "update_utility_drift_results_many": [ - 5779, + 5803, { "updates": [ - 5804, + 5828, "[utility_drift_results_updates!]!" ] } ], "update_utility_drift_scans": [ - 5821, + 5845, { "_inc": [ - 5817 + 5841 ], "_set": [ - 5827 + 5851 ], "where": [ - 5815, + 5839, "utility_drift_scans_bool_exp!" ] } ], "update_utility_drift_scans_by_pk": [ - 5811, + 5835, { "_inc": [ - 5817 + 5841 ], "_set": [ - 5827 + 5851 ], "pk_columns": [ - 5825, + 5849, "utility_drift_scans_pk_columns_input!" ] } ], "update_utility_drift_scans_many": [ - 5821, + 5845, { "updates": [ - 5835, + 5859, "[utility_drift_scans_updates!]!" ] } ], "update_utility_lineup_favorites": [ - 5856, + 5880, { "_inc": [ - 5850 + 5874 ], "_set": [ - 5861 + 5885 ], "where": [ - 5848, + 5872, "utility_lineup_favorites_bool_exp!" ] } ], "update_utility_lineup_favorites_by_pk": [ - 5839, + 5863, { "_inc": [ - 5850 + 5874 ], "_set": [ - 5861 + 5885 ], "pk_columns": [ - 5859, + 5883, "utility_lineup_favorites_pk_columns_input!" ] } ], "update_utility_lineup_favorites_many": [ - 5856, + 5880, { "updates": [ - 5873, + 5897, "[utility_lineup_favorites_updates!]!" ] } ], "update_utility_lineup_progress": [ - 5907, + 5931, { "_inc": [ - 5901 + 5925 ], "_set": [ - 5920 + 5944 ], "where": [ - 5899, + 5923, "utility_lineup_progress_bool_exp!" ] } ], "update_utility_lineup_progress_by_pk": [ - 5880, + 5904, { "_inc": [ - 5901 + 5925 ], "_set": [ - 5920 + 5944 ], "pk_columns": [ - 5910, + 5934, "utility_lineup_progress_pk_columns_input!" ] } ], "update_utility_lineup_progress_many": [ - 5907, + 5931, { "updates": [ - 5932, + 5956, "[utility_lineup_progress_updates!]!" ] } ], "update_utility_lineup_renders": [ - 5962, + 5986, { "_append": [ - 5947 + 5971 ], "_delete_at_path": [ - 5953 + 5977 ], "_delete_elem": [ - 5954 + 5978 ], "_delete_key": [ - 5955 + 5979 ], "_inc": [ - 5956 + 5980 ], "_prepend": [ - 5966 + 5990 ], "_set": [ - 5970 + 5994 ], "where": [ - 5951, + 5975, "utility_lineup_renders_bool_exp!" ] } ], "update_utility_lineup_renders_by_pk": [ - 5939, + 5963, { "_append": [ - 5947 + 5971 ], "_delete_at_path": [ - 5953 + 5977 ], "_delete_elem": [ - 5954 + 5978 ], "_delete_key": [ - 5955 + 5979 ], "_inc": [ - 5956 + 5980 ], "_prepend": [ - 5966 + 5990 ], "_set": [ - 5970 + 5994 ], "pk_columns": [ - 5965, + 5989, "utility_lineup_renders_pk_columns_input!" ] } ], "update_utility_lineup_renders_many": [ - 5962, + 5986, { "updates": [ - 5982, + 6006, "[utility_lineup_renders_updates!]!" ] } ], "update_utility_lineup_repairs": [ - 6016, + 6040, { "_inc": [ - 6010 + 6034 ], "_set": [ - 6029 + 6053 ], "where": [ - 6008, + 6032, "utility_lineup_repairs_bool_exp!" ] } ], "update_utility_lineup_repairs_by_pk": [ - 5989, + 6013, { "_inc": [ - 6010 + 6034 ], "_set": [ - 6029 + 6053 ], "pk_columns": [ - 6019, + 6043, "utility_lineup_repairs_pk_columns_input!" ] } ], "update_utility_lineup_repairs_many": [ - 6016, + 6040, { "updates": [ - 6041, + 6065, "[utility_lineup_repairs_updates!]!" ] } ], "update_utility_lineup_votes": [ - 6065, + 6089, { "_inc": [ - 6059 + 6083 ], "_set": [ - 6070 + 6094 ], "where": [ - 6057, + 6081, "utility_lineup_votes_bool_exp!" ] } ], "update_utility_lineup_votes_by_pk": [ - 6048, + 6072, { "_inc": [ - 6059 + 6083 ], "_set": [ - 6070 + 6094 ], "pk_columns": [ - 6068, + 6092, "utility_lineup_votes_pk_columns_input!" ] } ], "update_utility_lineup_votes_many": [ - 6065, + 6089, { "updates": [ - 6082, + 6106, "[utility_lineup_votes_updates!]!" ] } ], "update_utility_lineups": [ - 6122, + 6146, { "_append": [ - 6107 + 6131 ], "_delete_at_path": [ - 6113 + 6137 ], "_delete_elem": [ - 6114 + 6138 ], "_delete_key": [ - 6115 + 6139 ], "_inc": [ - 6116 + 6140 ], "_prepend": [ - 6127 + 6151 ], "_set": [ - 6139 + 6163 ], "where": [ - 6111, + 6135, "utility_lineups_bool_exp!" ] } ], "update_utility_lineups_by_pk": [ - 6089, + 6113, { "_append": [ - 6107 + 6131 ], "_delete_at_path": [ - 6113 + 6137 ], "_delete_elem": [ - 6114 + 6138 ], "_delete_key": [ - 6115 + 6139 ], "_inc": [ - 6116 + 6140 ], "_prepend": [ - 6127 + 6151 ], "_set": [ - 6139 + 6163 ], "pk_columns": [ - 6126, + 6150, "utility_lineups_pk_columns_input!" ] } ], "update_utility_lineups_many": [ - 6122, + 6146, { "updates": [ - 6151, + 6175, "[utility_lineups_updates!]!" ] } ], "update_utility_meta_lineups": [ - 6168, + 6192, { "_inc": [ - 6164 + 6188 ], "_set": [ - 6173 + 6197 ], "where": [ - 6162, + 6186, "utility_meta_lineups_bool_exp!" ] } ], "update_utility_meta_lineups_by_pk": [ - 6158, + 6182, { "_inc": [ - 6164 + 6188 ], "_set": [ - 6173 + 6197 ], "pk_columns": [ - 6171, + 6195, "utility_meta_lineups_pk_columns_input!" ] } ], "update_utility_meta_lineups_many": [ - 6168, + 6192, { "updates": [ - 6181, + 6205, "[utility_meta_lineups_updates!]!" ] } ], "update_utility_playbook_steps": [ - 6202, + 6226, { "_inc": [ - 6196 + 6220 ], "_set": [ - 6207 + 6231 ], "where": [ - 6194, + 6218, "utility_playbook_steps_bool_exp!" ] } ], "update_utility_playbook_steps_by_pk": [ - 6185, + 6209, { "_inc": [ - 6196 + 6220 ], "_set": [ - 6207 + 6231 ], "pk_columns": [ - 6205, + 6229, "utility_playbook_steps_pk_columns_input!" ] } ], "update_utility_playbook_steps_many": [ - 6202, + 6226, { "updates": [ - 6219, + 6243, "[utility_playbook_steps_updates!]!" ] } ], "update_utility_playbooks": [ - 6236, + 6260, { "_inc": [ - 6232 + 6256 ], "_set": [ - 6242 + 6266 ], "where": [ - 6230, + 6254, "utility_playbooks_bool_exp!" ] } ], "update_utility_playbooks_by_pk": [ - 6226, + 6250, { "_inc": [ - 6232 + 6256 ], "_set": [ - 6242 + 6266 ], "pk_columns": [ - 6240, + 6264, "utility_playbooks_pk_columns_input!" ] } ], "update_utility_playbooks_many": [ - 6236, + 6260, { "updates": [ - 6250, + 6274, "[utility_playbooks_updates!]!" ] } ], "update_utility_practice_invites": [ - 6271, + 6295, { "_inc": [ - 6265 + 6289 ], "_set": [ - 6276 + 6300 ], "where": [ - 6263, + 6287, "utility_practice_invites_bool_exp!" ] } ], "update_utility_practice_invites_by_pk": [ - 6254, + 6278, { "_inc": [ - 6265 + 6289 ], "_set": [ - 6276 + 6300 ], "pk_columns": [ - 6274, + 6298, "utility_practice_invites_pk_columns_input!" ] } ], "update_utility_practice_invites_many": [ - 6271, + 6295, { "updates": [ - 6288, + 6312, "[utility_practice_invites_updates!]!" ] } ], "update_utility_practice_sessions": [ - 6314, + 6338, { "_inc": [ - 6308 + 6332 ], "_set": [ - 6322 + 6346 ], "where": [ - 6306, + 6330, "utility_practice_sessions_bool_exp!" ] } ], "update_utility_practice_sessions_by_pk": [ - 6295, + 6319, { "_inc": [ - 6308 + 6332 ], "_set": [ - 6322 + 6346 ], "pk_columns": [ - 6318, + 6342, "utility_practice_sessions_pk_columns_input!" ] } ], "update_utility_practice_sessions_many": [ - 6314, + 6338, { "updates": [ - 6334, + 6358, "[utility_practice_sessions_updates!]!" ] } ], "update_v_match_captains": [ - 6506, + 6530, { "_inc": [ - 6502 + 6526 ], "_set": [ - 6510 + 6534 ], "where": [ - 6501, + 6525, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 6506, + 6530, { "updates": [ - 6517, + 6541, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 6617, + 6641, { "_inc": [ - 6613 + 6637 ], "_set": [ - 6620 + 6644 ], "where": [ - 6612, + 6636, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 6617, + 6641, { "updates": [ - 6627, + 6651, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 6839, + 6863, { "_inc": [ - 6833 + 6857 ], "_set": [ - 6842 + 6866 ], "where": [ - 6832, + 6856, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 6839, + 6863, { "updates": [ - 6853, + 6877, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 7016, + 7040, { "_set": [ - 7021 + 7045 ], "where": [ - 7010, + 7034, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 7016, + 7040, { "updates": [ - 7024, + 7048, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 7110, + 7134, { "_inc": [ - 7104 + 7128 ], "_set": [ - 7124 + 7148 ], "where": [ - 7102, + 7126, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 7083, + 7107, { "_inc": [ - 7104 + 7128 ], "_set": [ - 7124 + 7148 ], "pk_columns": [ - 7114, + 7138, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 7110, + 7134, { "updates": [ - 7136, + 7160, "[v_team_stage_results_updates!]!" ] } ], "validateGamedata": [ - 87, + 88, { "game_server_node_id": [ - 6341, + 6365, "uuid!" ] } ], "watchDemo": [ - 149, + 150, { "match_map_demo_id": [ - 6341 + 6365 ], "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "writeServerFile": [ - 87, + 88, { "content": [ - 84, + 85, "String!" ], "file_path": [ - 84, + 85, "String!" ], "node_id": [ - 84, + 85, "String!" ], "server_id": [ - 84 + 85 ] } ], "__typename": [ - 84 + 85 ] }, "Subscription": { "_map_pool": [ - 152, + 153, { "distinct_on": [ - 164, + 165, "[_map_pool_select_column!]" ], "limit": [ @@ -196743,19 +197244,19 @@ export default { 41 ], "order_by": [ - 162, + 163, "[_map_pool_order_by!]" ], "where": [ - 155 + 156 ] } ], "_map_pool_aggregate": [ - 153, + 154, { "distinct_on": [ - 164, + 165, "[_map_pool_select_column!]" ], "limit": [ @@ -196765,48 +197266,48 @@ export default { 41 ], "order_by": [ - 162, + 163, "[_map_pool_order_by!]" ], "where": [ - 155 + 156 ] } ], "_map_pool_by_pk": [ - 152, + 153, { "map_id": [ - 6341, + 6365, "uuid!" ], "map_pool_id": [ - 6341, + 6365, "uuid!" ] } ], "_map_pool_stream": [ - 152, + 153, { "batch_size": [ 41, "Int!" ], "cursor": [ - 166, + 167, "[_map_pool_stream_cursor_input]!" ], "where": [ - 155 + 156 ] } ], "abandoned_matches": [ - 171, + 172, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -196816,19 +197317,19 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "abandoned_matches_aggregate": [ - 172, + 173, { "distinct_on": [ - 192, + 193, "[abandoned_matches_select_column!]" ], "limit": [ @@ -196838,44 +197339,44 @@ export default { 41 ], "order_by": [ - 190, + 191, "[abandoned_matches_order_by!]" ], "where": [ - 180 + 181 ] } ], "abandoned_matches_by_pk": [ - 171, + 172, { "id": [ - 6341, + 6365, "uuid!" ] } ], "abandoned_matches_stream": [ - 171, + 172, { "batch_size": [ 41, "Int!" ], "cursor": [ - 200, + 201, "[abandoned_matches_stream_cursor_input]!" ], "where": [ - 180 + 181 ] } ], "api_keys": [ - 212, + 213, { "distinct_on": [ - 226, + 227, "[api_keys_select_column!]" ], "limit": [ @@ -196885,19 +197386,19 @@ export default { 41 ], "order_by": [ - 224, + 225, "[api_keys_order_by!]" ], "where": [ - 216 + 217 ] } ], "api_keys_aggregate": [ - 213, + 214, { "distinct_on": [ - 226, + 227, "[api_keys_select_column!]" ], "limit": [ @@ -196907,44 +197408,44 @@ export default { 41 ], "order_by": [ - 224, + 225, "[api_keys_order_by!]" ], "where": [ - 216 + 217 ] } ], "api_keys_by_pk": [ - 212, + 213, { "id": [ - 6341, + 6365, "uuid!" ] } ], "api_keys_stream": [ - 212, + 213, { "batch_size": [ 41, "Int!" ], "cursor": [ - 231, + 232, "[api_keys_stream_cursor_input]!" ], "where": [ - 216 + 217 ] } ], "award_recipients": [ - 240, + 241, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -196954,19 +197455,19 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "award_recipients_aggregate": [ - 241, + 242, { "distinct_on": [ - 261, + 262, "[award_recipients_select_column!]" ], "limit": [ @@ -196976,44 +197477,44 @@ export default { 41 ], "order_by": [ - 259, + 260, "[award_recipients_order_by!]" ], "where": [ - 249 + 250 ] } ], "award_recipients_by_pk": [ - 240, + 241, { "id": [ - 6341, + 6365, "uuid!" ] } ], "award_recipients_stream": [ - 240, + 241, { "batch_size": [ 41, "Int!" ], "cursor": [ - 269, + 270, "[award_recipients_stream_cursor_input]!" ], "where": [ - 249 + 250 ] } ], "awards": [ - 281, + 282, { "distinct_on": [ - 296, + 297, "[awards_select_column!]" ], "limit": [ @@ -197023,19 +197524,19 @@ export default { 41 ], "order_by": [ - 294, + 295, "[awards_order_by!]" ], "where": [ - 285 + 286 ] } ], "awards_aggregate": [ - 282, + 283, { "distinct_on": [ - 296, + 297, "[awards_select_column!]" ], "limit": [ @@ -197045,44 +197546,44 @@ export default { 41 ], "order_by": [ - 294, + 295, "[awards_order_by!]" ], "where": [ - 285 + 286 ] } ], "awards_by_pk": [ - 281, + 282, { "id": [ - 6341, + 6365, "uuid!" ] } ], "awards_stream": [ - 281, + 282, { "batch_size": [ 41, "Int!" ], "cursor": [ - 301, + 302, "[awards_stream_cursor_input]!" ], "where": [ - 285 + 286 ] } ], "chat_read_state": [ - 314, + 315, { "distinct_on": [ - 328, + 329, "[chat_read_state_select_column!]" ], "limit": [ @@ -197092,19 +197593,19 @@ export default { 41 ], "order_by": [ - 326, + 327, "[chat_read_state_order_by!]" ], "where": [ - 318 + 319 ] } ], "chat_read_state_aggregate": [ - 315, + 316, { "distinct_on": [ - 328, + 329, "[chat_read_state_select_column!]" ], "limit": [ @@ -197114,48 +197615,48 @@ export default { 41 ], "order_by": [ - 326, + 327, "[chat_read_state_order_by!]" ], "where": [ - 318 + 319 ] } ], "chat_read_state_by_pk": [ - 314, + 315, { "steam_id": [ - 309, + 310, "bigint!" ], "thread": [ - 84, + 85, "String!" ] } ], "chat_read_state_stream": [ - 314, + 315, { "batch_size": [ 41, "Int!" ], "cursor": [ - 333, + 334, "[chat_read_state_stream_cursor_input]!" ], "where": [ - 318 + 319 ] } ], "clip_render_jobs": [ - 341, + 342, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -197165,19 +197666,19 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "clip_render_jobs_aggregate": [ - 342, + 343, { "distinct_on": [ - 369, + 370, "[clip_render_jobs_select_column!]" ], "limit": [ @@ -197187,44 +197688,44 @@ export default { 41 ], "order_by": [ - 366, + 367, "[clip_render_jobs_order_by!]" ], "where": [ - 353 + 354 ] } ], "clip_render_jobs_by_pk": [ - 341, + 342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "clip_render_jobs_stream": [ - 341, + 342, { "batch_size": [ 41, "Int!" ], "cursor": [ - 379, + 380, "[clip_render_jobs_stream_cursor_input]!" ], "where": [ - 353 + 354 ] } ], "custom_pages": [ - 393, + 394, { "distinct_on": [ - 412, + 413, "[custom_pages_select_column!]" ], "limit": [ @@ -197234,19 +197735,19 @@ export default { 41 ], "order_by": [ - 409, + 410, "[custom_pages_order_by!]" ], "where": [ - 398 + 399 ] } ], "custom_pages_aggregate": [ - 394, + 395, { "distinct_on": [ - 412, + 413, "[custom_pages_select_column!]" ], "limit": [ @@ -197256,44 +197757,44 @@ export default { 41 ], "order_by": [ - 409, + 410, "[custom_pages_order_by!]" ], "where": [ - 398 + 399 ] } ], "custom_pages_by_pk": [ - 393, + 394, { "id": [ - 6341, + 6365, "uuid!" ] } ], "custom_pages_stream": [ - 393, + 394, { "batch_size": [ 41, "Int!" ], "cursor": [ - 417, + 418, "[custom_pages_stream_cursor_input]!" ], "where": [ - 398 + 399 ] } ], "db_backups": [ - 425, + 426, { "distinct_on": [ - 439, + 440, "[db_backups_select_column!]" ], "limit": [ @@ -197303,19 +197804,19 @@ export default { 41 ], "order_by": [ - 437, + 438, "[db_backups_order_by!]" ], "where": [ - 429 + 430 ] } ], "db_backups_aggregate": [ - 426, + 427, { "distinct_on": [ - 439, + 440, "[db_backups_select_column!]" ], "limit": [ @@ -197325,44 +197826,44 @@ export default { 41 ], "order_by": [ - 437, + 438, "[db_backups_order_by!]" ], "where": [ - 429 + 430 ] } ], "db_backups_by_pk": [ - 425, + 426, { "id": [ - 6341, + 6365, "uuid!" ] } ], "db_backups_stream": [ - 425, + 426, { "batch_size": [ 41, "Int!" ], "cursor": [ - 444, + 445, "[db_backups_stream_cursor_input]!" ], "where": [ - 429 + 430 ] } ], "direct_conversations": [ - 452, + 453, { "distinct_on": [ - 466, + 467, "[direct_conversations_select_column!]" ], "limit": [ @@ -197372,19 +197873,19 @@ export default { 41 ], "order_by": [ - 464, + 465, "[direct_conversations_order_by!]" ], "where": [ - 456 + 457 ] } ], "direct_conversations_aggregate": [ - 453, + 454, { "distinct_on": [ - 466, + 467, "[direct_conversations_select_column!]" ], "limit": [ @@ -197394,48 +197895,48 @@ export default { 41 ], "order_by": [ - 464, + 465, "[direct_conversations_order_by!]" ], "where": [ - 456 + 457 ] } ], "direct_conversations_by_pk": [ - 452, + 453, { "room_id": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "direct_conversations_stream": [ - 452, + 453, { "batch_size": [ 41, "Int!" ], "cursor": [ - 471, + 472, "[direct_conversations_stream_cursor_input]!" ], "where": [ - 456 + 457 ] } ], "direct_messages": [ - 479, + 480, { "distinct_on": [ - 493, + 494, "[direct_messages_select_column!]" ], "limit": [ @@ -197445,19 +197946,19 @@ export default { 41 ], "order_by": [ - 491, + 492, "[direct_messages_order_by!]" ], "where": [ - 483 + 484 ] } ], "direct_messages_aggregate": [ - 480, + 481, { "distinct_on": [ - 493, + 494, "[direct_messages_select_column!]" ], "limit": [ @@ -197467,44 +197968,44 @@ export default { 41 ], "order_by": [ - 491, + 492, "[direct_messages_order_by!]" ], "where": [ - 483 + 484 ] } ], "direct_messages_by_pk": [ - 479, + 480, { "id": [ - 6341, + 6365, "uuid!" ] } ], "direct_messages_stream": [ - 479, + 480, { "batch_size": [ 41, "Int!" ], "cursor": [ - 498, + 499, "[direct_messages_stream_cursor_input]!" ], "where": [ - 483 + 484 ] } ], "draft_game_picks": [ - 506, + 507, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -197514,19 +198015,19 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "draft_game_picks_aggregate": [ - 507, + 508, { "distinct_on": [ - 529, + 530, "[draft_game_picks_select_column!]" ], "limit": [ @@ -197536,44 +198037,44 @@ export default { 41 ], "order_by": [ - 527, + 528, "[draft_game_picks_order_by!]" ], "where": [ - 517 + 518 ] } ], "draft_game_picks_by_pk": [ - 506, + 507, { "id": [ - 6341, + 6365, "uuid!" ] } ], "draft_game_picks_stream": [ - 506, + 507, { "batch_size": [ 41, "Int!" ], "cursor": [ - 539, + 540, "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 517 + 518 ] } ], "draft_game_players": [ - 551, + 552, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -197583,19 +198084,19 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "draft_game_players_aggregate": [ - 552, + 553, { "distinct_on": [ - 574, + 575, "[draft_game_players_select_column!]" ], "limit": [ @@ -197605,48 +198106,48 @@ export default { 41 ], "order_by": [ - 572, + 573, "[draft_game_players_order_by!]" ], "where": [ - 562 + 563 ] } ], "draft_game_players_by_pk": [ - 551, + 552, { "draft_game_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "draft_game_players_stream": [ - 551, + 552, { "batch_size": [ 41, "Int!" ], "cursor": [ - 584, + 585, "[draft_game_players_stream_cursor_input]!" ], "where": [ - 562 + 563 ] } ], "draft_games": [ - 596, + 597, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -197656,19 +198157,19 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "draft_games_aggregate": [ - 597, + 598, { "distinct_on": [ - 620, + 621, "[draft_games_select_column!]" ], "limit": [ @@ -197678,44 +198179,44 @@ export default { 41 ], "order_by": [ - 618, + 619, "[draft_games_order_by!]" ], "where": [ - 607 + 608 ] } ], "draft_games_by_pk": [ - 596, + 597, { "id": [ - 6341, + 6365, "uuid!" ] } ], "draft_games_stream": [ - 596, + 597, { "batch_size": [ 41, "Int!" ], "cursor": [ - 630, + 631, "[draft_games_stream_cursor_input]!" ], "where": [ - 607 + 608 ] } ], "e_award_sources": [ - 642, + 643, { "distinct_on": [ - 656, + 657, "[e_award_sources_select_column!]" ], "limit": [ @@ -197725,19 +198226,19 @@ export default { 41 ], "order_by": [ - 654, + 655, "[e_award_sources_order_by!]" ], "where": [ - 645 + 646 ] } ], "e_award_sources_aggregate": [ - 643, + 644, { "distinct_on": [ - 656, + 657, "[e_award_sources_select_column!]" ], "limit": [ @@ -197747,44 +198248,44 @@ export default { 41 ], "order_by": [ - 654, + 655, "[e_award_sources_order_by!]" ], "where": [ - 645 + 646 ] } ], "e_award_sources_by_pk": [ - 642, + 643, { "value": [ - 84, + 85, "String!" ] } ], "e_award_sources_stream": [ - 642, + 643, { "batch_size": [ 41, "Int!" ], "cursor": [ - 658, + 659, "[e_award_sources_stream_cursor_input]!" ], "where": [ - 645 + 646 ] } ], "e_award_tiers": [ - 662, + 663, { "distinct_on": [ - 676, + 677, "[e_award_tiers_select_column!]" ], "limit": [ @@ -197794,19 +198295,19 @@ export default { 41 ], "order_by": [ - 674, + 675, "[e_award_tiers_order_by!]" ], "where": [ - 665 + 666 ] } ], "e_award_tiers_aggregate": [ - 663, + 664, { "distinct_on": [ - 676, + 677, "[e_award_tiers_select_column!]" ], "limit": [ @@ -197816,44 +198317,44 @@ export default { 41 ], "order_by": [ - 674, + 675, "[e_award_tiers_order_by!]" ], "where": [ - 665 + 666 ] } ], "e_award_tiers_by_pk": [ - 662, + 663, { "value": [ - 84, + 85, "String!" ] } ], "e_award_tiers_stream": [ - 662, + 663, { "batch_size": [ 41, "Int!" ], "cursor": [ - 678, + 679, "[e_award_tiers_stream_cursor_input]!" ], "where": [ - 665 + 666 ] } ], "e_check_in_settings": [ - 682, + 683, { "distinct_on": [ - 696, + 697, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -197863,19 +198364,19 @@ export default { 41 ], "order_by": [ - 694, + 695, "[e_check_in_settings_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_check_in_settings_aggregate": [ - 683, + 684, { "distinct_on": [ - 696, + 697, "[e_check_in_settings_select_column!]" ], "limit": [ @@ -197885,44 +198386,44 @@ export default { 41 ], "order_by": [ - 694, + 695, "[e_check_in_settings_order_by!]" ], "where": [ - 685 + 686 ] } ], "e_check_in_settings_by_pk": [ - 682, + 683, { "value": [ - 84, + 85, "String!" ] } ], "e_check_in_settings_stream": [ - 682, + 683, { "batch_size": [ 41, "Int!" ], "cursor": [ - 698, + 699, "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 685 + 686 ] } ], "e_draft_game_captain_selection": [ - 702, + 703, { "distinct_on": [ - 717, + 718, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -197932,19 +198433,19 @@ export default { 41 ], "order_by": [ - 715, + 716, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 705 + 706 ] } ], "e_draft_game_captain_selection_aggregate": [ - 703, + 704, { "distinct_on": [ - 717, + 718, "[e_draft_game_captain_selection_select_column!]" ], "limit": [ @@ -197954,44 +198455,44 @@ export default { 41 ], "order_by": [ - 715, + 716, "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 705 + 706 ] } ], "e_draft_game_captain_selection_by_pk": [ - 702, + 703, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_captain_selection_stream": [ - 702, + 703, { "batch_size": [ 41, "Int!" ], "cursor": [ - 719, + 720, "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 705 + 706 ] } ], "e_draft_game_draft_order": [ - 723, + 724, { "distinct_on": [ - 738, + 739, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -198001,19 +198502,19 @@ export default { 41 ], "order_by": [ - 736, + 737, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 726 + 727 ] } ], "e_draft_game_draft_order_aggregate": [ - 724, + 725, { "distinct_on": [ - 738, + 739, "[e_draft_game_draft_order_select_column!]" ], "limit": [ @@ -198023,44 +198524,44 @@ export default { 41 ], "order_by": [ - 736, + 737, "[e_draft_game_draft_order_order_by!]" ], "where": [ - 726 + 727 ] } ], "e_draft_game_draft_order_by_pk": [ - 723, + 724, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_draft_order_stream": [ - 723, + 724, { "batch_size": [ 41, "Int!" ], "cursor": [ - 740, + 741, "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 726 + 727 ] } ], "e_draft_game_mode": [ - 744, + 745, { "distinct_on": [ - 759, + 760, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -198070,19 +198571,19 @@ export default { 41 ], "order_by": [ - 757, + 758, "[e_draft_game_mode_order_by!]" ], "where": [ - 747 + 748 ] } ], "e_draft_game_mode_aggregate": [ - 745, + 746, { "distinct_on": [ - 759, + 760, "[e_draft_game_mode_select_column!]" ], "limit": [ @@ -198092,44 +198593,44 @@ export default { 41 ], "order_by": [ - 757, + 758, "[e_draft_game_mode_order_by!]" ], "where": [ - 747 + 748 ] } ], "e_draft_game_mode_by_pk": [ - 744, + 745, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_mode_stream": [ - 744, + 745, { "batch_size": [ 41, "Int!" ], "cursor": [ - 761, + 762, "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 747 + 748 ] } ], "e_draft_game_player_status": [ - 765, + 766, { "distinct_on": [ - 780, + 781, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -198139,19 +198640,19 @@ export default { 41 ], "order_by": [ - 778, + 779, "[e_draft_game_player_status_order_by!]" ], "where": [ - 768 + 769 ] } ], "e_draft_game_player_status_aggregate": [ - 766, + 767, { "distinct_on": [ - 780, + 781, "[e_draft_game_player_status_select_column!]" ], "limit": [ @@ -198161,44 +198662,44 @@ export default { 41 ], "order_by": [ - 778, + 779, "[e_draft_game_player_status_order_by!]" ], "where": [ - 768 + 769 ] } ], "e_draft_game_player_status_by_pk": [ - 765, + 766, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_player_status_stream": [ - 765, + 766, { "batch_size": [ 41, "Int!" ], "cursor": [ - 782, + 783, "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 768 + 769 ] } ], "e_draft_game_status": [ - 786, + 787, { "distinct_on": [ - 801, + 802, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -198208,19 +198709,19 @@ export default { 41 ], "order_by": [ - 799, + 800, "[e_draft_game_status_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_draft_game_status_aggregate": [ - 787, + 788, { "distinct_on": [ - 801, + 802, "[e_draft_game_status_select_column!]" ], "limit": [ @@ -198230,44 +198731,44 @@ export default { 41 ], "order_by": [ - 799, + 800, "[e_draft_game_status_order_by!]" ], "where": [ - 789 + 790 ] } ], "e_draft_game_status_by_pk": [ - 786, + 787, { "value": [ - 84, + 85, "String!" ] } ], "e_draft_game_status_stream": [ - 786, + 787, { "batch_size": [ 41, "Int!" ], "cursor": [ - 803, + 804, "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 789 + 790 ] } ], "e_event_media_access": [ - 807, + 808, { "distinct_on": [ - 821, + 822, "[e_event_media_access_select_column!]" ], "limit": [ @@ -198277,19 +198778,19 @@ export default { 41 ], "order_by": [ - 819, + 820, "[e_event_media_access_order_by!]" ], "where": [ - 810 + 811 ] } ], "e_event_media_access_aggregate": [ - 808, + 809, { "distinct_on": [ - 821, + 822, "[e_event_media_access_select_column!]" ], "limit": [ @@ -198299,44 +198800,44 @@ export default { 41 ], "order_by": [ - 819, + 820, "[e_event_media_access_order_by!]" ], "where": [ - 810 + 811 ] } ], "e_event_media_access_by_pk": [ - 807, + 808, { "value": [ - 84, + 85, "String!" ] } ], "e_event_media_access_stream": [ - 807, + 808, { "batch_size": [ 41, "Int!" ], "cursor": [ - 823, + 824, "[e_event_media_access_stream_cursor_input]!" ], "where": [ - 810 + 811 ] } ], "e_event_visibility": [ - 827, + 828, { "distinct_on": [ - 841, + 842, "[e_event_visibility_select_column!]" ], "limit": [ @@ -198346,19 +198847,19 @@ export default { 41 ], "order_by": [ - 839, + 840, "[e_event_visibility_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_event_visibility_aggregate": [ - 828, + 829, { "distinct_on": [ - 841, + 842, "[e_event_visibility_select_column!]" ], "limit": [ @@ -198368,44 +198869,44 @@ export default { 41 ], "order_by": [ - 839, + 840, "[e_event_visibility_order_by!]" ], "where": [ - 830 + 831 ] } ], "e_event_visibility_by_pk": [ - 827, + 828, { "value": [ - 84, + 85, "String!" ] } ], "e_event_visibility_stream": [ - 827, + 828, { "batch_size": [ 41, "Int!" ], "cursor": [ - 843, + 844, "[e_event_visibility_stream_cursor_input]!" ], "where": [ - 830 + 831 ] } ], "e_friend_status": [ - 847, + 848, { "distinct_on": [ - 862, + 863, "[e_friend_status_select_column!]" ], "limit": [ @@ -198415,19 +198916,19 @@ export default { 41 ], "order_by": [ - 860, + 861, "[e_friend_status_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_friend_status_aggregate": [ - 848, + 849, { "distinct_on": [ - 862, + 863, "[e_friend_status_select_column!]" ], "limit": [ @@ -198437,44 +198938,44 @@ export default { 41 ], "order_by": [ - 860, + 861, "[e_friend_status_order_by!]" ], "where": [ - 850 + 851 ] } ], "e_friend_status_by_pk": [ - 847, + 848, { "value": [ - 84, + 85, "String!" ] } ], "e_friend_status_stream": [ - 847, + 848, { "batch_size": [ 41, "Int!" ], "cursor": [ - 864, + 865, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 850 + 851 ] } ], "e_game_cfg_types": [ - 868, + 869, { "distinct_on": [ - 882, + 883, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -198484,19 +198985,19 @@ export default { 41 ], "order_by": [ - 880, + 881, "[e_game_cfg_types_order_by!]" ], "where": [ - 871 + 872 ] } ], "e_game_cfg_types_aggregate": [ - 869, + 870, { "distinct_on": [ - 882, + 883, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -198506,44 +199007,44 @@ export default { 41 ], "order_by": [ - 880, + 881, "[e_game_cfg_types_order_by!]" ], "where": [ - 871 + 872 ] } ], "e_game_cfg_types_by_pk": [ - 868, + 869, { "value": [ - 84, + 85, "String!" ] } ], "e_game_cfg_types_stream": [ - 868, + 869, { "batch_size": [ 41, "Int!" ], "cursor": [ - 884, + 885, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 871 + 872 ] } ], "e_game_plugin_channels": [ - 888, + 889, { "distinct_on": [ - 902, + 903, "[e_game_plugin_channels_select_column!]" ], "limit": [ @@ -198553,19 +199054,19 @@ export default { 41 ], "order_by": [ - 900, + 901, "[e_game_plugin_channels_order_by!]" ], "where": [ - 891 + 892 ] } ], "e_game_plugin_channels_aggregate": [ - 889, + 890, { "distinct_on": [ - 902, + 903, "[e_game_plugin_channels_select_column!]" ], "limit": [ @@ -198575,44 +199076,44 @@ export default { 41 ], "order_by": [ - 900, + 901, "[e_game_plugin_channels_order_by!]" ], "where": [ - 891 + 892 ] } ], "e_game_plugin_channels_by_pk": [ - 888, + 889, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_channels_stream": [ - 888, + 889, { "batch_size": [ 41, "Int!" ], "cursor": [ - 904, + 905, "[e_game_plugin_channels_stream_cursor_input]!" ], "where": [ - 891 + 892 ] } ], "e_game_plugin_install_statuses": [ - 908, + 909, { "distinct_on": [ - 922, + 923, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ @@ -198622,19 +199123,19 @@ export default { 41 ], "order_by": [ - 920, + 921, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 911 + 912 ] } ], "e_game_plugin_install_statuses_aggregate": [ - 909, + 910, { "distinct_on": [ - 922, + 923, "[e_game_plugin_install_statuses_select_column!]" ], "limit": [ @@ -198644,44 +199145,44 @@ export default { 41 ], "order_by": [ - 920, + 921, "[e_game_plugin_install_statuses_order_by!]" ], "where": [ - 911 + 912 ] } ], "e_game_plugin_install_statuses_by_pk": [ - 908, + 909, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_install_statuses_stream": [ - 908, + 909, { "batch_size": [ 41, "Int!" ], "cursor": [ - 924, + 925, "[e_game_plugin_install_statuses_stream_cursor_input]!" ], "where": [ - 911 + 912 ] } ], "e_game_plugin_kinds": [ - 928, + 929, { "distinct_on": [ - 942, + 943, "[e_game_plugin_kinds_select_column!]" ], "limit": [ @@ -198691,19 +199192,19 @@ export default { 41 ], "order_by": [ - 940, + 941, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_game_plugin_kinds_aggregate": [ - 929, + 930, { "distinct_on": [ - 942, + 943, "[e_game_plugin_kinds_select_column!]" ], "limit": [ @@ -198713,44 +199214,44 @@ export default { 41 ], "order_by": [ - 940, + 941, "[e_game_plugin_kinds_order_by!]" ], "where": [ - 931 + 932 ] } ], "e_game_plugin_kinds_by_pk": [ - 928, + 929, { "value": [ - 84, + 85, "String!" ] } ], "e_game_plugin_kinds_stream": [ - 928, + 929, { "batch_size": [ 41, "Int!" ], "cursor": [ - 944, + 945, "[e_game_plugin_kinds_stream_cursor_input]!" ], "where": [ - 931 + 932 ] } ], "e_game_server_node_statuses": [ - 948, + 949, { "distinct_on": [ - 963, + 964, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -198760,19 +199261,19 @@ export default { 41 ], "order_by": [ - 961, + 962, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 951 + 952 ] } ], "e_game_server_node_statuses_aggregate": [ - 949, + 950, { "distinct_on": [ - 963, + 964, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -198782,44 +199283,44 @@ export default { 41 ], "order_by": [ - 961, + 962, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 951 + 952 ] } ], "e_game_server_node_statuses_by_pk": [ - 948, + 949, { "value": [ - 84, + 85, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 948, + 949, { "batch_size": [ 41, "Int!" ], "cursor": [ - 965, + 966, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 951 + 952 ] } ], "e_league_movement_types": [ - 969, + 970, { "distinct_on": [ - 984, + 985, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -198829,19 +199330,19 @@ export default { 41 ], "order_by": [ - 982, + 983, "[e_league_movement_types_order_by!]" ], "where": [ - 972 + 973 ] } ], "e_league_movement_types_aggregate": [ - 970, + 971, { "distinct_on": [ - 984, + 985, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -198851,44 +199352,44 @@ export default { 41 ], "order_by": [ - 982, + 983, "[e_league_movement_types_order_by!]" ], "where": [ - 972 + 973 ] } ], "e_league_movement_types_by_pk": [ - 969, + 970, { "value": [ - 84, + 85, "String!" ] } ], "e_league_movement_types_stream": [ - 969, + 970, { "batch_size": [ 41, "Int!" ], "cursor": [ - 986, + 987, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 972 + 973 ] } ], "e_league_proposal_statuses": [ - 990, + 991, { "distinct_on": [ - 1005, + 1006, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -198898,19 +199399,19 @@ export default { 41 ], "order_by": [ - 1003, + 1004, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 993 + 994 ] } ], "e_league_proposal_statuses_aggregate": [ - 991, + 992, { "distinct_on": [ - 1005, + 1006, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -198920,44 +199421,44 @@ export default { 41 ], "order_by": [ - 1003, + 1004, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 993 + 994 ] } ], "e_league_proposal_statuses_by_pk": [ - 990, + 991, { "value": [ - 84, + 85, "String!" ] } ], "e_league_proposal_statuses_stream": [ - 990, + 991, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1007, + 1008, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 993 + 994 ] } ], "e_league_registration_statuses": [ - 1011, + 1012, { "distinct_on": [ - 1026, + 1027, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -198967,19 +199468,19 @@ export default { 41 ], "order_by": [ - 1024, + 1025, "[e_league_registration_statuses_order_by!]" ], "where": [ - 1014 + 1015 ] } ], "e_league_registration_statuses_aggregate": [ - 1012, + 1013, { "distinct_on": [ - 1026, + 1027, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -198989,44 +199490,44 @@ export default { 41 ], "order_by": [ - 1024, + 1025, "[e_league_registration_statuses_order_by!]" ], "where": [ - 1014 + 1015 ] } ], "e_league_registration_statuses_by_pk": [ - 1011, + 1012, { "value": [ - 84, + 85, "String!" ] } ], "e_league_registration_statuses_stream": [ - 1011, + 1012, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1028, + 1029, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 1014 + 1015 ] } ], "e_league_season_statuses": [ - 1032, + 1033, { "distinct_on": [ - 1047, + 1048, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -199036,19 +199537,19 @@ export default { 41 ], "order_by": [ - 1045, + 1046, "[e_league_season_statuses_order_by!]" ], "where": [ - 1035 + 1036 ] } ], "e_league_season_statuses_aggregate": [ - 1033, + 1034, { "distinct_on": [ - 1047, + 1048, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -199058,44 +199559,44 @@ export default { 41 ], "order_by": [ - 1045, + 1046, "[e_league_season_statuses_order_by!]" ], "where": [ - 1035 + 1036 ] } ], "e_league_season_statuses_by_pk": [ - 1032, + 1033, { "value": [ - 84, + 85, "String!" ] } ], "e_league_season_statuses_stream": [ - 1032, + 1033, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1049, + 1050, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 1035 + 1036 ] } ], "e_lobby_access": [ - 1053, + 1054, { "distinct_on": [ - 1068, + 1069, "[e_lobby_access_select_column!]" ], "limit": [ @@ -199105,19 +199606,19 @@ export default { 41 ], "order_by": [ - 1066, + 1067, "[e_lobby_access_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_lobby_access_aggregate": [ - 1054, + 1055, { "distinct_on": [ - 1068, + 1069, "[e_lobby_access_select_column!]" ], "limit": [ @@ -199127,44 +199628,44 @@ export default { 41 ], "order_by": [ - 1066, + 1067, "[e_lobby_access_order_by!]" ], "where": [ - 1056 + 1057 ] } ], "e_lobby_access_by_pk": [ - 1053, + 1054, { "value": [ - 84, + 85, "String!" ] } ], "e_lobby_access_stream": [ - 1053, + 1054, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1070, + 1071, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 1056 + 1057 ] } ], "e_lobby_player_status": [ - 1074, + 1075, { "distinct_on": [ - 1088, + 1089, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -199174,19 +199675,19 @@ export default { 41 ], "order_by": [ - 1086, + 1087, "[e_lobby_player_status_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_lobby_player_status_aggregate": [ - 1075, + 1076, { "distinct_on": [ - 1088, + 1089, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -199196,44 +199697,44 @@ export default { 41 ], "order_by": [ - 1086, + 1087, "[e_lobby_player_status_order_by!]" ], "where": [ - 1077 + 1078 ] } ], "e_lobby_player_status_by_pk": [ - 1074, + 1075, { "value": [ - 84, + 85, "String!" ] } ], "e_lobby_player_status_stream": [ - 1074, + 1075, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1090, + 1091, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 1077 + 1078 ] } ], "e_map_pool_types": [ - 1094, + 1095, { "distinct_on": [ - 1109, + 1110, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -199243,19 +199744,19 @@ export default { 41 ], "order_by": [ - 1107, + 1108, "[e_map_pool_types_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_map_pool_types_aggregate": [ - 1095, + 1096, { "distinct_on": [ - 1109, + 1110, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -199265,44 +199766,44 @@ export default { 41 ], "order_by": [ - 1107, + 1108, "[e_map_pool_types_order_by!]" ], "where": [ - 1097 + 1098 ] } ], "e_map_pool_types_by_pk": [ - 1094, + 1095, { "value": [ - 84, + 85, "String!" ] } ], "e_map_pool_types_stream": [ - 1094, + 1095, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1111, + 1112, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 1097 + 1098 ] } ], "e_match_clip_visibility": [ - 1115, + 1116, { "distinct_on": [ - 1129, + 1130, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -199312,19 +199813,19 @@ export default { 41 ], "order_by": [ - 1127, + 1128, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_clip_visibility_aggregate": [ - 1116, + 1117, { "distinct_on": [ - 1129, + 1130, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -199334,44 +199835,44 @@ export default { 41 ], "order_by": [ - 1127, + 1128, "[e_match_clip_visibility_order_by!]" ], "where": [ - 1118 + 1119 ] } ], "e_match_clip_visibility_by_pk": [ - 1115, + 1116, { "value": [ - 84, + 85, "String!" ] } ], "e_match_clip_visibility_stream": [ - 1115, + 1116, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1131, + 1132, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 1118 + 1119 ] } ], "e_match_map_status": [ - 1135, + 1136, { "distinct_on": [ - 1150, + 1151, "[e_match_map_status_select_column!]" ], "limit": [ @@ -199381,19 +199882,19 @@ export default { 41 ], "order_by": [ - 1148, + 1149, "[e_match_map_status_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_map_status_aggregate": [ - 1136, + 1137, { "distinct_on": [ - 1150, + 1151, "[e_match_map_status_select_column!]" ], "limit": [ @@ -199403,44 +199904,44 @@ export default { 41 ], "order_by": [ - 1148, + 1149, "[e_match_map_status_order_by!]" ], "where": [ - 1138 + 1139 ] } ], "e_match_map_status_by_pk": [ - 1135, + 1136, { "value": [ - 84, + 85, "String!" ] } ], "e_match_map_status_stream": [ - 1135, + 1136, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1152, + 1153, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 1138 + 1139 ] } ], "e_match_mode": [ - 1156, + 1157, { "distinct_on": [ - 1170, + 1171, "[e_match_mode_select_column!]" ], "limit": [ @@ -199450,19 +199951,19 @@ export default { 41 ], "order_by": [ - 1168, + 1169, "[e_match_mode_order_by!]" ], "where": [ - 1159 + 1160 ] } ], "e_match_mode_aggregate": [ - 1157, + 1158, { "distinct_on": [ - 1170, + 1171, "[e_match_mode_select_column!]" ], "limit": [ @@ -199472,44 +199973,44 @@ export default { 41 ], "order_by": [ - 1168, + 1169, "[e_match_mode_order_by!]" ], "where": [ - 1159 + 1160 ] } ], "e_match_mode_by_pk": [ - 1156, + 1157, { "value": [ - 84, + 85, "String!" ] } ], "e_match_mode_stream": [ - 1156, + 1157, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1172, + 1173, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 1159 + 1160 ] } ], "e_match_party_sources": [ - 1176, + 1177, { "distinct_on": [ - 1190, + 1191, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -199519,19 +200020,19 @@ export default { 41 ], "order_by": [ - 1188, + 1189, "[e_match_party_sources_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_party_sources_aggregate": [ - 1177, + 1178, { "distinct_on": [ - 1190, + 1191, "[e_match_party_sources_select_column!]" ], "limit": [ @@ -199541,44 +200042,44 @@ export default { 41 ], "order_by": [ - 1188, + 1189, "[e_match_party_sources_order_by!]" ], "where": [ - 1179 + 1180 ] } ], "e_match_party_sources_by_pk": [ - 1176, + 1177, { "value": [ - 84, + 85, "String!" ] } ], "e_match_party_sources_stream": [ - 1176, + 1177, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1192, + 1193, "[e_match_party_sources_stream_cursor_input]!" ], "where": [ - 1179 + 1180 ] } ], "e_match_status": [ - 1196, + 1197, { "distinct_on": [ - 1211, + 1212, "[e_match_status_select_column!]" ], "limit": [ @@ -199588,19 +200089,19 @@ export default { 41 ], "order_by": [ - 1209, + 1210, "[e_match_status_order_by!]" ], "where": [ - 1199 + 1200 ] } ], "e_match_status_aggregate": [ - 1197, + 1198, { "distinct_on": [ - 1211, + 1212, "[e_match_status_select_column!]" ], "limit": [ @@ -199610,44 +200111,44 @@ export default { 41 ], "order_by": [ - 1209, + 1210, "[e_match_status_order_by!]" ], "where": [ - 1199 + 1200 ] } ], "e_match_status_by_pk": [ - 1196, + 1197, { "value": [ - 84, + 85, "String!" ] } ], "e_match_status_stream": [ - 1196, + 1197, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1213, + 1214, "[e_match_status_stream_cursor_input]!" ], "where": [ - 1199 + 1200 ] } ], "e_match_types": [ - 1217, + 1218, { "distinct_on": [ - 1232, + 1233, "[e_match_types_select_column!]" ], "limit": [ @@ -199657,19 +200158,19 @@ export default { 41 ], "order_by": [ - 1230, + 1231, "[e_match_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_match_types_aggregate": [ - 1218, + 1219, { "distinct_on": [ - 1232, + 1233, "[e_match_types_select_column!]" ], "limit": [ @@ -199679,44 +200180,44 @@ export default { 41 ], "order_by": [ - 1230, + 1231, "[e_match_types_order_by!]" ], "where": [ - 1220 + 1221 ] } ], "e_match_types_by_pk": [ - 1217, + 1218, { "value": [ - 84, + 85, "String!" ] } ], "e_match_types_stream": [ - 1217, + 1218, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1234, + 1235, "[e_match_types_stream_cursor_input]!" ], "where": [ - 1220 + 1221 ] } ], "e_notification_types": [ - 1238, + 1239, { "distinct_on": [ - 1252, + 1253, "[e_notification_types_select_column!]" ], "limit": [ @@ -199726,19 +200227,19 @@ export default { 41 ], "order_by": [ - 1250, + 1251, "[e_notification_types_order_by!]" ], "where": [ - 1241 + 1242 ] } ], "e_notification_types_aggregate": [ - 1239, + 1240, { "distinct_on": [ - 1252, + 1253, "[e_notification_types_select_column!]" ], "limit": [ @@ -199748,44 +200249,44 @@ export default { 41 ], "order_by": [ - 1250, + 1251, "[e_notification_types_order_by!]" ], "where": [ - 1241 + 1242 ] } ], "e_notification_types_by_pk": [ - 1238, + 1239, { "value": [ - 84, + 85, "String!" ] } ], "e_notification_types_stream": [ - 1238, + 1239, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1254, + 1255, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 1241 + 1242 ] } ], "e_objective_types": [ - 1258, + 1259, { "distinct_on": [ - 1272, + 1273, "[e_objective_types_select_column!]" ], "limit": [ @@ -199795,19 +200296,19 @@ export default { 41 ], "order_by": [ - 1270, + 1271, "[e_objective_types_order_by!]" ], "where": [ - 1261 + 1262 ] } ], "e_objective_types_aggregate": [ - 1259, + 1260, { "distinct_on": [ - 1272, + 1273, "[e_objective_types_select_column!]" ], "limit": [ @@ -199817,44 +200318,44 @@ export default { 41 ], "order_by": [ - 1270, + 1271, "[e_objective_types_order_by!]" ], "where": [ - 1261 + 1262 ] } ], "e_objective_types_by_pk": [ - 1258, + 1259, { "value": [ - 84, + 85, "String!" ] } ], "e_objective_types_stream": [ - 1258, + 1259, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1274, + 1275, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 1261 + 1262 ] } ], "e_player_roles": [ - 1278, + 1279, { "distinct_on": [ - 1292, + 1293, "[e_player_roles_select_column!]" ], "limit": [ @@ -199864,19 +200365,19 @@ export default { 41 ], "order_by": [ - 1290, + 1291, "[e_player_roles_order_by!]" ], "where": [ - 1281 + 1282 ] } ], "e_player_roles_aggregate": [ - 1279, + 1280, { "distinct_on": [ - 1292, + 1293, "[e_player_roles_select_column!]" ], "limit": [ @@ -199886,44 +200387,44 @@ export default { 41 ], "order_by": [ - 1290, + 1291, "[e_player_roles_order_by!]" ], "where": [ - 1281 + 1282 ] } ], "e_player_roles_by_pk": [ - 1278, + 1279, { "value": [ - 84, + 85, "String!" ] } ], "e_player_roles_stream": [ - 1278, + 1279, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1294, + 1295, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 1281 + 1282 ] } ], "e_plugin_runtimes": [ - 1298, + 1299, { "distinct_on": [ - 1312, + 1313, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -199933,19 +200434,19 @@ export default { 41 ], "order_by": [ - 1310, + 1311, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1301 + 1302 ] } ], "e_plugin_runtimes_aggregate": [ - 1299, + 1300, { "distinct_on": [ - 1312, + 1313, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -199955,44 +200456,44 @@ export default { 41 ], "order_by": [ - 1310, + 1311, "[e_plugin_runtimes_order_by!]" ], "where": [ - 1301 + 1302 ] } ], "e_plugin_runtimes_by_pk": [ - 1298, + 1299, { "value": [ - 84, + 85, "String!" ] } ], "e_plugin_runtimes_stream": [ - 1298, + 1299, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1314, + 1315, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 1301 + 1302 ] } ], "e_ready_settings": [ - 1318, + 1319, { "distinct_on": [ - 1332, + 1333, "[e_ready_settings_select_column!]" ], "limit": [ @@ -200002,19 +200503,19 @@ export default { 41 ], "order_by": [ - 1330, + 1331, "[e_ready_settings_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_ready_settings_aggregate": [ - 1319, + 1320, { "distinct_on": [ - 1332, + 1333, "[e_ready_settings_select_column!]" ], "limit": [ @@ -200024,44 +200525,44 @@ export default { 41 ], "order_by": [ - 1330, + 1331, "[e_ready_settings_order_by!]" ], "where": [ - 1321 + 1322 ] } ], "e_ready_settings_by_pk": [ - 1318, + 1319, { "value": [ - 84, + 85, "String!" ] } ], "e_ready_settings_stream": [ - 1318, + 1319, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1334, + 1335, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 1321 + 1322 ] } ], "e_sanction_types": [ - 1338, + 1339, { "distinct_on": [ - 1353, + 1354, "[e_sanction_types_select_column!]" ], "limit": [ @@ -200071,19 +200572,19 @@ export default { 41 ], "order_by": [ - 1351, + 1352, "[e_sanction_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_sanction_types_aggregate": [ - 1339, + 1340, { "distinct_on": [ - 1353, + 1354, "[e_sanction_types_select_column!]" ], "limit": [ @@ -200093,44 +200594,44 @@ export default { 41 ], "order_by": [ - 1351, + 1352, "[e_sanction_types_order_by!]" ], "where": [ - 1341 + 1342 ] } ], "e_sanction_types_by_pk": [ - 1338, + 1339, { "value": [ - 84, + 85, "String!" ] } ], "e_sanction_types_stream": [ - 1338, + 1339, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1355, + 1356, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 1341 + 1342 ] } ], "e_scrim_request_statuses": [ - 1359, + 1360, { "distinct_on": [ - 1373, + 1374, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -200140,19 +200641,19 @@ export default { 41 ], "order_by": [ - 1371, + 1372, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1362 + 1363 ] } ], "e_scrim_request_statuses_aggregate": [ - 1360, + 1361, { "distinct_on": [ - 1373, + 1374, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -200162,44 +200663,44 @@ export default { 41 ], "order_by": [ - 1371, + 1372, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 1362 + 1363 ] } ], "e_scrim_request_statuses_by_pk": [ - 1359, + 1360, { "value": [ - 84, + 85, "String!" ] } ], "e_scrim_request_statuses_stream": [ - 1359, + 1360, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1375, + 1376, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 1362 + 1363 ] } ], "e_server_types": [ - 1379, + 1380, { "distinct_on": [ - 1393, + 1394, "[e_server_types_select_column!]" ], "limit": [ @@ -200209,19 +200710,19 @@ export default { 41 ], "order_by": [ - 1391, + 1392, "[e_server_types_order_by!]" ], "where": [ - 1382 + 1383 ] } ], "e_server_types_aggregate": [ - 1380, + 1381, { "distinct_on": [ - 1393, + 1394, "[e_server_types_select_column!]" ], "limit": [ @@ -200231,44 +200732,44 @@ export default { 41 ], "order_by": [ - 1391, + 1392, "[e_server_types_order_by!]" ], "where": [ - 1382 + 1383 ] } ], "e_server_types_by_pk": [ - 1379, + 1380, { "value": [ - 84, + 85, "String!" ] } ], "e_server_types_stream": [ - 1379, + 1380, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1395, + 1396, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1382 + 1383 ] } ], "e_sides": [ - 1399, + 1400, { "distinct_on": [ - 1413, + 1414, "[e_sides_select_column!]" ], "limit": [ @@ -200278,19 +200779,19 @@ export default { 41 ], "order_by": [ - 1411, + 1412, "[e_sides_order_by!]" ], "where": [ - 1402 + 1403 ] } ], "e_sides_aggregate": [ - 1400, + 1401, { "distinct_on": [ - 1413, + 1414, "[e_sides_select_column!]" ], "limit": [ @@ -200300,44 +200801,44 @@ export default { 41 ], "order_by": [ - 1411, + 1412, "[e_sides_order_by!]" ], "where": [ - 1402 + 1403 ] } ], "e_sides_by_pk": [ - 1399, + 1400, { "value": [ - 84, + 85, "String!" ] } ], "e_sides_stream": [ - 1399, + 1400, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1415, + 1416, "[e_sides_stream_cursor_input]!" ], "where": [ - 1402 + 1403 ] } ], "e_system_alert_types": [ - 1419, + 1420, { "distinct_on": [ - 1433, + 1434, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -200347,19 +200848,19 @@ export default { 41 ], "order_by": [ - 1431, + 1432, "[e_system_alert_types_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_system_alert_types_aggregate": [ - 1420, + 1421, { "distinct_on": [ - 1433, + 1434, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -200369,44 +200870,44 @@ export default { 41 ], "order_by": [ - 1431, + 1432, "[e_system_alert_types_order_by!]" ], "where": [ - 1422 + 1423 ] } ], "e_system_alert_types_by_pk": [ - 1419, + 1420, { "value": [ - 84, + 85, "String!" ] } ], "e_system_alert_types_stream": [ - 1419, + 1420, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1435, + 1436, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1422 + 1423 ] } ], "e_team_roles": [ - 1439, + 1440, { "distinct_on": [ - 1454, + 1455, "[e_team_roles_select_column!]" ], "limit": [ @@ -200416,19 +200917,19 @@ export default { 41 ], "order_by": [ - 1452, + 1453, "[e_team_roles_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_team_roles_aggregate": [ - 1440, + 1441, { "distinct_on": [ - 1454, + 1455, "[e_team_roles_select_column!]" ], "limit": [ @@ -200438,44 +200939,44 @@ export default { 41 ], "order_by": [ - 1452, + 1453, "[e_team_roles_order_by!]" ], "where": [ - 1442 + 1443 ] } ], "e_team_roles_by_pk": [ - 1439, + 1440, { "value": [ - 84, + 85, "String!" ] } ], "e_team_roles_stream": [ - 1439, + 1440, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1456, + 1457, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1442 + 1443 ] } ], "e_team_roster_statuses": [ - 1460, + 1461, { "distinct_on": [ - 1474, + 1475, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -200485,19 +200986,19 @@ export default { 41 ], "order_by": [ - 1472, + 1473, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1463 + 1464 ] } ], "e_team_roster_statuses_aggregate": [ - 1461, + 1462, { "distinct_on": [ - 1474, + 1475, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -200507,44 +201008,44 @@ export default { 41 ], "order_by": [ - 1472, + 1473, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1463 + 1464 ] } ], "e_team_roster_statuses_by_pk": [ - 1460, + 1461, { "value": [ - 84, + 85, "String!" ] } ], "e_team_roster_statuses_stream": [ - 1460, + 1461, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1476, + 1477, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1463 + 1464 ] } ], "e_timeout_settings": [ - 1480, + 1481, { "distinct_on": [ - 1494, + 1495, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -200554,19 +201055,19 @@ export default { 41 ], "order_by": [ - 1492, + 1493, "[e_timeout_settings_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_timeout_settings_aggregate": [ - 1481, + 1482, { "distinct_on": [ - 1494, + 1495, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -200576,44 +201077,44 @@ export default { 41 ], "order_by": [ - 1492, + 1493, "[e_timeout_settings_order_by!]" ], "where": [ - 1483 + 1484 ] } ], "e_timeout_settings_by_pk": [ - 1480, + 1481, { "value": [ - 84, + 85, "String!" ] } ], "e_timeout_settings_stream": [ - 1480, + 1481, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1496, + 1497, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1483 + 1484 ] } ], "e_tournament_categories": [ - 1500, + 1501, { "distinct_on": [ - 1515, + 1516, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -200623,19 +201124,19 @@ export default { 41 ], "order_by": [ - 1513, + 1514, "[e_tournament_categories_order_by!]" ], "where": [ - 1503 + 1504 ] } ], "e_tournament_categories_aggregate": [ - 1501, + 1502, { "distinct_on": [ - 1515, + 1516, "[e_tournament_categories_select_column!]" ], "limit": [ @@ -200645,44 +201146,44 @@ export default { 41 ], "order_by": [ - 1513, + 1514, "[e_tournament_categories_order_by!]" ], "where": [ - 1503 + 1504 ] } ], "e_tournament_categories_by_pk": [ - 1500, + 1501, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_categories_stream": [ - 1500, + 1501, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1517, + 1518, "[e_tournament_categories_stream_cursor_input]!" ], "where": [ - 1503 + 1504 ] } ], "e_tournament_stage_types": [ - 1521, + 1522, { "distinct_on": [ - 1536, + 1537, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -200692,19 +201193,19 @@ export default { 41 ], "order_by": [ - 1534, + 1535, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1524 + 1525 ] } ], "e_tournament_stage_types_aggregate": [ - 1522, + 1523, { "distinct_on": [ - 1536, + 1537, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -200714,44 +201215,44 @@ export default { 41 ], "order_by": [ - 1534, + 1535, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1524 + 1525 ] } ], "e_tournament_stage_types_by_pk": [ - 1521, + 1522, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_stage_types_stream": [ - 1521, + 1522, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1538, + 1539, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1524 + 1525 ] } ], "e_tournament_status": [ - 1542, + 1543, { "distinct_on": [ - 1557, + 1558, "[e_tournament_status_select_column!]" ], "limit": [ @@ -200761,19 +201262,19 @@ export default { 41 ], "order_by": [ - 1555, + 1556, "[e_tournament_status_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_tournament_status_aggregate": [ - 1543, + 1544, { "distinct_on": [ - 1557, + 1558, "[e_tournament_status_select_column!]" ], "limit": [ @@ -200783,44 +201284,44 @@ export default { 41 ], "order_by": [ - 1555, + 1556, "[e_tournament_status_order_by!]" ], "where": [ - 1545 + 1546 ] } ], "e_tournament_status_by_pk": [ - 1542, + 1543, { "value": [ - 84, + 85, "String!" ] } ], "e_tournament_status_stream": [ - 1542, + 1543, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1559, + 1560, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1545 + 1546 ] } ], "e_utility_practice_access": [ - 1563, + 1564, { "distinct_on": [ - 1577, + 1578, "[e_utility_practice_access_select_column!]" ], "limit": [ @@ -200830,19 +201331,19 @@ export default { 41 ], "order_by": [ - 1575, + 1576, "[e_utility_practice_access_order_by!]" ], "where": [ - 1566 + 1567 ] } ], "e_utility_practice_access_aggregate": [ - 1564, + 1565, { "distinct_on": [ - 1577, + 1578, "[e_utility_practice_access_select_column!]" ], "limit": [ @@ -200852,44 +201353,44 @@ export default { 41 ], "order_by": [ - 1575, + 1576, "[e_utility_practice_access_order_by!]" ], "where": [ - 1566 + 1567 ] } ], "e_utility_practice_access_by_pk": [ - 1563, + 1564, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_practice_access_stream": [ - 1563, + 1564, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1579, + 1580, "[e_utility_practice_access_stream_cursor_input]!" ], "where": [ - 1566 + 1567 ] } ], "e_utility_practice_statuses": [ - 1583, + 1584, { "distinct_on": [ - 1598, + 1599, "[e_utility_practice_statuses_select_column!]" ], "limit": [ @@ -200899,19 +201400,19 @@ export default { 41 ], "order_by": [ - 1596, + 1597, "[e_utility_practice_statuses_order_by!]" ], "where": [ - 1586 + 1587 ] } ], "e_utility_practice_statuses_aggregate": [ - 1584, + 1585, { "distinct_on": [ - 1598, + 1599, "[e_utility_practice_statuses_select_column!]" ], "limit": [ @@ -200921,44 +201422,44 @@ export default { 41 ], "order_by": [ - 1596, + 1597, "[e_utility_practice_statuses_order_by!]" ], "where": [ - 1586 + 1587 ] } ], "e_utility_practice_statuses_by_pk": [ - 1583, + 1584, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_practice_statuses_stream": [ - 1583, + 1584, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1600, + 1601, "[e_utility_practice_statuses_stream_cursor_input]!" ], "where": [ - 1586 + 1587 ] } ], "e_utility_sources": [ - 1604, + 1605, { "distinct_on": [ - 1618, + 1619, "[e_utility_sources_select_column!]" ], "limit": [ @@ -200968,19 +201469,19 @@ export default { 41 ], "order_by": [ - 1616, + 1617, "[e_utility_sources_order_by!]" ], "where": [ - 1607 + 1608 ] } ], "e_utility_sources_aggregate": [ - 1605, + 1606, { "distinct_on": [ - 1618, + 1619, "[e_utility_sources_select_column!]" ], "limit": [ @@ -200990,44 +201491,44 @@ export default { 41 ], "order_by": [ - 1616, + 1617, "[e_utility_sources_order_by!]" ], "where": [ - 1607 + 1608 ] } ], "e_utility_sources_by_pk": [ - 1604, + 1605, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_sources_stream": [ - 1604, + 1605, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1620, + 1621, "[e_utility_sources_stream_cursor_input]!" ], "where": [ - 1607 + 1608 ] } ], "e_utility_techniques": [ - 1624, + 1625, { "distinct_on": [ - 1638, + 1639, "[e_utility_techniques_select_column!]" ], "limit": [ @@ -201037,19 +201538,19 @@ export default { 41 ], "order_by": [ - 1636, + 1637, "[e_utility_techniques_order_by!]" ], "where": [ - 1627 + 1628 ] } ], "e_utility_techniques_aggregate": [ - 1625, + 1626, { "distinct_on": [ - 1638, + 1639, "[e_utility_techniques_select_column!]" ], "limit": [ @@ -201059,44 +201560,44 @@ export default { 41 ], "order_by": [ - 1636, + 1637, "[e_utility_techniques_order_by!]" ], "where": [ - 1627 + 1628 ] } ], "e_utility_techniques_by_pk": [ - 1624, + 1625, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_techniques_stream": [ - 1624, + 1625, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1640, + 1641, "[e_utility_techniques_stream_cursor_input]!" ], "where": [ - 1627 + 1628 ] } ], "e_utility_throw_strengths": [ - 1644, + 1645, { "distinct_on": [ - 1658, + 1659, "[e_utility_throw_strengths_select_column!]" ], "limit": [ @@ -201106,19 +201607,19 @@ export default { 41 ], "order_by": [ - 1656, + 1657, "[e_utility_throw_strengths_order_by!]" ], "where": [ - 1647 + 1648 ] } ], "e_utility_throw_strengths_aggregate": [ - 1645, + 1646, { "distinct_on": [ - 1658, + 1659, "[e_utility_throw_strengths_select_column!]" ], "limit": [ @@ -201128,44 +201629,44 @@ export default { 41 ], "order_by": [ - 1656, + 1657, "[e_utility_throw_strengths_order_by!]" ], "where": [ - 1647 + 1648 ] } ], "e_utility_throw_strengths_by_pk": [ - 1644, + 1645, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_throw_strengths_stream": [ - 1644, + 1645, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1660, + 1661, "[e_utility_throw_strengths_stream_cursor_input]!" ], "where": [ - 1647 + 1648 ] } ], "e_utility_types": [ - 1664, + 1665, { "distinct_on": [ - 1678, + 1679, "[e_utility_types_select_column!]" ], "limit": [ @@ -201175,19 +201676,19 @@ export default { 41 ], "order_by": [ - 1676, + 1677, "[e_utility_types_order_by!]" ], "where": [ - 1667 + 1668 ] } ], "e_utility_types_aggregate": [ - 1665, + 1666, { "distinct_on": [ - 1678, + 1679, "[e_utility_types_select_column!]" ], "limit": [ @@ -201197,44 +201698,44 @@ export default { 41 ], "order_by": [ - 1676, + 1677, "[e_utility_types_order_by!]" ], "where": [ - 1667 + 1668 ] } ], "e_utility_types_by_pk": [ - 1664, + 1665, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_types_stream": [ - 1664, + 1665, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1680, + 1681, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1667 + 1668 ] } ], "e_utility_visibility": [ - 1684, + 1685, { "distinct_on": [ - 1698, + 1699, "[e_utility_visibility_select_column!]" ], "limit": [ @@ -201244,19 +201745,19 @@ export default { 41 ], "order_by": [ - 1696, + 1697, "[e_utility_visibility_order_by!]" ], "where": [ - 1687 + 1688 ] } ], "e_utility_visibility_aggregate": [ - 1685, + 1686, { "distinct_on": [ - 1698, + 1699, "[e_utility_visibility_select_column!]" ], "limit": [ @@ -201266,44 +201767,44 @@ export default { 41 ], "order_by": [ - 1696, + 1697, "[e_utility_visibility_order_by!]" ], "where": [ - 1687 + 1688 ] } ], "e_utility_visibility_by_pk": [ - 1684, + 1685, { "value": [ - 84, + 85, "String!" ] } ], "e_utility_visibility_stream": [ - 1684, + 1685, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1700, + 1701, "[e_utility_visibility_stream_cursor_input]!" ], "where": [ - 1687 + 1688 ] } ], "e_veto_pick_types": [ - 1704, + 1705, { "distinct_on": [ - 1718, + 1719, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -201313,19 +201814,19 @@ export default { 41 ], "order_by": [ - 1716, + 1717, "[e_veto_pick_types_order_by!]" ], "where": [ - 1707 + 1708 ] } ], "e_veto_pick_types_aggregate": [ - 1705, + 1706, { "distinct_on": [ - 1718, + 1719, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -201335,44 +201836,44 @@ export default { 41 ], "order_by": [ - 1716, + 1717, "[e_veto_pick_types_order_by!]" ], "where": [ - 1707 + 1708 ] } ], "e_veto_pick_types_by_pk": [ - 1704, + 1705, { "value": [ - 84, + 85, "String!" ] } ], "e_veto_pick_types_stream": [ - 1704, + 1705, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1720, + 1721, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1707 + 1708 ] } ], "e_winning_reasons": [ - 1724, + 1725, { "distinct_on": [ - 1738, + 1739, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -201382,19 +201883,19 @@ export default { 41 ], "order_by": [ - 1736, + 1737, "[e_winning_reasons_order_by!]" ], "where": [ - 1727 + 1728 ] } ], "e_winning_reasons_aggregate": [ - 1725, + 1726, { "distinct_on": [ - 1738, + 1739, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -201404,44 +201905,44 @@ export default { 41 ], "order_by": [ - 1736, + 1737, "[e_winning_reasons_order_by!]" ], "where": [ - 1727 + 1728 ] } ], "e_winning_reasons_by_pk": [ - 1724, + 1725, { "value": [ - 84, + 85, "String!" ] } ], "e_winning_reasons_stream": [ - 1724, + 1725, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1740, + 1741, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1727 + 1728 ] } ], "event_match_links": [ - 1744, + 1745, { "distinct_on": [ - 1756, + 1757, "[event_match_links_select_column!]" ], "limit": [ @@ -201451,19 +201952,19 @@ export default { 41 ], "order_by": [ - 1754, + 1755, "[event_match_links_order_by!]" ], "where": [ - 1747 + 1748 ] } ], "event_match_links_aggregate": [ - 1745, + 1746, { "distinct_on": [ - 1756, + 1757, "[event_match_links_select_column!]" ], "limit": [ @@ -201473,48 +201974,48 @@ export default { 41 ], "order_by": [ - 1754, + 1755, "[event_match_links_order_by!]" ], "where": [ - 1747 + 1748 ] } ], "event_match_links_by_pk": [ - 1744, + 1745, { "event_id": [ - 6341, + 6365, "uuid!" ], "match_id": [ - 6341, + 6365, "uuid!" ] } ], "event_match_links_stream": [ - 1744, + 1745, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1758, + 1759, "[event_match_links_stream_cursor_input]!" ], "where": [ - 1747 + 1748 ] } ], "event_media": [ - 1762, + 1763, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -201524,19 +202025,19 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "event_media_aggregate": [ - 1763, + 1764, { "distinct_on": [ - 1825, + 1826, "[event_media_select_column!]" ], "limit": [ @@ -201546,28 +202047,28 @@ export default { 41 ], "order_by": [ - 1782, + 1783, "[event_media_order_by!]" ], "where": [ - 1771 + 1772 ] } ], "event_media_by_pk": [ - 1762, + 1763, { "id": [ - 6341, + 6365, "uuid!" ] } ], "event_media_players": [ - 1784, + 1785, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -201577,19 +202078,19 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "event_media_players_aggregate": [ - 1785, + 1786, { "distinct_on": [ - 1805, + 1806, "[event_media_players_select_column!]" ], "limit": [ @@ -201599,64 +202100,64 @@ export default { 41 ], "order_by": [ - 1803, + 1804, "[event_media_players_order_by!]" ], "where": [ - 1793 + 1794 ] } ], "event_media_players_by_pk": [ - 1784, + 1785, { "media_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_media_players_stream": [ - 1784, + 1785, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1813, + 1814, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1793 + 1794 ] } ], "event_media_stream": [ - 1762, + 1763, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1833, + 1834, "[event_media_stream_cursor_input]!" ], "where": [ - 1771 + 1772 ] } ], "event_organizers": [ - 1845, + 1846, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -201666,19 +202167,19 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "event_organizers_aggregate": [ - 1846, + 1847, { "distinct_on": [ - 1866, + 1867, "[event_organizers_select_column!]" ], "limit": [ @@ -201688,48 +202189,48 @@ export default { 41 ], "order_by": [ - 1864, + 1865, "[event_organizers_order_by!]" ], "where": [ - 1854 + 1855 ] } ], "event_organizers_by_pk": [ - 1845, + 1846, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_organizers_stream": [ - 1845, + 1846, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1874, + 1875, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1854 + 1855 ] } ], "event_players": [ - 1886, + 1887, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -201739,19 +202240,19 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "event_players_aggregate": [ - 1887, + 1888, { "distinct_on": [ - 1907, + 1908, "[event_players_select_column!]" ], "limit": [ @@ -201761,48 +202262,48 @@ export default { 41 ], "order_by": [ - 1905, + 1906, "[event_players_order_by!]" ], "where": [ - 1895 + 1896 ] } ], "event_players_by_pk": [ - 1886, + 1887, { "event_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "event_players_stream": [ - 1886, + 1887, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1915, + 1916, "[event_players_stream_cursor_input]!" ], "where": [ - 1895 + 1896 ] } ], "event_teams": [ - 1927, + 1928, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -201812,19 +202313,19 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "event_teams_aggregate": [ - 1928, + 1929, { "distinct_on": [ - 1945, + 1946, "[event_teams_select_column!]" ], "limit": [ @@ -201834,48 +202335,48 @@ export default { 41 ], "order_by": [ - 1943, + 1944, "[event_teams_order_by!]" ], "where": [ - 1934 + 1935 ] } ], "event_teams_by_pk": [ - 1927, + 1928, { "event_id": [ - 6341, + 6365, "uuid!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "event_teams_stream": [ - 1927, + 1928, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1947, + 1948, "[event_teams_stream_cursor_input]!" ], "where": [ - 1934 + 1935 ] } ], "event_tournaments": [ - 1951, + 1952, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -201885,19 +202386,19 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "event_tournaments_aggregate": [ - 1952, + 1953, { "distinct_on": [ - 1969, + 1970, "[event_tournaments_select_column!]" ], "limit": [ @@ -201907,48 +202408,48 @@ export default { 41 ], "order_by": [ - 1967, + 1968, "[event_tournaments_order_by!]" ], "where": [ - 1958 + 1959 ] } ], "event_tournaments_by_pk": [ - 1951, + 1952, { "event_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "event_tournaments_stream": [ - 1951, + 1952, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1971, + 1972, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1958 + 1959 ] } ], "events": [ - 1975, + 1976, { "distinct_on": [ - 1990, + 1991, "[events_select_column!]" ], "limit": [ @@ -201958,19 +202459,19 @@ export default { 41 ], "order_by": [ - 1988, + 1989, "[events_order_by!]" ], "where": [ - 1979 + 1980 ] } ], "events_aggregate": [ - 1976, + 1977, { "distinct_on": [ - 1990, + 1991, "[events_select_column!]" ], "limit": [ @@ -201980,44 +202481,44 @@ export default { 41 ], "order_by": [ - 1988, + 1989, "[events_order_by!]" ], "where": [ - 1979 + 1980 ] } ], "events_by_pk": [ - 1975, + 1976, { "id": [ - 6341, + 6365, "uuid!" ] } ], "events_stream": [ - 1975, + 1976, { "batch_size": [ 41, "Int!" ], "cursor": [ - 1995, + 1996, "[events_stream_cursor_input]!" ], "where": [ - 1979 + 1980 ] } ], "friends": [ - 2005, + 2006, { "distinct_on": [ - 2019, + 2020, "[friends_select_column!]" ], "limit": [ @@ -202027,19 +202528,19 @@ export default { 41 ], "order_by": [ - 2017, + 2018, "[friends_order_by!]" ], "where": [ - 2009 + 2010 ] } ], "friends_aggregate": [ - 2006, + 2007, { "distinct_on": [ - 2019, + 2020, "[friends_select_column!]" ], "limit": [ @@ -202049,48 +202550,48 @@ export default { 41 ], "order_by": [ - 2017, + 2018, "[friends_order_by!]" ], "where": [ - 2009 + 2010 ] } ], "friends_by_pk": [ - 2005, + 2006, { "other_player_steam_id": [ - 309, + 310, "bigint!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "friends_stream": [ - 2005, + 2006, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2024, + 2025, "[friends_stream_cursor_input]!" ], "where": [ - 2009 + 2010 ] } ], "game_mode_plugins": [ - 2032, + 2033, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -202100,19 +202601,19 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "game_mode_plugins_aggregate": [ - 2033, + 2034, { "distinct_on": [ - 2060, + 2061, "[game_mode_plugins_select_column!]" ], "limit": [ @@ -202122,48 +202623,48 @@ export default { 41 ], "order_by": [ - 2057, + 2058, "[game_mode_plugins_order_by!]" ], "where": [ - 2044 + 2045 ] } ], "game_mode_plugins_by_pk": [ - 2032, + 2033, { "game_mode_id": [ - 6341, + 6365, "uuid!" ], "plugin_slug": [ - 84, + 85, "String!" ] } ], "game_mode_plugins_stream": [ - 2032, + 2033, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2070, + 2071, "[game_mode_plugins_stream_cursor_input]!" ], "where": [ - 2044 + 2045 ] } ], "game_modes": [ - 2082, + 2083, { "distinct_on": [ - 2095, + 2096, "[game_modes_select_column!]" ], "limit": [ @@ -202173,19 +202674,19 @@ export default { 41 ], "order_by": [ - 2093, + 2094, "[game_modes_order_by!]" ], "where": [ - 2085 + 2086 ] } ], "game_modes_aggregate": [ - 2083, + 2084, { "distinct_on": [ - 2095, + 2096, "[game_modes_select_column!]" ], "limit": [ @@ -202195,44 +202696,44 @@ export default { 41 ], "order_by": [ - 2093, + 2094, "[game_modes_order_by!]" ], "where": [ - 2085 + 2086 ] } ], "game_modes_by_pk": [ - 2082, + 2083, { "id": [ - 6341, + 6365, "uuid!" ] } ], "game_modes_stream": [ - 2082, + 2083, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2097, + 2098, "[game_modes_stream_cursor_input]!" ], "where": [ - 2085 + 2086 ] } ], "game_plugin_installs": [ - 2101, + 2102, { "distinct_on": [ - 2113, + 2114, "[game_plugin_installs_select_column!]" ], "limit": [ @@ -202242,19 +202743,19 @@ export default { 41 ], "order_by": [ - 2111, + 2112, "[game_plugin_installs_order_by!]" ], "where": [ - 2104 + 2105 ] } ], "game_plugin_installs_aggregate": [ - 2102, + 2103, { "distinct_on": [ - 2113, + 2114, "[game_plugin_installs_select_column!]" ], "limit": [ @@ -202264,44 +202765,44 @@ export default { 41 ], "order_by": [ - 2111, + 2112, "[game_plugin_installs_order_by!]" ], "where": [ - 2104 + 2105 ] } ], "game_plugin_installs_by_pk": [ - 2101, + 2102, { "plugin_slug": [ - 84, + 85, "String!" ] } ], "game_plugin_installs_stream": [ - 2101, + 2102, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2115, + 2116, "[game_plugin_installs_stream_cursor_input]!" ], "where": [ - 2104 + 2105 ] } ], "game_plugin_versions": [ - 2119, + 2120, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -202311,19 +202812,19 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "game_plugin_versions_aggregate": [ - 2120, + 2121, { "distinct_on": [ - 2142, + 2143, "[game_plugin_versions_select_column!]" ], "limit": [ @@ -202333,52 +202834,52 @@ export default { 41 ], "order_by": [ - 2140, + 2141, "[game_plugin_versions_order_by!]" ], "where": [ - 2130 + 2131 ] } ], "game_plugin_versions_by_pk": [ - 2119, + 2120, { "plugin_slug": [ - 84, + 85, "String!" ], "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "game_plugin_versions_stream": [ - 2119, + 2120, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2152, + 2153, "[game_plugin_versions_stream_cursor_input]!" ], "where": [ - 2130 + 2131 ] } ], "game_plugins": [ - 2164, + 2165, { "distinct_on": [ - 2183, + 2184, "[game_plugins_select_column!]" ], "limit": [ @@ -202388,19 +202889,19 @@ export default { 41 ], "order_by": [ - 2180, + 2181, "[game_plugins_order_by!]" ], "where": [ - 2169 + 2170 ] } ], "game_plugins_aggregate": [ - 2165, + 2166, { "distinct_on": [ - 2183, + 2184, "[game_plugins_select_column!]" ], "limit": [ @@ -202410,44 +202911,44 @@ export default { 41 ], "order_by": [ - 2180, + 2181, "[game_plugins_order_by!]" ], "where": [ - 2169 + 2170 ] } ], "game_plugins_by_pk": [ - 2164, + 2165, { "slug": [ - 84, + 85, "String!" ] } ], "game_plugins_stream": [ - 2164, + 2165, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2188, + 2189, "[game_plugins_stream_cursor_input]!" ], "where": [ - 2169 + 2170 ] } ], "game_server_node_plugins": [ - 2196, + 2197, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -202457,19 +202958,19 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "game_server_node_plugins_aggregate": [ - 2197, + 2198, { "distinct_on": [ - 2216, + 2217, "[game_server_node_plugins_select_column!]" ], "limit": [ @@ -202479,44 +202980,44 @@ export default { 41 ], "order_by": [ - 2214, + 2215, "[game_server_node_plugins_order_by!]" ], "where": [ - 2205 + 2206 ] } ], "game_server_node_plugins_by_pk": [ - 2196, + 2197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "game_server_node_plugins_stream": [ - 2196, + 2197, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2220, + 2221, "[game_server_node_plugins_stream_cursor_input]!" ], "where": [ - 2205 + 2206 ] } ], "game_server_nodes": [ - 2224, + 2225, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -202526,19 +203027,19 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], "game_server_nodes_aggregate": [ - 2225, + 2226, { "distinct_on": [ - 2253, + 2254, "[game_server_nodes_select_column!]" ], "limit": [ @@ -202548,44 +203049,44 @@ export default { 41 ], "order_by": [ - 2250, + 2251, "[game_server_nodes_order_by!]" ], "where": [ - 2236 + 2237 ] } ], "game_server_nodes_by_pk": [ - 2224, + 2225, { "id": [ - 84, + 85, "String!" ] } ], "game_server_nodes_stream": [ - 2224, + 2225, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2263, + 2264, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 2236 + 2237 ] } ], "game_versions": [ - 2275, + 2276, { "distinct_on": [ - 2295, + 2296, "[game_versions_select_column!]" ], "limit": [ @@ -202595,19 +203096,19 @@ export default { 41 ], "order_by": [ - 2292, + 2293, "[game_versions_order_by!]" ], "where": [ - 2280 + 2281 ] } ], "game_versions_aggregate": [ - 2276, + 2277, { "distinct_on": [ - 2295, + 2296, "[game_versions_select_column!]" ], "limit": [ @@ -202617,16 +203118,16 @@ export default { 41 ], "order_by": [ - 2292, + 2293, "[game_versions_order_by!]" ], "where": [ - 2280 + 2281 ] } ], "game_versions_by_pk": [ - 2275, + 2276, { "build_id": [ 41, @@ -202635,26 +203136,26 @@ export default { } ], "game_versions_stream": [ - 2275, + 2276, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2300, + 2301, "[game_versions_stream_cursor_input]!" ], "where": [ - 2280 + 2281 ] } ], "gamedata_signature_validations": [ - 2308, + 2309, { "distinct_on": [ - 2327, + 2328, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -202664,19 +203165,19 @@ export default { 41 ], "order_by": [ - 2324, + 2325, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2313 + 2314 ] } ], "gamedata_signature_validations_aggregate": [ - 2309, + 2310, { "distinct_on": [ - 2327, + 2328, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -202686,48 +203187,48 @@ export default { 41 ], "order_by": [ - 2324, + 2325, "[gamedata_signature_validations_order_by!]" ], "where": [ - 2313 + 2314 ] } ], "gamedata_signature_validations_by_pk": [ - 2308, + 2309, { "id": [ - 6341, + 6365, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 2308, + 2309, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2332, + 2333, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 2313 + 2314 ] } ], "get_event_leaderboard": [ - 2351, + 2352, { "args": [ - 2340, + 2341, "get_event_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202737,23 +203238,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_event_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2340, + 2341, "get_event_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202763,23 +203264,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_leaderboard": [ - 2351, + 2352, { "args": [ - 2341, + 2342, "get_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202789,23 +203290,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2341, + 2342, "get_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202815,23 +203316,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_league_season_leaderboard": [ - 2351, + 2352, { "args": [ - 2342, + 2343, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202841,23 +203342,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_league_season_leaderboard_aggregate": [ - 2352, + 2353, { "args": [ - 2342, + 2343, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202867,23 +203368,23 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "get_player_leaderboard_rank": [ - 3975, + 3999, { "args": [ - 2343, + 2344, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -202893,23 +203394,23 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3976, + 4000, { "args": [ - 2343, + 2344, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -202919,19 +203420,19 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "leaderboard_entries": [ - 2351, + 2352, { "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202941,19 +203442,19 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "leaderboard_entries_aggregate": [ - 2352, + 2353, { "distinct_on": [ - 2362, + 2363, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -202963,35 +203464,35 @@ export default { 41 ], "order_by": [ - 2361, + 2362, "[leaderboard_entries_order_by!]" ], "where": [ - 2355 + 2356 ] } ], "leaderboard_entries_stream": [ - 2351, + 2352, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2367, + 2368, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 2355 + 2356 ] } ], "league_divisions": [ - 2375, + 2376, { "distinct_on": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "limit": [ @@ -203001,19 +203502,19 @@ export default { 41 ], "order_by": [ - 2388, + 2389, "[league_divisions_order_by!]" ], "where": [ - 2379 + 2380 ] } ], "league_divisions_aggregate": [ - 2376, + 2377, { "distinct_on": [ - 2390, + 2391, "[league_divisions_select_column!]" ], "limit": [ @@ -203023,44 +203524,44 @@ export default { 41 ], "order_by": [ - 2388, + 2389, "[league_divisions_order_by!]" ], "where": [ - 2379 + 2380 ] } ], "league_divisions_by_pk": [ - 2375, + 2376, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_divisions_stream": [ - 2375, + 2376, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2395, + 2396, "[league_divisions_stream_cursor_input]!" ], "where": [ - 2379 + 2380 ] } ], "league_match_weeks": [ - 2403, + 2404, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -203070,19 +203571,19 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], "league_match_weeks_aggregate": [ - 2404, + 2405, { "distinct_on": [ - 2424, + 2425, "[league_match_weeks_select_column!]" ], "limit": [ @@ -203092,44 +203593,44 @@ export default { 41 ], "order_by": [ - 2422, + 2423, "[league_match_weeks_order_by!]" ], "where": [ - 2412 + 2413 ] } ], "league_match_weeks_by_pk": [ - 2403, + 2404, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_match_weeks_stream": [ - 2403, + 2404, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2432, + 2433, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 2412 + 2413 ] } ], "league_relegation_playoffs": [ - 2444, + 2445, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -203139,19 +203640,19 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], "league_relegation_playoffs_aggregate": [ - 2445, + 2446, { "distinct_on": [ - 2465, + 2466, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -203161,44 +203662,44 @@ export default { 41 ], "order_by": [ - 2463, + 2464, "[league_relegation_playoffs_order_by!]" ], "where": [ - 2453 + 2454 ] } ], "league_relegation_playoffs_by_pk": [ - 2444, + 2445, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 2444, + 2445, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2473, + 2474, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 2453 + 2454 ] } ], "league_scheduling_proposals": [ - 2485, + 2486, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -203208,19 +203709,19 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "league_scheduling_proposals_aggregate": [ - 2486, + 2487, { "distinct_on": [ - 2506, + 2507, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -203230,44 +203731,44 @@ export default { 41 ], "order_by": [ - 2504, + 2505, "[league_scheduling_proposals_order_by!]" ], "where": [ - 2494 + 2495 ] } ], "league_scheduling_proposals_by_pk": [ - 2485, + 2486, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 2485, + 2486, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2514, + 2515, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 2494 + 2495 ] } ], "league_season_divisions": [ - 2526, + 2527, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -203277,19 +203778,19 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "league_season_divisions_aggregate": [ - 2527, + 2528, { "distinct_on": [ - 2545, + 2546, "[league_season_divisions_select_column!]" ], "limit": [ @@ -203299,44 +203800,44 @@ export default { 41 ], "order_by": [ - 2543, + 2544, "[league_season_divisions_order_by!]" ], "where": [ - 2533 + 2534 ] } ], "league_season_divisions_by_pk": [ - 2526, + 2527, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_season_divisions_stream": [ - 2526, + 2527, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2547, + 2548, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 2533 + 2534 ] } ], "league_seasons": [ - 2551, + 2552, { "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -203346,19 +203847,19 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "league_seasons_aggregate": [ - 2552, + 2553, { "distinct_on": [ - 2571, + 2572, "[league_seasons_select_column!]" ], "limit": [ @@ -203368,44 +203869,44 @@ export default { 41 ], "order_by": [ - 2568, + 2569, "[league_seasons_order_by!]" ], "where": [ - 2556 + 2557 ] } ], "league_seasons_by_pk": [ - 2551, + 2552, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_seasons_stream": [ - 2551, + 2552, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2576, + 2577, "[league_seasons_stream_cursor_input]!" ], "where": [ - 2556 + 2557 ] } ], "league_team_movements": [ - 2584, + 2585, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -203415,19 +203916,19 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "league_team_movements_aggregate": [ - 2585, + 2586, { "distinct_on": [ - 2605, + 2606, "[league_team_movements_select_column!]" ], "limit": [ @@ -203437,44 +203938,44 @@ export default { 41 ], "order_by": [ - 2603, + 2604, "[league_team_movements_order_by!]" ], "where": [ - 2593 + 2594 ] } ], "league_team_movements_by_pk": [ - 2584, + 2585, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_team_movements_stream": [ - 2584, + 2585, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2613, + 2614, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 2593 + 2594 ] } ], "league_team_rosters": [ - 2625, + 2626, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -203484,19 +203985,19 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "league_team_rosters_aggregate": [ - 2626, + 2627, { "distinct_on": [ - 2646, + 2647, "[league_team_rosters_select_column!]" ], "limit": [ @@ -203506,48 +204007,48 @@ export default { 41 ], "order_by": [ - 2644, + 2645, "[league_team_rosters_order_by!]" ], "where": [ - 2634 + 2635 ] } ], "league_team_rosters_by_pk": [ - 2625, + 2626, { "league_team_season_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "league_team_rosters_stream": [ - 2625, + 2626, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2654, + 2655, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 2634 + 2635 ] } ], "league_team_seasons": [ - 2666, + 2667, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -203557,19 +204058,19 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "league_team_seasons_aggregate": [ - 2667, + 2668, { "distinct_on": [ - 2688, + 2689, "[league_team_seasons_select_column!]" ], "limit": [ @@ -203579,44 +204080,44 @@ export default { 41 ], "order_by": [ - 2686, + 2687, "[league_team_seasons_order_by!]" ], "where": [ - 2675 + 2676 ] } ], "league_team_seasons_by_pk": [ - 2666, + 2667, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_team_seasons_stream": [ - 2666, + 2667, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2696, + 2697, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 2675 + 2676 ] } ], "league_teams": [ - 2708, + 2709, { "distinct_on": [ - 2721, + 2722, "[league_teams_select_column!]" ], "limit": [ @@ -203626,19 +204127,19 @@ export default { 41 ], "order_by": [ - 2719, + 2720, "[league_teams_order_by!]" ], "where": [ - 2711 + 2712 ] } ], "league_teams_aggregate": [ - 2709, + 2710, { "distinct_on": [ - 2721, + 2722, "[league_teams_select_column!]" ], "limit": [ @@ -203648,44 +204149,44 @@ export default { 41 ], "order_by": [ - 2719, + 2720, "[league_teams_order_by!]" ], "where": [ - 2711 + 2712 ] } ], "league_teams_by_pk": [ - 2708, + 2709, { "id": [ - 6341, + 6365, "uuid!" ] } ], "league_teams_stream": [ - 2708, + 2709, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2723, + 2724, "[league_teams_stream_cursor_input]!" ], "where": [ - 2711 + 2712 ] } ], "lobbies": [ - 2727, + 2728, { "distinct_on": [ - 2740, + 2741, "[lobbies_select_column!]" ], "limit": [ @@ -203695,19 +204196,19 @@ export default { 41 ], "order_by": [ - 2738, + 2739, "[lobbies_order_by!]" ], "where": [ - 2730 + 2731 ] } ], "lobbies_aggregate": [ - 2728, + 2729, { "distinct_on": [ - 2740, + 2741, "[lobbies_select_column!]" ], "limit": [ @@ -203717,44 +204218,44 @@ export default { 41 ], "order_by": [ - 2738, + 2739, "[lobbies_order_by!]" ], "where": [ - 2730 + 2731 ] } ], "lobbies_by_pk": [ - 2727, + 2728, { "id": [ - 6341, + 6365, "uuid!" ] } ], "lobbies_stream": [ - 2727, + 2728, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2742, + 2743, "[lobbies_stream_cursor_input]!" ], "where": [ - 2730 + 2731 ] } ], "lobby_players": [ - 2746, + 2747, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -203764,19 +204265,19 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "lobby_players_aggregate": [ - 2747, + 2748, { "distinct_on": [ - 2769, + 2770, "[lobby_players_select_column!]" ], "limit": [ @@ -203786,48 +204287,121 @@ export default { 41 ], "order_by": [ - 2767, + 2768, "[lobby_players_order_by!]" ], "where": [ - 2757 + 2758 ] } ], "lobby_players_by_pk": [ - 2746, + 2747, { "lobby_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "lobby_players_stream": [ - 2746, + 2747, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2779, + 2780, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2757 + 2758 + ] + } + ], + "map_callouts": [ + 2792, + { + "distinct_on": [ + 2809, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2806, + "[map_callouts_order_by!]" + ], + "where": [ + 2796 + ] + } + ], + "map_callouts_aggregate": [ + 2793, + { + "distinct_on": [ + 2809, + "[map_callouts_select_column!]" + ], + "limit": [ + 41 + ], + "offset": [ + 41 + ], + "order_by": [ + 2806, + "[map_callouts_order_by!]" + ], + "where": [ + 2796 + ] + } + ], + "map_callouts_by_pk": [ + 2792, + { + "map_name": [ + 85, + "String!" + ], + "name": [ + 85, + "String!" + ] + } + ], + "map_callouts_stream": [ + 2792, + { + "batch_size": [ + 41, + "Int!" + ], + "cursor": [ + 2811, + "[map_callouts_stream_cursor_input]!" + ], + "where": [ + 2796 ] } ], "map_pools": [ - 2791, + 2815, { "distinct_on": [ - 2804, + 2828, "[map_pools_select_column!]" ], "limit": [ @@ -203837,19 +204411,19 @@ export default { 41 ], "order_by": [ - 2802, + 2826, "[map_pools_order_by!]" ], "where": [ - 2794 + 2818 ] } ], "map_pools_aggregate": [ - 2792, + 2816, { "distinct_on": [ - 2804, + 2828, "[map_pools_select_column!]" ], "limit": [ @@ -203859,44 +204433,44 @@ export default { 41 ], "order_by": [ - 2802, + 2826, "[map_pools_order_by!]" ], "where": [ - 2794 + 2818 ] } ], "map_pools_by_pk": [ - 2791, + 2815, { "id": [ - 6341, + 6365, "uuid!" ] } ], "map_pools_stream": [ - 2791, + 2815, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2806, + 2830, "[map_pools_stream_cursor_input]!" ], "where": [ - 2794 + 2818 ] } ], "maps": [ - 2810, + 2834, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -203906,19 +204480,19 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "maps_aggregate": [ - 2811, + 2835, { "distinct_on": [ - 2831, + 2855, "[maps_select_column!]" ], "limit": [ @@ -203928,44 +204502,44 @@ export default { 41 ], "order_by": [ - 2829, + 2853, "[maps_order_by!]" ], "where": [ - 2819 + 2843 ] } ], "maps_by_pk": [ - 2810, + 2834, { "id": [ - 6341, + 6365, "uuid!" ] } ], "maps_stream": [ - 2810, + 2834, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2835, + 2859, "[maps_stream_cursor_input]!" ], "where": [ - 2819 + 2843 ] } ], "match_clips": [ - 2839, + 2863, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -203975,19 +204549,19 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_aggregate": [ - 2840, + 2864, { "distinct_on": [ - 2861, + 2885, "[match_clips_select_column!]" ], "limit": [ @@ -203997,44 +204571,44 @@ export default { 41 ], "order_by": [ - 2859, + 2883, "[match_clips_order_by!]" ], "where": [ - 2848 + 2872 ] } ], "match_clips_by_pk": [ - 2839, + 2863, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_clips_stream": [ - 2839, + 2863, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2869, + 2893, "[match_clips_stream_cursor_input]!" ], "where": [ - 2848 + 2872 ] } ], "match_demo_sessions": [ - 2881, + 2905, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -204044,19 +204618,19 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "match_demo_sessions_aggregate": [ - 2882, + 2906, { "distinct_on": [ - 2907, + 2931, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -204066,44 +204640,44 @@ export default { 41 ], "order_by": [ - 2904, + 2928, "[match_demo_sessions_order_by!]" ], "where": [ - 2891 + 2915 ] } ], "match_demo_sessions_by_pk": [ - 2881, + 2905, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2881, + 2905, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2915, + 2939, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2891 + 2915 ] } ], "match_lineup_players": [ - 2927, + 2951, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -204113,19 +204687,19 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match_lineup_players_aggregate": [ - 2928, + 2952, { "distinct_on": [ - 2950, + 2974, "[match_lineup_players_select_column!]" ], "limit": [ @@ -204135,44 +204709,44 @@ export default { 41 ], "order_by": [ - 2948, + 2972, "[match_lineup_players_order_by!]" ], "where": [ - 2938 + 2962 ] } ], "match_lineup_players_by_pk": [ - 2927, + 2951, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_lineup_players_stream": [ - 2927, + 2951, { "batch_size": [ 41, "Int!" ], "cursor": [ - 2960, + 2984, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2938 + 2962 ] } ], "match_lineups": [ - 2972, + 2996, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -204182,19 +204756,19 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "match_lineups_aggregate": [ - 2973, + 2997, { "distinct_on": [ - 2994, + 3018, "[match_lineups_select_column!]" ], "limit": [ @@ -204204,44 +204778,44 @@ export default { 41 ], "order_by": [ - 2992, + 3016, "[match_lineups_order_by!]" ], "where": [ - 2981 + 3005 ] } ], "match_lineups_by_pk": [ - 2972, + 2996, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_lineups_stream": [ - 2972, + 2996, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3002, + 3026, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2981 + 3005 ] } ], "match_map_demos": [ - 3014, + 3038, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -204251,19 +204825,19 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "match_map_demos_aggregate": [ - 3015, + 3039, { "distinct_on": [ - 3043, + 3067, "[match_map_demos_select_column!]" ], "limit": [ @@ -204273,44 +204847,44 @@ export default { 41 ], "order_by": [ - 3040, + 3064, "[match_map_demos_order_by!]" ], "where": [ - 3026 + 3050 ] } ], "match_map_demos_by_pk": [ - 3014, + 3038, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_demos_stream": [ - 3014, + 3038, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3053, + 3077, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 3026 + 3050 ] } ], "match_map_rounds": [ - 3065, + 3089, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -204320,19 +204894,19 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "match_map_rounds_aggregate": [ - 3066, + 3090, { "distinct_on": [ - 3086, + 3110, "[match_map_rounds_select_column!]" ], "limit": [ @@ -204342,44 +204916,44 @@ export default { 41 ], "order_by": [ - 3084, + 3108, "[match_map_rounds_order_by!]" ], "where": [ - 3074 + 3098 ] } ], "match_map_rounds_by_pk": [ - 3065, + 3089, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_rounds_stream": [ - 3065, + 3089, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3094, + 3118, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 3074 + 3098 ] } ], "match_map_veto_picks": [ - 3106, + 3130, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -204389,19 +204963,19 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_map_veto_picks_aggregate": [ - 3107, + 3131, { "distinct_on": [ - 3126, + 3150, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -204411,44 +204985,44 @@ export default { 41 ], "order_by": [ - 3124, + 3148, "[match_map_veto_picks_order_by!]" ], "where": [ - 3115 + 3139 ] } ], "match_map_veto_picks_by_pk": [ - 3106, + 3130, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 3106, + 3130, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3130, + 3154, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 3115 + 3139 ] } ], "match_maps": [ - 3134, + 3158, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -204458,19 +205032,19 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_aggregate": [ - 3135, + 3159, { "distinct_on": [ - 3156, + 3180, "[match_maps_select_column!]" ], "limit": [ @@ -204480,44 +205054,44 @@ export default { 41 ], "order_by": [ - 3154, + 3178, "[match_maps_order_by!]" ], "where": [ - 3143 + 3167 ] } ], "match_maps_by_pk": [ - 3134, + 3158, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_maps_stream": [ - 3134, + 3158, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3164, + 3188, "[match_maps_stream_cursor_input]!" ], "where": [ - 3143 + 3167 ] } ], "match_options": [ - 3176, + 3200, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -204527,19 +205101,19 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "match_options_aggregate": [ - 3177, + 3201, { "distinct_on": [ - 3200, + 3224, "[match_options_select_column!]" ], "limit": [ @@ -204549,44 +205123,44 @@ export default { 41 ], "order_by": [ - 3198, + 3222, "[match_options_order_by!]" ], "where": [ - 3187 + 3211 ] } ], "match_options_by_pk": [ - 3176, + 3200, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_options_stream": [ - 3176, + 3200, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3210, + 3234, "[match_options_stream_cursor_input]!" ], "where": [ - 3187 + 3211 ] } ], "match_region_veto_picks": [ - 3222, + 3246, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -204596,19 +205170,19 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], "match_region_veto_picks_aggregate": [ - 3223, + 3247, { "distinct_on": [ - 3242, + 3266, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -204618,44 +205192,44 @@ export default { 41 ], "order_by": [ - 3240, + 3264, "[match_region_veto_picks_order_by!]" ], "where": [ - 3231 + 3255 ] } ], "match_region_veto_picks_by_pk": [ - 3222, + 3246, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 3222, + 3246, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3246, + 3270, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 3231 + 3255 ] } ], "match_streams": [ - 3250, + 3274, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -204665,19 +205239,19 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "match_streams_aggregate": [ - 3251, + 3275, { "distinct_on": [ - 3278, + 3302, "[match_streams_select_column!]" ], "limit": [ @@ -204687,44 +205261,44 @@ export default { 41 ], "order_by": [ - 3275, + 3299, "[match_streams_order_by!]" ], "where": [ - 3262 + 3286 ] } ], "match_streams_by_pk": [ - 3250, + 3274, { "id": [ - 6341, + 6365, "uuid!" ] } ], "match_streams_stream": [ - 3250, + 3274, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3288, + 3312, "[match_streams_stream_cursor_input]!" ], "where": [ - 3262 + 3286 ] } ], "match_type_cfgs": [ - 3300, + 3324, { "distinct_on": [ - 3312, + 3336, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -204734,19 +205308,19 @@ export default { 41 ], "order_by": [ - 3310, + 3334, "[match_type_cfgs_order_by!]" ], "where": [ - 3303 + 3327 ] } ], "match_type_cfgs_aggregate": [ - 3301, + 3325, { "distinct_on": [ - 3312, + 3336, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -204756,44 +205330,44 @@ export default { 41 ], "order_by": [ - 3310, + 3334, "[match_type_cfgs_order_by!]" ], "where": [ - 3303 + 3327 ] } ], "match_type_cfgs_by_pk": [ - 3300, + 3324, { "type": [ - 873, + 874, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 3300, + 3324, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3314, + 3338, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 3303 + 3327 ] } ], "matches": [ - 3318, + 3342, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -204803,19 +205377,19 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_aggregate": [ - 3319, + 3343, { "distinct_on": [ - 3342, + 3366, "[matches_select_column!]" ], "limit": [ @@ -204825,44 +205399,44 @@ export default { 41 ], "order_by": [ - 3340, + 3364, "[matches_order_by!]" ], "where": [ - 3329 + 3353 ] } ], "matches_by_pk": [ - 3318, + 3342, { "id": [ - 6341, + 6365, "uuid!" ] } ], "matches_stream": [ - 3318, + 3342, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3352, + 3376, "[matches_stream_cursor_input]!" ], "where": [ - 3329 + 3353 ] } ], "migration_hashes_hashes": [ - 3364, + 3388, { "distinct_on": [ - 3376, + 3400, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -204872,19 +205446,19 @@ export default { 41 ], "order_by": [ - 3374, + 3398, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3367 + 3391 ] } ], "migration_hashes_hashes_aggregate": [ - 3365, + 3389, { "distinct_on": [ - 3376, + 3400, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -204894,44 +205468,44 @@ export default { 41 ], "order_by": [ - 3374, + 3398, "[migration_hashes_hashes_order_by!]" ], "where": [ - 3367 + 3391 ] } ], "migration_hashes_hashes_by_pk": [ - 3364, + 3388, { "name": [ - 84, + 85, "String!" ] } ], "migration_hashes_hashes_stream": [ - 3364, + 3388, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3378, + 3402, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 3367 + 3391 ] } ], "my_friends": [ - 3382, + 3406, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -204941,19 +205515,19 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], "my_friends_aggregate": [ - 3383, + 3407, { "distinct_on": [ - 3407, + 3431, "[my_friends_select_column!]" ], "limit": [ @@ -204963,35 +205537,35 @@ export default { 41 ], "order_by": [ - 3405, + 3429, "[my_friends_order_by!]" ], "where": [ - 3394 + 3418 ] } ], "my_friends_stream": [ - 3382, + 3406, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3417, + 3441, "[my_friends_stream_cursor_input]!" ], "where": [ - 3394 + 3418 ] } ], "news_articles": [ - 3428, + 3452, { "distinct_on": [ - 3442, + 3466, "[news_articles_select_column!]" ], "limit": [ @@ -205001,19 +205575,19 @@ export default { 41 ], "order_by": [ - 3440, + 3464, "[news_articles_order_by!]" ], "where": [ - 3432 + 3456 ] } ], "news_articles_aggregate": [ - 3429, + 3453, { "distinct_on": [ - 3442, + 3466, "[news_articles_select_column!]" ], "limit": [ @@ -205023,44 +205597,44 @@ export default { 41 ], "order_by": [ - 3440, + 3464, "[news_articles_order_by!]" ], "where": [ - 3432 + 3456 ] } ], "news_articles_by_pk": [ - 3428, + 3452, { "id": [ - 6341, + 6365, "uuid!" ] } ], "news_articles_stream": [ - 3428, + 3452, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3447, + 3471, "[news_articles_stream_cursor_input]!" ], "where": [ - 3432 + 3456 ] } ], "notification_preferences": [ - 3455, + 3479, { "distinct_on": [ - 3469, + 3493, "[notification_preferences_select_column!]" ], "limit": [ @@ -205070,19 +205644,19 @@ export default { 41 ], "order_by": [ - 3467, + 3491, "[notification_preferences_order_by!]" ], "where": [ - 3459 + 3483 ] } ], "notification_preferences_aggregate": [ - 3456, + 3480, { "distinct_on": [ - 3469, + 3493, "[notification_preferences_select_column!]" ], "limit": [ @@ -205092,52 +205666,52 @@ export default { 41 ], "order_by": [ - 3467, + 3491, "[notification_preferences_order_by!]" ], "where": [ - 3459 + 3483 ] } ], "notification_preferences_by_pk": [ - 3455, + 3479, { "channel": [ - 84, + 85, "String!" ], "key": [ - 84, + 85, "String!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "notification_preferences_stream": [ - 3455, + 3479, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3474, + 3498, "[notification_preferences_stream_cursor_input]!" ], "where": [ - 3459 + 3483 ] } ], "notifications": [ - 3482, + 3506, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -205147,19 +205721,19 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "notifications_aggregate": [ - 3483, + 3507, { "distinct_on": [ - 3510, + 3534, "[notifications_select_column!]" ], "limit": [ @@ -205169,44 +205743,44 @@ export default { 41 ], "order_by": [ - 3507, + 3531, "[notifications_order_by!]" ], "where": [ - 3494 + 3518 ] } ], "notifications_by_pk": [ - 3482, + 3506, { "id": [ - 6341, + 6365, "uuid!" ] } ], "notifications_stream": [ - 3482, + 3506, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3520, + 3544, "[notifications_stream_cursor_input]!" ], "where": [ - 3494 + 3518 ] } ], "pending_match_import_players": [ - 3535, + 3559, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -205216,19 +205790,19 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "pending_match_import_players_aggregate": [ - 3536, + 3560, { "distinct_on": [ - 3556, + 3580, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -205238,48 +205812,48 @@ export default { 41 ], "order_by": [ - 3554, + 3578, "[pending_match_import_players_order_by!]" ], "where": [ - 3544 + 3568 ] } ], "pending_match_import_players_by_pk": [ - 3535, + 3559, { "steam_id": [ - 309, + 310, "bigint!" ], "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "pending_match_import_players_stream": [ - 3535, + 3559, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3564, + 3588, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 3544 + 3568 ] } ], "pending_match_imports": [ - 3576, + 3600, { "distinct_on": [ - 3591, + 3615, "[pending_match_imports_select_column!]" ], "limit": [ @@ -205289,19 +205863,19 @@ export default { 41 ], "order_by": [ - 3589, + 3613, "[pending_match_imports_order_by!]" ], "where": [ - 3580 + 3604 ] } ], "pending_match_imports_aggregate": [ - 3577, + 3601, { "distinct_on": [ - 3591, + 3615, "[pending_match_imports_select_column!]" ], "limit": [ @@ -205311,44 +205885,44 @@ export default { 41 ], "order_by": [ - 3589, + 3613, "[pending_match_imports_order_by!]" ], "where": [ - 3580 + 3604 ] } ], "pending_match_imports_by_pk": [ - 3576, + 3600, { "valve_match_id": [ - 3532, + 3556, "numeric!" ] } ], "pending_match_imports_stream": [ - 3576, + 3600, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3596, + 3620, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 3580 + 3604 ] } ], "player_aim_stats_demo": [ - 3604, + 3628, { "distinct_on": [ - 3618, + 3642, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -205358,19 +205932,19 @@ export default { 41 ], "order_by": [ - 3616, + 3640, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3608 + 3632 ] } ], "player_aim_stats_demo_aggregate": [ - 3605, + 3629, { "distinct_on": [ - 3618, + 3642, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -205380,48 +205954,48 @@ export default { 41 ], "order_by": [ - 3616, + 3640, "[player_aim_stats_demo_order_by!]" ], "where": [ - 3608 + 3632 ] } ], "player_aim_stats_demo_by_pk": [ - 3604, + 3628, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 3604, + 3628, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3623, + 3647, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 3608 + 3632 ] } ], "player_aim_weapon_stats": [ - 3631, + 3655, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -205431,19 +206005,19 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "player_aim_weapon_stats_aggregate": [ - 3632, + 3656, { "distinct_on": [ - 3652, + 3676, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -205453,52 +206027,52 @@ export default { 41 ], "order_by": [ - 3650, + 3674, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 3640 + 3664 ] } ], "player_aim_weapon_stats_by_pk": [ - 3631, + 3655, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "weapon_class": [ - 84, + 85, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 3631, + 3655, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3660, + 3684, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 3640 + 3664 ] } ], "player_assists": [ - 3672, + 3696, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -205508,19 +206082,19 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_aggregate": [ - 3673, + 3697, { "distinct_on": [ - 3695, + 3719, "[player_assists_select_column!]" ], "limit": [ @@ -205530,56 +206104,56 @@ export default { 41 ], "order_by": [ - 3693, + 3717, "[player_assists_order_by!]" ], "where": [ - 3683 + 3707 ] } ], "player_assists_by_pk": [ - 3672, + 3696, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_assists_stream": [ - 3672, + 3696, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3705, + 3729, "[player_assists_stream_cursor_input]!" ], "where": [ - 3683 + 3707 ] } ], "player_career_stats_v": [ - 3717, + 3741, { "distinct_on": [ - 3725, + 3749, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -205589,19 +206163,19 @@ export default { 41 ], "order_by": [ - 3724, + 3748, "[player_career_stats_v_order_by!]" ], "where": [ - 3721 + 3745 ] } ], "player_career_stats_v_aggregate": [ - 3718, + 3742, { "distinct_on": [ - 3725, + 3749, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -205611,35 +206185,35 @@ export default { 41 ], "order_by": [ - 3724, + 3748, "[player_career_stats_v_order_by!]" ], "where": [ - 3721 + 3745 ] } ], "player_career_stats_v_stream": [ - 3717, + 3741, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3729, + 3753, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 3721 + 3745 ] } ], "player_damages": [ - 3735, + 3759, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -205649,19 +206223,19 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_aggregate": [ - 3736, + 3760, { "distinct_on": [ - 3756, + 3780, "[player_damages_select_column!]" ], "limit": [ @@ -205671,52 +206245,52 @@ export default { 41 ], "order_by": [ - 3754, + 3778, "[player_damages_order_by!]" ], "where": [ - 3744 + 3768 ] } ], "player_damages_by_pk": [ - 3735, + 3759, { "id": [ - 6341, + 6365, "uuid!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_damages_stream": [ - 3735, + 3759, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3764, + 3788, "[player_damages_stream_cursor_input]!" ], "where": [ - 3744 + 3768 ] } ], "player_elo": [ - 3776, + 3800, { "distinct_on": [ - 3790, + 3814, "[player_elo_select_column!]" ], "limit": [ @@ -205726,19 +206300,19 @@ export default { 41 ], "order_by": [ - 3788, + 3812, "[player_elo_order_by!]" ], "where": [ - 3780 + 3804 ] } ], "player_elo_aggregate": [ - 3777, + 3801, { "distinct_on": [ - 3790, + 3814, "[player_elo_select_column!]" ], "limit": [ @@ -205748,52 +206322,52 @@ export default { 41 ], "order_by": [ - 3788, + 3812, "[player_elo_order_by!]" ], "where": [ - 3780 + 3804 ] } ], "player_elo_by_pk": [ - 3776, + 3800, { "match_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ], "type": [ - 1222, + 1223, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 3776, + 3800, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3795, + 3819, "[player_elo_stream_cursor_input]!" ], "where": [ - 3780 + 3804 ] } ], "player_faceit_rank_history": [ - 3803, + 3827, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -205803,19 +206377,19 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], "player_faceit_rank_history_aggregate": [ - 3804, + 3828, { "distinct_on": [ - 3824, + 3848, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -205825,44 +206399,44 @@ export default { 41 ], "order_by": [ - 3822, + 3846, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3812 + 3836 ] } ], "player_faceit_rank_history_by_pk": [ - 3803, + 3827, { "id": [ - 6341, + 6365, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3803, + 3827, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3832, + 3856, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3812 + 3836 ] } ], "player_flashes": [ - 3844, + 3868, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -205872,19 +206446,19 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_flashes_aggregate": [ - 3845, + 3869, { "distinct_on": [ - 3867, + 3891, "[player_flashes_select_column!]" ], "limit": [ @@ -205894,56 +206468,56 @@ export default { 41 ], "order_by": [ - 3865, + 3889, "[player_flashes_order_by!]" ], "where": [ - 3855 + 3879 ] } ], "player_flashes_by_pk": [ - 3844, + 3868, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_flashes_stream": [ - 3844, + 3868, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3877, + 3901, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3855 + 3879 ] } ], "player_kills": [ - 3889, + 3913, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -205953,19 +206527,19 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_aggregate": [ - 3890, + 3914, { "distinct_on": [ - 3953, + 3977, "[player_kills_select_column!]" ], "limit": [ @@ -205975,40 +206549,40 @@ export default { 41 ], "order_by": [ - 3951, + 3975, "[player_kills_order_by!]" ], "where": [ - 3900 + 3924 ] } ], "player_kills_by_pk": [ - 3889, + 3913, { "attacked_steam_id": [ - 309, + 310, "bigint!" ], "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3901, + 3925, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -206018,19 +206592,19 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "player_kills_by_weapon_aggregate": [ - 3902, + 3926, { "distinct_on": [ - 3922, + 3946, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -206040,64 +206614,64 @@ export default { 41 ], "order_by": [ - 3920, + 3944, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3910 + 3934 ] } ], "player_kills_by_weapon_by_pk": [ - 3901, + 3925, { "player_steam_id": [ - 309, + 310, "bigint!" ], "with": [ - 84, + 85, "String!" ] } ], "player_kills_by_weapon_stream": [ - 3901, + 3925, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3930, + 3954, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3910 + 3934 ] } ], "player_kills_stream": [ - 3889, + 3913, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3963, + 3987, "[player_kills_stream_cursor_input]!" ], "where": [ - 3900 + 3924 ] } ], "player_leaderboard_rank": [ - 3975, + 3999, { "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -206107,19 +206681,19 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "player_leaderboard_rank_aggregate": [ - 3976, + 4000, { "distinct_on": [ - 3986, + 4010, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -206129,35 +206703,35 @@ export default { 41 ], "order_by": [ - 3985, + 4009, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3979 + 4003 ] } ], "player_leaderboard_rank_stream": [ - 3975, + 3999, { "batch_size": [ 41, "Int!" ], "cursor": [ - 3991, + 4015, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3979 + 4003 ] } ], "player_match_map_stats": [ - 3998, + 4022, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -206167,19 +206741,19 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "player_match_map_stats_aggregate": [ - 3999, + 4023, { "distinct_on": [ - 4019, + 4043, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -206189,48 +206763,48 @@ export default { 41 ], "order_by": [ - 4017, + 4041, "[player_match_map_stats_order_by!]" ], "where": [ - 4007 + 4031 ] } ], "player_match_map_stats_by_pk": [ - 3998, + 4022, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_match_map_stats_stream": [ - 3998, + 4022, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4027, + 4051, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 4007 + 4031 ] } ], "player_match_performance_v": [ - 4039, + 4063, { "distinct_on": [ - 4047, + 4071, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -206240,19 +206814,19 @@ export default { 41 ], "order_by": [ - 4046, + 4070, "[player_match_performance_v_order_by!]" ], "where": [ - 4043 + 4067 ] } ], "player_match_performance_v_aggregate": [ - 4040, + 4064, { "distinct_on": [ - 4047, + 4071, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -206262,35 +206836,35 @@ export default { 41 ], "order_by": [ - 4046, + 4070, "[player_match_performance_v_order_by!]" ], "where": [ - 4043 + 4067 ] } ], "player_match_performance_v_stream": [ - 4039, + 4063, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4051, + 4075, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 4043 + 4067 ] } ], "player_match_stats_v": [ - 4057, + 4081, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -206300,19 +206874,19 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "player_match_stats_v_aggregate": [ - 4058, + 4082, { "distinct_on": [ - 4073, + 4097, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -206322,35 +206896,35 @@ export default { 41 ], "order_by": [ - 4072, + 4096, "[player_match_stats_v_order_by!]" ], "where": [ - 4066 + 4090 ] } ], "player_match_stats_v_stream": [ - 4057, + 4081, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4080, + 4104, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 4066 + 4090 ] } ], "player_objectives": [ - 4090, + 4114, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -206360,19 +206934,19 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_aggregate": [ - 4091, + 4115, { "distinct_on": [ - 4111, + 4135, "[player_objectives_select_column!]" ], "limit": [ @@ -206382,52 +206956,52 @@ export default { 41 ], "order_by": [ - 4109, + 4133, "[player_objectives_order_by!]" ], "where": [ - 4099 + 4123 ] } ], "player_objectives_by_pk": [ - 4090, + 4114, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_objectives_stream": [ - 4090, + 4114, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4119, + 4143, "[player_objectives_stream_cursor_input]!" ], "where": [ - 4099 + 4123 ] } ], "player_performance_v": [ - 4131, + 4155, { "distinct_on": [ - 4139, + 4163, "[player_performance_v_select_column!]" ], "limit": [ @@ -206437,19 +207011,19 @@ export default { 41 ], "order_by": [ - 4138, + 4162, "[player_performance_v_order_by!]" ], "where": [ - 4135 + 4159 ] } ], "player_performance_v_aggregate": [ - 4132, + 4156, { "distinct_on": [ - 4139, + 4163, "[player_performance_v_select_column!]" ], "limit": [ @@ -206459,35 +207033,35 @@ export default { 41 ], "order_by": [ - 4138, + 4162, "[player_performance_v_order_by!]" ], "where": [ - 4135 + 4159 ] } ], "player_performance_v_stream": [ - 4131, + 4155, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4143, + 4167, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 4135 + 4159 ] } ], "player_premier_rank_history": [ - 4149, + 4173, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -206497,19 +207071,19 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "player_premier_rank_history_aggregate": [ - 4150, + 4174, { "distinct_on": [ - 4170, + 4194, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -206519,44 +207093,44 @@ export default { 41 ], "order_by": [ - 4168, + 4192, "[player_premier_rank_history_order_by!]" ], "where": [ - 4158 + 4182 ] } ], "player_premier_rank_history_by_pk": [ - 4149, + 4173, { "id": [ - 6341, + 6365, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 4149, + 4173, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4178, + 4202, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 4158 + 4182 ] } ], "player_sanctions": [ - 4190, + 4214, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -206566,19 +207140,19 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "player_sanctions_aggregate": [ - 4191, + 4215, { "distinct_on": [ - 4211, + 4235, "[player_sanctions_select_column!]" ], "limit": [ @@ -206588,48 +207162,48 @@ export default { 41 ], "order_by": [ - 4209, + 4233, "[player_sanctions_order_by!]" ], "where": [ - 4199 + 4223 ] } ], "player_sanctions_by_pk": [ - 4190, + 4214, { "created_at": [ - 5129, + 5153, "timestamptz!" ], "id": [ - 6341, + 6365, "uuid!" ] } ], "player_sanctions_stream": [ - 4190, + 4214, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4219, + 4243, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 4199 + 4223 ] } ], "player_season_stats": [ - 4231, + 4255, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -206639,19 +207213,19 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "player_season_stats_aggregate": [ - 4232, + 4256, { "distinct_on": [ - 4262, + 4286, "[player_season_stats_select_column!]" ], "limit": [ @@ -206661,48 +207235,48 @@ export default { 41 ], "order_by": [ - 4260, + 4284, "[player_season_stats_order_by!]" ], "where": [ - 4250 + 4274 ] } ], "player_season_stats_by_pk": [ - 4231, + 4255, { "player_steam_id": [ - 309, + 310, "bigint!" ], "season_id": [ - 6341, + 6365, "uuid!" ] } ], "player_season_stats_stream": [ - 4231, + 4255, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4278, + 4302, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 4250 + 4274 ] } ], "player_stats": [ - 4290, + 4314, { "distinct_on": [ - 4305, + 4329, "[player_stats_select_column!]" ], "limit": [ @@ -206712,19 +207286,19 @@ export default { 41 ], "order_by": [ - 4303, + 4327, "[player_stats_order_by!]" ], "where": [ - 4294 + 4318 ] } ], "player_stats_aggregate": [ - 4291, + 4315, { "distinct_on": [ - 4305, + 4329, "[player_stats_select_column!]" ], "limit": [ @@ -206734,44 +207308,44 @@ export default { 41 ], "order_by": [ - 4303, + 4327, "[player_stats_order_by!]" ], "where": [ - 4294 + 4318 ] } ], "player_stats_by_pk": [ - 4290, + 4314, { "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "player_stats_stream": [ - 4290, + 4314, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4310, + 4334, "[player_stats_stream_cursor_input]!" ], "where": [ - 4294 + 4318 ] } ], "player_steam_bot_friend": [ - 4318, + 4342, { "distinct_on": [ - 4337, + 4361, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -206781,19 +207355,19 @@ export default { 41 ], "order_by": [ - 4334, + 4358, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4323 + 4347 ] } ], "player_steam_bot_friend_aggregate": [ - 4319, + 4343, { "distinct_on": [ - 4337, + 4361, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -206803,44 +207377,44 @@ export default { 41 ], "order_by": [ - 4334, + 4358, "[player_steam_bot_friend_order_by!]" ], "where": [ - 4323 + 4347 ] } ], "player_steam_bot_friend_by_pk": [ - 4318, + 4342, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_steam_bot_friend_stream": [ - 4318, + 4342, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4342, + 4366, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 4323 + 4347 ] } ], "player_steam_match_auth": [ - 4350, + 4374, { "distinct_on": [ - 4364, + 4388, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -206850,19 +207424,19 @@ export default { 41 ], "order_by": [ - 4362, + 4386, "[player_steam_match_auth_order_by!]" ], "where": [ - 4354 + 4378 ] } ], "player_steam_match_auth_aggregate": [ - 4351, + 4375, { "distinct_on": [ - 4364, + 4388, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -206872,44 +207446,44 @@ export default { 41 ], "order_by": [ - 4362, + 4386, "[player_steam_match_auth_order_by!]" ], "where": [ - 4354 + 4378 ] } ], "player_steam_match_auth_by_pk": [ - 4350, + 4374, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 4350, + 4374, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4369, + 4393, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 4354 + 4378 ] } ], "player_unused_utility": [ - 4377, + 4401, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -206919,19 +207493,19 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utility_aggregate": [ - 4378, + 4402, { "distinct_on": [ - 4398, + 4422, "[player_unused_utility_select_column!]" ], "limit": [ @@ -206941,48 +207515,48 @@ export default { 41 ], "order_by": [ - 4396, + 4420, "[player_unused_utility_order_by!]" ], "where": [ - 4386 + 4410 ] } ], "player_unused_utility_by_pk": [ - 4377, + 4401, { "match_map_id": [ - 6341, + 6365, "uuid!" ], "player_steam_id": [ - 309, + 310, "bigint!" ] } ], "player_unused_utility_stream": [ - 4377, + 4401, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4406, + 4430, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 4386 + 4410 ] } ], "player_utility": [ - 4418, + 4442, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -206992,19 +207566,19 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utility_aggregate": [ - 4419, + 4443, { "distinct_on": [ - 4439, + 4463, "[player_utility_select_column!]" ], "limit": [ @@ -207014,52 +207588,52 @@ export default { 41 ], "order_by": [ - 4437, + 4461, "[player_utility_order_by!]" ], "where": [ - 4427 + 4451 ] } ], "player_utility_by_pk": [ - 4418, + 4442, { "attacker_steam_id": [ - 309, + 310, "bigint!" ], "match_map_id": [ - 6341, + 6365, "uuid!" ], "time": [ - 5129, + 5153, "timestamptz!" ] } ], "player_utility_stream": [ - 4418, + 4442, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4447, + 4471, "[player_utility_stream_cursor_input]!" ], "where": [ - 4427 + 4451 ] } ], "player_weapon_stats_v": [ - 4459, + 4483, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -207069,19 +207643,19 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], "player_weapon_stats_v_aggregate": [ - 4460, + 4484, { "distinct_on": [ - 4475, + 4499, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -207091,35 +207665,35 @@ export default { 41 ], "order_by": [ - 4474, + 4498, "[player_weapon_stats_v_order_by!]" ], "where": [ - 4468 + 4492 ] } ], "player_weapon_stats_v_stream": [ - 4459, + 4483, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4482, + 4506, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 4468 + 4492 ] } ], "players": [ - 4492, + 4516, { "distinct_on": [ - 4507, + 4531, "[players_select_column!]" ], "limit": [ @@ -207129,19 +207703,19 @@ export default { 41 ], "order_by": [ - 4505, + 4529, "[players_order_by!]" ], "where": [ - 4496 + 4520 ] } ], "players_aggregate": [ - 4493, + 4517, { "distinct_on": [ - 4507, + 4531, "[players_select_column!]" ], "limit": [ @@ -207151,44 +207725,44 @@ export default { 41 ], "order_by": [ - 4505, + 4529, "[players_order_by!]" ], "where": [ - 4496 + 4520 ] } ], "players_by_pk": [ - 4492, + 4516, { "steam_id": [ - 309, + 310, "bigint!" ] } ], "players_stream": [ - 4492, + 4516, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4512, + 4536, "[players_stream_cursor_input]!" ], "where": [ - 4496 + 4520 ] } ], "plugin_versions": [ - 4520, + 4544, { "distinct_on": [ - 4534, + 4558, "[plugin_versions_select_column!]" ], "limit": [ @@ -207198,19 +207772,19 @@ export default { 41 ], "order_by": [ - 4532, + 4556, "[plugin_versions_order_by!]" ], "where": [ - 4524 + 4548 ] } ], "plugin_versions_aggregate": [ - 4521, + 4545, { "distinct_on": [ - 4534, + 4558, "[plugin_versions_select_column!]" ], "limit": [ @@ -207220,48 +207794,48 @@ export default { 41 ], "order_by": [ - 4532, + 4556, "[plugin_versions_order_by!]" ], "where": [ - 4524 + 4548 ] } ], "plugin_versions_by_pk": [ - 4520, + 4544, { "runtime": [ - 1303, + 1304, "e_plugin_runtimes_enum!" ], "version": [ - 84, + 85, "String!" ] } ], "plugin_versions_stream": [ - 4520, + 4544, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4539, + 4563, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 4524 + 4548 ] } ], "push_subscriptions": [ - 4547, + 4571, { "distinct_on": [ - 4561, + 4585, "[push_subscriptions_select_column!]" ], "limit": [ @@ -207271,19 +207845,19 @@ export default { 41 ], "order_by": [ - 4559, + 4583, "[push_subscriptions_order_by!]" ], "where": [ - 4551 + 4575 ] } ], "push_subscriptions_aggregate": [ - 4548, + 4572, { "distinct_on": [ - 4561, + 4585, "[push_subscriptions_select_column!]" ], "limit": [ @@ -207293,44 +207867,44 @@ export default { 41 ], "order_by": [ - 4559, + 4583, "[push_subscriptions_order_by!]" ], "where": [ - 4551 + 4575 ] } ], "push_subscriptions_by_pk": [ - 4547, + 4571, { "id": [ - 6341, + 6365, "uuid!" ] } ], "push_subscriptions_stream": [ - 4547, + 4571, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4566, + 4590, "[push_subscriptions_stream_cursor_input]!" ], "where": [ - 4551 + 4575 ] } ], "role_permissions": [ - 4578, + 4602, { "distinct_on": [ - 4587, + 4611, "[role_permissions_select_column!]" ], "limit": [ @@ -207340,19 +207914,19 @@ export default { 41 ], "order_by": [ - 4586, + 4610, "[role_permissions_order_by!]" ], "where": [ - 4581 + 4605 ] } ], "role_permissions_aggregate": [ - 4579, + 4603, { "distinct_on": [ - 4587, + 4611, "[role_permissions_select_column!]" ], "limit": [ @@ -207362,35 +207936,35 @@ export default { 41 ], "order_by": [ - 4586, + 4610, "[role_permissions_order_by!]" ], "where": [ - 4581 + 4605 ] } ], "role_permissions_stream": [ - 4578, + 4602, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4589, + 4613, "[role_permissions_stream_cursor_input]!" ], "where": [ - 4581 + 4605 ] } ], "seasons": [ - 4592, + 4616, { "distinct_on": [ - 4607, + 4631, "[seasons_select_column!]" ], "limit": [ @@ -207400,19 +207974,19 @@ export default { 41 ], "order_by": [ - 4605, + 4629, "[seasons_order_by!]" ], "where": [ - 4596 + 4620 ] } ], "seasons_aggregate": [ - 4593, + 4617, { "distinct_on": [ - 4607, + 4631, "[seasons_select_column!]" ], "limit": [ @@ -207422,44 +207996,44 @@ export default { 41 ], "order_by": [ - 4605, + 4629, "[seasons_order_by!]" ], "where": [ - 4596 + 4620 ] } ], "seasons_by_pk": [ - 4592, + 4616, { "id": [ - 6341, + 6365, "uuid!" ] } ], "seasons_stream": [ - 4592, + 4616, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4612, + 4636, "[seasons_stream_cursor_input]!" ], "where": [ - 4596 + 4620 ] } ], "server_regions": [ - 4620, + 4644, { "distinct_on": [ - 4634, + 4658, "[server_regions_select_column!]" ], "limit": [ @@ -207469,19 +208043,19 @@ export default { 41 ], "order_by": [ - 4632, + 4656, "[server_regions_order_by!]" ], "where": [ - 4624 + 4648 ] } ], "server_regions_aggregate": [ - 4621, + 4645, { "distinct_on": [ - 4634, + 4658, "[server_regions_select_column!]" ], "limit": [ @@ -207491,44 +208065,44 @@ export default { 41 ], "order_by": [ - 4632, + 4656, "[server_regions_order_by!]" ], "where": [ - 4624 + 4648 ] } ], "server_regions_by_pk": [ - 4620, + 4644, { "value": [ - 84, + 85, "String!" ] } ], "server_regions_stream": [ - 4620, + 4644, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4639, + 4663, "[server_regions_stream_cursor_input]!" ], "where": [ - 4624 + 4648 ] } ], "servers": [ - 4647, + 4671, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -207538,19 +208112,19 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_aggregate": [ - 4648, + 4672, { "distinct_on": [ - 4676, + 4700, "[servers_select_column!]" ], "limit": [ @@ -207560,44 +208134,44 @@ export default { 41 ], "order_by": [ - 4673, + 4697, "[servers_order_by!]" ], "where": [ - 4659 + 4683 ] } ], "servers_by_pk": [ - 4647, + 4671, { "id": [ - 6341, + 6365, "uuid!" ] } ], "servers_stream": [ - 4647, + 4671, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4686, + 4710, "[servers_stream_cursor_input]!" ], "where": [ - 4659 + 4683 ] } ], "settings": [ - 4698, + 4722, { "distinct_on": [ - 4710, + 4734, "[settings_select_column!]" ], "limit": [ @@ -207607,19 +208181,19 @@ export default { 41 ], "order_by": [ - 4708, + 4732, "[settings_order_by!]" ], "where": [ - 4701 + 4725 ] } ], "settings_aggregate": [ - 4699, + 4723, { "distinct_on": [ - 4710, + 4734, "[settings_select_column!]" ], "limit": [ @@ -207629,44 +208203,44 @@ export default { 41 ], "order_by": [ - 4708, + 4732, "[settings_order_by!]" ], "where": [ - 4701 + 4725 ] } ], "settings_by_pk": [ - 4698, + 4722, { "name": [ - 84, + 85, "String!" ] } ], "settings_stream": [ - 4698, + 4722, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4712, + 4736, "[settings_stream_cursor_input]!" ], "where": [ - 4701 + 4725 ] } ], "steam_account_claims": [ - 4718, + 4742, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -207676,19 +208250,19 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "steam_account_claims_aggregate": [ - 4719, + 4743, { "distinct_on": [ - 4736, + 4760, "[steam_account_claims_select_column!]" ], "limit": [ @@ -207698,44 +208272,44 @@ export default { 41 ], "order_by": [ - 4734, + 4758, "[steam_account_claims_order_by!]" ], "where": [ - 4725 + 4749 ] } ], "steam_account_claims_by_pk": [ - 4718, + 4742, { "id": [ - 6341, + 6365, "uuid!" ] } ], "steam_account_claims_stream": [ - 4718, + 4742, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4738, + 4762, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 4725 + 4749 ] } ], "steam_accounts": [ - 4742, + 4766, { "distinct_on": [ - 4757, + 4781, "[steam_accounts_select_column!]" ], "limit": [ @@ -207745,19 +208319,19 @@ export default { 41 ], "order_by": [ - 4755, + 4779, "[steam_accounts_order_by!]" ], "where": [ - 4746 + 4770 ] } ], "steam_accounts_aggregate": [ - 4743, + 4767, { "distinct_on": [ - 4757, + 4781, "[steam_accounts_select_column!]" ], "limit": [ @@ -207767,44 +208341,44 @@ export default { 41 ], "order_by": [ - 4755, + 4779, "[steam_accounts_order_by!]" ], "where": [ - 4746 + 4770 ] } ], "steam_accounts_by_pk": [ - 4742, + 4766, { "id": [ - 6341, + 6365, "uuid!" ] } ], "steam_accounts_stream": [ - 4742, + 4766, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4762, + 4786, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 4746 + 4770 ] } ], "system_alerts": [ - 4770, + 4794, { "distinct_on": [ - 4784, + 4808, "[system_alerts_select_column!]" ], "limit": [ @@ -207814,19 +208388,19 @@ export default { 41 ], "order_by": [ - 4782, + 4806, "[system_alerts_order_by!]" ], "where": [ - 4774 + 4798 ] } ], "system_alerts_aggregate": [ - 4771, + 4795, { "distinct_on": [ - 4784, + 4808, "[system_alerts_select_column!]" ], "limit": [ @@ -207836,44 +208410,44 @@ export default { 41 ], "order_by": [ - 4782, + 4806, "[system_alerts_order_by!]" ], "where": [ - 4774 + 4798 ] } ], "system_alerts_by_pk": [ - 4770, + 4794, { "id": [ - 6341, + 6365, "uuid!" ] } ], "system_alerts_stream": [ - 4770, + 4794, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4789, + 4813, "[system_alerts_stream_cursor_input]!" ], "where": [ - 4774 + 4798 ] } ], "team_invites": [ - 4797, + 4821, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -207883,19 +208457,19 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_invites_aggregate": [ - 4798, + 4822, { "distinct_on": [ - 4818, + 4842, "[team_invites_select_column!]" ], "limit": [ @@ -207905,44 +208479,44 @@ export default { 41 ], "order_by": [ - 4816, + 4840, "[team_invites_order_by!]" ], "where": [ - 4806 + 4830 ] } ], "team_invites_by_pk": [ - 4797, + 4821, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_invites_stream": [ - 4797, + 4821, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4826, + 4850, "[team_invites_stream_cursor_input]!" ], "where": [ - 4806 + 4830 ] } ], "team_roster": [ - 4838, + 4862, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -207952,19 +208526,19 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_roster_aggregate": [ - 4839, + 4863, { "distinct_on": [ - 4861, + 4885, "[team_roster_select_column!]" ], "limit": [ @@ -207974,48 +208548,48 @@ export default { 41 ], "order_by": [ - 4859, + 4883, "[team_roster_order_by!]" ], "where": [ - 4849 + 4873 ] } ], "team_roster_by_pk": [ - 4838, + 4862, { "player_steam_id": [ - 309, + 310, "bigint!" ], "team_id": [ - 6341, + 6365, "uuid!" ] } ], "team_roster_stream": [ - 4838, + 4862, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4871, + 4895, "[team_roster_stream_cursor_input]!" ], "where": [ - 4849 + 4873 ] } ], "team_scrim_alerts": [ - 4883, + 4907, { "distinct_on": [ - 4897, + 4921, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -208025,19 +208599,19 @@ export default { 41 ], "order_by": [ - 4895, + 4919, "[team_scrim_alerts_order_by!]" ], "where": [ - 4887 + 4911 ] } ], "team_scrim_alerts_aggregate": [ - 4884, + 4908, { "distinct_on": [ - 4897, + 4921, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -208047,44 +208621,44 @@ export default { 41 ], "order_by": [ - 4895, + 4919, "[team_scrim_alerts_order_by!]" ], "where": [ - 4887 + 4911 ] } ], "team_scrim_alerts_by_pk": [ - 4883, + 4907, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4883, + 4907, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4902, + 4926, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4887 + 4911 ] } ], "team_scrim_availability": [ - 4910, + 4934, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -208094,19 +208668,19 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "team_scrim_availability_aggregate": [ - 4911, + 4935, { "distinct_on": [ - 4930, + 4954, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -208116,44 +208690,44 @@ export default { 41 ], "order_by": [ - 4928, + 4952, "[team_scrim_availability_order_by!]" ], "where": [ - 4919 + 4943 ] } ], "team_scrim_availability_by_pk": [ - 4910, + 4934, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4910, + 4934, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4934, + 4958, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4919 + 4943 ] } ], "team_scrim_request_proposals": [ - 4938, + 4962, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -208163,19 +208737,19 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "team_scrim_request_proposals_aggregate": [ - 4939, + 4963, { "distinct_on": [ - 4959, + 4983, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -208185,44 +208759,44 @@ export default { 41 ], "order_by": [ - 4957, + 4981, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4947 + 4971 ] } ], "team_scrim_request_proposals_by_pk": [ - 4938, + 4962, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4938, + 4962, { "batch_size": [ 41, "Int!" ], "cursor": [ - 4967, + 4991, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4947 + 4971 ] } ], "team_scrim_requests": [ - 4979, + 5003, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -208232,19 +208806,19 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "team_scrim_requests_aggregate": [ - 4980, + 5004, { "distinct_on": [ - 5003, + 5027, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -208254,44 +208828,44 @@ export default { 41 ], "order_by": [ - 5001, + 5025, "[team_scrim_requests_order_by!]" ], "where": [ - 4990 + 5014 ] } ], "team_scrim_requests_by_pk": [ - 4979, + 5003, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4979, + 5003, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5013, + 5037, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4990 + 5014 ] } ], "team_scrim_settings": [ - 5025, + 5049, { "distinct_on": [ - 5040, + 5064, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -208301,19 +208875,19 @@ export default { 41 ], "order_by": [ - 5038, + 5062, "[team_scrim_settings_order_by!]" ], "where": [ - 5029 + 5053 ] } ], "team_scrim_settings_aggregate": [ - 5026, + 5050, { "distinct_on": [ - 5040, + 5064, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -208323,44 +208897,44 @@ export default { 41 ], "order_by": [ - 5038, + 5062, "[team_scrim_settings_order_by!]" ], "where": [ - 5029 + 5053 ] } ], "team_scrim_settings_by_pk": [ - 5025, + 5049, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_scrim_settings_stream": [ - 5025, + 5049, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5045, + 5069, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 5029 + 5053 ] } ], "team_suggestions": [ - 5053, + 5077, { "distinct_on": [ - 5067, + 5091, "[team_suggestions_select_column!]" ], "limit": [ @@ -208370,19 +208944,19 @@ export default { 41 ], "order_by": [ - 5065, + 5089, "[team_suggestions_order_by!]" ], "where": [ - 5057 + 5081 ] } ], "team_suggestions_aggregate": [ - 5054, + 5078, { "distinct_on": [ - 5067, + 5091, "[team_suggestions_select_column!]" ], "limit": [ @@ -208392,44 +208966,44 @@ export default { 41 ], "order_by": [ - 5065, + 5089, "[team_suggestions_order_by!]" ], "where": [ - 5057 + 5081 ] } ], "team_suggestions_by_pk": [ - 5053, + 5077, { "id": [ - 6341, + 6365, "uuid!" ] } ], "team_suggestions_stream": [ - 5053, + 5077, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5072, + 5096, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 5057 + 5081 ] } ], "teams": [ - 5080, + 5104, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -208439,19 +209013,19 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "teams_aggregate": [ - 5081, + 5105, { "distinct_on": [ - 5104, + 5128, "[teams_select_column!]" ], "limit": [ @@ -208461,44 +209035,44 @@ export default { 41 ], "order_by": [ - 5102, + 5126, "[teams_order_by!]" ], "where": [ - 5091 + 5115 ] } ], "teams_by_pk": [ - 5080, + 5104, { "id": [ - 6341, + 6365, "uuid!" ] } ], "teams_stream": [ - 5080, + 5104, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5114, + 5138, "[teams_stream_cursor_input]!" ], "where": [ - 5091 + 5115 ] } ], "tournament_awards": [ - 5131, + 5155, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -208508,19 +209082,19 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_awards_aggregate": [ - 5132, + 5156, { "distinct_on": [ - 5153, + 5177, "[tournament_awards_select_column!]" ], "limit": [ @@ -208530,44 +209104,44 @@ export default { 41 ], "order_by": [ - 5151, + 5175, "[tournament_awards_order_by!]" ], "where": [ - 5140 + 5164 ] } ], "tournament_awards_by_pk": [ - 5131, + 5155, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_awards_stream": [ - 5131, + 5155, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5161, + 5185, "[tournament_awards_stream_cursor_input]!" ], "where": [ - 5140 + 5164 ] } ], "tournament_brackets": [ - 5173, + 5197, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -208577,19 +209151,19 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tournament_brackets_aggregate": [ - 5174, + 5198, { "distinct_on": [ - 5197, + 5221, "[tournament_brackets_select_column!]" ], "limit": [ @@ -208599,44 +209173,44 @@ export default { 41 ], "order_by": [ - 5195, + 5219, "[tournament_brackets_order_by!]" ], "where": [ - 5184 + 5208 ] } ], "tournament_brackets_by_pk": [ - 5173, + 5197, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_brackets_stream": [ - 5173, + 5197, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5207, + 5231, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 5184 + 5208 ] } ], "tournament_categories": [ - 5219, + 5243, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -208646,19 +209220,19 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "tournament_categories_aggregate": [ - 5220, + 5244, { "distinct_on": [ - 5237, + 5261, "[tournament_categories_select_column!]" ], "limit": [ @@ -208668,48 +209242,48 @@ export default { 41 ], "order_by": [ - 5235, + 5259, "[tournament_categories_order_by!]" ], "where": [ - 5226 + 5250 ] } ], "tournament_categories_by_pk": [ - 5219, + 5243, { "category": [ - 1505, + 1506, "e_tournament_categories_enum!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_categories_stream": [ - 5219, + 5243, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5239, + 5263, "[tournament_categories_stream_cursor_input]!" ], "where": [ - 5226 + 5250 ] } ], "tournament_organizer_teams": [ - 5243, + 5267, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -208719,19 +209293,19 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "tournament_organizer_teams_aggregate": [ - 5244, + 5268, { "distinct_on": [ - 5261, + 5285, "[tournament_organizer_teams_select_column!]" ], "limit": [ @@ -208741,48 +209315,48 @@ export default { 41 ], "order_by": [ - 5259, + 5283, "[tournament_organizer_teams_order_by!]" ], "where": [ - 5250 + 5274 ] } ], "tournament_organizer_teams_by_pk": [ - 5243, + 5267, { "team_id": [ - 6341, + 6365, "uuid!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_organizer_teams_stream": [ - 5243, + 5267, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5263, + 5287, "[tournament_organizer_teams_stream_cursor_input]!" ], "where": [ - 5250 + 5274 ] } ], "tournament_organizers": [ - 5267, + 5291, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -208792,19 +209366,19 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_organizers_aggregate": [ - 5268, + 5292, { "distinct_on": [ - 5288, + 5312, "[tournament_organizers_select_column!]" ], "limit": [ @@ -208814,48 +209388,48 @@ export default { 41 ], "order_by": [ - 5286, + 5310, "[tournament_organizers_order_by!]" ], "where": [ - 5276 + 5300 ] } ], "tournament_organizers_by_pk": [ - 5267, + 5291, { "steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_organizers_stream": [ - 5267, + 5291, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5296, + 5320, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 5276 + 5300 ] } ], "tournament_prizes": [ - 5308, + 5332, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -208865,19 +209439,19 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "tournament_prizes_aggregate": [ - 5309, + 5333, { "distinct_on": [ - 5329, + 5353, "[tournament_prizes_select_column!]" ], "limit": [ @@ -208887,44 +209461,44 @@ export default { 41 ], "order_by": [ - 5327, + 5351, "[tournament_prizes_order_by!]" ], "where": [ - 5317 + 5341 ] } ], "tournament_prizes_by_pk": [ - 5308, + 5332, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_prizes_stream": [ - 5308, + 5332, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5337, + 5361, "[tournament_prizes_stream_cursor_input]!" ], "where": [ - 5317 + 5341 ] } ], "tournament_stage_windows": [ - 5349, + 5373, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -208934,19 +209508,19 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "tournament_stage_windows_aggregate": [ - 5350, + 5374, { "distinct_on": [ - 5370, + 5394, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -208956,44 +209530,44 @@ export default { 41 ], "order_by": [ - 5368, + 5392, "[tournament_stage_windows_order_by!]" ], "where": [ - 5358 + 5382 ] } ], "tournament_stage_windows_by_pk": [ - 5349, + 5373, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 5349, + 5373, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5378, + 5402, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 5358 + 5382 ] } ], "tournament_stages": [ - 5390, + 5414, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -209003,19 +209577,19 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "tournament_stages_aggregate": [ - 5391, + 5415, { "distinct_on": [ - 5419, + 5443, "[tournament_stages_select_column!]" ], "limit": [ @@ -209025,44 +209599,44 @@ export default { 41 ], "order_by": [ - 5416, + 5440, "[tournament_stages_order_by!]" ], "where": [ - 5402 + 5426 ] } ], "tournament_stages_by_pk": [ - 5390, + 5414, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_stages_stream": [ - 5390, + 5414, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5429, + 5453, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 5402 + 5426 ] } ], "tournament_team_invites": [ - 5441, + 5465, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -209072,19 +209646,19 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "tournament_team_invites_aggregate": [ - 5442, + 5466, { "distinct_on": [ - 5462, + 5486, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -209094,44 +209668,44 @@ export default { 41 ], "order_by": [ - 5460, + 5484, "[tournament_team_invites_order_by!]" ], "where": [ - 5450 + 5474 ] } ], "tournament_team_invites_by_pk": [ - 5441, + 5465, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_team_invites_stream": [ - 5441, + 5465, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5470, + 5494, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 5450 + 5474 ] } ], "tournament_team_roster": [ - 5482, + 5506, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -209141,19 +209715,19 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_team_roster_aggregate": [ - 5483, + 5507, { "distinct_on": [ - 5503, + 5527, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -209163,48 +209737,48 @@ export default { 41 ], "order_by": [ - 5501, + 5525, "[tournament_team_roster_order_by!]" ], "where": [ - 5491 + 5515 ] } ], "tournament_team_roster_by_pk": [ - 5482, + 5506, { "player_steam_id": [ - 309, + 310, "bigint!" ], "tournament_id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_team_roster_stream": [ - 5482, + 5506, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5511, + 5535, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 5491 + 5515 ] } ], "tournament_teams": [ - 5523, + 5547, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -209214,19 +209788,19 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "tournament_teams_aggregate": [ - 5524, + 5548, { "distinct_on": [ - 5545, + 5569, "[tournament_teams_select_column!]" ], "limit": [ @@ -209236,44 +209810,44 @@ export default { 41 ], "order_by": [ - 5543, + 5567, "[tournament_teams_order_by!]" ], "where": [ - 5532 + 5556 ] } ], "tournament_teams_by_pk": [ - 5523, + 5547, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournament_teams_stream": [ - 5523, + 5547, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5553, + 5577, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 5532 + 5556 ] } ], "tournaments": [ - 5565, + 5589, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -209283,19 +209857,19 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_aggregate": [ - 5566, + 5590, { "distinct_on": [ - 5599, + 5623, "[tournaments_select_column!]" ], "limit": [ @@ -209305,44 +209879,44 @@ export default { 41 ], "order_by": [ - 5597, + 5621, "[tournaments_order_by!]" ], "where": [ - 5586 + 5610 ] } ], "tournaments_by_pk": [ - 5565, + 5589, { "id": [ - 6341, + 6365, "uuid!" ] } ], "tournaments_stream": [ - 5565, + 5589, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5617, + 5641, "[tournaments_stream_cursor_input]!" ], "where": [ - 5586 + 5610 ] } ], "utility_collection_items": [ - 5629, + 5653, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -209352,19 +209926,19 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "utility_collection_items_aggregate": [ - 5630, + 5654, { "distinct_on": [ - 5650, + 5674, "[utility_collection_items_select_column!]" ], "limit": [ @@ -209374,48 +209948,48 @@ export default { 41 ], "order_by": [ - 5648, + 5672, "[utility_collection_items_order_by!]" ], "where": [ - 5638 + 5662 ] } ], "utility_collection_items_by_pk": [ - 5629, + 5653, { "collection_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_collection_items_stream": [ - 5629, + 5653, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5658, + 5682, "[utility_collection_items_stream_cursor_input]!" ], "where": [ - 5638 + 5662 ] } ], "utility_collections": [ - 5670, + 5694, { "distinct_on": [ - 5685, + 5709, "[utility_collections_select_column!]" ], "limit": [ @@ -209425,19 +209999,19 @@ export default { 41 ], "order_by": [ - 5683, + 5707, "[utility_collections_order_by!]" ], "where": [ - 5674 + 5698 ] } ], "utility_collections_aggregate": [ - 5671, + 5695, { "distinct_on": [ - 5685, + 5709, "[utility_collections_select_column!]" ], "limit": [ @@ -209447,44 +210021,44 @@ export default { 41 ], "order_by": [ - 5683, + 5707, "[utility_collections_order_by!]" ], "where": [ - 5674 + 5698 ] } ], "utility_collections_by_pk": [ - 5670, + 5694, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_collections_stream": [ - 5670, + 5694, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5690, + 5714, "[utility_collections_stream_cursor_input]!" ], "where": [ - 5674 + 5698 ] } ], "utility_demo_mines": [ - 5698, + 5722, { "distinct_on": [ - 5712, + 5736, "[utility_demo_mines_select_column!]" ], "limit": [ @@ -209494,19 +210068,19 @@ export default { 41 ], "order_by": [ - 5710, + 5734, "[utility_demo_mines_order_by!]" ], "where": [ - 5702 + 5726 ] } ], "utility_demo_mines_aggregate": [ - 5699, + 5723, { "distinct_on": [ - 5712, + 5736, "[utility_demo_mines_select_column!]" ], "limit": [ @@ -209516,44 +210090,44 @@ export default { 41 ], "order_by": [ - 5710, + 5734, "[utility_demo_mines_order_by!]" ], "where": [ - 5702 + 5726 ] } ], "utility_demo_mines_by_pk": [ - 5698, + 5722, { "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_demo_mines_stream": [ - 5698, + 5722, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5717, + 5741, "[utility_demo_mines_stream_cursor_input]!" ], "where": [ - 5702 + 5726 ] } ], "utility_demo_throws": [ - 5725, + 5749, { "distinct_on": [ - 5739, + 5763, "[utility_demo_throws_select_column!]" ], "limit": [ @@ -209563,19 +210137,19 @@ export default { 41 ], "order_by": [ - 5737, + 5761, "[utility_demo_throws_order_by!]" ], "where": [ - 5729 + 5753 ] } ], "utility_demo_throws_aggregate": [ - 5726, + 5750, { "distinct_on": [ - 5739, + 5763, "[utility_demo_throws_select_column!]" ], "limit": [ @@ -209585,48 +210159,48 @@ export default { 41 ], "order_by": [ - 5737, + 5761, "[utility_demo_throws_order_by!]" ], "where": [ - 5729 + 5753 ] } ], "utility_demo_throws_by_pk": [ - 5725, + 5749, { "grenade_id": [ 41, "Int!" ], "match_map_demo_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_demo_throws_stream": [ - 5725, + 5749, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5744, + 5768, "[utility_demo_throws_stream_cursor_input]!" ], "where": [ - 5729 + 5753 ] } ], "utility_drift_results": [ - 5752, + 5776, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -209636,19 +210210,19 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], "utility_drift_results_aggregate": [ - 5753, + 5777, { "distinct_on": [ - 5783, + 5807, "[utility_drift_results_select_column!]" ], "limit": [ @@ -209658,48 +210232,48 @@ export default { 41 ], "order_by": [ - 5781, + 5805, "[utility_drift_results_order_by!]" ], "where": [ - 5771 + 5795 ] } ], "utility_drift_results_by_pk": [ - 5752, + 5776, { "utility_drift_scan_id": [ - 6341, + 6365, "uuid!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_drift_results_stream": [ - 5752, + 5776, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5799, + 5823, "[utility_drift_results_stream_cursor_input]!" ], "where": [ - 5771 + 5795 ] } ], "utility_drift_scans": [ - 5811, + 5835, { "distinct_on": [ - 5826, + 5850, "[utility_drift_scans_select_column!]" ], "limit": [ @@ -209709,19 +210283,19 @@ export default { 41 ], "order_by": [ - 5824, + 5848, "[utility_drift_scans_order_by!]" ], "where": [ - 5815 + 5839 ] } ], "utility_drift_scans_aggregate": [ - 5812, + 5836, { "distinct_on": [ - 5826, + 5850, "[utility_drift_scans_select_column!]" ], "limit": [ @@ -209731,44 +210305,44 @@ export default { 41 ], "order_by": [ - 5824, + 5848, "[utility_drift_scans_order_by!]" ], "where": [ - 5815 + 5839 ] } ], "utility_drift_scans_by_pk": [ - 5811, + 5835, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_drift_scans_stream": [ - 5811, + 5835, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5831, + 5855, "[utility_drift_scans_stream_cursor_input]!" ], "where": [ - 5815 + 5839 ] } ], "utility_lineup_favorites": [ - 5839, + 5863, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -209778,19 +210352,19 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], "utility_lineup_favorites_aggregate": [ - 5840, + 5864, { "distinct_on": [ - 5860, + 5884, "[utility_lineup_favorites_select_column!]" ], "limit": [ @@ -209800,48 +210374,48 @@ export default { 41 ], "order_by": [ - 5858, + 5882, "[utility_lineup_favorites_order_by!]" ], "where": [ - 5848 + 5872 ] } ], "utility_lineup_favorites_by_pk": [ - 5839, + 5863, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_favorites_stream": [ - 5839, + 5863, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5868, + 5892, "[utility_lineup_favorites_stream_cursor_input]!" ], "where": [ - 5848 + 5872 ] } ], "utility_lineup_progress": [ - 5880, + 5904, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -209851,19 +210425,19 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "utility_lineup_progress_aggregate": [ - 5881, + 5905, { "distinct_on": [ - 5911, + 5935, "[utility_lineup_progress_select_column!]" ], "limit": [ @@ -209873,48 +210447,48 @@ export default { 41 ], "order_by": [ - 5909, + 5933, "[utility_lineup_progress_order_by!]" ], "where": [ - 5899 + 5923 ] } ], "utility_lineup_progress_by_pk": [ - 5880, + 5904, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_progress_stream": [ - 5880, + 5904, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5927, + 5951, "[utility_lineup_progress_stream_cursor_input]!" ], "where": [ - 5899 + 5923 ] } ], "utility_lineup_renders": [ - 5939, + 5963, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -209924,19 +210498,19 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "utility_lineup_renders_aggregate": [ - 5940, + 5964, { "distinct_on": [ - 5967, + 5991, "[utility_lineup_renders_select_column!]" ], "limit": [ @@ -209946,44 +210520,44 @@ export default { 41 ], "order_by": [ - 5964, + 5988, "[utility_lineup_renders_order_by!]" ], "where": [ - 5951 + 5975 ] } ], "utility_lineup_renders_by_pk": [ - 5939, + 5963, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_renders_stream": [ - 5939, + 5963, { "batch_size": [ 41, "Int!" ], "cursor": [ - 5977, + 6001, "[utility_lineup_renders_stream_cursor_input]!" ], "where": [ - 5951 + 5975 ] } ], "utility_lineup_repairs": [ - 5989, + 6013, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -209993,19 +210567,19 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "utility_lineup_repairs_aggregate": [ - 5990, + 6014, { "distinct_on": [ - 6020, + 6044, "[utility_lineup_repairs_select_column!]" ], "limit": [ @@ -210015,44 +210589,44 @@ export default { 41 ], "order_by": [ - 6018, + 6042, "[utility_lineup_repairs_order_by!]" ], "where": [ - 6008 + 6032 ] } ], "utility_lineup_repairs_by_pk": [ - 5989, + 6013, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_repairs_stream": [ - 5989, + 6013, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6036, + 6060, "[utility_lineup_repairs_stream_cursor_input]!" ], "where": [ - 6008 + 6032 ] } ], "utility_lineup_votes": [ - 6048, + 6072, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -210062,19 +210636,19 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "utility_lineup_votes_aggregate": [ - 6049, + 6073, { "distinct_on": [ - 6069, + 6093, "[utility_lineup_votes_select_column!]" ], "limit": [ @@ -210084,48 +210658,48 @@ export default { 41 ], "order_by": [ - 6067, + 6091, "[utility_lineup_votes_order_by!]" ], "where": [ - 6057 + 6081 ] } ], "utility_lineup_votes_by_pk": [ - 6048, + 6072, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_lineup_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineup_votes_stream": [ - 6048, + 6072, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6077, + 6101, "[utility_lineup_votes_stream_cursor_input]!" ], "where": [ - 6057 + 6081 ] } ], "utility_lineups": [ - 6089, + 6113, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -210135,19 +210709,19 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_aggregate": [ - 6090, + 6114, { "distinct_on": [ - 6128, + 6152, "[utility_lineups_select_column!]" ], "limit": [ @@ -210157,44 +210731,44 @@ export default { 41 ], "order_by": [ - 6125, + 6149, "[utility_lineups_order_by!]" ], "where": [ - 6111 + 6135 ] } ], "utility_lineups_by_pk": [ - 6089, + 6113, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_lineups_stream": [ - 6089, + 6113, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6146, + 6170, "[utility_lineups_stream_cursor_input]!" ], "where": [ - 6111 + 6135 ] } ], "utility_meta_lineups": [ - 6158, + 6182, { "distinct_on": [ - 6172, + 6196, "[utility_meta_lineups_select_column!]" ], "limit": [ @@ -210204,19 +210778,19 @@ export default { 41 ], "order_by": [ - 6170, + 6194, "[utility_meta_lineups_order_by!]" ], "where": [ - 6162 + 6186 ] } ], "utility_meta_lineups_aggregate": [ - 6159, + 6183, { "distinct_on": [ - 6172, + 6196, "[utility_meta_lineups_select_column!]" ], "limit": [ @@ -210226,44 +210800,44 @@ export default { 41 ], "order_by": [ - 6170, + 6194, "[utility_meta_lineups_order_by!]" ], "where": [ - 6162 + 6186 ] } ], "utility_meta_lineups_by_pk": [ - 6158, + 6182, { "lineup_bucket": [ - 84, + 85, "String!" ] } ], "utility_meta_lineups_stream": [ - 6158, + 6182, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6177, + 6201, "[utility_meta_lineups_stream_cursor_input]!" ], "where": [ - 6162 + 6186 ] } ], "utility_playbook_steps": [ - 6185, + 6209, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -210273,19 +210847,19 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "utility_playbook_steps_aggregate": [ - 6186, + 6210, { "distinct_on": [ - 6206, + 6230, "[utility_playbook_steps_select_column!]" ], "limit": [ @@ -210295,44 +210869,44 @@ export default { 41 ], "order_by": [ - 6204, + 6228, "[utility_playbook_steps_order_by!]" ], "where": [ - 6194 + 6218 ] } ], "utility_playbook_steps_by_pk": [ - 6185, + 6209, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_playbook_steps_stream": [ - 6185, + 6209, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6214, + 6238, "[utility_playbook_steps_stream_cursor_input]!" ], "where": [ - 6194 + 6218 ] } ], "utility_playbooks": [ - 6226, + 6250, { "distinct_on": [ - 6241, + 6265, "[utility_playbooks_select_column!]" ], "limit": [ @@ -210342,19 +210916,19 @@ export default { 41 ], "order_by": [ - 6239, + 6263, "[utility_playbooks_order_by!]" ], "where": [ - 6230 + 6254 ] } ], "utility_playbooks_aggregate": [ - 6227, + 6251, { "distinct_on": [ - 6241, + 6265, "[utility_playbooks_select_column!]" ], "limit": [ @@ -210364,44 +210938,44 @@ export default { 41 ], "order_by": [ - 6239, + 6263, "[utility_playbooks_order_by!]" ], "where": [ - 6230 + 6254 ] } ], "utility_playbooks_by_pk": [ - 6226, + 6250, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_playbooks_stream": [ - 6226, + 6250, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6246, + 6270, "[utility_playbooks_stream_cursor_input]!" ], "where": [ - 6230 + 6254 ] } ], "utility_practice_invites": [ - 6254, + 6278, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -210411,19 +210985,19 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], "utility_practice_invites_aggregate": [ - 6255, + 6279, { "distinct_on": [ - 6275, + 6299, "[utility_practice_invites_select_column!]" ], "limit": [ @@ -210433,48 +211007,48 @@ export default { 41 ], "order_by": [ - 6273, + 6297, "[utility_practice_invites_order_by!]" ], "where": [ - 6263 + 6287 ] } ], "utility_practice_invites_by_pk": [ - 6254, + 6278, { "steam_id": [ - 309, + 310, "bigint!" ], "utility_practice_session_id": [ - 6341, + 6365, "uuid!" ] } ], "utility_practice_invites_stream": [ - 6254, + 6278, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6283, + 6307, "[utility_practice_invites_stream_cursor_input]!" ], "where": [ - 6263 + 6287 ] } ], "utility_practice_sessions": [ - 6295, + 6319, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -210484,19 +211058,19 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_aggregate": [ - 6296, + 6320, { "distinct_on": [ - 6319, + 6343, "[utility_practice_sessions_select_column!]" ], "limit": [ @@ -210506,44 +211080,44 @@ export default { 41 ], "order_by": [ - 6317, + 6341, "[utility_practice_sessions_order_by!]" ], "where": [ - 6306 + 6330 ] } ], "utility_practice_sessions_by_pk": [ - 6295, + 6319, { "id": [ - 6341, + 6365, "uuid!" ] } ], "utility_practice_sessions_stream": [ - 6295, + 6319, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6329, + 6353, "[utility_practice_sessions_stream_cursor_input]!" ], "where": [ - 6306 + 6330 ] } ], "v_event_player_stats": [ - 6344, + 6368, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -210553,19 +211127,19 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "v_event_player_stats_aggregate": [ - 6345, + 6369, { "distinct_on": [ - 6370, + 6394, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -210575,35 +211149,35 @@ export default { 41 ], "order_by": [ - 6369, + 6393, "[v_event_player_stats_order_by!]" ], "where": [ - 6363 + 6387 ] } ], "v_event_player_stats_stream": [ - 6344, + 6368, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6385, + 6409, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 6363 + 6387 ] } ], "v_gpu_pool_status": [ - 6395, + 6419, { "distinct_on": [ - 6403, + 6427, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -210613,19 +211187,19 @@ export default { 41 ], "order_by": [ - 6402, + 6426, "[v_gpu_pool_status_order_by!]" ], "where": [ - 6399 + 6423 ] } ], "v_gpu_pool_status_aggregate": [ - 6396, + 6420, { "distinct_on": [ - 6403, + 6427, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -210635,35 +211209,35 @@ export default { 41 ], "order_by": [ - 6402, + 6426, "[v_gpu_pool_status_order_by!]" ], "where": [ - 6399 + 6423 ] } ], "v_gpu_pool_status_stream": [ - 6395, + 6419, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6407, + 6431, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 6399 + 6423 ] } ], "v_league_division_standings": [ - 6413, + 6437, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -210673,19 +211247,19 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "v_league_division_standings_aggregate": [ - 6414, + 6438, { "distinct_on": [ - 6429, + 6453, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -210695,35 +211269,35 @@ export default { 41 ], "order_by": [ - 6428, + 6452, "[v_league_division_standings_order_by!]" ], "where": [ - 6422 + 6446 ] } ], "v_league_division_standings_stream": [ - 6413, + 6437, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6436, + 6460, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 6422 + 6446 ] } ], "v_league_season_player_stats": [ - 6446, + 6470, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -210733,19 +211307,19 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], "v_league_season_player_stats_aggregate": [ - 6447, + 6471, { "distinct_on": [ - 6472, + 6496, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -210755,35 +211329,35 @@ export default { 41 ], "order_by": [ - 6471, + 6495, "[v_league_season_player_stats_order_by!]" ], "where": [ - 6465 + 6489 ] } ], "v_league_season_player_stats_stream": [ - 6446, + 6470, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6487, + 6511, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 6465 + 6489 ] } ], "v_match_captains": [ - 6497, + 6521, { "distinct_on": [ - 6509, + 6533, "[v_match_captains_select_column!]" ], "limit": [ @@ -210793,19 +211367,19 @@ export default { 41 ], "order_by": [ - 6508, + 6532, "[v_match_captains_order_by!]" ], "where": [ - 6501 + 6525 ] } ], "v_match_captains_aggregate": [ - 6498, + 6522, { "distinct_on": [ - 6509, + 6533, "[v_match_captains_select_column!]" ], "limit": [ @@ -210815,35 +211389,35 @@ export default { 41 ], "order_by": [ - 6508, + 6532, "[v_match_captains_order_by!]" ], "where": [ - 6501 + 6525 ] } ], "v_match_captains_stream": [ - 6497, + 6521, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6514, + 6538, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 6501 + 6525 ] } ], "v_match_clutches": [ - 6521, + 6545, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -210853,19 +211427,19 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "v_match_clutches_aggregate": [ - 6522, + 6546, { "distinct_on": [ - 6537, + 6561, "[v_match_clutches_select_column!]" ], "limit": [ @@ -210875,35 +211449,35 @@ export default { 41 ], "order_by": [ - 6536, + 6560, "[v_match_clutches_order_by!]" ], "where": [ - 6530 + 6554 ] } ], "v_match_clutches_stream": [ - 6521, + 6545, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6544, + 6568, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 6530 + 6554 ] } ], "v_match_kill_pairs": [ - 6554, + 6578, { "distinct_on": [ - 6562, + 6586, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -210913,19 +211487,19 @@ export default { 41 ], "order_by": [ - 6561, + 6585, "[v_match_kill_pairs_order_by!]" ], "where": [ - 6558 + 6582 ] } ], "v_match_kill_pairs_aggregate": [ - 6555, + 6579, { "distinct_on": [ - 6562, + 6586, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -210935,35 +211509,35 @@ export default { 41 ], "order_by": [ - 6561, + 6585, "[v_match_kill_pairs_order_by!]" ], "where": [ - 6558 + 6582 ] } ], "v_match_kill_pairs_stream": [ - 6554, + 6578, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6566, + 6590, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 6558 + 6582 ] } ], "v_match_lineup_buy_types": [ - 6572, + 6596, { "distinct_on": [ - 6580, + 6604, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -210973,19 +211547,19 @@ export default { 41 ], "order_by": [ - 6579, + 6603, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 6576 + 6600 ] } ], "v_match_lineup_buy_types_aggregate": [ - 6573, + 6597, { "distinct_on": [ - 6580, + 6604, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -210995,35 +211569,35 @@ export default { 41 ], "order_by": [ - 6579, + 6603, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 6576 + 6600 ] } ], "v_match_lineup_buy_types_stream": [ - 6572, + 6596, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6584, + 6608, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 6576 + 6600 ] } ], "v_match_lineup_map_stats": [ - 6590, + 6614, { "distinct_on": [ - 6598, + 6622, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -211033,19 +211607,19 @@ export default { 41 ], "order_by": [ - 6597, + 6621, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 6594 + 6618 ] } ], "v_match_lineup_map_stats_aggregate": [ - 6591, + 6615, { "distinct_on": [ - 6598, + 6622, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -211055,35 +211629,35 @@ export default { 41 ], "order_by": [ - 6597, + 6621, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 6594 + 6618 ] } ], "v_match_lineup_map_stats_stream": [ - 6590, + 6614, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6602, + 6626, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 6594 + 6618 ] } ], "v_match_map_backup_rounds": [ - 6608, + 6632, { "distinct_on": [ - 6619, + 6643, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -211093,19 +211667,19 @@ export default { 41 ], "order_by": [ - 6618, + 6642, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 6612 + 6636 ] } ], "v_match_map_backup_rounds_aggregate": [ - 6609, + 6633, { "distinct_on": [ - 6619, + 6643, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -211115,35 +211689,35 @@ export default { 41 ], "order_by": [ - 6618, + 6642, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 6612 + 6636 ] } ], "v_match_map_backup_rounds_stream": [ - 6608, + 6632, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6624, + 6648, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 6612 + 6636 ] } ], "v_match_player_buy_types": [ - 6631, + 6655, { "distinct_on": [ - 6639, + 6663, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -211153,19 +211727,19 @@ export default { 41 ], "order_by": [ - 6638, + 6662, "[v_match_player_buy_types_order_by!]" ], "where": [ - 6635 + 6659 ] } ], "v_match_player_buy_types_aggregate": [ - 6632, + 6656, { "distinct_on": [ - 6639, + 6663, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -211175,35 +211749,35 @@ export default { 41 ], "order_by": [ - 6638, + 6662, "[v_match_player_buy_types_order_by!]" ], "where": [ - 6635 + 6659 ] } ], "v_match_player_buy_types_stream": [ - 6631, + 6655, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6643, + 6667, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 6635 + 6659 ] } ], "v_match_player_opening_duels": [ - 6649, + 6673, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -211213,19 +211787,19 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "v_match_player_opening_duels_aggregate": [ - 6650, + 6674, { "distinct_on": [ - 6665, + 6689, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -211235,35 +211809,35 @@ export default { 41 ], "order_by": [ - 6664, + 6688, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 6658 + 6682 ] } ], "v_match_player_opening_duels_stream": [ - 6649, + 6673, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6672, + 6696, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 6658 + 6682 ] } ], "v_player_arch_nemesis": [ - 6682, + 6706, { "distinct_on": [ - 6690, + 6714, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -211273,19 +211847,19 @@ export default { 41 ], "order_by": [ - 6689, + 6713, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 6686 + 6710 ] } ], "v_player_arch_nemesis_aggregate": [ - 6683, + 6707, { "distinct_on": [ - 6690, + 6714, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -211295,35 +211869,35 @@ export default { 41 ], "order_by": [ - 6689, + 6713, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 6686 + 6710 ] } ], "v_player_arch_nemesis_stream": [ - 6682, + 6706, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6694, + 6718, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 6686 + 6710 ] } ], "v_player_damage": [ - 6700, + 6724, { "distinct_on": [ - 6708, + 6732, "[v_player_damage_select_column!]" ], "limit": [ @@ -211333,19 +211907,19 @@ export default { 41 ], "order_by": [ - 6707, + 6731, "[v_player_damage_order_by!]" ], "where": [ - 6704 + 6728 ] } ], "v_player_damage_aggregate": [ - 6701, + 6725, { "distinct_on": [ - 6708, + 6732, "[v_player_damage_select_column!]" ], "limit": [ @@ -211355,35 +211929,35 @@ export default { 41 ], "order_by": [ - 6707, + 6731, "[v_player_damage_order_by!]" ], "where": [ - 6704 + 6728 ] } ], "v_player_damage_stream": [ - 6700, + 6724, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6712, + 6736, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 6704 + 6728 ] } ], "v_player_elo": [ - 6718, + 6742, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -211393,19 +211967,19 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "v_player_elo_aggregate": [ - 6719, + 6743, { "distinct_on": [ - 6744, + 6768, "[v_player_elo_select_column!]" ], "limit": [ @@ -211415,35 +211989,35 @@ export default { 41 ], "order_by": [ - 6743, + 6767, "[v_player_elo_order_by!]" ], "where": [ - 6737 + 6761 ] } ], "v_player_elo_stream": [ - 6718, + 6742, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6759, + 6783, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 6737 + 6761 ] } ], "v_player_map_losses": [ - 6769, + 6793, { "distinct_on": [ - 6777, + 6801, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -211453,19 +212027,19 @@ export default { 41 ], "order_by": [ - 6776, + 6800, "[v_player_map_losses_order_by!]" ], "where": [ - 6773 + 6797 ] } ], "v_player_map_losses_aggregate": [ - 6770, + 6794, { "distinct_on": [ - 6777, + 6801, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -211475,35 +212049,35 @@ export default { 41 ], "order_by": [ - 6776, + 6800, "[v_player_map_losses_order_by!]" ], "where": [ - 6773 + 6797 ] } ], "v_player_map_losses_stream": [ - 6769, + 6793, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6781, + 6805, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 6773 + 6797 ] } ], "v_player_map_wins": [ - 6787, + 6811, { "distinct_on": [ - 6795, + 6819, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -211513,19 +212087,19 @@ export default { 41 ], "order_by": [ - 6794, + 6818, "[v_player_map_wins_order_by!]" ], "where": [ - 6791 + 6815 ] } ], "v_player_map_wins_aggregate": [ - 6788, + 6812, { "distinct_on": [ - 6795, + 6819, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -211535,35 +212109,35 @@ export default { 41 ], "order_by": [ - 6794, + 6818, "[v_player_map_wins_order_by!]" ], "where": [ - 6791 + 6815 ] } ], "v_player_map_wins_stream": [ - 6787, + 6811, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6799, + 6823, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 6791 + 6815 ] } ], "v_player_match_head_to_head": [ - 6805, + 6829, { "distinct_on": [ - 6813, + 6837, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -211573,19 +212147,19 @@ export default { 41 ], "order_by": [ - 6812, + 6836, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 6809 + 6833 ] } ], "v_player_match_head_to_head_aggregate": [ - 6806, + 6830, { "distinct_on": [ - 6813, + 6837, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -211595,35 +212169,35 @@ export default { 41 ], "order_by": [ - 6812, + 6836, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 6809 + 6833 ] } ], "v_player_match_head_to_head_stream": [ - 6805, + 6829, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6817, + 6841, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 6809 + 6833 ] } ], "v_player_match_map_hltv": [ - 6823, + 6847, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -211633,19 +212207,19 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "v_player_match_map_hltv_aggregate": [ - 6824, + 6848, { "distinct_on": [ - 6841, + 6865, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -211655,35 +212229,35 @@ export default { 41 ], "order_by": [ - 6840, + 6864, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 6832 + 6856 ] } ], "v_player_match_map_hltv_stream": [ - 6823, + 6847, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6849, + 6873, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 6832 + 6856 ] } ], "v_player_match_map_roles": [ - 6860, + 6884, { "distinct_on": [ - 6868, + 6892, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -211693,19 +212267,19 @@ export default { 41 ], "order_by": [ - 6867, + 6891, "[v_player_match_map_roles_order_by!]" ], "where": [ - 6864 + 6888 ] } ], "v_player_match_map_roles_aggregate": [ - 6861, + 6885, { "distinct_on": [ - 6868, + 6892, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -211715,35 +212289,35 @@ export default { 41 ], "order_by": [ - 6867, + 6891, "[v_player_match_map_roles_order_by!]" ], "where": [ - 6864 + 6888 ] } ], "v_player_match_map_roles_stream": [ - 6860, + 6884, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6872, + 6896, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 6864 + 6888 ] } ], "v_player_match_performance": [ - 6878, + 6902, { "distinct_on": [ - 6886, + 6910, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -211753,19 +212327,19 @@ export default { 41 ], "order_by": [ - 6885, + 6909, "[v_player_match_performance_order_by!]" ], "where": [ - 6882 + 6906 ] } ], "v_player_match_performance_aggregate": [ - 6879, + 6903, { "distinct_on": [ - 6886, + 6910, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -211775,35 +212349,35 @@ export default { 41 ], "order_by": [ - 6885, + 6909, "[v_player_match_performance_order_by!]" ], "where": [ - 6882 + 6906 ] } ], "v_player_match_performance_stream": [ - 6878, + 6902, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6890, + 6914, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 6882 + 6906 ] } ], "v_player_match_rating": [ - 6896, + 6920, { "distinct_on": [ - 6904, + 6928, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -211813,19 +212387,19 @@ export default { 41 ], "order_by": [ - 6903, + 6927, "[v_player_match_rating_order_by!]" ], "where": [ - 6900 + 6924 ] } ], "v_player_match_rating_aggregate": [ - 6897, + 6921, { "distinct_on": [ - 6904, + 6928, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -211835,35 +212409,35 @@ export default { 41 ], "order_by": [ - 6903, + 6927, "[v_player_match_rating_order_by!]" ], "where": [ - 6900 + 6924 ] } ], "v_player_match_rating_stream": [ - 6896, + 6920, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6908, + 6932, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 6900 + 6924 ] } ], "v_player_multi_kills": [ - 6914, + 6938, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -211873,19 +212447,19 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "v_player_multi_kills_aggregate": [ - 6915, + 6939, { "distinct_on": [ - 6930, + 6954, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -211895,35 +212469,35 @@ export default { 41 ], "order_by": [ - 6929, + 6953, "[v_player_multi_kills_order_by!]" ], "where": [ - 6923 + 6947 ] } ], "v_player_multi_kills_stream": [ - 6914, + 6938, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6937, + 6961, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 6923 + 6947 ] } ], "v_player_queue_partners": [ - 6947, + 6971, { "distinct_on": [ - 6955, + 6979, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -211933,19 +212507,19 @@ export default { 41 ], "order_by": [ - 6954, + 6978, "[v_player_queue_partners_order_by!]" ], "where": [ - 6951 + 6975 ] } ], "v_player_queue_partners_aggregate": [ - 6948, + 6972, { "distinct_on": [ - 6955, + 6979, "[v_player_queue_partners_select_column!]" ], "limit": [ @@ -211955,35 +212529,35 @@ export default { 41 ], "order_by": [ - 6954, + 6978, "[v_player_queue_partners_order_by!]" ], "where": [ - 6951 + 6975 ] } ], "v_player_queue_partners_stream": [ - 6947, + 6971, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6959, + 6983, "[v_player_queue_partners_stream_cursor_input]!" ], "where": [ - 6951 + 6975 ] } ], "v_player_weapon_damage": [ - 6965, + 6989, { "distinct_on": [ - 6973, + 6997, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -211993,19 +212567,19 @@ export default { 41 ], "order_by": [ - 6972, + 6996, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6969 + 6993 ] } ], "v_player_weapon_damage_aggregate": [ - 6966, + 6990, { "distinct_on": [ - 6973, + 6997, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -212015,35 +212589,35 @@ export default { 41 ], "order_by": [ - 6972, + 6996, "[v_player_weapon_damage_order_by!]" ], "where": [ - 6969 + 6993 ] } ], "v_player_weapon_damage_stream": [ - 6965, + 6989, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6977, + 7001, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 6969 + 6993 ] } ], "v_player_weapon_kills": [ - 6983, + 7007, { "distinct_on": [ - 6991, + 7015, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -212053,19 +212627,19 @@ export default { 41 ], "order_by": [ - 6990, + 7014, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6987 + 7011 ] } ], "v_player_weapon_kills_aggregate": [ - 6984, + 7008, { "distinct_on": [ - 6991, + 7015, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -212075,35 +212649,35 @@ export default { 41 ], "order_by": [ - 6990, + 7014, "[v_player_weapon_kills_order_by!]" ], "where": [ - 6987 + 7011 ] } ], "v_player_weapon_kills_stream": [ - 6983, + 7007, { "batch_size": [ 41, "Int!" ], "cursor": [ - 6995, + 7019, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 6987 + 7011 ] } ], "v_pool_maps": [ - 7001, + 7025, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -212113,19 +212687,19 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], "v_pool_maps_aggregate": [ - 7002, + 7026, { "distinct_on": [ - 7018, + 7042, "[v_pool_maps_select_column!]" ], "limit": [ @@ -212135,35 +212709,35 @@ export default { 41 ], "order_by": [ - 7017, + 7041, "[v_pool_maps_order_by!]" ], "where": [ - 7010 + 7034 ] } ], "v_pool_maps_stream": [ - 7001, + 7025, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7022, + 7046, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 7010 + 7034 ] } ], "v_steam_account_pool_status": [ - 7025, + 7049, { "distinct_on": [ - 7033, + 7057, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -212173,19 +212747,19 @@ export default { 41 ], "order_by": [ - 7032, + 7056, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 7029 + 7053 ] } ], "v_steam_account_pool_status_aggregate": [ - 7026, + 7050, { "distinct_on": [ - 7033, + 7057, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -212195,35 +212769,35 @@ export default { 41 ], "order_by": [ - 7032, + 7056, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 7029 + 7053 ] } ], "v_steam_account_pool_status_stream": [ - 7025, + 7049, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7037, + 7061, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 7029 + 7053 ] } ], "v_team_ranks": [ - 7043, + 7067, { "distinct_on": [ - 7053, + 7077, "[v_team_ranks_select_column!]" ], "limit": [ @@ -212233,19 +212807,19 @@ export default { 41 ], "order_by": [ - 7052, + 7076, "[v_team_ranks_order_by!]" ], "where": [ - 7047 + 7071 ] } ], "v_team_ranks_aggregate": [ - 7044, + 7068, { "distinct_on": [ - 7053, + 7077, "[v_team_ranks_select_column!]" ], "limit": [ @@ -212255,35 +212829,35 @@ export default { 41 ], "order_by": [ - 7052, + 7076, "[v_team_ranks_order_by!]" ], "where": [ - 7047 + 7071 ] } ], "v_team_ranks_stream": [ - 7043, + 7067, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7057, + 7081, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 7047 + 7071 ] } ], "v_team_reputation": [ - 7063, + 7087, { "distinct_on": [ - 7073, + 7097, "[v_team_reputation_select_column!]" ], "limit": [ @@ -212293,19 +212867,19 @@ export default { 41 ], "order_by": [ - 7072, + 7096, "[v_team_reputation_order_by!]" ], "where": [ - 7067 + 7091 ] } ], "v_team_reputation_aggregate": [ - 7064, + 7088, { "distinct_on": [ - 7073, + 7097, "[v_team_reputation_select_column!]" ], "limit": [ @@ -212315,35 +212889,35 @@ export default { 41 ], "order_by": [ - 7072, + 7096, "[v_team_reputation_order_by!]" ], "where": [ - 7067 + 7091 ] } ], "v_team_reputation_stream": [ - 7063, + 7087, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7077, + 7101, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 7067 + 7091 ] } ], "v_team_stage_results": [ - 7083, + 7107, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -212353,19 +212927,19 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "v_team_stage_results_aggregate": [ - 7084, + 7108, { "distinct_on": [ - 7115, + 7139, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -212375,48 +212949,48 @@ export default { 41 ], "order_by": [ - 7113, + 7137, "[v_team_stage_results_order_by!]" ], "where": [ - 7102 + 7126 ] } ], "v_team_stage_results_by_pk": [ - 7083, + 7107, { "tournament_stage_id": [ - 6341, + 6365, "uuid!" ], "tournament_team_id": [ - 6341, + 6365, "uuid!" ] } ], "v_team_stage_results_stream": [ - 7083, + 7107, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7131, + 7155, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 7102 + 7126 ] } ], "v_team_tournament_results": [ - 7143, + 7167, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -212426,19 +213000,19 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "v_team_tournament_results_aggregate": [ - 7144, + 7168, { "distinct_on": [ - 7169, + 7193, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -212448,35 +213022,35 @@ export default { 41 ], "order_by": [ - 7168, + 7192, "[v_team_tournament_results_order_by!]" ], "where": [ - 7162 + 7186 ] } ], "v_team_tournament_results_stream": [ - 7143, + 7167, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7184, + 7208, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 7162 + 7186 ] } ], "v_tournament_player_stats": [ - 7194, + 7218, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -212486,19 +213060,19 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "v_tournament_player_stats_aggregate": [ - 7195, + 7219, { "distinct_on": [ - 7220, + 7244, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -212508,32 +213082,32 @@ export default { 41 ], "order_by": [ - 7219, + 7243, "[v_tournament_player_stats_order_by!]" ], "where": [ - 7213 + 7237 ] } ], "v_tournament_player_stats_stream": [ - 7194, + 7218, { "batch_size": [ 41, "Int!" ], "cursor": [ - 7235, + 7259, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 7213 + 7237 ] } ], "__typename": [ - 84 + 85 ] } } diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 4c7a5482..fc60f212 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -1969,6 +1969,15 @@ type Mutation { remineUtilityMeta: UtilityRemineOutput } +type Mutation { + syncMapCallouts: MapCalloutSyncOutput +} + +type MapCalloutSyncOutput { + maps: Int! + callouts: Int! +} + type UtilityRemineOutput { demos: Int! throws: Int! diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 2be687c3..a3337d2b 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1579,6 +1579,14 @@ actions: permissions: - role: administrator comment: Re-mine one batch of demos after a miner change + - name: syncMapCallouts + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Pull the published map callouts for every enabled map - name: backfillUtilityLaunchSeeds definition: kind: synchronous diff --git a/hasura/metadata/databases/default/tables/public_map_callouts.yaml b/hasura/metadata/databases/default/tables/public_map_callouts.yaml new file mode 100644 index 00000000..8c4554db --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_map_callouts.yaml @@ -0,0 +1,14 @@ +table: + name: map_callouts + schema: public +select_permissions: + - role: guest + permission: + columns: + - map_name + - name + - boxes + - source + - updated_at + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 9d84147f..fce8a5e5 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -98,6 +98,7 @@ - "!include public_league_teams.yaml" - "!include public_lobbies.yaml" - "!include public_lobby_players.yaml" +- "!include public_map_callouts.yaml" - "!include public_map_pools.yaml" - "!include public_maps.yaml" - "!include public_match_clips.yaml" diff --git a/hasura/migrations/default/1880000011000_map_callouts/down.sql b/hasura/migrations/default/1880000011000_map_callouts/down.sql new file mode 100644 index 00000000..c092693c --- /dev/null +++ b/hasura/migrations/default/1880000011000_map_callouts/down.sql @@ -0,0 +1,3 @@ +DROP INDEX IF EXISTS public.map_callouts_source_idx; + +DROP TABLE IF EXISTS public.map_callouts; diff --git a/hasura/migrations/default/1880000011000_map_callouts/up.sql b/hasura/migrations/default/1880000011000_map_callouts/up.sql new file mode 100644 index 00000000..e592ee08 --- /dev/null +++ b/hasura/migrations/default/1880000011000_map_callouts/up.sql @@ -0,0 +1,26 @@ +-- The named areas of a map -- "Window", "Catwalk", "A Site" -- as CS2 itself +-- defines them in its `env_cs_place` entities. Extracted from the compiled maps +-- by web/scripts/extract-map-callouts.mjs and published beside the collision +-- meshes; a practice plugin reports them for maps the extract does not cover. +-- +-- One row per NAME, not per volume: a callout is legitimately several disjoint +-- boxes (Banana is two), and every reader wants "which place is this point in", +-- never "which box". +CREATE TABLE IF NOT EXISTS public.map_callouts ( + map_name text NOT NULL, + name text NOT NULL, + -- [{ "min": [x, y, z], "max": [x, y, z] }, ...] in raw CS2 source units, + -- the same space as demo player positions and the collision meshes. + boxes jsonb NOT NULL, + source text NOT NULL DEFAULT 'cdn', + updated_at timestamp with time zone NOT NULL DEFAULT now(), + PRIMARY KEY (map_name, name), + CONSTRAINT map_callouts_source_check CHECK (source IN ('cdn', 'plugin')), + CONSTRAINT map_callouts_boxes_check CHECK (jsonb_typeof(boxes) = 'array') +); + +-- map_name is stored NORMALISED -- lowercased, any `workshop//` prefix and +-- `_night` suffix stripped -- so a night variant shares the base map's geometry +-- and its callouts, and every reader looks up the one spelling. +CREATE INDEX IF NOT EXISTS map_callouts_source_idx + ON public.map_callouts (map_name, source); diff --git a/src/telemetry/telemetry.service.ts b/src/telemetry/telemetry.service.ts index 67271b8d..a9ae6f9d 100644 --- a/src/telemetry/telemetry.service.ts +++ b/src/telemetry/telemetry.service.ts @@ -118,6 +118,52 @@ export class TelemetryService { "branding", ]); + // Feature key -> the collect count that measures it. Static, rather than + // built inside buildFeatures, so the fleet page can also list a feature no + // panel has reported yet (see getFeatureAdoption) instead of dropping it + // until the fleet has updated. + // + // demo_playback and live_streaming deliberately have no count. The only rows + // that record either -- match_demo_sessions, match_streams -- are deleted + // when the session ends, so counting them reports how many people happen to + // be watching during the collect, not how much the panel has ever used it. A + // panel that has served ten thousand playbacks would report zero. Both are in + // DetectedFeatures, so their adoption comes from `enabled` (a GPU node + // carrying the workload) and the null count reads as "not measured" rather + // than as "nobody uses it". + private static readonly FeatureUsage: Record = { + tournaments: "tournaments", + leagues: "league_seasons", + seasons: "seasons", + events: "events", + news: "news_articles", + highlights: "match_clips", + clip_renders: "clip_render_jobs", + system_alerts: "system_alerts", + awards: "award_recipients", + scrims: "scrim_requests", + matchmaking: "lobbies", + custom_pages: "custom_pages", + external_matches: "matches_external", + faceit_import: "matches_faceit", + draft_games: "draft_games", + demos: "demos", + sanctions: "sanctions", + api_keys: "api_keys", + gamedata_validations: "gamedata_validations", + push_notifications: "push_subscriptions", + utility_library: "utility_lineups", + utility_practice: "utility_sessions", + // Lineups an operator bulk-loaded rather than anybody throwing them, which + // is the only thing the switch controls. + utility_import: "utility_imported", + game_server_nodes: "nodes_total", + version_pinning: "nodes_pinned", + discord_bot: "players_discord", + steam_presence: "steam_presence_friends", + player_name_registration: "players_name_registered", + }; + // A match this panel actually hosted. Imported demos are stamped with a // started_at (from demo metadata, or the import time when that is missing), // so started_at alone would count every FACEIT import as a match we ran. @@ -856,7 +902,7 @@ export class TelemetryService { ORDER BY total DESC, f.key ASC`, ); - return rows.map((row) => { + const adoption = rows.map((row) => { const counts = TelemetryService.toIntegers(row, [ "enabled", "flagged", @@ -872,6 +918,46 @@ export class TelemetryService { ...counts, }; }); + + // A feature added after the builds currently in the fleet has no row here + // at all, and leaving it out reads as a feature that does not exist rather + // than as one nothing has reported yet. Emit it with nothing reported -- + // `reporting: 0` is what the page reads to say so -- so a switch shows up + // on the fleet page the moment this build knows about it. + const reported = new Set(adoption.map((feature) => feature.key)); + + for (const key of TelemetryService.knownFeatures()) { + if (reported.has(key)) { + continue; + } + + adoption.push({ + key, + kind: TelemetryService.featureKind(key, 0), + enabled: 0, + flagged: 0, + reporting: 0, + counted: 0, + installsUsing: 0, + total: 0, + }); + } + + // Same order the query asked for, applied again now that the unreported + // ones have been folded in. + return adoption.sort( + (a, b) => b.total - a.total || a.key.localeCompare(b.key), + ); + } + + // Every feature this build can report, whether or not a panel in the fleet + // has sent it yet. + private static knownFeatures() { + return new Set([ + ...Object.keys(TelemetryService.FeatureFlags), + ...Object.keys(TelemetryService.FeatureUsage), + ...TelemetryService.DetectedFeatures, + ]); } // Detected first. The `supports_*` ones are stored as settings and so are in @@ -1290,46 +1376,11 @@ export class TelemetryService { settings: Map, counts: TelemetryCounts, ): Record { - const usage: Record = { - tournaments: counts.tournaments, - leagues: counts.league_seasons, - seasons: counts.seasons, - events: counts.events, - news: counts.news_articles, - highlights: counts.match_clips, - clip_renders: counts.clip_render_jobs, - system_alerts: counts.system_alerts, - awards: counts.award_recipients, - scrims: counts.scrim_requests, - matchmaking: counts.lobbies, - custom_pages: counts.custom_pages, - external_matches: counts.matches_external, - faceit_import: counts.matches_faceit, - draft_games: counts.draft_games, - demos: counts.demos, - sanctions: counts.sanctions, - api_keys: counts.api_keys, - gamedata_validations: counts.gamedata_validations, - push_notifications: counts.push_subscriptions, - utility_library: counts.utility_lineups, - utility_practice: counts.utility_sessions, - // Lineups an operator bulk-loaded rather than anybody throwing them, which - // is the only thing the switch controls. - utility_import: counts.utility_imported, - // demo_playback and live_streaming deliberately have no count. The only - // rows that record either -- match_demo_sessions, match_streams -- are - // deleted when the session ends, so counting them reports how many people - // happen to be watching during the collect, not how much the panel has - // ever used it. A panel that has served ten thousand playbacks would - // report zero. Both are in DetectedFeatures, so their adoption comes from - // `enabled` (a GPU node carrying the workload) and the null count reads as - // "not measured" rather than as "nobody uses it". - game_server_nodes: counts.nodes_total, - version_pinning: counts.nodes_pinned, - discord_bot: counts.players_discord, - steam_presence: counts.steam_presence_friends, - player_name_registration: counts.players_name_registered, - }; + const usage: Record = {}; + + for (const [key, count] of Object.entries(TelemetryService.FeatureUsage)) { + usage[key] = counts[count]; + } // Read back rather than switched. The GPU workloads are toggled per node, // so on means at least one node is carrying that work; branding is on once diff --git a/src/utility/enums/UtilityJobs.ts b/src/utility/enums/UtilityJobs.ts index 1fc98fb9..46c05a9f 100644 --- a/src/utility/enums/UtilityJobs.ts +++ b/src/utility/enums/UtilityJobs.ts @@ -3,6 +3,7 @@ export const UtilityJobs = { ReapIdleUtilityPracticeSessions: `ReapIdleUtilityPracticeSessions`, MineUtilityMeta: `MineUtilityMeta`, + SyncMapCallouts: `SyncMapCallouts`, RunUtilityDriftScan: `RunUtilityDriftScan`, BatchUtilityRenderJob: `BatchUtilityRenderJob`, } as const; diff --git a/src/utility/jobs/SyncMapCallouts.ts b/src/utility/jobs/SyncMapCallouts.ts new file mode 100644 index 00000000..29ea82fc --- /dev/null +++ b/src/utility/jobs/SyncMapCallouts.ts @@ -0,0 +1,26 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { UtilityQueues } from "../enums/UtilityQueues"; +import { UtilityCalloutsService } from "../utility-callouts.service"; + +@UseQueue("Utility", UtilityQueues.UtilityMeta, { concurrency: 1 }) +export class SyncMapCallouts extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly callouts: UtilityCalloutsService, + ) { + super(); + } + + async process(): Promise { + try { + await this.callouts.syncAll(); + } catch (error) { + this.logger.error( + `SyncMapCallouts failed: ${(error as Error)?.message}`, + (error as Error)?.stack, + ); + } + } +} diff --git a/src/utility/utility-analysis.controller.ts b/src/utility/utility-analysis.controller.ts index 63587d5b..7b0850bd 100644 --- a/src/utility/utility-analysis.controller.ts +++ b/src/utility/utility-analysis.controller.ts @@ -11,6 +11,7 @@ import { UtilityAnalysisService, UtilitySightlinePairInput, } from "./utility-analysis.service"; +import { UtilityCalloutsService } from "./utility-callouts.service"; import { UtilityDriftService } from "./utility-drift.service"; @Controller("utility-analysis") @@ -19,6 +20,7 @@ export class UtilityAnalysisController { private readonly analysis: UtilityAnalysisService, private readonly drift: UtilityDriftService, private readonly meta: UtilityMetaService, + private readonly callouts: UtilityCalloutsService, @InjectQueue(UtilityQueues.UtilityDrift) private readonly driftQueue: Queue, ) {} @@ -41,6 +43,18 @@ export class UtilityAnalysisController { }; } + // The daily job is the normal path; this exists for the run right after a new + // callouts tag is published, when waiting until 4am means every throw named + // in between is named from the old map. + @HasuraAction() + public async syncMapCallouts(data: { user: User }) { + if (!data.user || !isRoleAbove(data.user.role, "administrator")) { + throw new Error("only an administrator can sync map callouts"); + } + + return await this.callouts.syncAll(); + } + @HasuraAction() public async checkUtilitySightlines(data: { user: User; diff --git a/src/utility/utility-callouts.service.spec.ts b/src/utility/utility-callouts.service.spec.ts new file mode 100644 index 00000000..cb3270b3 --- /dev/null +++ b/src/utility/utility-callouts.service.spec.ts @@ -0,0 +1,148 @@ +import { UtilityCalloutsService } from "./utility-callouts.service"; + +const box = ( + min: [number, number, number], + max: [number, number, number], +) => ({ min, max }); + +describe("UtilityCalloutsService.calloutAt", () => { + const callouts = [ + { name: "BombsiteA", boxes: [box([0, 0, 0], [1000, 1000, 200])] }, + { name: "Goose", boxes: [box([100, 100, 0], [300, 300, 200])] }, + { name: "Ramp", boxes: [box([2000, 0, 0], [2400, 400, 200])] }, + ]; + + it("names the place a point is standing in", () => { + expect( + UtilityCalloutsService.calloutAt({ x: 800, y: 800, z: 50 }, callouts), + ).toBe("BombsiteA"); + }); + + // The specific name is the one a player would say. + it("prefers the smaller of two nested volumes", () => { + expect( + UtilityCalloutsService.calloutAt({ x: 200, y: 200, z: 50 }, callouts), + ).toBe("Goose"); + }); + + it("names the place beneath a point resting above it", () => { + expect( + UtilityCalloutsService.calloutAt({ x: 800, y: 800, z: 900 }, callouts), + ).toBe("BombsiteA"); + }); + + // Two places at the same XY on different levels is the Nuke/Vertigo case. + it("uses Z to separate stacked places", () => { + const stacked = [ + { name: "Upper", boxes: [box([0, 0, 100], [500, 500, 300])] }, + { name: "Lower", boxes: [box([0, 0, -400], [500, 500, -100])] }, + ]; + + expect( + UtilityCalloutsService.calloutAt({ x: 250, y: 250, z: 200 }, stacked), + ).toBe("Upper"); + expect( + UtilityCalloutsService.calloutAt({ x: 250, y: 250, z: -200 }, stacked), + ).toBe("Lower"); + }); + + it("snaps to a nearby place when the point is outside every volume", () => { + expect( + UtilityCalloutsService.calloutAt({ x: 1100, y: 500, z: 50 }, callouts), + ).toBe("BombsiteA"); + }); + + it("says nothing when the nearest place is too far to mean anything", () => { + expect( + UtilityCalloutsService.calloutAt({ x: 9000, y: 9000, z: 50 }, callouts), + ).toBeNull(); + }); + + it("says nothing when the map has no callouts", () => { + expect(UtilityCalloutsService.calloutAt({ x: 0, y: 0, z: 0 }, [])).toBeNull(); + }); +}); + +describe("UtilityCalloutsService.humanize", () => { + it.each([ + ["BombsiteA", "A Site"], + ["BombsiteB", "B Site"], + ["TSpawn", "T Spawn"], + ["CTSpawn", "CT Spawn"], + ["Catwalk", "Catwalk"], + ["LongDoors", "Long Doors"], + ["back_alley", "back alley"], + ])("%s reads as %s", (raw, expected) => { + expect(UtilityCalloutsService.humanize(raw)).toBe(expected); + }); +}); + +describe("UtilityCalloutsService.normalizeMapName", () => { + it.each([ + ["de_mirage", "de_mirage"], + ["DE_Mirage", "de_mirage"], + ["de_inferno_night", "de_inferno"], + ["workshop/3121217565/de_thera", "de_thera"], + ])("%s normalises to %s", (raw, expected) => { + expect(UtilityCalloutsService.normalizeMapName(raw)).toBe(expected); + }); +}); + +describe("auto naming", () => { + const callouts = [ + { name: "TSpawn", boxes: [box([0, 0, 0], [500, 500, 200])] }, + { name: "Middle", boxes: [box([2000, 0, 0], [2500, 500, 200])] }, + ]; + + const service = new UtilityCalloutsService(null as never, null as never); + + beforeEach(() => { + jest.spyOn(service, "forMap").mockResolvedValue(callouts); + }); + + it("says where it lands and where it is thrown from", async () => { + await expect( + service.autoName( + "de_mirage", + "Smoke", + { x: 250, y: 250, z: 50 }, + { x: 2250, y: 250, z: 50 }, + ), + ).resolves.toBe("Middle Smoke from T Spawn"); + }); + + it("does not repeat itself when both ends are the same place", async () => { + await expect( + service.autoName( + "de_mirage", + "Flash", + { x: 100, y: 100, z: 50 }, + { x: 300, y: 300, z: 50 }, + ), + ).resolves.toBe("T Spawn Flash"); + }); + + it("uses the type label the panel uses", async () => { + await expect( + service.autoName( + "de_mirage", + "HighExplosive", + { x: 250, y: 250, z: 50 }, + { x: 2250, y: 250, z: 50 }, + ), + ).resolves.toBe("Middle HE from T Spawn"); + }); + + // Empty rather than a name that says nothing, so the caller's own fallback + // is still in play. + it("says nothing when neither end is in a known place", async () => { + await expect( + service.autoName( + "de_mirage", + "Smoke", + { x: 90000, y: 90000, z: 50 }, + { x: 95000, y: 95000, z: 50 }, + ), + ).resolves.toBe(""); + }); +}); diff --git a/src/utility/utility-callouts.service.ts b/src/utility/utility-callouts.service.ts new file mode 100644 index 00000000..3cf196eb --- /dev/null +++ b/src/utility/utility-callouts.service.ts @@ -0,0 +1,457 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "../postgres/postgres.service"; + +export type CalloutBox = { + min: [number, number, number]; + max: [number, number, number]; +}; + +export type MapCallout = { + name: string; + boxes: CalloutBox[]; +}; + +export type CalloutPoint = { + x: number; + y: number; + z?: number | null; +}; + +type CalloutRow = { + name: string; + boxes: CalloutBox[]; +}; + +@Injectable() +export class UtilityCalloutsService { + // Callouts are published into the same tagged snapshot as the collision + // meshes, so this tag has to move with the one the browser is pinned to + // (web/nuxt.config.ts public.mapMeshCdn) and the one the demo parser + // defaults to -- otherwise the panel and the API can name the same throw + // differently after a map patch. Override with MAP_MESH_CDN. + private static readonly DEFAULT_CDN = + "https://cdn.jsdelivr.net/gh/5stackgg/replay-map-meshes@17595823-5"; + + // How far outside every place volume a point may sit and still be named. The + // volumes do not tile a map, and a grenade rests on top of geometry as often + // as inside a place. + public static readonly SNAP_UNITS = 256; + + private static readonly TYPE_LABELS: Record = { + Smoke: "Smoke", + Flash: "Flash", + Molotov: "Molotov", + HighExplosive: "HE", + Decoy: "Decoy", + }; + + private static readonly ALIASES: Record = { + bombsitea: "A Site", + bombsiteb: "B Site", + bombsitec: "C Site", + tspawn: "T Spawn", + ctspawn: "CT Spawn", + terroristspawn: "T Spawn", + counterterroristspawn: "CT Spawn", + }; + + private readonly cache = new Map(); + + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + ) {} + + /** + * The one spelling every reader looks a map up by. A night variant is the + * same geometry as its parent, so it shares its callouts rather than needing + * its own extract. + */ + public static normalizeMapName(name: string | null | undefined): string { + const value = (name ?? "").toLowerCase().trim(); + const slash = value.lastIndexOf("/"); + return (slash >= 0 ? value.slice(slash + 1) : value).replace(/_night$/, ""); + } + + public async forMap(mapName: string): Promise { + const map = UtilityCalloutsService.normalizeMapName(mapName); + if (!map) { + return []; + } + + const cached = this.cache.get(map); + if (cached) { + return cached; + } + + const rows = await this.postgres.query>( + `SELECT name, boxes + FROM public.map_callouts + WHERE map_name = $1`, + [map], + ); + + this.cache.set(map, rows); + return rows; + } + + /** + * Pull the published extract for one map. Best effort on purpose: the CDN is + * not on the critical path of anything, and a jsDelivr blip must leave the + * rows already in the table alone rather than emptying the table. + */ + public async sync(mapName: string): Promise { + const map = UtilityCalloutsService.normalizeMapName(mapName); + if (!map) { + return 0; + } + + const base = process.env.MAP_MESH_CDN || UtilityCalloutsService.DEFAULT_CDN; + + let callouts: MapCallout[]; + try { + const response = await fetch(`${base}/${map}.callouts.json`); + if (!response.ok) { + return 0; + } + const body = (await response.json()) as { callouts?: MapCallout[] }; + callouts = UtilityCalloutsService.sanitize(body?.callouts); + } catch (error) { + this.logger.warn( + `unable to fetch callouts for ${map}: ${(error as Error)?.message}`, + ); + return 0; + } + + if (!callouts.length) { + return 0; + } + + await this.write(map, callouts, "cdn"); + return callouts.length; + } + + public async syncAll(): Promise<{ maps: number; callouts: number }> { + const maps = await this.postgres.query>( + `SELECT DISTINCT name + FROM public.maps + WHERE deleted_at IS NULL + AND workshop_map_id IS NULL`, + ); + + let synced = 0; + let total = 0; + for (const { name } of maps) { + const count = await this.sync(name); + if (count > 0) { + synced += 1; + total += count; + } + } + + this.logger.log(`synced callouts for ${synced}/${maps.length} map(s)`); + return { maps: synced, callouts: total }; + } + + /** + * What a game server found in the map it just loaded. The published extract + * wins wherever it exists -- it is deterministic and reviewable, where this + * is whatever one server happened to report -- so this only ever fills a gap, + * which in practice means workshop and community maps. + */ + public async report( + mapName: string, + callouts: MapCallout[], + ): Promise<{ stored: number }> { + const map = UtilityCalloutsService.normalizeMapName(mapName); + const clean = UtilityCalloutsService.sanitize(callouts); + if (!map || !clean.length) { + return { stored: 0 }; + } + + const [existing] = await this.postgres.query>( + `SELECT count(*)::text AS count + FROM public.map_callouts + WHERE map_name = $1 + AND source = 'cdn'`, + [map], + ); + + if (Number(existing?.count ?? 0) > 0) { + return { stored: 0 }; + } + + await this.write(map, clean, "plugin"); + return { stored: clean.length }; + } + + /** + * The name of the place a world point is in. + * + * XY containment is decided before Z because places stack: a smoke on a roof, + * or in the air over a site, still belongs to the place beneath it. Z only + * breaks ties, which is what keeps Nuke and Vertigo from answering with the + * lower level's callout for a point on the upper one. Where volumes nest + * ("A Site" containing "Goose") the tightest one wins -- the more specific + * name is the one a player would say. See `area` for why that is measured in + * three dimensions. + */ + public static calloutAt( + point: CalloutPoint | null | undefined, + callouts: CalloutRow[], + snap = UtilityCalloutsService.SNAP_UNITS, + ): string | null { + if (!point || !callouts?.length) { + return null; + } + + const x = Number(point.x); + const y = Number(point.y); + const z = Number(point.z ?? 0); + if (!Number.isFinite(x) || !Number.isFinite(y)) { + return null; + } + + const inside: Array<{ name: string; box: CalloutBox }> = []; + const above: Array<{ name: string; box: CalloutBox }> = []; + let nearest: string | null = null; + let nearestDistance = Number.POSITIVE_INFINITY; + + for (const callout of callouts) { + for (const box of callout.boxes ?? []) { + if (!box?.min || !box?.max) { + continue; + } + const inXY = + x >= box.min[0] && x <= box.max[0] && y >= box.min[1] && y <= box.max[1]; + if (inXY) { + if (z >= box.min[2] && z <= box.max[2]) { + inside.push({ name: callout.name, box }); + } else { + above.push({ name: callout.name, box }); + } + continue; + } + const distance = Math.sqrt( + UtilityCalloutsService.gap(x, box.min[0], box.max[0]) ** 2 + + UtilityCalloutsService.gap(y, box.min[1], box.max[1]) ** 2 + + UtilityCalloutsService.gap(z, box.min[2], box.max[2]) ** 2, + ); + if (distance < nearestDistance) { + nearestDistance = distance; + nearest = callout.name; + } + } + } + + if (inside.length) { + return UtilityCalloutsService.smallest(inside); + } + + if (above.length) { + let best = above[0]; + let bestGap = UtilityCalloutsService.gap(z, best.box.min[2], best.box.max[2]); + for (const candidate of above.slice(1)) { + const gap = UtilityCalloutsService.gap( + z, + candidate.box.min[2], + candidate.box.max[2], + ); + if ( + gap < bestGap || + (gap === bestGap && + UtilityCalloutsService.area(candidate.box) < + UtilityCalloutsService.area(best.box)) + ) { + best = candidate; + bestGap = gap; + } + } + return best.name; + } + + return nearestDistance <= snap ? nearest : null; + } + + public static humanize(raw: string | null | undefined): string { + const value = (raw ?? "").trim(); + if (!value) { + return ""; + } + + const alias = + UtilityCalloutsService.ALIASES[value.toLowerCase().replace(/[\s_]+/g, "")]; + if (alias) { + return alias; + } + + return ( + value + .replace(/[_-]+/g, " ") + // Valve glues a lowercase joining word between two capitalised ones -- + // TopofMid, BackofA. The camelCase rule below would read that as one + // word and give "Topof Mid", so it is split first. + .replace(/([a-z])of([A-Z])/g, "$1 of $2") + .replace(/([a-z0-9])([A-Z])/g, "$1 $2") + .replace(/([A-Z]+)([A-Z][a-z])/g, "$1 $2") + .replace(/\s+/g, " ") + .trim() + ); + } + + /** + * The name a throw would be given if nobody typed one. Empty when the map has + * nothing to say about either end, so callers keep their own fallback rather + * than being handed a name that says nothing. + */ + public async autoName( + mapName: string, + utilityType: string, + origin: CalloutPoint | null | undefined, + landing: CalloutPoint | null | undefined, + ): Promise { + const callouts = await this.forMap(mapName); + if (!callouts.length) { + return ""; + } + + const from = UtilityCalloutsService.humanize( + UtilityCalloutsService.calloutAt(origin, callouts), + ); + const to = UtilityCalloutsService.humanize( + UtilityCalloutsService.calloutAt(landing, callouts), + ); + const type = UtilityCalloutsService.TYPE_LABELS[utilityType] ?? utilityType; + + if (to && from) { + return to === from ? `${to} ${type}` : `${to} ${type} from ${from}`; + } + if (to) { + return `${to} ${type}`; + } + if (from) { + return `${type} from ${from}`; + } + return ""; + } + + private async write( + map: string, + callouts: MapCallout[], + source: "cdn" | "plugin", + ): Promise { + await this.postgres.query( + `INSERT INTO public.map_callouts (map_name, name, boxes, source, updated_at) + SELECT $1, entry->>'name', entry->'boxes', $3, now() + FROM jsonb_array_elements($2::jsonb) AS entry + ON CONFLICT (map_name, name) DO UPDATE + SET boxes = EXCLUDED.boxes, + source = EXCLUDED.source, + updated_at = EXCLUDED.updated_at`, + [map, JSON.stringify(callouts), source], + ); + + // A place Valve deleted in a patch has to go, or it keeps naming throws + // after the area it named stopped existing. + await this.postgres.query( + `DELETE FROM public.map_callouts + WHERE map_name = $1 + AND source = $3 + AND name <> ALL($2::text[])`, + [map, callouts.map(({ name }) => name), source], + ); + + this.cache.delete(map); + } + + private static sanitize(callouts: MapCallout[] | undefined): MapCallout[] { + const clean: MapCallout[] = []; + + for (const callout of (callouts ?? []).slice(0, 512)) { + const name = String(callout?.name ?? "").trim().slice(0, 64); + if (!name) { + continue; + } + + const boxes: CalloutBox[] = []; + for (const box of (callout?.boxes ?? []).slice(0, 32)) { + const min = UtilityCalloutsService.vec(box?.min); + const max = UtilityCalloutsService.vec(box?.max); + if (!min || !max) { + continue; + } + boxes.push({ + min: [ + Math.min(min[0], max[0]), + Math.min(min[1], max[1]), + Math.min(min[2], max[2]), + ], + max: [ + Math.max(min[0], max[0]), + Math.max(min[1], max[1]), + Math.max(min[2], max[2]), + ], + }); + } + + if (boxes.length) { + clean.push({ name, boxes }); + } + } + + return clean; + } + + private static vec( + value: unknown, + ): [number, number, number] | null { + if (!Array.isArray(value) || value.length < 3) { + return null; + } + const out = value.slice(0, 3).map(Number); + return out.every((n) => Number.isFinite(n)) + ? (out as [number, number, number]) + : null; + } + + private static gap(value: number, min: number, max: number): number { + if (value < min) { + return min - value; + } + if (value > max) { + return value - max; + } + return 0; + } + + /** + * The tightest enclosing volume wins where places overlap. MEASURED, not + * assumed: scored against `player_kills.attacker_location` (the engine's own + * answer) over 1,920 labelled kills, smallest-volume beat smallest-footprint + * 92.5% to 89.8%. Footprint alone loses the stacked pairs -- it called + * Mirage's Catwalk "Underpass" 41 times, because Underpass sits under it and + * is the narrower of the two seen from above. + */ + private static area(box: CalloutBox): number { + return ( + (box.max[0] - box.min[0]) * + (box.max[1] - box.min[1]) * + Math.max(box.max[2] - box.min[2], 1) + ); + } + + private static smallest( + candidates: Array<{ name: string; box: CalloutBox }>, + ): string { + let best = candidates[0]; + for (const candidate of candidates.slice(1)) { + if ( + UtilityCalloutsService.area(candidate.box) < + UtilityCalloutsService.area(best.box) + ) { + best = candidate; + } + } + return best.name; + } +} diff --git a/src/utility/utility-mining.service.ts b/src/utility/utility-mining.service.ts index d1abdd66..85358472 100644 --- a/src/utility/utility-mining.service.ts +++ b/src/utility/utility-mining.service.ts @@ -15,6 +15,7 @@ import { UtilityTrajectoryPoint, UtilityVector, } from "./utility-artifacts.service"; +import { UtilityCalloutsService } from "./utility-callouts.service"; import { UtilityLineupsService } from "./utility-lineups.service"; export type UtilityMiningRequest = { @@ -192,8 +193,31 @@ export class UtilityMiningService { private readonly demoMetadata: DemoMetadataService, private readonly artifacts: UtilityArtifactsService, private readonly lineups: UtilityLineupsService, + private readonly callouts: UtilityCalloutsService, ) {} + /** + * What the map itself would call this throw. Falls back to the map's name -- + * a lineup has to be called something, and an unnamed row in the library is + * worse than a vague one. + */ + private async calloutName(mined: MinedLineup): Promise { + try { + const name = await this.callouts.autoName( + mined.mapName, + mined.utilityType, + mined.origin, + mined.land, + ); + return name || mined.mapName; + } catch (error) { + this.logger.warn( + `unable to name a mined lineup from callouts: ${(error as Error)?.message}`, + ); + return mined.mapName; + } + } + public async saveFromDemo( request: UtilityMiningRequest, ): Promise<{ id: string }> { @@ -258,7 +282,10 @@ export class UtilityMiningService { mined.land.y, mined.land.z, mined.flightTimeMs, - UtilityLineupsService.sanitizeName(request.name, mined.mapName), + UtilityLineupsService.sanitizeName( + request.name, + await this.calloutName(mined), + ), UtilityLineupsService.sanitizeText(request.description, 1000), (request.tags ?? []) .slice(0, 16) diff --git a/src/utility/utility.module.ts b/src/utility/utility.module.ts index e7ba5278..4f5860d8 100644 --- a/src/utility/utility.module.ts +++ b/src/utility/utility.module.ts @@ -31,6 +31,7 @@ import { UtilitySolverService } from "./utility-solver.service"; import { UtilityLoadService } from "./utility-load.service"; import { UtilityLineupsController } from "./utility-lineups.controller"; import { UtilityLineupsService } from "./utility-lineups.service"; +import { UtilityCalloutsService } from "./utility-callouts.service"; import { UtilityMetaService } from "./utility-meta.service"; import { UtilityMiningController } from "./utility-mining.controller"; import { UtilityMiningService } from "./utility-mining.service"; @@ -45,6 +46,7 @@ import { UtilityRendersService } from "./utility-renders.service"; import { UtilityLaunchSeedService } from "./utility-launch-seed.service"; import { UtilityController } from "./utility.controller"; import { MineUtilityMeta } from "./jobs/MineUtilityMeta"; +import { SyncMapCallouts } from "./jobs/SyncMapCallouts"; import { ReapIdleUtilityPracticeSessions } from "./jobs/ReapIdleUtilityPracticeSessions"; import { RunUtilityDriftScan } from "./jobs/RunUtilityDriftScan"; import { @@ -100,6 +102,7 @@ import { GameStreamerModule } from "../matches/game-streamer/game-streamer.modul providers: [ UtilityAnalysisService, UtilityArtifactsService, + UtilityCalloutsService, UtilityDriftService, UtilityImportService, UtilityInsightsService, @@ -121,6 +124,7 @@ import { GameStreamerModule } from "../matches/game-streamer/game-streamer.modul UtilityPluginKeyGuard, ReapIdleUtilityPracticeSessions, MineUtilityMeta, + SyncMapCallouts, RunUtilityDriftScan, ...getQueuesProcessors("Utility"), loggerFactory(), @@ -136,6 +140,7 @@ import { GameStreamerModule } from "../matches/game-streamer/game-streamer.modul UtilityController, ], exports: [ + UtilityCalloutsService, UtilityPracticeService, UtilityRendersService, UtilityLineupsService, @@ -182,6 +187,20 @@ export class UtilityModule { }, ); + // Callouts only change when Valve patches a map, so daily is generous. The + // immediate call is what gets a fresh install named on its first boot + // rather than at 4am tomorrow. + void utilityMetaQueue.add( + UtilityJobs.SyncMapCallouts, + {}, + { + repeat: { + pattern: "23 4 * * *", + }, + }, + ); + void utilityMetaQueue.add(UtilityJobs.SyncMapCallouts, {}); + void utilityRendersQueue.add( ReconcileQueuedUtilityRenders.name, {}, diff --git a/test/map-callouts.spec.ts b/test/map-callouts.spec.ts new file mode 100644 index 00000000..8c6aa398 --- /dev/null +++ b/test/map-callouts.spec.ts @@ -0,0 +1,109 @@ +import { Logger } from "@nestjs/common"; +import { PostgresService } from "./../src/postgres/postgres.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; +import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; + +// Where a map's callouts come from, and which source wins. The published +// extract is deterministic and reviewable; a plugin report is whatever one +// server happened to see, so it may only ever fill a gap. +describe("map callouts (SQL-driven)", () => { + let db: SqlTestDb; + let postgres: PostgresService; + + beforeAll(async () => { + db = await bootMigratedDb("MapCalloutsTest"); + postgres = db.postgres; + }, 600_000); + + afterAll(async () => { + await db?.stop(); + }); + + beforeEach(async () => { + await postgres.query("DELETE FROM map_callouts"); + }); + + const service = () => + new UtilityCalloutsService(new Logger("MapCalloutsTest"), postgres); + + const callouts = (...names: Array) => + names.map((name) => ({ + name, + boxes: [{ min: [0, 0, 0], max: [100, 100, 100] } as never], + })); + + async function rows(map = "de_mirage") { + return await postgres.query>( + "SELECT name, source FROM map_callouts WHERE map_name = $1 ORDER BY name", + [map], + ); + } + + async function seedCdn(map: string, ...names: Array) { + await postgres.query( + `INSERT INTO public.map_callouts (map_name, name, boxes, source) + SELECT $1, entry->>'name', entry->'boxes', 'cdn' + FROM jsonb_array_elements($2::jsonb) AS entry`, + [map, JSON.stringify(callouts(...names))], + ); + } + + it("stores what a server reports for a map nobody has extracted", async () => { + const result = await service().report( + "de_mirage", + callouts("Window", "Palace"), + ); + + expect(result.stored).toBe(2); + expect((await rows()).map(({ name }) => name)).toEqual(["Palace", "Window"]); + }); + + it("leaves the published extract alone", async () => { + await seedCdn("de_mirage", "Window"); + + const result = await service().report("de_mirage", callouts("Windw")); + + expect(result.stored).toBe(0); + expect(await rows()).toEqual([{ name: "Window", source: "cdn" }]); + }); + + // A night variant is the same geometry as its parent, and a workshop map + // arrives with a path in front of it. + it("files every spelling of a map under one name", async () => { + await service().report("DE_Inferno_night", callouts("Banana")); + await service().report("workshop/123/de_thera", callouts("Mid")); + + expect(await rows("de_inferno")).toEqual([ + { name: "Banana", source: "plugin" }, + ]); + expect(await rows("de_thera")).toEqual([{ name: "Mid", source: "plugin" }]); + }); + + // A place Valve deleted has to go, or it keeps naming throws after the area + // it named stopped existing. + it("drops a callout that is no longer in the map", async () => { + await service().report("de_mirage", callouts("Window", "Ladder")); + await service().report("de_mirage", callouts("Window")); + + expect(await rows()).toEqual([{ name: "Window", source: "plugin" }]); + }); + + it("refuses a report with no usable geometry", async () => { + const result = await service().report("de_mirage", [ + { name: "Broken", boxes: [] }, + { name: "", boxes: [{ min: [0, 0, 0], max: [1, 1, 1] } as never] }, + ]); + + expect(result.stored).toBe(0); + expect(await rows()).toEqual([]); + }); + + it("reads back the rows it wrote", async () => { + const callouts_ = service(); + await callouts_.report("de_mirage", callouts("Window")); + + expect(await callouts_.forMap("de_mirage")).toEqual([ + { name: "Window", boxes: [{ min: [0, 0, 0], max: [100, 100, 100] }] }, + ]); + }); +}); diff --git a/test/telemetry.spec.ts b/test/telemetry.spec.ts index d50d834f..9a429323 100644 --- a/test/telemetry.spec.ts +++ b/test/telemetry.spec.ts @@ -992,6 +992,21 @@ describe("telemetry (SQL-driven)", () => { expect(gated.installsUsing).toBe(0); }); + it("lists a feature no panel has reported yet rather than dropping it", async () => { + const stats = await service.getFleetStats(); + const utility = stats.features.find((f) => f.key === "utility_library"); + + // Neither fixture panel reports the utility block. Left to the rows + // alone the switch is simply absent from the page, which reads as a + // feature that does not exist rather than as one nothing has sent yet. + expect(utility).toBeDefined(); + expect(utility.kind).toBe("setting"); + expect(utility.reporting).toBe(0); + expect(utility.flagged).toBe(0); + expect(utility.counted).toBe(0); + expect(utility.total).toBe(0); + }); + it("says whether a feature is a setting, a capability, or always on", async () => { const stats = await service.getFleetStats(); const kind = (key: string) => From fdd553ddf9d15144ee27dc05ff92b4b4312f1844 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 28 Aug 2026 10:05:09 -0400 Subject: [PATCH 7/8] wip --- src/utility/utility-callouts.service.ts | 12 ++++++------ test/utility-coaching.spec.ts | 2 ++ test/utility-edits.spec.ts | 2 ++ test/utility-forks.spec.ts | 2 ++ test/utility-insights.spec.ts | 2 ++ test/utility-lineup-seed.spec.ts | 2 ++ test/utility-mining.spec.ts | 3 +++ test/utility-practice-scoring.spec.ts | 2 ++ test/utility-repair.spec.ts | 2 ++ test/utility-verification.spec.ts | 2 ++ 10 files changed, 25 insertions(+), 6 deletions(-) diff --git a/src/utility/utility-callouts.service.ts b/src/utility/utility-callouts.service.ts index 3cf196eb..6e4622d3 100644 --- a/src/utility/utility-callouts.service.ts +++ b/src/utility/utility-callouts.service.ts @@ -24,13 +24,13 @@ type CalloutRow = { @Injectable() export class UtilityCalloutsService { - // Callouts are published into the same tagged snapshot as the collision - // meshes, so this tag has to move with the one the browser is pinned to - // (web/nuxt.config.ts public.mapMeshCdn) and the one the demo parser - // defaults to -- otherwise the panel and the API can name the same throw - // differently after a map patch. Override with MAP_MESH_CDN. + // Callouts are published beside the collision meshes under one CS2 build, so + // this has to move with the browser's pin (web/nuxt.config.ts + // public.mapMeshCdn) and the demo parser's default -- otherwise the panel and + // the API can name the same throw differently after a map patch. Override + // with MAP_MESH_CDN. private static readonly DEFAULT_CDN = - "https://cdn.jsdelivr.net/gh/5stackgg/replay-map-meshes@17595823-5"; + "https://demo-dl.5stack.gg/maps/24957633"; // How far outside every place volume a point may sit and still be named. The // volumes do not tile a map, and a grenade rests on top of geometry as often diff --git a/test/utility-coaching.spec.ts b/test/utility-coaching.spec.ts index e5862886..0b6b20c9 100644 --- a/test/utility-coaching.spec.ts +++ b/test/utility-coaching.spec.ts @@ -10,6 +10,7 @@ import { User } from "./../src/auth/types/User"; import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // The two things the practice data can say that a browse cannot: which way // everybody misses one lineup, and how hard the lineup is for everybody. @@ -75,6 +76,7 @@ describe("utility coaching (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityCoachingTest"), postgres), ); } diff --git a/test/utility-edits.spec.ts b/test/utility-edits.spec.ts index d69a7817..77dd7179 100644 --- a/test/utility-edits.spec.ts +++ b/test/utility-edits.spec.ts @@ -8,6 +8,7 @@ import { User } from "./../src/auth/types/User"; import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // Editing a lineup in place, which nothing could do before: the only UPDATE on // the table set name/description/visibility, and the plugin had ingest and @@ -40,6 +41,7 @@ describe("utility lineup edits (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityEditTest"), postgres), ); }, 600_000); diff --git a/test/utility-forks.spec.ts b/test/utility-forks.spec.ts index 59d54167..8079a8d7 100644 --- a/test/utility-forks.spec.ts +++ b/test/utility-forks.spec.ts @@ -5,6 +5,7 @@ import { User } from "./../src/auth/types/User"; import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // A fork copies somebody else's throw into your own library. The line these // pin is what crosses and what does not: the geometry and the physics seed do, @@ -36,6 +37,7 @@ describe("utility lineup forks (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityForksTest"), postgres), ); }, 600_000); diff --git a/test/utility-insights.spec.ts b/test/utility-insights.spec.ts index 76266ebb..62462f59 100644 --- a/test/utility-insights.spec.ts +++ b/test/utility-insights.spec.ts @@ -10,6 +10,7 @@ import { SqlTestDb, } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // The two reads over mined data. Both have one property that is worth more than // their arithmetic: the plan must not answer "nothing to learn" when the truth @@ -38,6 +39,7 @@ describe("utility insights (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityInsightsTest"), postgres), ); insights = new UtilityInsightsService(postgres, lineups); diff --git a/test/utility-lineup-seed.spec.ts b/test/utility-lineup-seed.spec.ts index b8926290..aa97889e 100644 --- a/test/utility-lineup-seed.spec.ts +++ b/test/utility-lineup-seed.spec.ts @@ -16,6 +16,7 @@ import { SqlTestDb, } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // m_vInitialPosition / m_vInitialVelocity are the engine's own starting state // for the projectile. Storing them is what makes a lineup replayable exactly @@ -75,6 +76,7 @@ describe("utility lineup physics seed (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilitySeedTest"), postgres), ); } diff --git a/test/utility-mining.spec.ts b/test/utility-mining.spec.ts index 289e36e6..c1b3b5bb 100644 --- a/test/utility-mining.spec.ts +++ b/test/utility-mining.spec.ts @@ -20,6 +20,7 @@ import { SqlTestDb, } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // A lineup mined out of a demo is a reconstruction, not a recording: the // crosshair, the standing pixel and the release timing are all inferred from @@ -299,6 +300,7 @@ describe("utility lineups mined from demos (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityMiningTest"), postgres), ); } @@ -352,6 +354,7 @@ describe("utility lineups mined from demos (SQL-driven)", () => { } as never, artifacts, lineupsService(artifacts), + new UtilityCalloutsService(new Logger("UtilityMiningTest"), postgres), ); } diff --git a/test/utility-practice-scoring.spec.ts b/test/utility-practice-scoring.spec.ts index 96ae6cc2..523d67da 100644 --- a/test/utility-practice-scoring.spec.ts +++ b/test/utility-practice-scoring.spec.ts @@ -8,6 +8,7 @@ import { import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // Scoring is the one place a game server's word would move a player's record, // so none of it is taken on trust: the distance is recomputed here from the @@ -60,6 +61,7 @@ describe("utility practice scoring (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityScoringTest"), postgres), ); } diff --git a/test/utility-repair.spec.ts b/test/utility-repair.spec.ts index b24d5b2b..48695160 100644 --- a/test/utility-repair.spec.ts +++ b/test/utility-repair.spec.ts @@ -17,6 +17,7 @@ import { SqlTestDb, } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // Repair is the join between two things that already worked separately: a drift // scan that says a lineup moved, and a solver that can find a throw onto a @@ -97,6 +98,7 @@ describe("utility lineup repair (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityRepairTest"), postgres), ); } diff --git a/test/utility-verification.spec.ts b/test/utility-verification.spec.ts index 2ef1f0f3..0953d6ed 100644 --- a/test/utility-verification.spec.ts +++ b/test/utility-verification.spec.ts @@ -7,6 +7,7 @@ import { import { Fixtures } from "./utils/fixtures"; import { bootMigratedDb, SqlTestDb } from "./utils/sql-test-db"; import { UtilityPendingLineup } from "./../src/utility/utility-load.service"; +import { UtilityCalloutsService } from "./../src/utility/utility-callouts.service"; // verified_at used to be a moderator's manual claim, which at library scale // means it is null forever and the badge means nothing. It is now derived from @@ -64,6 +65,7 @@ describe("utility lineup verification (SQL-driven)", () => { { pending: jest.fn(async (): Promise> => []), } as unknown as never, + new UtilityCalloutsService(new Logger("UtilityVerifyTest"), postgres), ); } From ec46aa8b72758fa237b4041ef04efa571801b494 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 28 Aug 2026 10:40:16 -0400 Subject: [PATCH 8/8] wip --- src/utility/utility-callouts.service.ts | 41 ++++++++++-- src/utility/utility-lineups.controller.ts | 17 ++++- src/utility/utility-lineups.service.ts | 52 +++++++++++++-- src/utility/utility-practice.service.ts | 20 +++--- src/utility/utility.controller.ts | 12 +--- test/map-callouts.spec.ts | 22 +++++++ test/utility-edits.spec.ts | 78 +++++++++++++++++++++++ 7 files changed, 207 insertions(+), 35 deletions(-) diff --git a/src/utility/utility-callouts.service.ts b/src/utility/utility-callouts.service.ts index 6e4622d3..84892f8e 100644 --- a/src/utility/utility-callouts.service.ts +++ b/src/utility/utility-callouts.service.ts @@ -55,7 +55,22 @@ export class UtilityCalloutsService { counterterroristspawn: "CT Spawn", }; - private readonly cache = new Map(); + // The cache is per PROCESS, and the sync that fills the table runs on one + // replica. Without an expiry every other replica keeps answering from + // whatever it read first -- and an empty answer is the one that matters, + // because a replica that looked before the first sync landed would name every + // throw after the map for the life of the process. `write` still invalidates + // locally; this is what the replicas that did not do the writing rely on. + private static readonly CACHE_TTL_MS = 5 * 60 * 1000; + + // A map with no callouts is a map still waiting for its extract, so it is + // re-asked far sooner than one that answered. + private static readonly EMPTY_CACHE_TTL_MS = 30 * 1000; + + private readonly cache = new Map< + string, + { rows: CalloutRow[]; expires: number } + >(); constructor( private readonly logger: Logger, @@ -80,8 +95,8 @@ export class UtilityCalloutsService { } const cached = this.cache.get(map); - if (cached) { - return cached; + if (cached && cached.expires > Date.now()) { + return cached.rows; } const rows = await this.postgres.query>( @@ -91,7 +106,15 @@ export class UtilityCalloutsService { [map], ); - this.cache.set(map, rows); + this.cache.set(map, { + rows, + expires: + Date.now() + + (rows.length + ? UtilityCalloutsService.CACHE_TTL_MS + : UtilityCalloutsService.EMPTY_CACHE_TTL_MS), + }); + return rows; } @@ -353,12 +376,18 @@ export class UtilityCalloutsService { // A place Valve deleted in a patch has to go, or it keeps naming throws // after the area it named stopped existing. + // + // NOT scoped to the source being written. The extract wins wherever it + // exists, so a name it does not carry must go even if a plugin reported it + // first -- otherwise a map a practice server filled in before the extract + // landed keeps its mis-read names for ever, mixed in with the real ones. + // The reverse never arises: `report` no-ops entirely once any cdn row + // exists, so a plugin write can only ever prune plugin rows. await this.postgres.query( `DELETE FROM public.map_callouts WHERE map_name = $1 - AND source = $3 AND name <> ALL($2::text[])`, - [map, callouts.map(({ name }) => name), source], + [map, callouts.map(({ name }) => name)], ); this.cache.delete(map); diff --git a/src/utility/utility-lineups.controller.ts b/src/utility/utility-lineups.controller.ts index 70eaa3c8..53a590e5 100644 --- a/src/utility/utility-lineups.controller.ts +++ b/src/utility/utility-lineups.controller.ts @@ -26,8 +26,23 @@ export class UtilityLineupsController { */ @HasuraEvent() public async utility_lineups_practice_events( - data: HasuraEventData<{ map_name?: string | null }>, + data: HasuraEventData<{ + map_name?: string | null; + origin_source?: string | null; + }>, ) { + // A throw a practice server just recorded is already in that server's own + // library -- the plugin adds it as it writes it -- so broadcasting the + // insert tells every pod on the map to re-read a library only one of them + // has a new row in, and tells the pod that caused it to re-read what it + // already has. A player rehearsing one lineup saves it a dozen times in a + // session, which is a dozen full-library fetches per connected player for + // nothing. Every other insert -- authored on the website, forked, imported, + // mined -- is a row no server on the map has, and does need the push. + if (!data.old && data.new?.origin_source === "plugin") { + return; + } + const maps = new Set( [data.new?.map_name, data.old?.map_name].filter( (map): map is string => !!map, diff --git a/src/utility/utility-lineups.service.ts b/src/utility/utility-lineups.service.ts index 23273213..b36f7b7e 100644 --- a/src/utility/utility-lineups.service.ts +++ b/src/utility/utility-lineups.service.ts @@ -199,6 +199,22 @@ export class UtilityLineupsService { private static readonly UUID = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i; + // The columns an edit is allowed to name, kept beside the UPDATE that + // interpolates them rather than at the one call site that happens to build + // the object today: a column name spliced into SQL must never be able to + // arrive off a parsed request body. + public static readonly GEOMETRY_COLUMNS = [ + "origin_x", + "origin_y", + "origin_z", + "eye_z", + "view_yaw", + "view_pitch", + "land_x", + "land_y", + "land_z", + ] as const; + // How a re-solve issued for a drifted lineup names itself on the way out, so // the lineup that comes back can be recognised on the way in. The solver's // tokenizer keeps [A-Za-z0-9_.-] up to 48 characters, which this fits, and no @@ -868,13 +884,14 @@ export class UtilityLineupsService { const [row] = await this.postgres.query< Array<{ id: string; + name: string; author_steam_id: string; land_x: number | null; land_y: number | null; land_z: number | null; }> >( - `SELECT id::text AS id, author_steam_id::text AS author_steam_id, + `SELECT id::text AS id, name, author_steam_id::text AS author_steam_id, land_x, land_y, land_z FROM public.utility_lineups WHERE id = $1::uuid AND archived_at IS NULL`, @@ -899,15 +916,22 @@ export class UtilityLineupsService { const sets: Array = []; const values: Array = [options.lineupId]; - const push = (fragment: string, value: string | number | null) => { + const push = ( + column: string, + value: string | number | null, + cast = "", + ) => { values.push(value); - sets.push(`${fragment} = $${values.length}`); + sets.push(`${column} = $${values.length}${cast}`); }; // Same hardening as ingest, because this is a second front door onto the // same input: a name typed in game is echoed straight back into chat. + // Falls back to the name the row already carries -- the column is NOT NULL, + // and a name that sanitizes away to nothing is the plugin sending a blank + // field, not an ask to have the lineup un-named. if (options.name != null) { - push("name", UtilityLineupsService.sanitizeText(options.name, 120)); + push("name", UtilityLineupsService.sanitizeName(options.name, row.name)); } if (options.description != null) { @@ -924,6 +948,18 @@ export class UtilityLineupsService { ); push("visibility", visibility.visibility); + + // A 'Public' ask from a non-reviewer only becomes a review request if the + // stamp goes down with the visibility. Without it the row is quietly set + // Private, the plugin reports "saved", and nobody -- player or moderator + // -- ever learns the request was made. + if (visibility.requestedPublic) { + sets.push("public_requested_at = now()"); + } + + if (visibility.reviewedBy) { + push("public_reviewed_by", visibility.reviewedBy, "::bigint"); + } } let progressReset = false; @@ -931,12 +967,14 @@ export class UtilityLineupsService { if (options.geometry) { const geometry = options.geometry; - for (const [column, value] of Object.entries(geometry)) { - if (!Number.isFinite(Number(value))) { + for (const column of UtilityLineupsService.GEOMETRY_COLUMNS) { + const value = Number(geometry[column]); + + if (!Number.isFinite(value)) { throw Error("the geometry is incomplete"); } - push(column, Number(value)); + push(column, value); } // The recorded flight described the OLD geometry, so it is no longer a diff --git a/src/utility/utility-practice.service.ts b/src/utility/utility-practice.service.ts index 93ca554e..7025404b 100644 --- a/src/utility/utility-practice.service.ts +++ b/src/utility/utility-practice.service.ts @@ -903,16 +903,6 @@ export class UtilityPracticeService { return row ?? null; } - /** - * Tell every practice server sitting on a map that its library is out of - * date. - * - * The plugin caches the library per player and only re-reads it when it is - * asked to, so a lineup written or edited on the website was invisible in - * game until somebody typed .reload -- which is not something a player knows - * to do, and is the in-game half of "the panel doesn't auto refresh". Scoped - * to the map because a lineup on Ancient is nothing to a server on Mirage. - */ /** * Record where a practice pod can be reached over Steam's relay network. * @@ -944,6 +934,16 @@ export class UtilityPracticeService { ); } + /** + * Tell every practice server sitting on a map that its library is out of + * date. + * + * The plugin caches the library per player and only re-reads it when it is + * asked to, so a lineup written or edited on the website was invisible in + * game until somebody typed .reload -- which is not something a player knows + * to do, and is the in-game half of "the panel doesn't auto refresh". Scoped + * to the map because a lineup on Ancient is nothing to a server on Mirage. + */ public async refreshLibrariesOnMap(mapName: string): Promise { if (!mapName) { return; diff --git a/src/utility/utility.controller.ts b/src/utility/utility.controller.ts index 67e143bc..d0e3ed4c 100644 --- a/src/utility/utility.controller.ts +++ b/src/utility/utility.controller.ts @@ -315,17 +315,7 @@ export class UtilityController { return null; } - const columns = [ - "origin_x", - "origin_y", - "origin_z", - "eye_z", - "view_yaw", - "view_pitch", - "land_x", - "land_y", - "land_z", - ] as const; + const columns = UtilityLineupsService.GEOMETRY_COLUMNS; const present = columns.filter((column) => Number.isFinite(Number(input[column])), diff --git a/test/map-callouts.spec.ts b/test/map-callouts.spec.ts index 8c6aa398..5062befd 100644 --- a/test/map-callouts.spec.ts +++ b/test/map-callouts.spec.ts @@ -88,6 +88,28 @@ describe("map callouts (SQL-driven)", () => { expect(await rows()).toEqual([{ name: "Window", source: "plugin" }]); }); + // The extract wins wherever it exists, so a name it does not carry has to go + // even when a practice server reported it first -- otherwise a map filled in + // before the extract landed keeps its mis-read names for ever, mixed in with + // the real ones, and `report` will never correct them. + it("sweeps away plugin names the published extract does not carry", async () => { + const callouts_ = service(); + await callouts_.report("de_mirage", callouts("Window", "Windw", "Ladderr")); + + const fetched = jest.spyOn(global, "fetch").mockResolvedValue({ + ok: true, + json: async () => ({ callouts: callouts("Window") }), + } as never); + + try { + await callouts_.sync("de_mirage"); + } finally { + fetched.mockRestore(); + } + + expect(await rows()).toEqual([{ name: "Window", source: "cdn" }]); + }); + it("refuses a report with no usable geometry", async () => { const result = await service().report("de_mirage", [ { name: "Broken", boxes: [] }, diff --git a/test/utility-edits.spec.ts b/test/utility-edits.spec.ts index 77dd7179..cefdf1b5 100644 --- a/test/utility-edits.spec.ts +++ b/test/utility-edits.spec.ts @@ -174,6 +174,84 @@ describe("utility lineup edits (SQL-driven)", () => { ).rejects.toThrow(/belongs to somebody else/i); }); + // `name` is NOT NULL and the sanitizer answers null for anything that is only + // whitespace or control characters, so a blank field from the plugin used to + // reach Postgres as `SET name = NULL` and come back as a raw constraint error. + it("keeps the name it has when the new one sanitizes away to nothing", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR, { name: "Window Smoke" }); + + await lineups.updateLineup({ lineupId: id, steamId: AUTHOR, name: " " }); + expect((await rowOf(id)).name).toBe("Window Smoke"); + + await lineups.updateLineup({ lineupId: id, steamId: AUTHOR, name: "\u0007\u0007" }); + expect((await rowOf(id)).name).toBe("Window Smoke"); + }); + + // A 'Public' ask from somebody who cannot approve one is a REQUEST. Setting + // the visibility without stamping the request drops it silently: the row goes + // Private, the plugin says "saved", and it never reaches the review queue. + it("records a non-reviewer's public ask as a request for review", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + + await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + visibility: "Public", + role: "user", + }); + + const row = await rowOf(id); + expect(row.visibility).toBe("Private"); + expect(row.public_requested_at).not.toBeNull(); + expect(row.public_reviewed_by).toBeNull(); + }); + + it("publishes outright for a reviewer, and records who reviewed it", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + + await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + visibility: "Public", + role: "administrator", + }); + + const row = await rowOf(id); + expect(row.visibility).toBe("Public"); + expect(String(row.public_reviewed_by)).toBe(AUTHOR); + }); + + // The SET clause interpolates column names, so they come off the service's + // own list and never off the caller's object. + it("ignores a geometry key that is not a geometry column", async () => { + const AUTHOR = await fx.player(); + const id = await insertLineup(AUTHOR); + + await lineups.updateLineup({ + lineupId: id, + steamId: AUTHOR, + geometry: { + origin_x: 1, + origin_y: 2, + origin_z: 3, + eye_z: 4, + view_yaw: 5, + view_pitch: 6, + land_x: 7, + land_y: 8, + land_z: 9, + "name = 'pwned', map_name": 0, + } as never, + }); + + const row = await rowOf(id); + expect(row.name).not.toBe("pwned"); + expect(Number(row.origin_x)).toBe(1); + }); + it("hardens text the same way ingest does", async () => { const AUTHOR = await fx.player(); const id = await insertLineup(AUTHOR);