From e0c9e3f409595bcee28a410909ff978f664e6538 Mon Sep 17 00:00:00 2001 From: Flegma Date: Sat, 4 Jul 2026 01:00:45 +0200 Subject: [PATCH 01/11] feature: events --- .../events/get_event_leaderboard.sql | 121 ++++++ .../functions/events/is_event_organizer.sql | 17 + .../default/functions/functions.yaml | 1 + .../public_get_event_leaderboard.yaml | 8 + .../default/tables/public_e_event_status.yaml | 12 + .../tables/public_event_organizers.yaml | 69 ++++ .../default/tables/public_event_players.yaml | 58 +++ .../default/tables/public_event_teams.yaml | 58 +++ .../tables/public_event_tournaments.yaml | 58 +++ .../default/tables/public_events.yaml | 368 ++++++++++++++++++ .../tables/public_v_event_player_stats.yaml | 63 +++ .../databases/default/tables/tables.yaml | 7 + .../default/1867000000300_events/down.sql | 34 ++ .../default/1867000000300_events/up.sql | 56 +++ hasura/views/v_event_player_stats.sql | 80 ++++ 15 files changed, 1010 insertions(+) create mode 100644 hasura/functions/events/get_event_leaderboard.sql create mode 100644 hasura/functions/events/is_event_organizer.sql create mode 100644 hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_event_status.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_organizers.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_players.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_teams.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_tournaments.yaml create mode 100644 hasura/metadata/databases/default/tables/public_events.yaml create mode 100644 hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml create mode 100644 hasura/migrations/default/1867000000300_events/down.sql create mode 100644 hasura/migrations/default/1867000000300_events/up.sql create mode 100644 hasura/views/v_event_player_stats.sql diff --git a/hasura/functions/events/get_event_leaderboard.sql b/hasura/functions/events/get_event_leaderboard.sql new file mode 100644 index 00000000..8d48d08b --- /dev/null +++ b/hasura/functions/events/get_event_leaderboard.sql @@ -0,0 +1,121 @@ +-- Event-scoped leaderboard over the event's derived match set. +-- Stale-overload cleanup: CREATE OR REPLACE cannot remove an old overload once +-- a second signature exists (SQLSTATE 42725). Drop known signatures first so +-- re-applying this file always lands on exactly one get_event_leaderboard. +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); + +-- LANGUAGE plpgsql (not sql): a "sql"-language body is parsed for relation +-- references at CREATE time, so this function would fail to create on a +-- fresh install before v_player_match_map_hltv exists in a later boot phase. +-- plpgsql bodies are not parsed for relation references at creation time, so +-- this creates cleanly regardless of what else has been applied yet. +CREATE OR REPLACE FUNCTION public.get_event_leaderboard( + _event_id UUID, + _category TEXT, + _match_type TEXT DEFAULT NULL, + _min_rounds INT DEFAULT 10 +) +RETURNS SETOF public.leaderboard_entries +LANGUAGE plpgsql STABLE +AS $$ +BEGIN + IF _category NOT IN ('rating', 'adr', 'kdr', 'kills', 'wins') THEN + RAISE EXCEPTION 'get_event_leaderboard: unknown category %', _category; + END IF; + + -- An explicit NULL would make the HAVING comparison below silently filter + -- every row; treat it as "no minimum" instead of returning an empty board. + IF _min_rounds IS NULL THEN + _min_rounds := 0; + END IF; + + -- Setup events are hidden from the public (see the events table select + -- permissions and the e_event_status enum). This function is exposed to the + -- guest role and takes an arbitrary event id, so guard it here: return an + -- empty leaderboard for a Setup or unknown event rather than computing and + -- leaking standings for an event that has not been made public yet. + IF NOT EXISTS ( + SELECT 1 FROM public.events WHERE id = _event_id AND status <> 'Setup' + ) THEN + RETURN; + END IF; + + RETURN QUERY + WITH e_matches AS ( + SELECT DISTINCT tb.match_id + FROM event_tournaments et + JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id + JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE et.event_id = _event_id + AND tb.match_id IS NOT NULL +), +f_matches AS ( + SELECT em.match_id + FROM e_matches em + JOIN matches m ON m.id = em.match_id + LEFT JOIN match_options mo ON mo.id = m.match_options_id + WHERE _match_type IS NULL OR mo.type = _match_type +), +roster AS ( + -- Explicit curation: when event_players has rows for this event, + -- only those players appear on the board. + SELECT ep.steam_id FROM event_players ep WHERE ep.event_id = _event_id +), +agg AS ( + SELECT + pmms.steam_id, + SUM(pmms.kills)::float AS kills, + SUM(pmms.deaths)::float AS deaths, + SUM(pmms.damage)::float AS damage, + SUM(pmms.rounds_played)::int AS rounds_played, + COUNT(DISTINCT pmms.match_id)::int AS matches_played, + CASE WHEN SUM(h.rounds_played) > 0 + THEN SUM(COALESCE(h.hltv_rating, 0) * h.rounds_played) + / SUM(h.rounds_played) + ELSE 0 + END AS rating + FROM f_matches fm + JOIN player_match_map_stats pmms ON pmms.match_id = fm.match_id + LEFT JOIN v_player_match_map_hltv h + ON h.match_map_id = pmms.match_map_id + AND h.steam_id = pmms.steam_id + WHERE NOT EXISTS (SELECT 1 FROM roster) + OR pmms.steam_id IN (SELECT steam_id FROM roster) + GROUP BY pmms.steam_id + HAVING SUM(pmms.rounds_played) >= _min_rounds +), +wins AS ( + SELECT mlp.steam_id, COUNT(DISTINCT m.id)::float AS wins + FROM f_matches fm + JOIN matches m ON m.id = fm.match_id AND m.winning_lineup_id IS NOT NULL + JOIN match_lineup_players mlp ON mlp.match_lineup_id = m.winning_lineup_id + GROUP BY mlp.steam_id +) +SELECT + a.steam_id::text AS player_steam_id, + p.name AS player_name, + p.avatar_url AS player_avatar_url, + p.country AS player_country, + CASE _category + WHEN 'rating' THEN ROUND(a.rating::numeric, 2)::float + WHEN 'adr' THEN CASE WHEN a.rounds_played > 0 + THEN ROUND((a.damage / a.rounds_played)::numeric, 1)::float + ELSE 0 END + WHEN 'kdr' THEN CASE WHEN a.deaths = 0 THEN a.kills + ELSE ROUND((a.kills / a.deaths)::numeric, 2)::float END + WHEN 'kills' THEN a.kills + WHEN 'wins' THEN COALESCE(w.wins, 0) + ELSE 0 + END AS value, + a.kills AS secondary_value, + a.deaths AS tertiary_value, + a.matches_played +FROM agg a +JOIN players p ON p.steam_id = a.steam_id +LEFT JOIN wins w ON w.steam_id = a.steam_id +-- No LIMIT here: the web paginates via Hasura-level order_by/limit/offset +-- (like the global get_leaderboard), so an in-function cap would truncate +-- events with more than N participants and skew the aggregate count. +ORDER BY value DESC; +END; +$$; diff --git a/hasura/functions/events/is_event_organizer.sql b/hasura/functions/events/is_event_organizer.sql new file mode 100644 index 00000000..3528b97c --- /dev/null +++ b/hasura/functions/events/is_event_organizer.sql @@ -0,0 +1,17 @@ +CREATE OR REPLACE FUNCTION public.is_event_organizer( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE sql +STABLE +AS $$ + SELECT + hasura_session ->> 'x-hasura-role' IN ('admin', 'administrator', 'tournament_organizer') + OR event.organizer_steam_id = (hasura_session ->> 'x-hasura-user-id')::bigint + OR EXISTS ( + SELECT 1 + FROM public.event_organizers + WHERE event_id = event.id + AND steam_id = (hasura_session ->> 'x-hasura-user-id')::bigint + ); +$$; diff --git a/hasura/metadata/databases/default/functions/functions.yaml b/hasura/metadata/databases/default/functions/functions.yaml index 73accb59..13630ee6 100644 --- a/hasura/metadata/databases/default/functions/functions.yaml +++ b/hasura/metadata/databases/default/functions/functions.yaml @@ -1,5 +1,6 @@ - "!include public_approve_league_season_movements.yaml" - "!include public_clone_league_season.yaml" +- "!include public_get_event_leaderboard.yaml" - "!include public_get_leaderboard.yaml" - "!include public_get_league_season_leaderboard.yaml" - "!include public_league_award_forfeit.yaml" diff --git a/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml new file mode 100644 index 00000000..8334aece --- /dev/null +++ b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml @@ -0,0 +1,8 @@ +function: + name: get_event_leaderboard + schema: public +configuration: + custom_root_fields: {} + exposed_as: query +permissions: + - role: guest diff --git a/hasura/metadata/databases/default/tables/public_e_event_status.yaml b/hasura/metadata/databases/default/tables/public_e_event_status.yaml new file mode 100644 index 00000000..4d5dd561 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_event_status.yaml @@ -0,0 +1,12 @@ +table: + name: e_event_status + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_organizers.yaml b/hasura/metadata/databases/default/tables/public_event_organizers.yaml new file mode 100644 index 00000000..e05fe3ff --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_organizers.yaml @@ -0,0 +1,69 @@ +table: + name: event_organizers + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: organizer + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: tournament_organizer + permission: + check: {} + columns: + - event_id + - steam_id + comment: "" + - role: user + permission: + check: + event: + organizer_steam_id: + _eq: X-Hasura-User-Id + columns: + - event_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - steam_id + filter: + _or: + - event: + is_organizer: + _eq: true + - event: + status: + _neq: Setup + allow_aggregations: true + comment: "" +delete_permissions: + - role: tournament_organizer + permission: + filter: {} + comment: "" + - role: user + permission: + filter: + event: + organizer_steam_id: + _eq: X-Hasura-User-Id + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_players.yaml b/hasura/metadata/databases/default/tables/public_event_players.yaml new file mode 100644 index 00000000..df36b4fd --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_players.yaml @@ -0,0 +1,58 @@ +table: + name: event_players + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: player + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - steam_id + filter: + event: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - steam_id + filter: + _or: + - event: + is_organizer: + _eq: true + - event: + status: + _neq: Setup + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_teams.yaml b/hasura/metadata/databases/default/tables/public_event_teams.yaml new file mode 100644 index 00000000..5cb46f97 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_teams.yaml @@ -0,0 +1,58 @@ +table: + name: event_teams + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: team + using: + foreign_key_constraint_on: team_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - team_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - team_id + filter: + event: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - team_id + filter: + _or: + - event: + is_organizer: + _eq: true + - event: + status: + _neq: Setup + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_tournaments.yaml b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml new file mode 100644 index 00000000..152d8145 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml @@ -0,0 +1,58 @@ +table: + name: event_tournaments + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: tournament + using: + foreign_key_constraint_on: tournament_id +insert_permissions: + - role: user + permission: + check: + event: + is_organizer: + _eq: true + columns: + - event_id + - tournament_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - tournament_id + filter: + event: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - tournament_id + filter: + _or: + - event: + is_organizer: + _eq: true + - event: + status: + _neq: Setup + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_events.yaml b/hasura/metadata/databases/default/tables/public_events.yaml new file mode 100644 index 00000000..e40e0c82 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_events.yaml @@ -0,0 +1,368 @@ +table: + name: events + schema: public +object_relationships: + - name: organizer + using: + foreign_key_constraint_on: organizer_steam_id +array_relationships: + - name: organizers + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_organizers + schema: public + - name: player_stats + using: + manual_configuration: + column_mapping: + id: event_id + insertion_order: null + remote_table: + name: v_event_player_stats + schema: public + - name: players + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_players + schema: public + - name: teams + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_teams + schema: public + - name: tournaments + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_tournaments + schema: public +computed_fields: + - name: is_organizer + definition: + function: + name: is_event_organizer + schema: public + session_argument: hasura_session +insert_permissions: + - role: administrator + permission: + check: {} + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: match_organizer + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: moderator + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: streamer + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: tournament_organizer + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + - tournament_organizer + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: user + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" + - role: verified_user + permission: + check: + _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + set: + organizer_steam_id: x-hasura-user-id + columns: + - description + - ends_at + - name + - starts_at + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - description + - ends_at + - id + - name + - organizer_steam_id + - starts_at + - status + computed_fields: + - is_organizer + filter: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: tournament_organizer + permission: + columns: + - created_at + - description + - ends_at + - id + - name + - organizer_steam_id + - starts_at + - status + computed_fields: + - is_organizer + filter: + _or: + - is_organizer: + _eq: true + - status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - description + - ends_at + - id + - name + - organizer_steam_id + - starts_at + - status + computed_fields: + - is_organizer + filter: + _or: + - is_organizer: + _eq: true + - status: + _neq: Setup + allow_aggregations: true + comment: "" +update_permissions: + - role: tournament_organizer + permission: + columns: + - description + - ends_at + - name + - starts_at + - status + filter: + is_organizer: + _eq: true + check: + is_organizer: + _eq: true + comment: "" + - role: user + permission: + columns: + - description + - ends_at + - name + - starts_at + - status + filter: + is_organizer: + _eq: true + check: + is_organizer: + _eq: true + comment: "" +delete_permissions: + - role: tournament_organizer + permission: + filter: {} + comment: "" + - role: user + permission: + filter: + organizer_steam_id: + _eq: X-Hasura-User-Id + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml new file mode 100644 index 00000000..30255132 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml @@ -0,0 +1,63 @@ +table: + name: v_event_player_stats + schema: public +object_relationships: + - name: event + using: + manual_configuration: + column_mapping: + event_id: id + insertion_order: null + remote_table: + name: events + schema: public + - name: player + using: + manual_configuration: + column_mapping: + player_steam_id: steam_id + insertion_order: null + remote_table: + name: players + schema: public +select_permissions: + - role: guest + permission: + columns: + - event_id + - player_steam_id + - kills + - headshots + - deaths + - assists + - matches_played + - kdr + - headshot_percentage + filter: + event: + status: + _neq: Setup + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - event_id + - player_steam_id + - kills + - headshots + - deaths + - assists + - matches_played + - kdr + - headshot_percentage + filter: + _or: + - event: + is_organizer: + _eq: true + - event: + status: + _neq: Setup + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 0ff30849..73958724 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -13,6 +13,7 @@ - "!include public_e_draft_game_mode.yaml" - "!include public_e_draft_game_player_status.yaml" - "!include public_e_draft_game_status.yaml" +- "!include public_e_event_status.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" - "!include public_e_game_server_node_statuses.yaml" @@ -46,6 +47,11 @@ - "!include public_e_utility_types.yaml" - "!include public_e_veto_pick_types.yaml" - "!include public_e_winning_reasons.yaml" +- "!include public_event_organizers.yaml" +- "!include public_event_players.yaml" +- "!include public_event_teams.yaml" +- "!include public_event_tournaments.yaml" +- "!include public_events.yaml" - "!include public_friends.yaml" - "!include public_game_server_nodes.yaml" - "!include public_game_versions.yaml" @@ -135,6 +141,7 @@ - "!include public_tournament_trophies.yaml" - "!include public_tournament_trophy_configs.yaml" - "!include public_tournaments.yaml" +- "!include public_v_event_player_stats.yaml" - "!include public_v_gpu_pool_status.yaml" - "!include public_v_league_division_standings.yaml" - "!include public_v_league_season_player_stats.yaml" diff --git a/hasura/migrations/default/1867000000300_events/down.sql b/hasura/migrations/default/1867000000300_events/down.sql new file mode 100644 index 00000000..11eae5dc --- /dev/null +++ b/hasura/migrations/default/1867000000300_events/down.sql @@ -0,0 +1,34 @@ +-- These are created in later boot phases (hasura/functions, hasura/views) +-- and are not reverted by re-running migrations, so they must be dropped +-- here before the tables they depend on: v_event_player_stats reads +-- event_tournaments, and is_event_organizer takes public.events as its +-- first argument (a hard dependency on the table's row type). +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP VIEW IF EXISTS public.v_event_player_stats; +DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); + +-- The boot loader (HasuraService.apply) skips re-creating a boot-phase object +-- when its stored digest is unchanged, so dropping the objects above is not +-- enough: without clearing their digests a later forward deploy would leave +-- the tables present but the view/functions gone. Clear the digests so the +-- next boot re-applies them. The setting name is the cwd-relative path minus +-- ".sql". Guard with to_regclass so this is a no-op when migration_hashes has +-- not been created yet (e.g. a rollback before the app has ever booted). +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/functions/events/get_event_leaderboard', + 'hasura/functions/events/is_event_organizer', + 'hasura/views/v_event_player_stats' + ); + END IF; +END $$; + +DROP TABLE IF EXISTS public.event_players; +DROP TABLE IF EXISTS public.event_teams; +DROP TABLE IF EXISTS public.event_tournaments; +DROP TABLE IF EXISTS public.event_organizers; +DROP TABLE IF EXISTS public.events; +DROP TABLE IF EXISTS public.e_event_status; diff --git a/hasura/migrations/default/1867000000300_events/up.sql b/hasura/migrations/default/1867000000300_events/up.sql new file mode 100644 index 00000000..5ae53aaa --- /dev/null +++ b/hasura/migrations/default/1867000000300_events/up.sql @@ -0,0 +1,56 @@ +-- Events: curated mini-season containers grouping selected tournaments. +-- Design: docs/plans/2026-07-03-events-feature-design.md (polyrepo root). + +CREATE TABLE IF NOT EXISTS public.e_event_status ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_status (value, description) VALUES + ('Setup', 'Event is being set up; hidden from the public'), + ('Live', 'Event is in progress'), + ('Finished', 'Event has finished') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.events ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + name text NOT NULL, + description text, + starts_at timestamptz, + ends_at timestamptz, + status text NOT NULL DEFAULT 'Setup' REFERENCES public.e_event_status(value), + organizer_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + created_at timestamptz NOT NULL DEFAULT now() +); + +CREATE TABLE IF NOT EXISTS public.event_organizers ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); + +CREATE TABLE IF NOT EXISTS public.event_tournaments ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + tournament_id uuid NOT NULL REFERENCES public.tournaments(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, tournament_id) +); +CREATE INDEX IF NOT EXISTS idx_event_tournaments_tournament + ON public.event_tournaments(tournament_id); + +CREATE TABLE IF NOT EXISTS public.event_teams ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + team_id uuid NOT NULL REFERENCES public.teams(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, team_id) +); +CREATE INDEX IF NOT EXISTS idx_event_teams_team ON public.event_teams(team_id); + +CREATE TABLE IF NOT EXISTS public.event_players ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_players_steam ON public.event_players(steam_id); diff --git a/hasura/views/v_event_player_stats.sql b/hasura/views/v_event_player_stats.sql new file mode 100644 index 00000000..93ebed7f --- /dev/null +++ b/hasura/views/v_event_player_stats.sql @@ -0,0 +1,80 @@ +CREATE OR REPLACE VIEW public.v_event_player_stats AS +-- NOT MATERIALIZED: even though e_matches is referenced 3 times below, force inlining +-- so the outer per-event filter (event_id = $1) pushes down into the event_tournaments +-- scan instead of being applied after a materialized CTE builds the match set for every +-- event on the instance. +WITH e_matches AS NOT MATERIALIZED ( + SELECT DISTINCT + et.event_id, + tb.match_id + FROM event_tournaments et + JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id + JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE tb.match_id IS NOT NULL +), +-- Kills, deaths and headshots come from the same player_kills rows. Unpivot +-- each kill into one row per side via LATERAL VALUES so player_kills is +-- scanned (and the chunk indexes hit) once instead of twice, then aggregate +-- both sides together keyed by player. +kd_agg AS ( + SELECT + em.event_id, + e.steam_id, + SUM(e.kill_flag)::int AS kills, + SUM(e.death_flag)::int AS deaths, + SUM(e.headshot_flag)::int AS headshots + FROM e_matches em + JOIN player_kills pk + ON pk.match_id = em.match_id + AND pk.attacker_steam_id IS NOT NULL + AND pk.attacker_steam_id != pk.attacked_steam_id + CROSS JOIN LATERAL (VALUES + (pk.attacker_steam_id, 1, 0, CASE WHEN pk.headshot THEN 1 ELSE 0 END), + (pk.attacked_steam_id, 0, 1, 0) + ) AS e(steam_id, kill_flag, death_flag, headshot_flag) + WHERE e.steam_id IS NOT NULL + GROUP BY em.event_id, e.steam_id +), +assists_agg AS ( + SELECT + em.event_id, + pa.attacker_steam_id AS steam_id, + COUNT(*)::int AS assists + FROM e_matches em + JOIN player_assists pa ON pa.match_id = em.match_id + WHERE pa.attacker_steam_id IS NOT NULL + GROUP BY em.event_id, pa.attacker_steam_id +), +matches_agg AS ( + SELECT + em.event_id, + mlp.steam_id, + COUNT(DISTINCT em.match_id)::int AS matches_played + FROM e_matches em + JOIN matches m ON m.id = em.match_id + JOIN match_lineup_players mlp + ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE mlp.steam_id IS NOT NULL + GROUP BY em.event_id, mlp.steam_id +) +SELECT + m.event_id, + m.steam_id AS player_steam_id, + COALESCE(kd.kills, 0) AS kills, + COALESCE(kd.headshots, 0) AS headshots, + COALESCE(kd.deaths, 0) AS deaths, + COALESCE(a.assists, 0) AS assists, + m.matches_played, + CASE WHEN COALESCE(kd.deaths, 0) = 0 + THEN COALESCE(kd.kills, 0)::float + ELSE ROUND(COALESCE(kd.kills, 0)::numeric / kd.deaths::numeric, 2)::float + END AS kdr, + CASE WHEN COALESCE(kd.kills, 0) = 0 + THEN 0::float + ELSE ROUND(COALESCE(kd.headshots, 0)::numeric / kd.kills::numeric * 100, 1)::float + END AS headshot_percentage +FROM matches_agg m +LEFT JOIN kd_agg kd + ON kd.event_id = m.event_id AND kd.steam_id = m.steam_id +LEFT JOIN assists_agg a + ON a.event_id = m.event_id AND a.steam_id = m.steam_id; From 24726133953d4bdad0908838da8f916364cfdb83 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Fri, 10 Jul 2026 10:53:09 -0400 Subject: [PATCH 02/11] wip --- generated/schema.graphql | 3911 ++- generated/schema.ts | 3925 +++ generated/types.ts | 56233 ++++++++++++++++++++----------------- 3 files changed, 38433 insertions(+), 25636 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index 2c2b79e7..2f38e269 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -5607,6 +5607,180 @@ input e_draft_game_status_updates { where: e_draft_game_status_bool_exp! } +""" +columns and relationships of "e_event_status" +""" +type e_event_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_status" +""" +type e_event_status_aggregate { + aggregate: e_event_status_aggregate_fields + nodes: [e_event_status!]! +} + +""" +aggregate fields of "e_event_status" +""" +type e_event_status_aggregate_fields { + count(columns: [e_event_status_select_column!], distinct: Boolean): Int! + max: e_event_status_max_fields + min: e_event_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_status". All fields are combined with a logical 'AND'. +""" +input e_event_status_bool_exp { + _and: [e_event_status_bool_exp!] + _not: e_event_status_bool_exp + _or: [e_event_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_status" +""" +enum e_event_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_status_pkey +} + +enum e_event_status_enum { + """Event has finished""" + Finished + + """Event is in progress""" + Live + + """Event is being set up; hidden from the public""" + Setup +} + +""" +Boolean expression to compare columns of type "e_event_status_enum". All fields are combined with logical 'AND'. +""" +input e_event_status_enum_comparison_exp { + _eq: e_event_status_enum + _in: [e_event_status_enum!] + _is_null: Boolean + _neq: e_event_status_enum + _nin: [e_event_status_enum!] +} + +""" +input type for inserting data into table "e_event_status" +""" +input e_event_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_status" +""" +type e_event_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_status!]! +} + +""" +on_conflict condition type for table "e_event_status" +""" +input e_event_status_on_conflict { + constraint: e_event_status_constraint! + update_columns: [e_event_status_update_column!]! = [] + where: e_event_status_bool_exp +} + +"""Ordering options when selecting data from "e_event_status".""" +input e_event_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_status""" +input e_event_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_status" +""" +enum e_event_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_status" +""" +input e_event_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_event_status" +""" +input e_event_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_status" +""" +enum e_event_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_status_set_input + + """filter the rows which have to be updated""" + where: e_event_status_bool_exp! +} + """ columns and relationships of "e_friend_status" """ @@ -12147,231 +12321,1898 @@ enum e_veto_pick_types_select_column { value } -""" -input type for updating data in table "e_veto_pick_types" -""" -input e_veto_pick_types_set_input { - description: String - value: String -} +""" +input type for updating data in table "e_veto_pick_types" +""" +input e_veto_pick_types_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_veto_pick_types" +""" +input e_veto_pick_types_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_veto_pick_types_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_veto_pick_types_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_veto_pick_types" +""" +enum e_veto_pick_types_update_column { + """column name""" + description + + """column name""" + value +} + +input e_veto_pick_types_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_veto_pick_types_set_input + + """filter the rows which have to be updated""" + where: e_veto_pick_types_bool_exp! +} + +""" +columns and relationships of "e_winning_reasons" +""" +type e_winning_reasons { + description: String! + value: String! +} + +""" +aggregated selection of "e_winning_reasons" +""" +type e_winning_reasons_aggregate { + aggregate: e_winning_reasons_aggregate_fields + nodes: [e_winning_reasons!]! +} + +""" +aggregate fields of "e_winning_reasons" +""" +type e_winning_reasons_aggregate_fields { + count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! + max: e_winning_reasons_max_fields + min: e_winning_reasons_min_fields +} + +""" +Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. +""" +input e_winning_reasons_bool_exp { + _and: [e_winning_reasons_bool_exp!] + _not: e_winning_reasons_bool_exp + _or: [e_winning_reasons_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_winning_reasons" +""" +enum e_winning_reasons_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_winning_reasons_pkey +} + +enum e_winning_reasons_enum { + """Bomb Defused""" + BombDefused + + """Bomb Exploded""" + BombExploded + + """CTs Win""" + CTsWin + + """Terrorists Win""" + TerroristsWin + + """Time Ran Out""" + TimeRanOut + + """Unknown""" + Unknown +} + +""" +Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. +""" +input e_winning_reasons_enum_comparison_exp { + _eq: e_winning_reasons_enum + _in: [e_winning_reasons_enum!] + _is_null: Boolean + _neq: e_winning_reasons_enum + _nin: [e_winning_reasons_enum!] +} + +""" +input type for inserting data into table "e_winning_reasons" +""" +input e_winning_reasons_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_winning_reasons_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_winning_reasons_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_winning_reasons" +""" +type e_winning_reasons_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_winning_reasons!]! +} + +""" +on_conflict condition type for table "e_winning_reasons" +""" +input e_winning_reasons_on_conflict { + constraint: e_winning_reasons_constraint! + update_columns: [e_winning_reasons_update_column!]! = [] + where: e_winning_reasons_bool_exp +} + +"""Ordering options when selecting data from "e_winning_reasons".""" +input e_winning_reasons_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_winning_reasons""" +input e_winning_reasons_pk_columns_input { + value: String! +} + +""" +select columns of table "e_winning_reasons" +""" +enum e_winning_reasons_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_winning_reasons" +""" +input e_winning_reasons_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_winning_reasons" +""" +input e_winning_reasons_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_winning_reasons_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_winning_reasons_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_winning_reasons" +""" +enum e_winning_reasons_update_column { + """column name""" + description + + """column name""" + value +} + +input e_winning_reasons_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_winning_reasons_set_input + + """filter the rows which have to be updated""" + where: e_winning_reasons_bool_exp! +} + +""" +columns and relationships of "event_organizers" +""" +type event_organizers { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + organizer: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_organizers" +""" +type event_organizers_aggregate { + aggregate: event_organizers_aggregate_fields + nodes: [event_organizers!]! +} + +input event_organizers_aggregate_bool_exp { + count: event_organizers_aggregate_bool_exp_count +} + +input event_organizers_aggregate_bool_exp_count { + arguments: [event_organizers_select_column!] + distinct: Boolean + filter: event_organizers_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_organizers" +""" +type event_organizers_aggregate_fields { + avg: event_organizers_avg_fields + count(columns: [event_organizers_select_column!], distinct: Boolean): Int! + max: event_organizers_max_fields + min: event_organizers_min_fields + stddev: event_organizers_stddev_fields + stddev_pop: event_organizers_stddev_pop_fields + stddev_samp: event_organizers_stddev_samp_fields + sum: event_organizers_sum_fields + var_pop: event_organizers_var_pop_fields + var_samp: event_organizers_var_samp_fields + variance: event_organizers_variance_fields +} + +""" +order by aggregate values of table "event_organizers" +""" +input event_organizers_aggregate_order_by { + avg: event_organizers_avg_order_by + count: order_by + max: event_organizers_max_order_by + min: event_organizers_min_order_by + stddev: event_organizers_stddev_order_by + stddev_pop: event_organizers_stddev_pop_order_by + stddev_samp: event_organizers_stddev_samp_order_by + sum: event_organizers_sum_order_by + var_pop: event_organizers_var_pop_order_by + var_samp: event_organizers_var_samp_order_by + variance: event_organizers_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_organizers" +""" +input event_organizers_arr_rel_insert_input { + data: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict +} + +"""aggregate avg on columns""" +type event_organizers_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_organizers" +""" +input event_organizers_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. +""" +input event_organizers_bool_exp { + _and: [event_organizers_bool_exp!] + _not: event_organizers_bool_exp + _or: [event_organizers_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + organizer: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_organizers" +""" +enum event_organizers_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_organizers_pkey +} + +""" +input type for incrementing numeric columns in table "event_organizers" +""" +input event_organizers_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_organizers" +""" +input event_organizers_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + organizer: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_organizers_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_organizers" +""" +input event_organizers_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_organizers_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_organizers" +""" +input event_organizers_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_organizers" +""" +type event_organizers_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_organizers!]! +} + +""" +on_conflict condition type for table "event_organizers" +""" +input event_organizers_on_conflict { + constraint: event_organizers_constraint! + update_columns: [event_organizers_update_column!]! = [] + where: event_organizers_bool_exp +} + +"""Ordering options when selecting data from "event_organizers".""" +input event_organizers_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + organizer: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_organizers""" +input event_organizers_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_organizers" +""" +enum event_organizers_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_organizers" +""" +input event_organizers_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_organizers_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_organizers" +""" +input event_organizers_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_organizers_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_organizers" +""" +input event_organizers_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_organizers_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_organizers" +""" +input event_organizers_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_organizers" +""" +input event_organizers_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_organizers_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_organizers_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_organizers_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_organizers" +""" +input event_organizers_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_organizers" +""" +enum event_organizers_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_organizers_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_organizers_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_organizers" +""" +input event_organizers_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_organizers_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_organizers" +""" +input event_organizers_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_organizers_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_organizers" +""" +input event_organizers_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_players" +""" +type event_players { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_players" +""" +type event_players_aggregate { + aggregate: event_players_aggregate_fields + nodes: [event_players!]! +} + +input event_players_aggregate_bool_exp { + count: event_players_aggregate_bool_exp_count +} + +input event_players_aggregate_bool_exp_count { + arguments: [event_players_select_column!] + distinct: Boolean + filter: event_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_players" +""" +type event_players_aggregate_fields { + avg: event_players_avg_fields + count(columns: [event_players_select_column!], distinct: Boolean): Int! + max: event_players_max_fields + min: event_players_min_fields + stddev: event_players_stddev_fields + stddev_pop: event_players_stddev_pop_fields + stddev_samp: event_players_stddev_samp_fields + sum: event_players_sum_fields + var_pop: event_players_var_pop_fields + var_samp: event_players_var_samp_fields + variance: event_players_variance_fields +} + +""" +order by aggregate values of table "event_players" +""" +input event_players_aggregate_order_by { + avg: event_players_avg_order_by + count: order_by + max: event_players_max_order_by + min: event_players_min_order_by + stddev: event_players_stddev_order_by + stddev_pop: event_players_stddev_pop_order_by + stddev_samp: event_players_stddev_samp_order_by + sum: event_players_sum_order_by + var_pop: event_players_var_pop_order_by + var_samp: event_players_var_samp_order_by + variance: event_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_players" +""" +input event_players_arr_rel_insert_input { + data: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict +} + +"""aggregate avg on columns""" +type event_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_players" +""" +input event_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. +""" +input event_players_bool_exp { + _and: [event_players_bool_exp!] + _not: event_players_bool_exp + _or: [event_players_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_players" +""" +enum event_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "event_id" + """ + event_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_players" +""" +input event_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_players" +""" +input event_players_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_players_max_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_players" +""" +input event_players_max_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_players_min_fields { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_players" +""" +input event_players_min_order_by { + created_at: order_by + event_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_players" +""" +type event_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_players!]! +} + +""" +on_conflict condition type for table "event_players" +""" +input event_players_on_conflict { + constraint: event_players_constraint! + update_columns: [event_players_update_column!]! = [] + where: event_players_bool_exp +} + +"""Ordering options when selecting data from "event_players".""" +input event_players_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_players""" +input event_players_pk_columns_input { + event_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_players" +""" +enum event_players_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_players" +""" +input event_players_set_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_players" +""" +input event_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_players" +""" +input event_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_players" +""" +input event_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_players" +""" +input event_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_players_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_players" +""" +input event_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_players" +""" +enum event_players_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + steam_id +} + +input event_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_players" +""" +input event_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_players" +""" +input event_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_players" +""" +input event_players_variance_order_by { + steam_id: order_by +} + +""" +columns and relationships of "event_teams" +""" +type event_teams { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + team: teams! + team_id: uuid! +} + +""" +aggregated selection of "event_teams" +""" +type event_teams_aggregate { + aggregate: event_teams_aggregate_fields + nodes: [event_teams!]! +} + +input event_teams_aggregate_bool_exp { + count: event_teams_aggregate_bool_exp_count +} + +input event_teams_aggregate_bool_exp_count { + arguments: [event_teams_select_column!] + distinct: Boolean + filter: event_teams_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_teams" +""" +type event_teams_aggregate_fields { + count(columns: [event_teams_select_column!], distinct: Boolean): Int! + max: event_teams_max_fields + min: event_teams_min_fields +} + +""" +order by aggregate values of table "event_teams" +""" +input event_teams_aggregate_order_by { + count: order_by + max: event_teams_max_order_by + min: event_teams_min_order_by +} + +""" +input type for inserting array relation for remote table "event_teams" +""" +input event_teams_arr_rel_insert_input { + data: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. +""" +input event_teams_bool_exp { + _and: [event_teams_bool_exp!] + _not: event_teams_bool_exp + _or: [event_teams_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + team: teams_bool_exp + team_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_teams" +""" +enum event_teams_constraint { + """ + unique or primary key constraint on columns "event_id", "team_id" + """ + event_teams_pkey +} + +""" +input type for inserting data into table "event_teams" +""" +input event_teams_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + team: teams_obj_rel_insert_input + team_id: uuid +} + +"""aggregate max on columns""" +type event_teams_max_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by max() on columns of table "event_teams" +""" +input event_teams_max_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +"""aggregate min on columns""" +type event_teams_min_fields { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +order by min() on columns of table "event_teams" +""" +input event_teams_min_order_by { + created_at: order_by + event_id: order_by + team_id: order_by +} + +""" +response of any mutation on the table "event_teams" +""" +type event_teams_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_teams!]! +} + +""" +on_conflict condition type for table "event_teams" +""" +input event_teams_on_conflict { + constraint: event_teams_constraint! + update_columns: [event_teams_update_column!]! = [] + where: event_teams_bool_exp +} + +"""Ordering options when selecting data from "event_teams".""" +input event_teams_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + team: teams_order_by + team_id: order_by +} + +"""primary key columns input for table: event_teams""" +input event_teams_pk_columns_input { + event_id: uuid! + team_id: uuid! +} + +""" +select columns of table "event_teams" +""" +enum event_teams_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +""" +input type for updating data in table "event_teams" +""" +input event_teams_set_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +Streaming cursor of the table "event_teams" +""" +input event_teams_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_teams_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_teams_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + team_id: uuid +} + +""" +update columns of table "event_teams" +""" +enum event_teams_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + team_id +} + +input event_teams_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! +} + +""" +columns and relationships of "event_tournaments" +""" +type event_tournaments { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + tournament: tournaments! + tournament_id: uuid! +} + +""" +aggregated selection of "event_tournaments" +""" +type event_tournaments_aggregate { + aggregate: event_tournaments_aggregate_fields + nodes: [event_tournaments!]! +} + +input event_tournaments_aggregate_bool_exp { + count: event_tournaments_aggregate_bool_exp_count +} + +input event_tournaments_aggregate_bool_exp_count { + arguments: [event_tournaments_select_column!] + distinct: Boolean + filter: event_tournaments_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_tournaments" +""" +type event_tournaments_aggregate_fields { + count(columns: [event_tournaments_select_column!], distinct: Boolean): Int! + max: event_tournaments_max_fields + min: event_tournaments_min_fields +} + +""" +order by aggregate values of table "event_tournaments" +""" +input event_tournaments_aggregate_order_by { + count: order_by + max: event_tournaments_max_order_by + min: event_tournaments_min_order_by +} + +""" +input type for inserting array relation for remote table "event_tournaments" +""" +input event_tournaments_arr_rel_insert_input { + data: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict +} + +""" +Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. +""" +input event_tournaments_bool_exp { + _and: [event_tournaments_bool_exp!] + _not: event_tournaments_bool_exp + _or: [event_tournaments_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + tournament: tournaments_bool_exp + tournament_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_tournaments" +""" +enum event_tournaments_constraint { + """ + unique or primary key constraint on columns "tournament_id", "event_id" + """ + event_tournaments_pkey +} + +""" +input type for inserting data into table "event_tournaments" +""" +input event_tournaments_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + tournament: tournaments_obj_rel_insert_input + tournament_id: uuid +} + +"""aggregate max on columns""" +type event_tournaments_max_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by max() on columns of table "event_tournaments" +""" +input event_tournaments_max_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +"""aggregate min on columns""" +type event_tournaments_min_fields { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +order by min() on columns of table "event_tournaments" +""" +input event_tournaments_min_order_by { + created_at: order_by + event_id: order_by + tournament_id: order_by +} + +""" +response of any mutation on the table "event_tournaments" +""" +type event_tournaments_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_tournaments!]! +} + +""" +on_conflict condition type for table "event_tournaments" +""" +input event_tournaments_on_conflict { + constraint: event_tournaments_constraint! + update_columns: [event_tournaments_update_column!]! = [] + where: event_tournaments_bool_exp +} + +"""Ordering options when selecting data from "event_tournaments".""" +input event_tournaments_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + tournament: tournaments_order_by + tournament_id: order_by +} + +"""primary key columns input for table: event_tournaments""" +input event_tournaments_pk_columns_input { + event_id: uuid! + tournament_id: uuid! +} + +""" +select columns of table "event_tournaments" +""" +enum event_tournaments_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +""" +input type for updating data in table "event_tournaments" +""" +input event_tournaments_set_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +Streaming cursor of the table "event_tournaments" +""" +input event_tournaments_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_tournaments_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_tournaments_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + tournament_id: uuid +} + +""" +update columns of table "event_tournaments" +""" +enum event_tournaments_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + tournament_id +} + +input event_tournaments_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! +} + +""" +columns and relationships of "events" +""" +type events { + created_at: timestamptz! + description: String + ends_at: timestamptz + id: uuid! + + """ + A computed field, executes function "is_event_organizer" + """ + is_organizer: Boolean + name: String! + + """An object relationship""" + organizer: players! + organizer_steam_id: bigint! + + """An array relationship""" + organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """An aggregate relationship""" + organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """An array relationship""" + player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """An aggregate relationship""" + player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + starts_at: timestamptz + status: e_event_status_enum! + + """An array relationship""" + teams( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """An aggregate relationship""" + teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """An array relationship""" + tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] + + """limit the number of rows returned""" + limit: Int -""" -Streaming cursor of the table "e_veto_pick_types" -""" -input e_veto_pick_types_stream_cursor_input { - """Stream column input with initial value""" - initial_value: e_veto_pick_types_stream_cursor_value_input! + """skip the first n rows. Use only with order_by""" + offset: Int - """cursor ordering""" - ordering: cursor_ordering -} + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] -"""Initial value of the column from where the streaming should start""" -input e_veto_pick_types_stream_cursor_value_input { - description: String - value: String -} + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! -""" -update columns of table "e_veto_pick_types" -""" -enum e_veto_pick_types_update_column { - """column name""" - description + """An aggregate relationship""" + tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_select_column!] - """column name""" - value -} + """limit the number of rows returned""" + limit: Int -input e_veto_pick_types_updates { - """sets the columns of the filtered rows to the given values""" - _set: e_veto_pick_types_set_input + """skip the first n rows. Use only with order_by""" + offset: Int - """filter the rows which have to be updated""" - where: e_veto_pick_types_bool_exp! + """sort the rows by one or more columns""" + order_by: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! } """ -columns and relationships of "e_winning_reasons" +aggregated selection of "events" """ -type e_winning_reasons { - description: String! - value: String! +type events_aggregate { + aggregate: events_aggregate_fields + nodes: [events!]! } """ -aggregated selection of "e_winning_reasons" +aggregate fields of "events" """ -type e_winning_reasons_aggregate { - aggregate: e_winning_reasons_aggregate_fields - nodes: [e_winning_reasons!]! +type events_aggregate_fields { + avg: events_avg_fields + count(columns: [events_select_column!], distinct: Boolean): Int! + max: events_max_fields + min: events_min_fields + stddev: events_stddev_fields + stddev_pop: events_stddev_pop_fields + stddev_samp: events_stddev_samp_fields + sum: events_sum_fields + var_pop: events_var_pop_fields + var_samp: events_var_samp_fields + variance: events_variance_fields } -""" -aggregate fields of "e_winning_reasons" -""" -type e_winning_reasons_aggregate_fields { - count(columns: [e_winning_reasons_select_column!], distinct: Boolean): Int! - max: e_winning_reasons_max_fields - min: e_winning_reasons_min_fields +"""aggregate avg on columns""" +type events_avg_fields { + organizer_steam_id: Float } """ -Boolean expression to filter rows from the table "e_winning_reasons". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. """ -input e_winning_reasons_bool_exp { - _and: [e_winning_reasons_bool_exp!] - _not: e_winning_reasons_bool_exp - _or: [e_winning_reasons_bool_exp!] +input events_bool_exp { + _and: [events_bool_exp!] + _not: events_bool_exp + _or: [events_bool_exp!] + created_at: timestamptz_comparison_exp description: String_comparison_exp - value: String_comparison_exp + ends_at: timestamptz_comparison_exp + id: uuid_comparison_exp + is_organizer: Boolean_comparison_exp + name: String_comparison_exp + organizer: players_bool_exp + organizer_steam_id: bigint_comparison_exp + organizers: event_organizers_bool_exp + organizers_aggregate: event_organizers_aggregate_bool_exp + player_stats: v_event_player_stats_bool_exp + player_stats_aggregate: v_event_player_stats_aggregate_bool_exp + players: event_players_bool_exp + players_aggregate: event_players_aggregate_bool_exp + starts_at: timestamptz_comparison_exp + status: e_event_status_enum_comparison_exp + teams: event_teams_bool_exp + teams_aggregate: event_teams_aggregate_bool_exp + tournaments: event_tournaments_bool_exp + tournaments_aggregate: event_tournaments_aggregate_bool_exp } """ -unique or primary key constraints on table "e_winning_reasons" +unique or primary key constraints on table "events" """ -enum e_winning_reasons_constraint { +enum events_constraint { """ - unique or primary key constraint on columns "value" + unique or primary key constraint on columns "id" """ - e_winning_reasons_pkey -} - -enum e_winning_reasons_enum { - """Bomb Defused""" - BombDefused - - """Bomb Exploded""" - BombExploded - - """CTs Win""" - CTsWin - - """Terrorists Win""" - TerroristsWin - - """Time Ran Out""" - TimeRanOut - - """Unknown""" - Unknown + events_pkey } """ -Boolean expression to compare columns of type "e_winning_reasons_enum". All fields are combined with logical 'AND'. +input type for incrementing numeric columns in table "events" """ -input e_winning_reasons_enum_comparison_exp { - _eq: e_winning_reasons_enum - _in: [e_winning_reasons_enum!] - _is_null: Boolean - _neq: e_winning_reasons_enum - _nin: [e_winning_reasons_enum!] +input events_inc_input { + organizer_steam_id: bigint } """ -input type for inserting data into table "e_winning_reasons" +input type for inserting data into table "events" """ -input e_winning_reasons_insert_input { +input events_insert_input { + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer: players_obj_rel_insert_input + organizer_steam_id: bigint + organizers: event_organizers_arr_rel_insert_input + player_stats: v_event_player_stats_arr_rel_insert_input + players: event_players_arr_rel_insert_input + starts_at: timestamptz + status: e_event_status_enum + teams: event_teams_arr_rel_insert_input + tournaments: event_tournaments_arr_rel_insert_input } """aggregate max on columns""" -type e_winning_reasons_max_fields { +type events_max_fields { + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz } """aggregate min on columns""" -type e_winning_reasons_min_fields { +type events_min_fields { + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz } """ -response of any mutation on the table "e_winning_reasons" +response of any mutation on the table "events" """ -type e_winning_reasons_mutation_response { +type events_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [e_winning_reasons!]! + returning: [events!]! } """ -on_conflict condition type for table "e_winning_reasons" +input type for inserting object relation for remote table "events" """ -input e_winning_reasons_on_conflict { - constraint: e_winning_reasons_constraint! - update_columns: [e_winning_reasons_update_column!]! = [] - where: e_winning_reasons_bool_exp +input events_obj_rel_insert_input { + data: events_insert_input! + + """upsert condition""" + on_conflict: events_on_conflict } -"""Ordering options when selecting data from "e_winning_reasons".""" -input e_winning_reasons_order_by { +""" +on_conflict condition type for table "events" +""" +input events_on_conflict { + constraint: events_constraint! + update_columns: [events_update_column!]! = [] + where: events_bool_exp +} + +"""Ordering options when selecting data from "events".""" +input events_order_by { + created_at: order_by description: order_by - value: order_by + ends_at: order_by + id: order_by + is_organizer: order_by + name: order_by + organizer: players_order_by + organizer_steam_id: order_by + organizers_aggregate: event_organizers_aggregate_order_by + player_stats_aggregate: v_event_player_stats_aggregate_order_by + players_aggregate: event_players_aggregate_order_by + starts_at: order_by + status: order_by + teams_aggregate: event_teams_aggregate_order_by + tournaments_aggregate: event_tournaments_aggregate_order_by } -"""primary key columns input for table: e_winning_reasons""" -input e_winning_reasons_pk_columns_input { - value: String! +"""primary key columns input for table: events""" +input events_pk_columns_input { + id: uuid! } """ -select columns of table "e_winning_reasons" +select columns of table "events" """ -enum e_winning_reasons_select_column { +enum events_select_column { + """column name""" + created_at + """column name""" description """column name""" - value + ends_at + + """column name""" + id + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + starts_at + + """column name""" + status } """ -input type for updating data in table "e_winning_reasons" +input type for updating data in table "events" """ -input e_winning_reasons_set_input { +input events_set_input { + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz + status: e_event_status_enum +} + +"""aggregate stddev on columns""" +type events_stddev_fields { + organizer_steam_id: Float +} + +"""aggregate stddev_pop on columns""" +type events_stddev_pop_fields { + organizer_steam_id: Float +} + +"""aggregate stddev_samp on columns""" +type events_stddev_samp_fields { + organizer_steam_id: Float } """ -Streaming cursor of the table "e_winning_reasons" +Streaming cursor of the table "events" """ -input e_winning_reasons_stream_cursor_input { +input events_stream_cursor_input { """Stream column input with initial value""" - initial_value: e_winning_reasons_stream_cursor_value_input! + initial_value: events_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input e_winning_reasons_stream_cursor_value_input { +input events_stream_cursor_value_input { + created_at: timestamptz description: String - value: String + ends_at: timestamptz + id: uuid + name: String + organizer_steam_id: bigint + starts_at: timestamptz + status: e_event_status_enum +} + +"""aggregate sum on columns""" +type events_sum_fields { + organizer_steam_id: bigint } """ -update columns of table "e_winning_reasons" +update columns of table "events" """ -enum e_winning_reasons_update_column { +enum events_update_column { + """column name""" + created_at + """column name""" description """column name""" - value + ends_at + + """column name""" + id + + """column name""" + name + + """column name""" + organizer_steam_id + + """column name""" + starts_at + + """column name""" + status } -input e_winning_reasons_updates { +input events_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + """sets the columns of the filtered rows to the given values""" - _set: e_winning_reasons_set_input + _set: events_set_input """filter the rows which have to be updated""" - where: e_winning_reasons_bool_exp! + where: events_bool_exp! +} + +"""aggregate var_pop on columns""" +type events_var_pop_fields { + organizer_steam_id: Float +} + +"""aggregate var_samp on columns""" +type events_var_samp_fields { + organizer_steam_id: Float +} + +"""aggregate variance on columns""" +type events_variance_fields { + organizer_steam_id: Float } scalar float8 @@ -14705,6 +16546,13 @@ type gamedata_signature_validations_variance_fields { build_id: Float } +input get_event_leaderboard_args { + _category: String + _event_id: uuid + _match_type: String + _min_rounds: Int +} + input get_leaderboard_args { _category: String _exclude_tournaments: Boolean @@ -30841,6 +32689,19 @@ type mutation_root { """ delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ + delete data from the table: "e_event_status" + """ + delete_e_event_status( + """filter the rows which have to be deleted""" + where: e_event_status_bool_exp! + ): e_event_status_mutation_response + + """ + delete single row from the table: "e_event_status" + """ + delete_e_event_status_by_pk(value: String!): e_event_status + """ delete data from the table: "e_friend_status" """ @@ -31270,6 +33131,71 @@ type mutation_root { """ delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + delete data from the table: "event_organizers" + """ + delete_event_organizers( + """filter the rows which have to be deleted""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + delete single row from the table: "event_organizers" + """ + delete_event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + delete data from the table: "event_players" + """ + delete_event_players( + """filter the rows which have to be deleted""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + delete single row from the table: "event_players" + """ + delete_event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + delete data from the table: "event_teams" + """ + delete_event_teams( + """filter the rows which have to be deleted""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + delete single row from the table: "event_teams" + """ + delete_event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + delete data from the table: "event_tournaments" + """ + delete_event_tournaments( + """filter the rows which have to be deleted""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + delete single row from the table: "event_tournaments" + """ + delete_event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + delete data from the table: "events" + """ + delete_events( + """filter the rows which have to be deleted""" + where: events_bool_exp! + ): events_mutation_response + + """ + delete single row from the table: "events" + """ + delete_events_by_pk(id: uuid!): events + """ delete data from the table: "friends" """ @@ -32734,6 +34660,28 @@ type mutation_root { on_conflict: e_draft_game_status_on_conflict ): e_draft_game_status + """ + insert data into the table: "e_event_status" + """ + insert_e_event_status( + """the rows to be inserted""" + objects: [e_event_status_insert_input!]! + + """upsert condition""" + on_conflict: e_event_status_on_conflict + ): e_event_status_mutation_response + + """ + insert a single row into the table: "e_event_status" + """ + insert_e_event_status_one( + """the row to be inserted""" + object: e_event_status_insert_input! + + """upsert condition""" + on_conflict: e_event_status_on_conflict + ): e_event_status + """ insert data into the table: "e_friend_status" """ @@ -33460,6 +35408,116 @@ type mutation_root { on_conflict: e_winning_reasons_on_conflict ): e_winning_reasons + """ + insert data into the table: "event_organizers" + """ + insert_event_organizers( + """the rows to be inserted""" + objects: [event_organizers_insert_input!]! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers_mutation_response + + """ + insert a single row into the table: "event_organizers" + """ + insert_event_organizers_one( + """the row to be inserted""" + object: event_organizers_insert_input! + + """upsert condition""" + on_conflict: event_organizers_on_conflict + ): event_organizers + + """ + insert data into the table: "event_players" + """ + insert_event_players( + """the rows to be inserted""" + objects: [event_players_insert_input!]! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players_mutation_response + + """ + insert a single row into the table: "event_players" + """ + insert_event_players_one( + """the row to be inserted""" + object: event_players_insert_input! + + """upsert condition""" + on_conflict: event_players_on_conflict + ): event_players + + """ + insert data into the table: "event_teams" + """ + insert_event_teams( + """the rows to be inserted""" + objects: [event_teams_insert_input!]! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams_mutation_response + + """ + insert a single row into the table: "event_teams" + """ + insert_event_teams_one( + """the row to be inserted""" + object: event_teams_insert_input! + + """upsert condition""" + on_conflict: event_teams_on_conflict + ): event_teams + + """ + insert data into the table: "event_tournaments" + """ + insert_event_tournaments( + """the rows to be inserted""" + objects: [event_tournaments_insert_input!]! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments_mutation_response + + """ + insert a single row into the table: "event_tournaments" + """ + insert_event_tournaments_one( + """the row to be inserted""" + object: event_tournaments_insert_input! + + """upsert condition""" + on_conflict: event_tournaments_on_conflict + ): event_tournaments + + """ + insert data into the table: "events" + """ + insert_events( + """the rows to be inserted""" + objects: [events_insert_input!]! + + """upsert condition""" + on_conflict: events_on_conflict + ): events_mutation_response + + """ + insert a single row into the table: "events" + """ + insert_events_one( + """the row to be inserted""" + object: events_insert_input! + + """upsert condition""" + on_conflict: events_on_conflict + ): events + """ insert data into the table: "friends" """ @@ -36198,6 +38256,34 @@ type mutation_root { updates: [e_draft_game_status_updates!]! ): [e_draft_game_status_mutation_response] + """ + update data of the table: "e_event_status" + """ + update_e_event_status( + """sets the columns of the filtered rows to the given values""" + _set: e_event_status_set_input + + """filter the rows which have to be updated""" + where: e_event_status_bool_exp! + ): e_event_status_mutation_response + + """ + update single row of the table: "e_event_status" + """ + update_e_event_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_status_set_input + pk_columns: e_event_status_pk_columns_input! + ): e_event_status + + """ + update multiples rows of table: "e_event_status" + """ + update_e_event_status_many( + """updates to execute, in order""" + updates: [e_event_status_updates!]! + ): [e_event_status_mutation_response] + """ update data of the table: "e_friend_status" """ @@ -37122,6 +39208,164 @@ type mutation_root { updates: [e_winning_reasons_updates!]! ): [e_winning_reasons_mutation_response] + """ + update data of the table: "event_organizers" + """ + update_event_organizers( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + + """filter the rows which have to be updated""" + where: event_organizers_bool_exp! + ): event_organizers_mutation_response + + """ + update single row of the table: "event_organizers" + """ + update_event_organizers_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_organizers_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_organizers_set_input + pk_columns: event_organizers_pk_columns_input! + ): event_organizers + + """ + update multiples rows of table: "event_organizers" + """ + update_event_organizers_many( + """updates to execute, in order""" + updates: [event_organizers_updates!]! + ): [event_organizers_mutation_response] + + """ + update data of the table: "event_players" + """ + update_event_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + + """filter the rows which have to be updated""" + where: event_players_bool_exp! + ): event_players_mutation_response + + """ + update single row of the table: "event_players" + """ + update_event_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_players_set_input + pk_columns: event_players_pk_columns_input! + ): event_players + + """ + update multiples rows of table: "event_players" + """ + update_event_players_many( + """updates to execute, in order""" + updates: [event_players_updates!]! + ): [event_players_mutation_response] + + """ + update data of the table: "event_teams" + """ + update_event_teams( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + + """filter the rows which have to be updated""" + where: event_teams_bool_exp! + ): event_teams_mutation_response + + """ + update single row of the table: "event_teams" + """ + update_event_teams_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_teams_set_input + pk_columns: event_teams_pk_columns_input! + ): event_teams + + """ + update multiples rows of table: "event_teams" + """ + update_event_teams_many( + """updates to execute, in order""" + updates: [event_teams_updates!]! + ): [event_teams_mutation_response] + + """ + update data of the table: "event_tournaments" + """ + update_event_tournaments( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + + """filter the rows which have to be updated""" + where: event_tournaments_bool_exp! + ): event_tournaments_mutation_response + + """ + update single row of the table: "event_tournaments" + """ + update_event_tournaments_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_tournaments_set_input + pk_columns: event_tournaments_pk_columns_input! + ): event_tournaments + + """ + update multiples rows of table: "event_tournaments" + """ + update_event_tournaments_many( + """updates to execute, in order""" + updates: [event_tournaments_updates!]! + ): [event_tournaments_mutation_response] + + """ + update data of the table: "events" + """ + update_events( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + + """filter the rows which have to be updated""" + where: events_bool_exp! + ): events_mutation_response + + """ + update single row of the table: "events" + """ + update_events_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: events_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: events_set_input + pk_columns: events_pk_columns_input! + ): events + + """ + update multiples rows of table: "events" + """ + update_events_many( + """updates to execute, in order""" + updates: [events_updates!]! + ): [events_mutation_response] + """ update data of the table: "friends" """ @@ -62665,6 +64909,49 @@ type query_root { """ e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ + fetch data from the table: "e_event_status" + """ + e_event_status( + """distinct select on columns""" + distinct_on: [e_event_status_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: [e_event_status_order_by!] + + """filter the rows returned""" + where: e_event_status_bool_exp + ): [e_event_status!]! + + """ + fetch aggregated fields from the table: "e_event_status" + """ + e_event_status_aggregate( + """distinct select on columns""" + distinct_on: [e_event_status_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: [e_event_status_order_by!] + + """filter the rows returned""" + where: e_event_status_bool_exp + ): e_event_status_aggregate! + + """fetch data from the table: "e_event_status" using primary key columns""" + e_event_status_by_pk(value: String!): e_event_status + """ fetch data from the table: "e_friend_status" """ @@ -64130,6 +66417,225 @@ type query_root { """ e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + """ fetch data from the table: "friends" """ @@ -64351,6 +66857,56 @@ type query_root { """Get TimescaleDB statistics""" getTimescaleStats: TimescaleStats! + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + """ execute function "get_leaderboard" which returns "leaderboard_entries" """ @@ -68244,6 +70800,46 @@ type query_root { """fetch data from the table: "tournaments" using primary key columns""" tournaments_by_pk(id: uuid!): tournaments + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + """ fetch data from the table: "v_gpu_pool_status" """ @@ -72729,6 +75325,63 @@ type subscription_root { where: e_draft_game_status_bool_exp ): [e_draft_game_status!]! + """ + fetch data from the table: "e_event_status" + """ + e_event_status( + """distinct select on columns""" + distinct_on: [e_event_status_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: [e_event_status_order_by!] + + """filter the rows returned""" + where: e_event_status_bool_exp + ): [e_event_status!]! + + """ + fetch aggregated fields from the table: "e_event_status" + """ + e_event_status_aggregate( + """distinct select on columns""" + distinct_on: [e_event_status_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: [e_event_status_order_by!] + + """filter the rows returned""" + where: e_event_status_bool_exp + ): e_event_status_aggregate! + + """fetch data from the table: "e_event_status" using primary key columns""" + e_event_status_by_pk(value: String!): e_event_status + + """ + fetch data from the table in a streaming manner: "e_event_status" + """ + e_event_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_status_bool_exp + ): [e_event_status!]! + """ fetch data from the table: "e_friend_status" """ @@ -74656,6 +77309,295 @@ type subscription_root { where: e_winning_reasons_bool_exp ): [e_winning_reasons!]! + """ + fetch data from the table: "event_organizers" + """ + event_organizers( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch aggregated fields from the table: "event_organizers" + """ + event_organizers_aggregate( + """distinct select on columns""" + distinct_on: [event_organizers_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: [event_organizers_order_by!] + + """filter the rows returned""" + where: event_organizers_bool_exp + ): event_organizers_aggregate! + + """ + fetch data from the table: "event_organizers" using primary key columns + """ + event_organizers_by_pk(event_id: uuid!, steam_id: bigint!): event_organizers + + """ + fetch data from the table in a streaming manner: "event_organizers" + """ + event_organizers_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_organizers_stream_cursor_input]! + + """filter the rows returned""" + where: event_organizers_bool_exp + ): [event_organizers!]! + + """ + fetch data from the table: "event_players" + """ + event_players( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch aggregated fields from the table: "event_players" + """ + event_players_aggregate( + """distinct select on columns""" + distinct_on: [event_players_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: [event_players_order_by!] + + """filter the rows returned""" + where: event_players_bool_exp + ): event_players_aggregate! + + """fetch data from the table: "event_players" using primary key columns""" + event_players_by_pk(event_id: uuid!, steam_id: bigint!): event_players + + """ + fetch data from the table in a streaming manner: "event_players" + """ + event_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_players_bool_exp + ): [event_players!]! + + """ + fetch data from the table: "event_teams" + """ + event_teams( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch aggregated fields from the table: "event_teams" + """ + event_teams_aggregate( + """distinct select on columns""" + distinct_on: [event_teams_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: [event_teams_order_by!] + + """filter the rows returned""" + where: event_teams_bool_exp + ): event_teams_aggregate! + + """fetch data from the table: "event_teams" using primary key columns""" + event_teams_by_pk(event_id: uuid!, team_id: uuid!): event_teams + + """ + fetch data from the table in a streaming manner: "event_teams" + """ + event_teams_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_teams_stream_cursor_input]! + + """filter the rows returned""" + where: event_teams_bool_exp + ): [event_teams!]! + + """ + fetch data from the table: "event_tournaments" + """ + event_tournaments( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch aggregated fields from the table: "event_tournaments" + """ + event_tournaments_aggregate( + """distinct select on columns""" + distinct_on: [event_tournaments_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: [event_tournaments_order_by!] + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): event_tournaments_aggregate! + + """ + fetch data from the table: "event_tournaments" using primary key columns + """ + event_tournaments_by_pk(event_id: uuid!, tournament_id: uuid!): event_tournaments + + """ + fetch data from the table in a streaming manner: "event_tournaments" + """ + event_tournaments_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_tournaments_stream_cursor_input]! + + """filter the rows returned""" + where: event_tournaments_bool_exp + ): [event_tournaments!]! + + """ + fetch data from the table: "events" + """ + events( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + + """ + fetch aggregated fields from the table: "events" + """ + events_aggregate( + """distinct select on columns""" + distinct_on: [events_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: [events_order_by!] + + """filter the rows returned""" + where: events_bool_exp + ): events_aggregate! + + """fetch data from the table: "events" using primary key columns""" + events_by_pk(id: uuid!): events + + """ + fetch data from the table in a streaming manner: "events" + """ + events_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [events_stream_cursor_input]! + + """filter the rows returned""" + where: events_bool_exp + ): [events!]! + """ fetch data from the table: "friends" """ @@ -74884,6 +77826,56 @@ type subscription_root { where: gamedata_signature_validations_bool_exp ): [gamedata_signature_validations!]! + """ + execute function "get_event_leaderboard" which returns "leaderboard_entries" + """ + get_event_leaderboard( + """ + input parameters for function "get_event_leaderboard" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): [leaderboard_entries!]! + + """ + execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" + """ + get_event_leaderboard_aggregate( + """ + input parameters for function "get_event_leaderboard_aggregate" + """ + args: get_event_leaderboard_args! + + """distinct select on columns""" + distinct_on: [leaderboard_entries_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: [leaderboard_entries_order_by!] + + """filter the rows returned""" + where: leaderboard_entries_bool_exp + ): leaderboard_entries_aggregate! + """ execute function "get_leaderboard" which returns "leaderboard_entries" """ @@ -79969,6 +82961,60 @@ type subscription_root { where: tournaments_bool_exp ): [tournaments!]! + """ + fetch data from the table: "v_event_player_stats" + """ + v_event_player_stats( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + + """ + fetch aggregated fields from the table: "v_event_player_stats" + """ + v_event_player_stats_aggregate( + """distinct select on columns""" + distinct_on: [v_event_player_stats_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: [v_event_player_stats_order_by!] + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): v_event_player_stats_aggregate! + + """ + fetch data from the table in a streaming manner: "v_event_player_stats" + """ + v_event_player_stats_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_event_player_stats_stream_cursor_input]! + + """filter the rows returned""" + where: v_event_player_stats_bool_exp + ): [v_event_player_stats!]! + """ fetch data from the table: "v_gpu_pool_status" """ @@ -92079,6 +95125,621 @@ input uuid_comparison_exp { _nin: [uuid!] } +""" +columns and relationships of "v_event_player_stats" +""" +type v_event_player_stats { + assists: Int + deaths: Int + + """An object relationship""" + event: events + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + + """An object relationship""" + player: players + player_steam_id: bigint +} + +""" +aggregated selection of "v_event_player_stats" +""" +type v_event_player_stats_aggregate { + aggregate: v_event_player_stats_aggregate_fields + nodes: [v_event_player_stats!]! +} + +input v_event_player_stats_aggregate_bool_exp { + avg: v_event_player_stats_aggregate_bool_exp_avg + corr: v_event_player_stats_aggregate_bool_exp_corr + count: v_event_player_stats_aggregate_bool_exp_count + covar_samp: v_event_player_stats_aggregate_bool_exp_covar_samp + max: v_event_player_stats_aggregate_bool_exp_max + min: v_event_player_stats_aggregate_bool_exp_min + stddev_samp: v_event_player_stats_aggregate_bool_exp_stddev_samp + sum: v_event_player_stats_aggregate_bool_exp_sum + var_samp: v_event_player_stats_aggregate_bool_exp_var_samp +} + +input v_event_player_stats_aggregate_bool_exp_avg { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr { + arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_corr_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_count { + arguments: [v_event_player_stats_select_column!] + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: Int_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp { + arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_covar_samp_arguments { + X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! + Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns! +} + +input v_event_player_stats_aggregate_bool_exp_max { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_min { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_stddev_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_sum { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +input v_event_player_stats_aggregate_bool_exp_var_samp { + arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns! + distinct: Boolean + filter: v_event_player_stats_bool_exp + predicate: float8_comparison_exp! +} + +""" +aggregate fields of "v_event_player_stats" +""" +type v_event_player_stats_aggregate_fields { + avg: v_event_player_stats_avg_fields + count(columns: [v_event_player_stats_select_column!], distinct: Boolean): Int! + max: v_event_player_stats_max_fields + min: v_event_player_stats_min_fields + stddev: v_event_player_stats_stddev_fields + stddev_pop: v_event_player_stats_stddev_pop_fields + stddev_samp: v_event_player_stats_stddev_samp_fields + sum: v_event_player_stats_sum_fields + var_pop: v_event_player_stats_var_pop_fields + var_samp: v_event_player_stats_var_samp_fields + variance: v_event_player_stats_variance_fields +} + +""" +order by aggregate values of table "v_event_player_stats" +""" +input v_event_player_stats_aggregate_order_by { + avg: v_event_player_stats_avg_order_by + count: order_by + max: v_event_player_stats_max_order_by + min: v_event_player_stats_min_order_by + stddev: v_event_player_stats_stddev_order_by + stddev_pop: v_event_player_stats_stddev_pop_order_by + stddev_samp: v_event_player_stats_stddev_samp_order_by + sum: v_event_player_stats_sum_order_by + var_pop: v_event_player_stats_var_pop_order_by + var_samp: v_event_player_stats_var_samp_order_by + variance: v_event_player_stats_variance_order_by +} + +""" +input type for inserting array relation for remote table "v_event_player_stats" +""" +input v_event_player_stats_arr_rel_insert_input { + data: [v_event_player_stats_insert_input!]! +} + +"""aggregate avg on columns""" +type v_event_player_stats_avg_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by avg() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_avg_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. +""" +input v_event_player_stats_bool_exp { + _and: [v_event_player_stats_bool_exp!] + _not: v_event_player_stats_bool_exp + _or: [v_event_player_stats_bool_exp!] + assists: Int_comparison_exp + deaths: Int_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + headshot_percentage: float8_comparison_exp + headshots: Int_comparison_exp + kdr: float8_comparison_exp + kills: Int_comparison_exp + matches_played: Int_comparison_exp + player: players_bool_exp + player_steam_id: bigint_comparison_exp +} + +""" +input type for inserting data into table "v_event_player_stats" +""" +input v_event_player_stats_insert_input { + assists: Int + deaths: Int + event: events_obj_rel_insert_input + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player: players_obj_rel_insert_input + player_steam_id: bigint +} + +"""aggregate max on columns""" +type v_event_player_stats_max_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by max() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_max_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate min on columns""" +type v_event_player_stats_min_fields { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by min() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_min_order_by { + assists: order_by + deaths: order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""Ordering options when selecting data from "v_event_player_stats".""" +input v_event_player_stats_order_by { + assists: order_by + deaths: order_by + event: events_order_by + event_id: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player: players_order_by + player_steam_id: order_by +} + +""" +select columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column { + """column name""" + assists + + """column name""" + deaths + + """column name""" + event_id + + """column name""" + headshot_percentage + + """column name""" + headshots + + """column name""" + kdr + + """column name""" + kills + + """column name""" + matches_played + + """column name""" + player_steam_id +} + +""" +select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +""" +select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" +""" +enum v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns { + """column name""" + headshot_percentage + + """column name""" + kdr +} + +"""aggregate stddev on columns""" +type v_event_player_stats_stddev_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type v_event_player_stats_stddev_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type v_event_player_stats_stddev_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_stddev_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +""" +Streaming cursor of the table "v_event_player_stats" +""" +input v_event_player_stats_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_event_player_stats_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_event_player_stats_stream_cursor_value_input { + assists: Int + deaths: Int + event_id: uuid + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +"""aggregate sum on columns""" +type v_event_player_stats_sum_fields { + assists: Int + deaths: Int + headshot_percentage: float8 + headshots: Int + kdr: float8 + kills: Int + matches_played: Int + player_steam_id: bigint +} + +""" +order by sum() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_sum_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_pop on columns""" +type v_event_player_stats_var_pop_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_pop() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_pop_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type v_event_player_stats_var_samp_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by var_samp() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_var_samp_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + +"""aggregate variance on columns""" +type v_event_player_stats_variance_fields { + assists: Float + deaths: Float + headshot_percentage: Float + headshots: Float + kdr: Float + kills: Float + matches_played: Float + player_steam_id: Float +} + +""" +order by variance() on columns of table "v_event_player_stats" +""" +input v_event_player_stats_variance_order_by { + assists: order_by + deaths: order_by + headshot_percentage: order_by + headshots: order_by + kdr: order_by + kills: order_by + matches_played: order_by + player_steam_id: order_by +} + """ columns and relationships of "v_gpu_pool_status" """ diff --git a/generated/schema.ts b/generated/schema.ts index 118e445a..c001dd54 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -2380,6 +2380,71 @@ export type e_draft_game_status_select_column = 'description' | 'value' export type e_draft_game_status_update_column = 'description' | 'value' +/** columns and relationships of "e_event_status" */ +export interface e_event_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_status' +} + + +/** aggregated selection of "e_event_status" */ +export interface e_event_status_aggregate { + aggregate: (e_event_status_aggregate_fields | null) + nodes: e_event_status[] + __typename: 'e_event_status_aggregate' +} + + +/** aggregate fields of "e_event_status" */ +export interface e_event_status_aggregate_fields { + count: Scalars['Int'] + max: (e_event_status_max_fields | null) + min: (e_event_status_min_fields | null) + __typename: 'e_event_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_status" */ +export type e_event_status_constraint = 'e_event_status_pkey' + +export type e_event_status_enum = 'Finished' | 'Live' | 'Setup' + + +/** aggregate max on columns */ +export interface e_event_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_status_min_fields' +} + + +/** response of any mutation on the table "e_event_status" */ +export interface e_event_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_status[] + __typename: 'e_event_status_mutation_response' +} + + +/** select columns of table "e_event_status" */ +export type e_event_status_select_column = 'description' | 'value' + + +/** update columns of table "e_event_status" */ +export type e_event_status_update_column = 'description' | 'value' + + /** columns and relationships of "e_friend_status" */ export interface e_friend_status { description: Scalars['String'] @@ -4585,6 +4650,581 @@ export type e_winning_reasons_select_column = 'description' | 'value' export type e_winning_reasons_update_column = 'description' | 'value' +/** columns and relationships of "event_organizers" */ +export interface event_organizers { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + organizer: players + steam_id: Scalars['bigint'] + __typename: 'event_organizers' +} + + +/** aggregated selection of "event_organizers" */ +export interface event_organizers_aggregate { + aggregate: (event_organizers_aggregate_fields | null) + nodes: event_organizers[] + __typename: 'event_organizers_aggregate' +} + + +/** aggregate fields of "event_organizers" */ +export interface event_organizers_aggregate_fields { + avg: (event_organizers_avg_fields | null) + count: Scalars['Int'] + max: (event_organizers_max_fields | null) + min: (event_organizers_min_fields | null) + stddev: (event_organizers_stddev_fields | null) + stddev_pop: (event_organizers_stddev_pop_fields | null) + stddev_samp: (event_organizers_stddev_samp_fields | null) + sum: (event_organizers_sum_fields | null) + var_pop: (event_organizers_var_pop_fields | null) + var_samp: (event_organizers_var_samp_fields | null) + variance: (event_organizers_variance_fields | null) + __typename: 'event_organizers_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_organizers_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_avg_fields' +} + + +/** unique or primary key constraints on table "event_organizers" */ +export type event_organizers_constraint = 'event_organizers_pkey' + + +/** aggregate max on columns */ +export interface event_organizers_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_max_fields' +} + + +/** aggregate min on columns */ +export interface event_organizers_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_min_fields' +} + + +/** response of any mutation on the table "event_organizers" */ +export interface event_organizers_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_organizers[] + __typename: 'event_organizers_mutation_response' +} + + +/** select columns of table "event_organizers" */ +export type event_organizers_select_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_organizers_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_organizers_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_organizers_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_organizers_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_organizers_sum_fields' +} + + +/** update columns of table "event_organizers" */ +export type event_organizers_update_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_organizers_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_organizers_variance_fields' +} + + +/** columns and relationships of "event_players" */ +export interface event_players { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + __typename: 'event_players' +} + + +/** aggregated selection of "event_players" */ +export interface event_players_aggregate { + aggregate: (event_players_aggregate_fields | null) + nodes: event_players[] + __typename: 'event_players_aggregate' +} + + +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fields { + avg: (event_players_avg_fields | null) + count: Scalars['Int'] + max: (event_players_max_fields | null) + min: (event_players_min_fields | null) + stddev: (event_players_stddev_fields | null) + stddev_pop: (event_players_stddev_pop_fields | null) + stddev_samp: (event_players_stddev_samp_fields | null) + sum: (event_players_sum_fields | null) + var_pop: (event_players_var_pop_fields | null) + var_samp: (event_players_var_samp_fields | null) + variance: (event_players_variance_fields | null) + __typename: 'event_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_avg_fields' +} + + +/** unique or primary key constraints on table "event_players" */ +export type event_players_constraint = 'event_players_pkey' + + +/** aggregate max on columns */ +export interface event_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_max_fields' +} + + +/** aggregate min on columns */ +export interface event_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_min_fields' +} + + +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_players[] + __typename: 'event_players_mutation_response' +} + + +/** select columns of table "event_players" */ +export type event_players_select_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_players_sum_fields' +} + + +/** update columns of table "event_players" */ +export type event_players_update_column = 'created_at' | 'event_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_players_variance_fields' +} + + +/** columns and relationships of "event_teams" */ +export interface event_teams { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + team: teams + team_id: Scalars['uuid'] + __typename: 'event_teams' +} + + +/** aggregated selection of "event_teams" */ +export interface event_teams_aggregate { + aggregate: (event_teams_aggregate_fields | null) + nodes: event_teams[] + __typename: 'event_teams_aggregate' +} + + +/** aggregate fields of "event_teams" */ +export interface event_teams_aggregate_fields { + count: Scalars['Int'] + max: (event_teams_max_fields | null) + min: (event_teams_min_fields | null) + __typename: 'event_teams_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_teams" */ +export type event_teams_constraint = 'event_teams_pkey' + + +/** aggregate max on columns */ +export interface event_teams_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_max_fields' +} + + +/** aggregate min on columns */ +export interface event_teams_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + team_id: (Scalars['uuid'] | null) + __typename: 'event_teams_min_fields' +} + + +/** response of any mutation on the table "event_teams" */ +export interface event_teams_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_teams[] + __typename: 'event_teams_mutation_response' +} + + +/** select columns of table "event_teams" */ +export type event_teams_select_column = 'created_at' | 'event_id' | 'team_id' + + +/** update columns of table "event_teams" */ +export type event_teams_update_column = 'created_at' | 'event_id' | 'team_id' + + +/** columns and relationships of "event_tournaments" */ +export interface event_tournaments { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + tournament: tournaments + tournament_id: Scalars['uuid'] + __typename: 'event_tournaments' +} + + +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregate { + aggregate: (event_tournaments_aggregate_fields | null) + nodes: event_tournaments[] + __typename: 'event_tournaments_aggregate' +} + + +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fields { + count: Scalars['Int'] + max: (event_tournaments_max_fields | null) + min: (event_tournaments_min_fields | null) + __typename: 'event_tournaments_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_tournaments" */ +export type event_tournaments_constraint = 'event_tournaments_pkey' + + +/** aggregate max on columns */ +export interface event_tournaments_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_max_fields' +} + + +/** aggregate min on columns */ +export interface event_tournaments_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + tournament_id: (Scalars['uuid'] | null) + __typename: 'event_tournaments_min_fields' +} + + +/** response of any mutation on the table "event_tournaments" */ +export interface event_tournaments_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_tournaments[] + __typename: 'event_tournaments_mutation_response' +} + + +/** select columns of table "event_tournaments" */ +export type event_tournaments_select_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** update columns of table "event_tournaments" */ +export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tournament_id' + + +/** columns and relationships of "events" */ +export interface events { + created_at: Scalars['timestamptz'] + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: Scalars['uuid'] + /** A computed field, executes function "is_event_organizer" */ + is_organizer: (Scalars['Boolean'] | null) + name: Scalars['String'] + /** An object relationship */ + organizer: players + organizer_steam_id: Scalars['bigint'] + /** An array relationship */ + organizers: event_organizers[] + /** An aggregate relationship */ + organizers_aggregate: event_organizers_aggregate + /** An array relationship */ + player_stats: v_event_player_stats[] + /** An aggregate relationship */ + player_stats_aggregate: v_event_player_stats_aggregate + /** An array relationship */ + players: event_players[] + /** An aggregate relationship */ + players_aggregate: event_players_aggregate + starts_at: (Scalars['timestamptz'] | null) + status: e_event_status_enum + /** An array relationship */ + teams: event_teams[] + /** An aggregate relationship */ + teams_aggregate: event_teams_aggregate + /** An array relationship */ + tournaments: event_tournaments[] + /** An aggregate relationship */ + tournaments_aggregate: event_tournaments_aggregate + __typename: 'events' +} + + +/** aggregated selection of "events" */ +export interface events_aggregate { + aggregate: (events_aggregate_fields | null) + nodes: events[] + __typename: 'events_aggregate' +} + + +/** aggregate fields of "events" */ +export interface events_aggregate_fields { + avg: (events_avg_fields | null) + count: Scalars['Int'] + max: (events_max_fields | null) + min: (events_min_fields | null) + stddev: (events_stddev_fields | null) + stddev_pop: (events_stddev_pop_fields | null) + stddev_samp: (events_stddev_samp_fields | null) + sum: (events_sum_fields | null) + var_pop: (events_var_pop_fields | null) + var_samp: (events_var_samp_fields | null) + variance: (events_variance_fields | null) + __typename: 'events_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface events_avg_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_avg_fields' +} + + +/** unique or primary key constraints on table "events" */ +export type events_constraint = 'events_pkey' + + +/** aggregate max on columns */ +export interface events_max_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_max_fields' +} + + +/** aggregate min on columns */ +export interface events_min_fields { + created_at: (Scalars['timestamptz'] | null) + description: (Scalars['String'] | null) + ends_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + name: (Scalars['String'] | null) + organizer_steam_id: (Scalars['bigint'] | null) + starts_at: (Scalars['timestamptz'] | null) + __typename: 'events_min_fields' +} + + +/** response of any mutation on the table "events" */ +export interface events_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: events[] + __typename: 'events_mutation_response' +} + + +/** select columns of table "events" */ +export type events_select_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'name' | 'organizer_steam_id' | 'starts_at' | 'status' + + +/** aggregate stddev on columns */ +export interface events_stddev_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface events_stddev_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface events_stddev_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface events_sum_fields { + organizer_steam_id: (Scalars['bigint'] | null) + __typename: 'events_sum_fields' +} + + +/** update columns of table "events" */ +export type events_update_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'name' | 'organizer_steam_id' | 'starts_at' | 'status' + + +/** aggregate var_pop on columns */ +export interface events_var_pop_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface events_var_samp_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface events_variance_fields { + organizer_steam_id: (Scalars['Float'] | null) + __typename: 'events_variance_fields' +} + + /** columns and relationships of "friends" */ export interface friends { /** An object relationship */ @@ -10243,6 +10883,10 @@ export interface mutation_root { delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** delete data from the table: "e_event_status" */ + delete_e_event_status: (e_event_status_mutation_response | null) + /** delete single row from the table: "e_event_status" */ + delete_e_event_status_by_pk: (e_event_status | null) /** delete data from the table: "e_friend_status" */ delete_e_friend_status: (e_friend_status_mutation_response | null) /** delete single row from the table: "e_friend_status" */ @@ -10375,6 +11019,26 @@ export interface mutation_root { delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** delete data from the table: "event_organizers" */ + delete_event_organizers: (event_organizers_mutation_response | null) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk: (event_organizers | null) + /** delete data from the table: "event_players" */ + delete_event_players: (event_players_mutation_response | null) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk: (event_players | null) + /** delete data from the table: "event_teams" */ + delete_event_teams: (event_teams_mutation_response | null) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk: (event_teams | null) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments: (event_tournaments_mutation_response | null) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk: (event_tournaments | null) + /** delete data from the table: "events" */ + delete_events: (events_mutation_response | null) + /** delete single row from the table: "events" */ + delete_events_by_pk: (events | null) /** delete data from the table: "friends" */ delete_friends: (friends_mutation_response | null) /** delete single row from the table: "friends" */ @@ -10786,6 +11450,10 @@ export interface mutation_root { insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** insert a single row into the table: "e_draft_game_status" */ insert_e_draft_game_status_one: (e_draft_game_status | null) + /** insert data into the table: "e_event_status" */ + insert_e_event_status: (e_event_status_mutation_response | null) + /** insert a single row into the table: "e_event_status" */ + insert_e_event_status_one: (e_event_status | null) /** insert data into the table: "e_friend_status" */ insert_e_friend_status: (e_friend_status_mutation_response | null) /** insert a single row into the table: "e_friend_status" */ @@ -10918,6 +11586,26 @@ export interface mutation_root { insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** insert a single row into the table: "e_winning_reasons" */ insert_e_winning_reasons_one: (e_winning_reasons | null) + /** insert data into the table: "event_organizers" */ + insert_event_organizers: (event_organizers_mutation_response | null) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one: (event_organizers | null) + /** insert data into the table: "event_players" */ + insert_event_players: (event_players_mutation_response | null) + /** insert a single row into the table: "event_players" */ + insert_event_players_one: (event_players | null) + /** insert data into the table: "event_teams" */ + insert_event_teams: (event_teams_mutation_response | null) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one: (event_teams | null) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments: (event_tournaments_mutation_response | null) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one: (event_tournaments | null) + /** insert data into the table: "events" */ + insert_events: (events_mutation_response | null) + /** insert a single row into the table: "events" */ + insert_events_one: (events | null) /** insert data into the table: "friends" */ insert_friends: (friends_mutation_response | null) /** insert a single row into the table: "friends" */ @@ -11493,6 +12181,12 @@ export interface mutation_root { update_e_draft_game_status_by_pk: (e_draft_game_status | null) /** update multiples rows of table: "e_draft_game_status" */ update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) + /** update data of the table: "e_event_status" */ + update_e_event_status: (e_event_status_mutation_response | null) + /** update single row of the table: "e_event_status" */ + update_e_event_status_by_pk: (e_event_status | null) + /** update multiples rows of table: "e_event_status" */ + update_e_event_status_many: ((e_event_status_mutation_response | null)[] | null) /** update data of the table: "e_friend_status" */ update_e_friend_status: (e_friend_status_mutation_response | null) /** update single row of the table: "e_friend_status" */ @@ -11691,6 +12385,36 @@ export interface mutation_root { update_e_winning_reasons_by_pk: (e_winning_reasons | null) /** update multiples rows of table: "e_winning_reasons" */ update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) + /** update data of the table: "event_organizers" */ + update_event_organizers: (event_organizers_mutation_response | null) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk: (event_organizers | null) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many: ((event_organizers_mutation_response | null)[] | null) + /** update data of the table: "event_players" */ + update_event_players: (event_players_mutation_response | null) + /** update single row of the table: "event_players" */ + update_event_players_by_pk: (event_players | null) + /** update multiples rows of table: "event_players" */ + update_event_players_many: ((event_players_mutation_response | null)[] | null) + /** update data of the table: "event_teams" */ + update_event_teams: (event_teams_mutation_response | null) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk: (event_teams | null) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many: ((event_teams_mutation_response | null)[] | null) + /** update data of the table: "event_tournaments" */ + update_event_tournaments: (event_tournaments_mutation_response | null) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk: (event_tournaments | null) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many: ((event_tournaments_mutation_response | null)[] | null) + /** update data of the table: "events" */ + update_events: (events_mutation_response | null) + /** update single row of the table: "events" */ + update_events_by_pk: (events | null) + /** update multiples rows of table: "events" */ + update_events_many: ((events_mutation_response | null)[] | null) /** update data of the table: "friends" */ update_friends: (friends_mutation_response | null) /** update single row of the table: "friends" */ @@ -20436,6 +21160,12 @@ export interface query_root { e_draft_game_status_aggregate: e_draft_game_status_aggregate /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table: "e_event_status" */ + e_event_status: e_event_status[] + /** fetch aggregated fields from the table: "e_event_status" */ + e_event_status_aggregate: e_event_status_aggregate + /** fetch data from the table: "e_event_status" using primary key columns */ + e_event_status_by_pk: (e_event_status | null) /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -20634,6 +21364,36 @@ export interface query_root { e_winning_reasons_aggregate: e_winning_reasons_aggregate /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) /** fetch data from the table: "friends" */ friends: friends[] /** fetch aggregated fields from the table: "friends" */ @@ -20692,6 +21452,10 @@ export interface query_root { getTableStats: (TableStat | null)[] /** Get TimescaleDB statistics */ getTimescaleStats: TimescaleStats + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard: leaderboard_entries[] /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ @@ -21225,6 +21989,10 @@ export interface query_root { tournaments_aggregate: tournaments_aggregate /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk: (tournaments | null) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status: v_gpu_pool_status[] /** fetch aggregated fields from the table: "v_gpu_pool_status" */ @@ -22331,6 +23099,14 @@ export interface subscription_root { e_draft_game_status_by_pk: (e_draft_game_status | null) /** fetch data from the table in a streaming manner: "e_draft_game_status" */ e_draft_game_status_stream: e_draft_game_status[] + /** fetch data from the table: "e_event_status" */ + e_event_status: e_event_status[] + /** fetch aggregated fields from the table: "e_event_status" */ + e_event_status_aggregate: e_event_status_aggregate + /** fetch data from the table: "e_event_status" using primary key columns */ + e_event_status_by_pk: (e_event_status | null) + /** fetch data from the table in a streaming manner: "e_event_status" */ + e_event_status_stream: e_event_status[] /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -22595,6 +23371,46 @@ export interface subscription_root { e_winning_reasons_by_pk: (e_winning_reasons | null) /** fetch data from the table in a streaming manner: "e_winning_reasons" */ e_winning_reasons_stream: e_winning_reasons[] + /** fetch data from the table: "event_organizers" */ + event_organizers: event_organizers[] + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate: event_organizers_aggregate + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk: (event_organizers | null) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream: event_organizers[] + /** fetch data from the table: "event_players" */ + event_players: event_players[] + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate: event_players_aggregate + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk: (event_players | null) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream: event_players[] + /** fetch data from the table: "event_teams" */ + event_teams: event_teams[] + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate: event_teams_aggregate + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk: (event_teams | null) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream: event_teams[] + /** fetch data from the table: "event_tournaments" */ + event_tournaments: event_tournaments[] + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate: event_tournaments_aggregate + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk: (event_tournaments | null) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream: event_tournaments[] + /** fetch data from the table: "events" */ + events: events[] + /** fetch aggregated fields from the table: "events" */ + events_aggregate: events_aggregate + /** fetch data from the table: "events" using primary key columns */ + events_by_pk: (events | null) + /** fetch data from the table in a streaming manner: "events" */ + events_stream: events[] /** fetch data from the table: "friends" */ friends: friends[] /** fetch aggregated fields from the table: "friends" */ @@ -22627,6 +23443,10 @@ export interface subscription_root { gamedata_signature_validations_by_pk: (gamedata_signature_validations | null) /** fetch data from the table in a streaming manner: "gamedata_signature_validations" */ gamedata_signature_validations_stream: gamedata_signature_validations[] + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard: leaderboard_entries[] + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate: leaderboard_entries_aggregate /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard: leaderboard_entries[] /** execute function "get_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ @@ -23319,6 +24139,12 @@ export interface subscription_root { tournaments_by_pk: (tournaments | null) /** fetch data from the table in a streaming manner: "tournaments" */ tournaments_stream: tournaments[] + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats: v_event_player_stats[] + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate: v_event_player_stats_aggregate + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream: v_event_player_stats[] /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status: v_gpu_pool_status[] /** fetch aggregated fields from the table: "v_gpu_pool_status" */ @@ -26849,6 +27675,228 @@ export interface tournaments_variance_fields { } +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_stats { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + /** An object relationship */ + player: (players | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats' +} + + +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate { + aggregate: (v_event_player_stats_aggregate_fields | null) + nodes: v_event_player_stats[] + __typename: 'v_event_player_stats_aggregate' +} + + +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fields { + avg: (v_event_player_stats_avg_fields | null) + count: Scalars['Int'] + max: (v_event_player_stats_max_fields | null) + min: (v_event_player_stats_min_fields | null) + stddev: (v_event_player_stats_stddev_fields | null) + stddev_pop: (v_event_player_stats_stddev_pop_fields | null) + stddev_samp: (v_event_player_stats_stddev_samp_fields | null) + sum: (v_event_player_stats_sum_fields | null) + var_pop: (v_event_player_stats_var_pop_fields | null) + var_samp: (v_event_player_stats_var_samp_fields | null) + variance: (v_event_player_stats_variance_fields | null) + __typename: 'v_event_player_stats_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface v_event_player_stats_avg_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_avg_fields' +} + + +/** aggregate max on columns */ +export interface v_event_player_stats_max_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_max_fields' +} + + +/** aggregate min on columns */ +export interface v_event_player_stats_min_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + event_id: (Scalars['uuid'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_min_fields' +} + + +/** select columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column = 'assists' | 'deaths' | 'event_id' | 'headshot_percentage' | 'headshots' | 'kdr' | 'kills' | 'matches_played' | 'player_steam_id' + + +/** select "v_event_player_stats_aggregate_bool_exp_avg_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_corr_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_max_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_min_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_sum_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** select "v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns" columns of table "v_event_player_stats" */ +export type v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns = 'headshot_percentage' | 'kdr' + + +/** aggregate stddev on columns */ +export interface v_event_player_stats_stddev_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface v_event_player_stats_stddev_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface v_event_player_stats_stddev_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface v_event_player_stats_sum_fields { + assists: (Scalars['Int'] | null) + deaths: (Scalars['Int'] | null) + headshot_percentage: (Scalars['float8'] | null) + headshots: (Scalars['Int'] | null) + kdr: (Scalars['float8'] | null) + kills: (Scalars['Int'] | null) + matches_played: (Scalars['Int'] | null) + player_steam_id: (Scalars['bigint'] | null) + __typename: 'v_event_player_stats_sum_fields' +} + + +/** aggregate var_pop on columns */ +export interface v_event_player_stats_var_pop_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface v_event_player_stats_var_samp_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface v_event_player_stats_variance_fields { + assists: (Scalars['Float'] | null) + deaths: (Scalars['Float'] | null) + headshot_percentage: (Scalars['Float'] | null) + headshots: (Scalars['Float'] | null) + kdr: (Scalars['Float'] | null) + kills: (Scalars['Float'] | null) + matches_played: (Scalars['Float'] | null) + player_steam_id: (Scalars['Float'] | null) + __typename: 'v_event_player_stats_variance_fields' +} + + /** columns and relationships of "v_gpu_pool_status" */ export interface v_gpu_pool_status { demo_free_gpu_nodes: (Scalars['Int'] | null) @@ -36073,6 +37121,109 @@ _set?: (e_draft_game_status_set_input | null), where: e_draft_game_status_bool_exp} +/** columns and relationships of "e_event_status" */ +export interface e_event_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_event_status" */ +export interface e_event_status_aggregateGenqlSelection{ + aggregate?: e_event_status_aggregate_fieldsGenqlSelection + nodes?: e_event_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_event_status" */ +export interface e_event_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_status_max_fieldsGenqlSelection + min?: e_event_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_event_status". All fields are combined with a logical 'AND'. */ +export interface e_event_status_bool_exp {_and?: (e_event_status_bool_exp[] | null),_not?: (e_event_status_bool_exp | null),_or?: (e_event_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_event_status_enum". All fields are combined with logical 'AND'. */ +export interface e_event_status_enum_comparison_exp {_eq?: (e_event_status_enum | null),_in?: (e_event_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_status_enum | null),_nin?: (e_event_status_enum[] | null)} + + +/** input type for inserting data into table "e_event_status" */ +export interface e_event_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_event_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_event_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_event_status" */ +export interface e_event_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_event_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_event_status" */ +export interface e_event_status_on_conflict {constraint: e_event_status_constraint,update_columns?: e_event_status_update_column[],where?: (e_event_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_event_status". */ +export interface e_event_status_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_event_status */ +export interface e_event_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_event_status" */ +export interface e_event_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_event_status" */ +export interface e_event_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_event_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_event_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_event_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_event_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_event_status_bool_exp} + + /** columns and relationships of "e_friend_status" */ export interface e_friend_statusGenqlSelection{ description?: boolean | number @@ -39922,6 +41073,1061 @@ _set?: (e_winning_reasons_set_input | null), where: e_winning_reasons_bool_exp} +/** columns and relationships of "event_organizers" */ +export interface event_organizersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + organizer?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_organizers" */ +export interface event_organizers_aggregateGenqlSelection{ + aggregate?: event_organizers_aggregate_fieldsGenqlSelection + nodes?: event_organizersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_organizers_aggregate_bool_exp {count?: (event_organizers_aggregate_bool_exp_count | null)} + +export interface event_organizers_aggregate_bool_exp_count {arguments?: (event_organizers_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_organizers_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_organizers" */ +export interface event_organizers_aggregate_fieldsGenqlSelection{ + avg?: event_organizers_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_organizers_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_organizers_max_fieldsGenqlSelection + min?: event_organizers_min_fieldsGenqlSelection + stddev?: event_organizers_stddev_fieldsGenqlSelection + stddev_pop?: event_organizers_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_organizers_stddev_samp_fieldsGenqlSelection + sum?: event_organizers_sum_fieldsGenqlSelection + var_pop?: event_organizers_var_pop_fieldsGenqlSelection + var_samp?: event_organizers_var_samp_fieldsGenqlSelection + variance?: event_organizers_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_organizers" */ +export interface event_organizers_aggregate_order_by {avg?: (event_organizers_avg_order_by | null),count?: (order_by | null),max?: (event_organizers_max_order_by | null),min?: (event_organizers_min_order_by | null),stddev?: (event_organizers_stddev_order_by | null),stddev_pop?: (event_organizers_stddev_pop_order_by | null),stddev_samp?: (event_organizers_stddev_samp_order_by | null),sum?: (event_organizers_sum_order_by | null),var_pop?: (event_organizers_var_pop_order_by | null),var_samp?: (event_organizers_var_samp_order_by | null),variance?: (event_organizers_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "event_organizers" */ +export interface event_organizers_arr_rel_insert_input {data: event_organizers_insert_input[], +/** upsert condition */ +on_conflict?: (event_organizers_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface event_organizers_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "event_organizers" */ +export interface event_organizers_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "event_organizers". All fields are combined with a logical 'AND'. */ +export interface event_organizers_bool_exp {_and?: (event_organizers_bool_exp[] | null),_not?: (event_organizers_bool_exp | null),_or?: (event_organizers_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),organizer?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "event_organizers" */ +export interface event_organizers_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_organizers" */ +export interface event_organizers_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),organizer?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface event_organizers_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_organizers" */ +export interface event_organizers_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_organizers_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_organizers" */ +export interface event_organizers_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_organizers" */ +export interface event_organizers_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_organizersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_organizers" */ +export interface event_organizers_on_conflict {constraint: event_organizers_constraint,update_columns?: event_organizers_update_column[],where?: (event_organizers_bool_exp | null)} + + +/** Ordering options when selecting data from "event_organizers". */ +export interface event_organizers_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),organizer?: (players_order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: event_organizers */ +export interface event_organizers_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "event_organizers" */ +export interface event_organizers_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_organizers_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_organizers" */ +export interface event_organizers_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_organizers_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_organizers" */ +export interface event_organizers_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_organizers_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_organizers" */ +export interface event_organizers_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "event_organizers" */ +export interface event_organizers_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_organizers_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_organizers_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_organizers_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_organizers" */ +export interface event_organizers_sum_order_by {steam_id?: (order_by | null)} + +export interface event_organizers_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_organizers_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_organizers_set_input | null), +/** filter the rows which have to be updated */ +where: event_organizers_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_organizers_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_organizers" */ +export interface event_organizers_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_organizers_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "event_organizers" */ +export interface event_organizers_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_organizers_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "event_organizers" */ +export interface event_organizers_variance_order_by {steam_id?: (order_by | null)} + + +/** columns and relationships of "event_players" */ +export interface event_playersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_players" */ +export interface event_players_aggregateGenqlSelection{ + aggregate?: event_players_aggregate_fieldsGenqlSelection + nodes?: event_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_players_aggregate_bool_exp {count?: (event_players_aggregate_bool_exp_count | null)} + +export interface event_players_aggregate_bool_exp_count {arguments?: (event_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_players" */ +export interface event_players_aggregate_fieldsGenqlSelection{ + avg?: event_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_players_max_fieldsGenqlSelection + min?: event_players_min_fieldsGenqlSelection + stddev?: event_players_stddev_fieldsGenqlSelection + stddev_pop?: event_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_players_stddev_samp_fieldsGenqlSelection + sum?: event_players_sum_fieldsGenqlSelection + var_pop?: event_players_var_pop_fieldsGenqlSelection + var_samp?: event_players_var_samp_fieldsGenqlSelection + variance?: event_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_players" */ +export interface event_players_aggregate_order_by {avg?: (event_players_avg_order_by | null),count?: (order_by | null),max?: (event_players_max_order_by | null),min?: (event_players_min_order_by | null),stddev?: (event_players_stddev_order_by | null),stddev_pop?: (event_players_stddev_pop_order_by | null),stddev_samp?: (event_players_stddev_samp_order_by | null),sum?: (event_players_sum_order_by | null),var_pop?: (event_players_var_pop_order_by | null),var_samp?: (event_players_var_samp_order_by | null),variance?: (event_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "event_players" */ +export interface event_players_arr_rel_insert_input {data: event_players_insert_input[], +/** upsert condition */ +on_conflict?: (event_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface event_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "event_players" */ +export interface event_players_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "event_players". All fields are combined with a logical 'AND'. */ +export interface event_players_bool_exp {_and?: (event_players_bool_exp[] | null),_not?: (event_players_bool_exp | null),_or?: (event_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "event_players" */ +export interface event_players_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_players" */ +export interface event_players_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface event_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_players" */ +export interface event_players_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_players" */ +export interface event_players_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_players" */ +export interface event_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_players" */ +export interface event_players_on_conflict {constraint: event_players_constraint,update_columns?: event_players_update_column[],where?: (event_players_bool_exp | null)} + + +/** Ordering options when selecting data from "event_players". */ +export interface event_players_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: event_players */ +export interface event_players_pk_columns_input {event_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "event_players" */ +export interface event_players_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_players" */ +export interface event_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_players" */ +export interface event_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_players" */ +export interface event_players_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "event_players" */ +export interface event_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_players" */ +export interface event_players_sum_order_by {steam_id?: (order_by | null)} + +export interface event_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_players_set_input | null), +/** filter the rows which have to be updated */ +where: event_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_players" */ +export interface event_players_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "event_players" */ +export interface event_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "event_players" */ +export interface event_players_variance_order_by {steam_id?: (order_by | null)} + + +/** columns and relationships of "event_teams" */ +export interface event_teamsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + team?: teamsGenqlSelection + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_teams" */ +export interface event_teams_aggregateGenqlSelection{ + aggregate?: event_teams_aggregate_fieldsGenqlSelection + nodes?: event_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_teams_aggregate_bool_exp {count?: (event_teams_aggregate_bool_exp_count | null)} + +export interface event_teams_aggregate_bool_exp_count {arguments?: (event_teams_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_teams_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_teams" */ +export interface event_teams_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_teams_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_teams_max_fieldsGenqlSelection + min?: event_teams_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_teams" */ +export interface event_teams_aggregate_order_by {count?: (order_by | null),max?: (event_teams_max_order_by | null),min?: (event_teams_min_order_by | null)} + + +/** input type for inserting array relation for remote table "event_teams" */ +export interface event_teams_arr_rel_insert_input {data: event_teams_insert_input[], +/** upsert condition */ +on_conflict?: (event_teams_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "event_teams". All fields are combined with a logical 'AND'. */ +export interface event_teams_bool_exp {_and?: (event_teams_bool_exp[] | null),_not?: (event_teams_bool_exp | null),_or?: (event_teams_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),team?: (teams_bool_exp | null),team_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "event_teams" */ +export interface event_teams_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),team?: (teams_obj_rel_insert_input | null),team_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface event_teams_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_teams" */ +export interface event_teams_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_teams_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + team_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_teams" */ +export interface event_teams_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),team_id?: (order_by | null)} + + +/** response of any mutation on the table "event_teams" */ +export interface event_teams_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_teamsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_teams" */ +export interface event_teams_on_conflict {constraint: event_teams_constraint,update_columns?: event_teams_update_column[],where?: (event_teams_bool_exp | null)} + + +/** Ordering options when selecting data from "event_teams". */ +export interface event_teams_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),team?: (teams_order_by | null),team_id?: (order_by | null)} + + +/** primary key columns input for table: event_teams */ +export interface event_teams_pk_columns_input {event_id: Scalars['uuid'],team_id: Scalars['uuid']} + + +/** input type for updating data in table "event_teams" */ +export interface event_teams_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "event_teams" */ +export interface event_teams_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_teams_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_teams_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),team_id?: (Scalars['uuid'] | null)} + +export interface event_teams_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (event_teams_set_input | null), +/** filter the rows which have to be updated */ +where: event_teams_bool_exp} + + +/** columns and relationships of "event_tournaments" */ +export interface event_tournamentsGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + tournament?: tournamentsGenqlSelection + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_tournaments" */ +export interface event_tournaments_aggregateGenqlSelection{ + aggregate?: event_tournaments_aggregate_fieldsGenqlSelection + nodes?: event_tournamentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_tournaments_aggregate_bool_exp {count?: (event_tournaments_aggregate_bool_exp_count | null)} + +export interface event_tournaments_aggregate_bool_exp_count {arguments?: (event_tournaments_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_tournaments_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_tournaments" */ +export interface event_tournaments_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_tournaments_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_tournaments_max_fieldsGenqlSelection + min?: event_tournaments_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_tournaments" */ +export interface event_tournaments_aggregate_order_by {count?: (order_by | null),max?: (event_tournaments_max_order_by | null),min?: (event_tournaments_min_order_by | null)} + + +/** input type for inserting array relation for remote table "event_tournaments" */ +export interface event_tournaments_arr_rel_insert_input {data: event_tournaments_insert_input[], +/** upsert condition */ +on_conflict?: (event_tournaments_on_conflict | null)} + + +/** Boolean expression to filter rows from the table "event_tournaments". All fields are combined with a logical 'AND'. */ +export interface event_tournaments_bool_exp {_and?: (event_tournaments_bool_exp[] | null),_not?: (event_tournaments_bool_exp | null),_or?: (event_tournaments_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),tournament?: (tournaments_bool_exp | null),tournament_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "event_tournaments" */ +export interface event_tournaments_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),tournament?: (tournaments_obj_rel_insert_input | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface event_tournaments_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_tournaments" */ +export interface event_tournaments_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_tournaments_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + tournament_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_tournaments" */ +export interface event_tournaments_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),tournament_id?: (order_by | null)} + + +/** response of any mutation on the table "event_tournaments" */ +export interface event_tournaments_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_tournamentsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_tournaments" */ +export interface event_tournaments_on_conflict {constraint: event_tournaments_constraint,update_columns?: event_tournaments_update_column[],where?: (event_tournaments_bool_exp | null)} + + +/** Ordering options when selecting data from "event_tournaments". */ +export interface event_tournaments_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),tournament?: (tournaments_order_by | null),tournament_id?: (order_by | null)} + + +/** primary key columns input for table: event_tournaments */ +export interface event_tournaments_pk_columns_input {event_id: Scalars['uuid'],tournament_id: Scalars['uuid']} + + +/** input type for updating data in table "event_tournaments" */ +export interface event_tournaments_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "event_tournaments" */ +export interface event_tournaments_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_tournaments_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_tournaments_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),tournament_id?: (Scalars['uuid'] | null)} + +export interface event_tournaments_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (event_tournaments_set_input | null), +/** filter the rows which have to be updated */ +where: event_tournaments_bool_exp} + + +/** columns and relationships of "events" */ +export interface eventsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + /** A computed field, executes function "is_event_organizer" */ + is_organizer?: boolean | number + name?: boolean | number + /** An object relationship */ + organizer?: playersGenqlSelection + organizer_steam_id?: boolean | number + /** An array relationship */ + organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** An aggregate relationship */ + organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** An array relationship */ + player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** An aggregate relationship */ + player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** An array relationship */ + players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + starts_at?: boolean | number + status?: boolean | number + /** An array relationship */ + teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** An aggregate relationship */ + teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** An array relationship */ + tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** An aggregate relationship */ + tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "events" */ +export interface events_aggregateGenqlSelection{ + aggregate?: events_aggregate_fieldsGenqlSelection + nodes?: eventsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "events" */ +export interface events_aggregate_fieldsGenqlSelection{ + avg?: events_avg_fieldsGenqlSelection + count?: { __args: {columns?: (events_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: events_max_fieldsGenqlSelection + min?: events_min_fieldsGenqlSelection + stddev?: events_stddev_fieldsGenqlSelection + stddev_pop?: events_stddev_pop_fieldsGenqlSelection + stddev_samp?: events_stddev_samp_fieldsGenqlSelection + sum?: events_sum_fieldsGenqlSelection + var_pop?: events_var_pop_fieldsGenqlSelection + var_samp?: events_var_samp_fieldsGenqlSelection + variance?: events_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface events_avg_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ +export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_event_status_enum_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null)} + + +/** input type for incrementing numeric columns in table "events" */ +export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "events" */ +export interface events_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null)} + + +/** aggregate max on columns */ +export interface events_max_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface events_min_fieldsGenqlSelection{ + created_at?: boolean | number + description?: boolean | number + ends_at?: boolean | number + id?: boolean | number + name?: boolean | number + organizer_steam_id?: boolean | number + starts_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "events" */ +export interface events_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: eventsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "events" */ +export interface events_obj_rel_insert_input {data: events_insert_input, +/** upsert condition */ +on_conflict?: (events_on_conflict | null)} + + +/** on_conflict condition type for table "events" */ +export interface events_on_conflict {constraint: events_constraint,update_columns?: events_update_column[],where?: (events_bool_exp | null)} + + +/** Ordering options when selecting data from "events". */ +export interface events_order_by {created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null)} + + +/** primary key columns input for table: events */ +export interface events_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "events" */ +export interface events_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null)} + + +/** aggregate stddev on columns */ +export interface events_stddev_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface events_stddev_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface events_stddev_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "events" */ +export interface events_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: events_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface events_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null)} + + +/** aggregate sum on columns */ +export interface events_sum_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface events_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (events_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (events_set_input | null), +/** filter the rows which have to be updated */ +where: events_bool_exp} + + +/** aggregate var_pop on columns */ +export interface events_var_pop_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface events_var_samp_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface events_variance_fieldsGenqlSelection{ + organizer_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */ export interface float8_comparison_exp {_eq?: (Scalars['float8'] | null),_gt?: (Scalars['float8'] | null),_gte?: (Scalars['float8'] | null),_in?: (Scalars['float8'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['float8'] | null),_lte?: (Scalars['float8'] | null),_neq?: (Scalars['float8'] | null),_nin?: (Scalars['float8'][] | null)} @@ -41085,6 +43291,8 @@ export interface gamedata_signature_validations_variance_fieldsGenqlSelection{ __scalar?: boolean | number } +export interface get_event_leaderboard_args {_category?: (Scalars['String'] | null),_event_id?: (Scalars['uuid'] | null),_match_type?: (Scalars['String'] | null),_min_rounds?: (Scalars['Int'] | null)} + export interface get_leaderboard_args {_category?: (Scalars['String'] | null),_exclude_tournaments?: (Scalars['Boolean'] | null),_match_type?: (Scalars['String'] | null),_role?: (Scalars['String'] | null),_season_id?: (Scalars['uuid'] | null),_window_days?: (Scalars['Int'] | null)} export interface get_league_season_leaderboard_args {_category?: (Scalars['String'] | null),_league_season_id?: (Scalars['uuid'] | null),_role?: (Scalars['String'] | null)} @@ -49614,6 +51822,12 @@ export interface mutation_rootGenqlSelection{ where: e_draft_game_status_bool_exp} }) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_status" */ + delete_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_status_bool_exp} }) + /** delete single row from the table: "e_event_status" */ + delete_e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_friend_status" */ delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -49812,6 +52026,36 @@ export interface mutation_rootGenqlSelection{ where: e_winning_reasons_bool_exp} }) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "event_organizers" */ + delete_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_organizers_bool_exp} }) + /** delete single row from the table: "event_organizers" */ + delete_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_players" */ + delete_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_players_bool_exp} }) + /** delete single row from the table: "event_players" */ + delete_event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "event_teams" */ + delete_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_teams_bool_exp} }) + /** delete single row from the table: "event_teams" */ + delete_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** delete data from the table: "event_tournaments" */ + delete_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_tournaments_bool_exp} }) + /** delete single row from the table: "event_tournaments" */ + delete_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** delete data from the table: "events" */ + delete_events?: (events_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: events_bool_exp} }) + /** delete single row from the table: "events" */ + delete_events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "friends" */ delete_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -50517,6 +52761,18 @@ export interface mutation_rootGenqlSelection{ object: e_draft_game_status_insert_input, /** upsert condition */ on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert data into the table: "e_event_status" */ + insert_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_status_on_conflict | null)} }) + /** insert a single row into the table: "e_event_status" */ + insert_e_event_status_one?: (e_event_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_status_insert_input, + /** upsert condition */ + on_conflict?: (e_event_status_on_conflict | null)} }) /** insert data into the table: "e_friend_status" */ insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -50913,6 +53169,66 @@ export interface mutation_rootGenqlSelection{ object: e_winning_reasons_insert_input, /** upsert condition */ on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert data into the table: "event_organizers" */ + insert_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_organizers_insert_input[], + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert a single row into the table: "event_organizers" */ + insert_event_organizers_one?: (event_organizersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_organizers_insert_input, + /** upsert condition */ + on_conflict?: (event_organizers_on_conflict | null)} }) + /** insert data into the table: "event_players" */ + insert_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert a single row into the table: "event_players" */ + insert_event_players_one?: (event_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_players_insert_input, + /** upsert condition */ + on_conflict?: (event_players_on_conflict | null)} }) + /** insert data into the table: "event_teams" */ + insert_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_teams_insert_input[], + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert a single row into the table: "event_teams" */ + insert_event_teams_one?: (event_teamsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_teams_insert_input, + /** upsert condition */ + on_conflict?: (event_teams_on_conflict | null)} }) + /** insert data into the table: "event_tournaments" */ + insert_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_tournaments_insert_input[], + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert a single row into the table: "event_tournaments" */ + insert_event_tournaments_one?: (event_tournamentsGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_tournaments_insert_input, + /** upsert condition */ + on_conflict?: (event_tournaments_on_conflict | null)} }) + /** insert data into the table: "events" */ + insert_events?: (events_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: events_insert_input[], + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) + /** insert a single row into the table: "events" */ + insert_events_one?: (eventsGenqlSelection & { __args: { + /** the row to be inserted */ + object: events_insert_input, + /** upsert condition */ + on_conflict?: (events_on_conflict | null)} }) /** insert data into the table: "friends" */ insert_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -52408,6 +54724,20 @@ export interface mutation_rootGenqlSelection{ update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_draft_game_status_updates[]} }) + /** update data of the table: "e_event_status" */ + update_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_status_bool_exp} }) + /** update single row of the table: "e_event_status" */ + update_e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_status_set_input | null), pk_columns: e_event_status_pk_columns_input} }) + /** update multiples rows of table: "e_event_status" */ + update_e_event_status_many?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_status_updates[]} }) /** update data of the table: "e_friend_status" */ update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -52870,6 +55200,88 @@ export interface mutation_rootGenqlSelection{ update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_winning_reasons_updates[]} }) + /** update data of the table: "event_organizers" */ + update_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), + /** filter the rows which have to be updated */ + where: event_organizers_bool_exp} }) + /** update single row of the table: "event_organizers" */ + update_event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_organizers_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_organizers_set_input | null), pk_columns: event_organizers_pk_columns_input} }) + /** update multiples rows of table: "event_organizers" */ + update_event_organizers_many?: (event_organizers_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_organizers_updates[]} }) + /** update data of the table: "event_players" */ + update_event_players?: (event_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_players_bool_exp} }) + /** update single row of the table: "event_players" */ + update_event_players_by_pk?: (event_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_players_set_input | null), pk_columns: event_players_pk_columns_input} }) + /** update multiples rows of table: "event_players" */ + update_event_players_many?: (event_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_players_updates[]} }) + /** update data of the table: "event_teams" */ + update_event_teams?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), + /** filter the rows which have to be updated */ + where: event_teams_bool_exp} }) + /** update single row of the table: "event_teams" */ + update_event_teams_by_pk?: (event_teamsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_teams_set_input | null), pk_columns: event_teams_pk_columns_input} }) + /** update multiples rows of table: "event_teams" */ + update_event_teams_many?: (event_teams_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_teams_updates[]} }) + /** update data of the table: "event_tournaments" */ + update_event_tournaments?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), + /** filter the rows which have to be updated */ + where: event_tournaments_bool_exp} }) + /** update single row of the table: "event_tournaments" */ + update_event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_tournaments_set_input | null), pk_columns: event_tournaments_pk_columns_input} }) + /** update multiples rows of table: "event_tournaments" */ + update_event_tournaments_many?: (event_tournaments_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_tournaments_updates[]} }) + /** update data of the table: "events" */ + update_events?: (events_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), + /** filter the rows which have to be updated */ + where: events_bool_exp} }) + /** update single row of the table: "events" */ + update_events_by_pk?: (eventsGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (events_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (events_set_input | null), pk_columns: events_pk_columns_input} }) + /** update multiples rows of table: "events" */ + update_events_many?: (events_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: events_updates[]} }) /** update data of the table: "friends" */ update_friends?: (friends_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -66547,6 +68959,32 @@ export interface query_rootGenqlSelection{ where?: (e_draft_game_status_bool_exp | null)} }) /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_status" */ + e_event_status?: (e_event_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_status_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?: (e_event_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_status" */ + e_event_status_aggregate?: (e_event_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_status_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?: (e_event_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_status_bool_exp | null)} }) + /** fetch data from the table: "e_event_status" using primary key columns */ + e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -67405,6 +69843,136 @@ export interface query_rootGenqlSelection{ where?: (e_winning_reasons_bool_exp | null)} }) /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) /** fetch data from the table: "friends" */ friends?: (friendsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -67543,6 +70111,34 @@ export interface query_rootGenqlSelection{ getTableStats?: (TableStatGenqlSelection & { __args?: {schemas?: (Scalars['String'][] | null)} }) /** Get TimescaleDB statistics */ getTimescaleStats?: TimescaleStatsGenqlSelection + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { /** input parameters for function "get_leaderboard" */ @@ -69888,6 +72484,30 @@ export interface query_rootGenqlSelection{ where?: (tournaments_bool_exp | null)} }) /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -72433,6 +75053,40 @@ export interface subscription_rootGenqlSelection{ cursor: (e_draft_game_status_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_event_status" */ + e_event_status?: (e_event_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_status_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?: (e_event_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_status" */ + e_event_status_aggregate?: (e_event_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_status_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?: (e_event_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_status_bool_exp | null)} }) + /** fetch data from the table: "e_event_status" using primary key columns */ + e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_status" */ + e_event_status_stream?: (e_event_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_event_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_status_bool_exp | null)} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73555,6 +76209,176 @@ export interface subscription_rootGenqlSelection{ cursor: (e_winning_reasons_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" */ + event_organizers?: (event_organizersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_organizers" */ + event_organizers_aggregate?: (event_organizers_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_organizers_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?: (event_organizers_order_by[] | null), + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_organizers" using primary key columns */ + event_organizers_by_pk?: (event_organizersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_organizers" */ + event_organizers_stream?: (event_organizersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_organizers_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_organizers_bool_exp | null)} }) + /** fetch data from the table: "event_players" */ + event_players?: (event_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_players" */ + event_players_aggregate?: (event_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_players_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?: (event_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_players" using primary key columns */ + event_players_by_pk?: (event_playersGenqlSelection & { __args: {event_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_players" */ + event_players_stream?: (event_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_players_bool_exp | null)} }) + /** fetch data from the table: "event_teams" */ + event_teams?: (event_teamsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_teams" */ + event_teams_aggregate?: (event_teams_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_teams_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?: (event_teams_order_by[] | null), + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_teams" using primary key columns */ + event_teams_by_pk?: (event_teamsGenqlSelection & { __args: {event_id: Scalars['uuid'], team_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_teams" */ + event_teams_stream?: (event_teamsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_teams_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_teams_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" */ + event_tournaments?: (event_tournamentsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_tournaments" */ + event_tournaments_aggregate?: (event_tournaments_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_tournaments_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?: (event_tournaments_order_by[] | null), + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "event_tournaments" using primary key columns */ + event_tournaments_by_pk?: (event_tournamentsGenqlSelection & { __args: {event_id: Scalars['uuid'], tournament_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_tournaments" */ + event_tournaments_stream?: (event_tournamentsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_tournaments_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_tournaments_bool_exp | null)} }) + /** fetch data from the table: "events" */ + events?: (eventsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch aggregated fields from the table: "events" */ + events_aggregate?: (events_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (events_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?: (events_order_by[] | null), + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) + /** fetch data from the table: "events" using primary key columns */ + events_by_pk?: (eventsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "events" */ + events_stream?: (eventsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (events_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (events_bool_exp | null)} }) /** fetch data from the table: "friends" */ friends?: (friendsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73691,6 +76515,34 @@ export interface subscription_rootGenqlSelection{ cursor: (gamedata_signature_validations_stream_cursor_input | null)[], /** filter the rows returned */ where?: (gamedata_signature_validations_bool_exp | null)} }) + /** execute function "get_event_leaderboard" which returns "leaderboard_entries" */ + get_event_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) + /** execute function "get_event_leaderboard" and query aggregates on result of table type "leaderboard_entries" */ + get_event_leaderboard_aggregate?: (leaderboard_entries_aggregateGenqlSelection & { __args: { + /** input parameters for function "get_event_leaderboard_aggregate" */ + args: get_event_leaderboard_args, + /** distinct select on columns */ + distinct_on?: (leaderboard_entries_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?: (leaderboard_entries_order_by[] | null), + /** filter the rows returned */ + where?: (leaderboard_entries_bool_exp | null)} }) /** execute function "get_leaderboard" which returns "leaderboard_entries" */ get_leaderboard?: (leaderboard_entriesGenqlSelection & { __args: { /** input parameters for function "get_leaderboard" */ @@ -76717,6 +79569,38 @@ export interface subscription_rootGenqlSelection{ cursor: (tournaments_stream_cursor_input | null)[], /** filter the rows returned */ where?: (tournaments_bool_exp | null)} }) + /** fetch data from the table: "v_event_player_stats" */ + v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_player_stats" */ + v_event_player_stats_aggregate?: (v_event_player_stats_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_player_stats_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?: (v_event_player_stats_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_event_player_stats" */ + v_event_player_stats_stream?: (v_event_player_statsGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_event_player_stats_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_event_player_stats_bool_exp | null)} }) /** fetch data from the table: "v_gpu_pool_status" */ v_gpu_pool_status?: (v_gpu_pool_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -83370,6 +86254,301 @@ _contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (S export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} +/** columns and relationships of "v_event_player_stats" */ +export interface v_event_player_statsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_event_player_stats" */ +export interface v_event_player_stats_aggregateGenqlSelection{ + aggregate?: v_event_player_stats_aggregate_fieldsGenqlSelection + nodes?: v_event_player_statsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface v_event_player_stats_aggregate_bool_exp {avg?: (v_event_player_stats_aggregate_bool_exp_avg | null),corr?: (v_event_player_stats_aggregate_bool_exp_corr | null),count?: (v_event_player_stats_aggregate_bool_exp_count | null),covar_samp?: (v_event_player_stats_aggregate_bool_exp_covar_samp | null),max?: (v_event_player_stats_aggregate_bool_exp_max | null),min?: (v_event_player_stats_aggregate_bool_exp_min | null),stddev_samp?: (v_event_player_stats_aggregate_bool_exp_stddev_samp | null),sum?: (v_event_player_stats_aggregate_bool_exp_sum | null),var_samp?: (v_event_player_stats_aggregate_bool_exp_var_samp | null)} + +export interface v_event_player_stats_aggregate_bool_exp_avg {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr {arguments: v_event_player_stats_aggregate_bool_exp_corr_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_corr_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_count {arguments?: (v_event_player_stats_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: Int_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp {arguments: v_event_player_stats_aggregate_bool_exp_covar_samp_arguments,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_covar_samp_arguments {X: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns,Y: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns} + +export interface v_event_player_stats_aggregate_bool_exp_max {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_min {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_stddev_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_sum {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + +export interface v_event_player_stats_aggregate_bool_exp_var_samp {arguments: v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (v_event_player_stats_bool_exp | null),predicate: float8_comparison_exp} + + +/** aggregate fields of "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_fieldsGenqlSelection{ + avg?: v_event_player_stats_avg_fieldsGenqlSelection + count?: { __args: {columns?: (v_event_player_stats_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_event_player_stats_max_fieldsGenqlSelection + min?: v_event_player_stats_min_fieldsGenqlSelection + stddev?: v_event_player_stats_stddev_fieldsGenqlSelection + stddev_pop?: v_event_player_stats_stddev_pop_fieldsGenqlSelection + stddev_samp?: v_event_player_stats_stddev_samp_fieldsGenqlSelection + sum?: v_event_player_stats_sum_fieldsGenqlSelection + var_pop?: v_event_player_stats_var_pop_fieldsGenqlSelection + var_samp?: v_event_player_stats_var_samp_fieldsGenqlSelection + variance?: v_event_player_stats_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "v_event_player_stats" */ +export interface v_event_player_stats_aggregate_order_by {avg?: (v_event_player_stats_avg_order_by | null),count?: (order_by | null),max?: (v_event_player_stats_max_order_by | null),min?: (v_event_player_stats_min_order_by | null),stddev?: (v_event_player_stats_stddev_order_by | null),stddev_pop?: (v_event_player_stats_stddev_pop_order_by | null),stddev_samp?: (v_event_player_stats_stddev_samp_order_by | null),sum?: (v_event_player_stats_sum_order_by | null),var_pop?: (v_event_player_stats_var_pop_order_by | null),var_samp?: (v_event_player_stats_var_samp_order_by | null),variance?: (v_event_player_stats_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "v_event_player_stats" */ +export interface v_event_player_stats_arr_rel_insert_input {data: v_event_player_stats_insert_input[]} + + +/** aggregate avg on columns */ +export interface v_event_player_stats_avg_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_avg_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "v_event_player_stats". All fields are combined with a logical 'AND'. */ +export interface v_event_player_stats_bool_exp {_and?: (v_event_player_stats_bool_exp[] | null),_not?: (v_event_player_stats_bool_exp | null),_or?: (v_event_player_stats_bool_exp[] | null),assists?: (Int_comparison_exp | null),deaths?: (Int_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),headshot_percentage?: (float8_comparison_exp | null),headshots?: (Int_comparison_exp | null),kdr?: (float8_comparison_exp | null),kills?: (Int_comparison_exp | null),matches_played?: (Int_comparison_exp | null),player?: (players_bool_exp | null),player_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for inserting data into table "v_event_player_stats" */ +export interface v_event_player_stats_insert_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface v_event_player_stats_max_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_max_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface v_event_player_stats_min_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + event_id?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_min_order_by {assists?: (order_by | null),deaths?: (order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Ordering options when selecting data from "v_event_player_stats". */ +export interface v_event_player_stats_order_by {assists?: (order_by | null),deaths?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player?: (players_order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev on columns */ +export interface v_event_player_stats_stddev_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface v_event_player_stats_stddev_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface v_event_player_stats_stddev_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_stddev_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_event_player_stats" */ +export interface v_event_player_stats_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_event_player_stats_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_event_player_stats_stream_cursor_value_input {assists?: (Scalars['Int'] | null),deaths?: (Scalars['Int'] | null),event_id?: (Scalars['uuid'] | null),headshot_percentage?: (Scalars['float8'] | null),headshots?: (Scalars['Int'] | null),kdr?: (Scalars['float8'] | null),kills?: (Scalars['Int'] | null),matches_played?: (Scalars['Int'] | null),player_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface v_event_player_stats_sum_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_sum_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_pop on columns */ +export interface v_event_player_stats_var_pop_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_pop_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface v_event_player_stats_var_samp_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_var_samp_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface v_event_player_stats_variance_fieldsGenqlSelection{ + assists?: boolean | number + deaths?: boolean | number + headshot_percentage?: boolean | number + headshots?: boolean | number + kdr?: boolean | number + kills?: boolean | number + matches_played?: boolean | number + player_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "v_event_player_stats" */ +export interface v_event_player_stats_variance_order_by {assists?: (order_by | null),deaths?: (order_by | null),headshot_percentage?: (order_by | null),headshots?: (order_by | null),kdr?: (order_by | null),kills?: (order_by | null),matches_played?: (order_by | null),player_steam_id?: (order_by | null)} + + /** columns and relationships of "v_gpu_pool_status" */ export interface v_gpu_pool_statusGenqlSelection{ demo_free_gpu_nodes?: boolean | number @@ -92370,6 +95549,54 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_event_status_possibleTypes: string[] = ['e_event_status'] + export const ise_event_status = (obj?: { __typename?: any } | null): obj is e_event_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status"') + return e_event_status_possibleTypes.includes(obj.__typename) + } + + + + const e_event_status_aggregate_possibleTypes: string[] = ['e_event_status_aggregate'] + export const ise_event_status_aggregate = (obj?: { __typename?: any } | null): obj is e_event_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_aggregate"') + return e_event_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_event_status_aggregate_fields_possibleTypes: string[] = ['e_event_status_aggregate_fields'] + export const ise_event_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_aggregate_fields"') + return e_event_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_status_max_fields_possibleTypes: string[] = ['e_event_status_max_fields'] + export const ise_event_status_max_fields = (obj?: { __typename?: any } | null): obj is e_event_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_max_fields"') + return e_event_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_status_min_fields_possibleTypes: string[] = ['e_event_status_min_fields'] + export const ise_event_status_min_fields = (obj?: { __typename?: any } | null): obj is e_event_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_min_fields"') + return e_event_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_status_mutation_response_possibleTypes: string[] = ['e_event_status_mutation_response'] + export const ise_event_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_mutation_response"') + return e_event_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_friend_status_possibleTypes: string[] = ['e_friend_status'] export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') @@ -93954,6 +97181,438 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const event_organizers_possibleTypes: string[] = ['event_organizers'] + export const isevent_organizers = (obj?: { __typename?: any } | null): obj is event_organizers => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers"') + return event_organizers_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_aggregate_possibleTypes: string[] = ['event_organizers_aggregate'] + export const isevent_organizers_aggregate = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate"') + return event_organizers_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_aggregate_fields_possibleTypes: string[] = ['event_organizers_aggregate_fields'] + export const isevent_organizers_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_organizers_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_aggregate_fields"') + return event_organizers_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_avg_fields_possibleTypes: string[] = ['event_organizers_avg_fields'] + export const isevent_organizers_avg_fields = (obj?: { __typename?: any } | null): obj is event_organizers_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_avg_fields"') + return event_organizers_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_max_fields_possibleTypes: string[] = ['event_organizers_max_fields'] + export const isevent_organizers_max_fields = (obj?: { __typename?: any } | null): obj is event_organizers_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_max_fields"') + return event_organizers_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_min_fields_possibleTypes: string[] = ['event_organizers_min_fields'] + export const isevent_organizers_min_fields = (obj?: { __typename?: any } | null): obj is event_organizers_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_min_fields"') + return event_organizers_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_mutation_response_possibleTypes: string[] = ['event_organizers_mutation_response'] + export const isevent_organizers_mutation_response = (obj?: { __typename?: any } | null): obj is event_organizers_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_mutation_response"') + return event_organizers_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_fields_possibleTypes: string[] = ['event_organizers_stddev_fields'] + export const isevent_organizers_stddev_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_fields"') + return event_organizers_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_pop_fields_possibleTypes: string[] = ['event_organizers_stddev_pop_fields'] + export const isevent_organizers_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_pop_fields"') + return event_organizers_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_stddev_samp_fields_possibleTypes: string[] = ['event_organizers_stddev_samp_fields'] + export const isevent_organizers_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_stddev_samp_fields"') + return event_organizers_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_sum_fields_possibleTypes: string[] = ['event_organizers_sum_fields'] + export const isevent_organizers_sum_fields = (obj?: { __typename?: any } | null): obj is event_organizers_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_sum_fields"') + return event_organizers_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_var_pop_fields_possibleTypes: string[] = ['event_organizers_var_pop_fields'] + export const isevent_organizers_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_pop_fields"') + return event_organizers_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_var_samp_fields_possibleTypes: string[] = ['event_organizers_var_samp_fields'] + export const isevent_organizers_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_organizers_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_var_samp_fields"') + return event_organizers_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_organizers_variance_fields_possibleTypes: string[] = ['event_organizers_variance_fields'] + export const isevent_organizers_variance_fields = (obj?: { __typename?: any } | null): obj is event_organizers_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers_variance_fields"') + return event_organizers_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_possibleTypes: string[] = ['event_players'] + export const isevent_players = (obj?: { __typename?: any } | null): obj is event_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players"') + return event_players_possibleTypes.includes(obj.__typename) + } + + + + const event_players_aggregate_possibleTypes: string[] = ['event_players_aggregate'] + export const isevent_players_aggregate = (obj?: { __typename?: any } | null): obj is event_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate"') + return event_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_players_aggregate_fields_possibleTypes: string[] = ['event_players_aggregate_fields'] + export const isevent_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_aggregate_fields"') + return event_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_avg_fields_possibleTypes: string[] = ['event_players_avg_fields'] + export const isevent_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_avg_fields"') + return event_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_max_fields_possibleTypes: string[] = ['event_players_max_fields'] + export const isevent_players_max_fields = (obj?: { __typename?: any } | null): obj is event_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_max_fields"') + return event_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_min_fields_possibleTypes: string[] = ['event_players_min_fields'] + export const isevent_players_min_fields = (obj?: { __typename?: any } | null): obj is event_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_min_fields"') + return event_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_mutation_response_possibleTypes: string[] = ['event_players_mutation_response'] + export const isevent_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_mutation_response"') + return event_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_fields_possibleTypes: string[] = ['event_players_stddev_fields'] + export const isevent_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_fields"') + return event_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_pop_fields_possibleTypes: string[] = ['event_players_stddev_pop_fields'] + export const isevent_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_pop_fields"') + return event_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_stddev_samp_fields_possibleTypes: string[] = ['event_players_stddev_samp_fields'] + export const isevent_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_stddev_samp_fields"') + return event_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_sum_fields_possibleTypes: string[] = ['event_players_sum_fields'] + export const isevent_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_sum_fields"') + return event_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_var_pop_fields_possibleTypes: string[] = ['event_players_var_pop_fields'] + export const isevent_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_pop_fields"') + return event_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_var_samp_fields_possibleTypes: string[] = ['event_players_var_samp_fields'] + export const isevent_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_var_samp_fields"') + return event_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_players_variance_fields_possibleTypes: string[] = ['event_players_variance_fields'] + export const isevent_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_players_variance_fields"') + return event_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_possibleTypes: string[] = ['event_teams'] + export const isevent_teams = (obj?: { __typename?: any } | null): obj is event_teams => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams"') + return event_teams_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_aggregate_possibleTypes: string[] = ['event_teams_aggregate'] + export const isevent_teams_aggregate = (obj?: { __typename?: any } | null): obj is event_teams_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate"') + return event_teams_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_aggregate_fields_possibleTypes: string[] = ['event_teams_aggregate_fields'] + export const isevent_teams_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_teams_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_aggregate_fields"') + return event_teams_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_max_fields_possibleTypes: string[] = ['event_teams_max_fields'] + export const isevent_teams_max_fields = (obj?: { __typename?: any } | null): obj is event_teams_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_max_fields"') + return event_teams_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_min_fields_possibleTypes: string[] = ['event_teams_min_fields'] + export const isevent_teams_min_fields = (obj?: { __typename?: any } | null): obj is event_teams_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_min_fields"') + return event_teams_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_teams_mutation_response_possibleTypes: string[] = ['event_teams_mutation_response'] + export const isevent_teams_mutation_response = (obj?: { __typename?: any } | null): obj is event_teams_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_teams_mutation_response"') + return event_teams_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_possibleTypes: string[] = ['event_tournaments'] + export const isevent_tournaments = (obj?: { __typename?: any } | null): obj is event_tournaments => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments"') + return event_tournaments_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_aggregate_possibleTypes: string[] = ['event_tournaments_aggregate'] + export const isevent_tournaments_aggregate = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate"') + return event_tournaments_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_aggregate_fields_possibleTypes: string[] = ['event_tournaments_aggregate_fields'] + export const isevent_tournaments_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_aggregate_fields"') + return event_tournaments_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_max_fields_possibleTypes: string[] = ['event_tournaments_max_fields'] + export const isevent_tournaments_max_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_max_fields"') + return event_tournaments_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_min_fields_possibleTypes: string[] = ['event_tournaments_min_fields'] + export const isevent_tournaments_min_fields = (obj?: { __typename?: any } | null): obj is event_tournaments_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_min_fields"') + return event_tournaments_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_tournaments_mutation_response_possibleTypes: string[] = ['event_tournaments_mutation_response'] + export const isevent_tournaments_mutation_response = (obj?: { __typename?: any } | null): obj is event_tournaments_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_tournaments_mutation_response"') + return event_tournaments_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const events_possibleTypes: string[] = ['events'] + export const isevents = (obj?: { __typename?: any } | null): obj is events => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents"') + return events_possibleTypes.includes(obj.__typename) + } + + + + const events_aggregate_possibleTypes: string[] = ['events_aggregate'] + export const isevents_aggregate = (obj?: { __typename?: any } | null): obj is events_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate"') + return events_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const events_aggregate_fields_possibleTypes: string[] = ['events_aggregate_fields'] + export const isevents_aggregate_fields = (obj?: { __typename?: any } | null): obj is events_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_aggregate_fields"') + return events_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_avg_fields_possibleTypes: string[] = ['events_avg_fields'] + export const isevents_avg_fields = (obj?: { __typename?: any } | null): obj is events_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_avg_fields"') + return events_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_max_fields_possibleTypes: string[] = ['events_max_fields'] + export const isevents_max_fields = (obj?: { __typename?: any } | null): obj is events_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_max_fields"') + return events_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_min_fields_possibleTypes: string[] = ['events_min_fields'] + export const isevents_min_fields = (obj?: { __typename?: any } | null): obj is events_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_min_fields"') + return events_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_mutation_response_possibleTypes: string[] = ['events_mutation_response'] + export const isevents_mutation_response = (obj?: { __typename?: any } | null): obj is events_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_mutation_response"') + return events_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_fields_possibleTypes: string[] = ['events_stddev_fields'] + export const isevents_stddev_fields = (obj?: { __typename?: any } | null): obj is events_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_fields"') + return events_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_pop_fields_possibleTypes: string[] = ['events_stddev_pop_fields'] + export const isevents_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is events_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_pop_fields"') + return events_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_stddev_samp_fields_possibleTypes: string[] = ['events_stddev_samp_fields'] + export const isevents_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is events_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_stddev_samp_fields"') + return events_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_sum_fields_possibleTypes: string[] = ['events_sum_fields'] + export const isevents_sum_fields = (obj?: { __typename?: any } | null): obj is events_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_sum_fields"') + return events_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_var_pop_fields_possibleTypes: string[] = ['events_var_pop_fields'] + export const isevents_var_pop_fields = (obj?: { __typename?: any } | null): obj is events_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_pop_fields"') + return events_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_var_samp_fields_possibleTypes: string[] = ['events_var_samp_fields'] + export const isevents_var_samp_fields = (obj?: { __typename?: any } | null): obj is events_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_var_samp_fields"') + return events_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const events_variance_fields_possibleTypes: string[] = ['events_variance_fields'] + export const isevents_variance_fields = (obj?: { __typename?: any } | null): obj is events_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevents_variance_fields"') + return events_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const friends_possibleTypes: string[] = ['friends'] export const isfriends = (obj?: { __typename?: any } | null): obj is friends => { if (!obj?.__typename) throw new Error('__typename is missing in "isfriends"') @@ -103362,6 +107021,110 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] + export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') + return v_event_player_stats_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_possibleTypes: string[] = ['v_event_player_stats_aggregate'] + export const isv_event_player_stats_aggregate = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate"') + return v_event_player_stats_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_aggregate_fields_possibleTypes: string[] = ['v_event_player_stats_aggregate_fields'] + export const isv_event_player_stats_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_aggregate_fields"') + return v_event_player_stats_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_avg_fields_possibleTypes: string[] = ['v_event_player_stats_avg_fields'] + export const isv_event_player_stats_avg_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_avg_fields"') + return v_event_player_stats_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_max_fields_possibleTypes: string[] = ['v_event_player_stats_max_fields'] + export const isv_event_player_stats_max_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_max_fields"') + return v_event_player_stats_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_min_fields_possibleTypes: string[] = ['v_event_player_stats_min_fields'] + export const isv_event_player_stats_min_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_min_fields"') + return v_event_player_stats_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_fields'] + export const isv_event_player_stats_stddev_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_fields"') + return v_event_player_stats_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_pop_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_pop_fields'] + export const isv_event_player_stats_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_pop_fields"') + return v_event_player_stats_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_stddev_samp_fields_possibleTypes: string[] = ['v_event_player_stats_stddev_samp_fields'] + export const isv_event_player_stats_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_stddev_samp_fields"') + return v_event_player_stats_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_sum_fields_possibleTypes: string[] = ['v_event_player_stats_sum_fields'] + export const isv_event_player_stats_sum_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_sum_fields"') + return v_event_player_stats_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_pop_fields_possibleTypes: string[] = ['v_event_player_stats_var_pop_fields'] + export const isv_event_player_stats_var_pop_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_pop_fields"') + return v_event_player_stats_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_var_samp_fields_possibleTypes: string[] = ['v_event_player_stats_var_samp_fields'] + export const isv_event_player_stats_var_samp_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_var_samp_fields"') + return v_event_player_stats_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_player_stats_variance_fields_possibleTypes: string[] = ['v_event_player_stats_variance_fields'] + export const isv_event_player_stats_variance_fields = (obj?: { __typename?: any } | null): obj is v_event_player_stats_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats_variance_fields"') + return v_event_player_stats_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const v_gpu_pool_status_possibleTypes: string[] = ['v_gpu_pool_status'] export const isv_gpu_pool_status = (obj?: { __typename?: any } | null): obj is v_gpu_pool_status => { if (!obj?.__typename) throw new Error('__typename is missing in "isv_gpu_pool_status"') @@ -106951,6 +110714,26 @@ export const enumEDraftGameStatusUpdateColumn = { value: 'value' as const } +export const enumEEventStatusConstraint = { + e_event_status_pkey: 'e_event_status_pkey' as const +} + +export const enumEEventStatusEnum = { + Finished: 'Finished' as const, + Live: 'Live' as const, + Setup: 'Setup' as const +} + +export const enumEEventStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEFriendStatusConstraint = { e_friend_status_pkey: 'e_friend_status_pkey' as const } @@ -107700,6 +111483,96 @@ export const enumEWinningReasonsUpdateColumn = { value: 'value' as const } +export const enumEventOrganizersConstraint = { + event_organizers_pkey: 'event_organizers_pkey' as const +} + +export const enumEventOrganizersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventOrganizersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersConstraint = { + event_players_pkey: 'event_players_pkey' as const +} + +export const enumEventPlayersSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventPlayersUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventTeamsConstraint = { + event_teams_pkey: 'event_teams_pkey' as const +} + +export const enumEventTeamsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTeamsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + team_id: 'team_id' as const +} + +export const enumEventTournamentsConstraint = { + event_tournaments_pkey: 'event_tournaments_pkey' as const +} + +export const enumEventTournamentsSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventTournamentsUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + tournament_id: 'tournament_id' as const +} + +export const enumEventsConstraint = { + events_pkey: 'events_pkey' as const +} + +export const enumEventsSelectColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + status: 'status' as const +} + +export const enumEventsUpdateColumn = { + created_at: 'created_at' as const, + description: 'description' as const, + ends_at: 'ends_at' as const, + id: 'id' as const, + name: 'name' as const, + organizer_steam_id: 'organizer_steam_id' as const, + starts_at: 'starts_at' as const, + status: 'status' as const +} + export const enumFriendsConstraint = { friends_pkey: 'friends_pkey' as const, friends_player_steam_id_other_player_steam_id_key: 'friends_player_steam_id_other_player_steam_id_key' as const @@ -110908,6 +114781,58 @@ export const enumTournamentsUpdateColumn = { trophies_enabled: 'trophies_enabled' as const } +export const enumVEventPlayerStatsSelectColumn = { + assists: 'assists' as const, + deaths: 'deaths' as const, + event_id: 'event_id' as const, + headshot_percentage: 'headshot_percentage' as const, + headshots: 'headshots' as const, + kdr: 'kdr' as const, + kills: 'kills' as const, + matches_played: 'matches_played' as const, + player_steam_id: 'player_steam_id' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpAvgArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCorrArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpCovarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMaxArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpMinArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpStddevSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpSumArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + +export const enumVEventPlayerStatsSelectColumnVEventPlayerStatsAggregateBoolExpVarSampArgumentsColumns = { + headshot_percentage: 'headshot_percentage' as const, + kdr: 'kdr' as const +} + export const enumVGpuPoolStatusSelectColumn = { demo_free_gpu_nodes: 'demo_free_gpu_nodes' as const, demo_in_progress: 'demo_in_progress' as const, diff --git a/generated/types.ts b/generated/types.ts index 35406cf0..4fda6f4b 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -66,66 +66,66 @@ export default { 523, 529, 530, - 540, - 544, + 539, + 543, + 549, 550, - 551, 560, 564, 570, 571, - 581, - 585, + 580, + 584, + 590, 591, - 592, - 602, - 606, + 601, + 605, + 611, 612, - 613, - 623, - 627, + 622, + 626, + 632, 633, - 634, - 644, - 648, + 643, + 647, + 653, 654, - 655, - 665, - 669, + 664, + 668, + 674, 675, - 676, - 686, - 690, + 685, + 689, + 695, 696, - 697, 706, 710, 716, 717, - 727, - 731, + 726, + 730, + 736, 737, - 738, 747, 751, 757, 758, - 768, - 772, + 767, + 771, + 777, 778, - 779, 788, 792, 798, 799, - 809, - 813, + 808, + 812, + 818, 819, - 820, - 830, - 834, + 829, + 833, + 839, 840, - 841, 850, 854, 860, @@ -146,10 +146,10 @@ export default { 934, 940, 941, - 951, - 955, + 950, + 954, + 960, 961, - 962, 971, 975, 981, @@ -166,10 +166,10 @@ export default { 1035, 1041, 1042, - 1052, - 1056, + 1051, + 1055, + 1061, 1062, - 1063, 1072, 1076, 1082, @@ -178,14 +178,14 @@ export default { 1096, 1102, 1103, - 1113, - 1117, + 1112, + 1116, + 1122, 1123, - 1124, - 1134, - 1138, + 1133, + 1137, + 1143, 1144, - 1145, 1154, 1158, 1164, @@ -196,394 +196,422 @@ export default { 1185, 1194, 1198, - 1200, - 1207, - 1216, - 1224, - 1242, - 1258, - 1259, - 1260, - 1272, - 1286, - 1300, - 1308, - 1319, - 1332, - 1340, + 1204, + 1205, + 1214, + 1218, + 1230, + 1241, + 1253, + 1271, + 1282, + 1294, + 1310, + 1320, + 1324, + 1334, + 1344, 1348, - 1350, - 1352, - 1366, - 1384, + 1355, + 1365, + 1373, + 1378, + 1385, 1394, 1402, - 1417, - 1428, - 1440, - 1458, - 1469, - 1481, - 1499, + 1420, + 1436, + 1437, + 1438, + 1450, + 1464, + 1478, + 1486, + 1497, 1510, - 1522, - 1538, - 1549, - 1553, - 1561, - 1575, - 1583, - 1598, - 1609, - 1621, - 1639, - 1650, - 1662, - 1680, - 1692, - 1704, - 1716, - 1725, - 1729, - 1735, - 1744, - 1748, + 1518, + 1527, + 1529, + 1531, + 1545, + 1563, + 1573, + 1581, + 1596, + 1607, + 1619, + 1637, + 1648, + 1660, + 1678, + 1689, + 1701, + 1717, + 1728, + 1732, + 1740, + 1754, 1762, - 1773, - 1774, - 1775, - 1787, - 1799, - 1808, - 1812, - 1824, - 1835, - 1836, - 1837, + 1777, + 1788, + 1800, + 1818, + 1829, 1841, - 1853, - 1865, - 1877, - 1896, - 1911, + 1859, + 1871, + 1883, + 1895, + 1904, + 1908, + 1914, 1923, - 1943, + 1927, + 1941, + 1952, + 1953, 1954, - 1955, - 1956, - 1968, - 1986, - 1998, - 2010, - 2031, - 2047, - 2048, - 2049, - 2061, - 2079, + 1966, + 1978, + 1987, + 1991, + 2003, + 2014, + 2015, + 2016, + 2020, + 2032, + 2044, + 2056, + 2075, 2090, 2102, - 2118, - 2128, - 2132, - 2144, - 2156, - 2168, - 2181, - 2191, - 2199, - 2212, - 2222, + 2122, + 2133, + 2134, + 2135, + 2147, + 2165, + 2177, + 2189, + 2210, 2226, - 2241, - 2256, - 2257, + 2227, + 2228, + 2240, 2258, - 2270, - 2282, - 2290, - 2294, - 2306, - 2318, - 2330, - 2342, - 2350, - 2354, - 2381, - 2382, - 2383, - 2407, - 2416, - 2424, - 2442, - 2457, - 2458, - 2459, - 2471, - 2479, - 2481, - 2492, - 2503, - 2515, - 2528, - 2538, - 2546, - 2556, - 2565, - 2573, - 2588, - 2599, - 2611, - 2631, - 2642, - 2643, - 2644, - 2656, - 2672, - 2692, - 2703, - 2715, - 2728, - 2737, - 2745, - 2760, - 2771, - 2783, - 2803, - 2814, - 2815, - 2816, - 2828, - 2858, - 2869, - 2881, - 2889, - 2900, - 2901, - 2902, - 2914, - 2933, - 2955, - 2966, - 2978, + 2269, + 2281, + 2297, + 2307, + 2311, + 2323, + 2335, + 2347, + 2360, + 2370, + 2378, + 2391, + 2401, + 2405, + 2420, + 2435, + 2436, + 2437, + 2449, + 2461, + 2469, + 2473, + 2485, + 2497, + 2509, + 2521, + 2529, + 2533, + 2560, + 2561, + 2562, + 2586, + 2595, + 2603, + 2621, + 2636, + 2637, + 2638, + 2650, + 2658, + 2660, + 2671, + 2682, + 2694, + 2707, + 2717, + 2725, + 2735, + 2744, + 2752, + 2767, + 2778, + 2790, + 2810, + 2821, + 2822, + 2823, + 2835, + 2851, + 2871, + 2882, + 2894, + 2907, + 2916, + 2924, + 2939, + 2950, + 2962, + 2982, + 2993, 2994, - 3020, - 3047, - 3058, - 3070, - 3086, - 3106, - 3117, - 3129, - 3147, - 3158, - 3170, - 3198, - 3209, - 3210, - 3211, - 3212, - 3213, - 3214, - 3215, - 3216, - 3217, - 3229, - 3242, - 3252, - 3260, - 3271, - 3284, - 3292, - 3302, - 3311, - 3319, - 3334, - 3345, - 3357, - 3375, - 3386, - 3398, - 3422, - 3444, - 3454, - 3462, - 3472, + 2995, + 3007, + 3037, + 3048, + 3060, + 3068, + 3079, + 3080, + 3081, + 3093, + 3112, + 3134, + 3145, + 3157, + 3173, + 3199, + 3226, + 3237, + 3249, + 3265, + 3285, + 3296, + 3308, + 3326, + 3337, + 3349, + 3377, + 3388, + 3389, + 3390, + 3391, + 3392, + 3393, + 3394, + 3395, + 3396, + 3408, + 3421, + 3431, + 3439, + 3450, + 3463, + 3471, 3481, - 3489, - 3503, + 3490, + 3498, 3513, - 3521, - 3531, - 3540, - 3548, + 3524, + 3536, + 3554, 3565, 3577, - 3578, - 3579, - 3591, - 3603, - 3611, - 3615, - 3617, - 3627, - 3637, + 3601, + 3623, + 3633, 3641, - 3648, - 3658, - 3666, - 3676, - 3685, - 3693, - 3708, + 3651, + 3660, + 3668, + 3682, + 3692, + 3700, + 3710, 3719, - 3731, - 3751, - 3762, - 3763, - 3764, - 3776, - 3789, - 3798, + 3727, + 3744, + 3756, + 3757, + 3758, + 3770, + 3782, + 3790, + 3794, + 3796, 3806, - 3821, - 3831, - 3832, - 3833, + 3816, + 3820, + 3827, 3837, - 3849, - 3860, + 3845, + 3855, + 3864, 3872, - 3892, - 3904, - 3905, - 3906, - 3918, - 3931, + 3887, + 3898, + 3910, + 3930, 3941, - 3949, - 3959, + 3942, + 3943, + 3955, 3968, - 3976, - 3991, - 4003, - 4015, - 4023, - 4024, - 4038, - 4050, + 3977, + 3985, + 4000, + 4010, + 4011, + 4012, + 4016, + 4028, + 4039, 4051, - 4052, - 4064, - 4082, - 4093, - 4105, - 4123, - 4134, - 4146, - 4167, - 4183, - 4184, - 4185, - 4197, - 4215, - 4226, - 4238, - 4256, - 4267, - 4279, - 4297, - 4309, - 4321, - 4341, - 4352, - 4353, - 4354, - 4366, - 4384, - 4396, - 4408, - 4428, - 4440, - 4441, - 4442, - 4454, - 4462, - 4473, - 4499, - 4542, - 4543, - 4544, + 4071, + 4083, + 4084, + 4085, + 4097, + 4110, + 4120, + 4128, + 4138, + 4147, + 4155, + 4170, + 4182, + 4194, + 4202, + 4203, + 4217, + 4229, + 4230, + 4231, + 4243, + 4261, + 4272, + 4284, + 4302, + 4313, + 4325, + 4346, + 4362, + 4363, + 4364, + 4376, + 4394, + 4405, + 4417, + 4435, + 4446, + 4458, + 4476, + 4488, + 4500, + 4520, + 4531, + 4532, + 4533, 4545, - 4546, - 4547, - 4548, - 4549, - 4550, - 4579, + 4563, + 4575, + 4587, 4607, - 4632, - 4650, - 4668, - 4689, - 4709, - 4735, - 4760, + 4619, + 4620, + 4621, + 4633, + 4641, + 4670, + 4671, + 4672, + 4673, + 4674, + 4675, + 4676, + 4677, + 4678, + 4703, + 4729, + 4772, + 4773, + 4774, + 4775, + 4776, + 4777, 4778, - 4814, - 4815, - 4816, - 4817, - 4818, - 4819, - 4820, - 4821, - 4822, - 4847, - 4865, - 4883, - 4911, - 4938, - 4956, - 4974, - 5000, - 5025, - 5043, - 5070, - 5071, - 5072, - 5085, - 5105, - 5125, - 5155, - 5167, + 4779, + 4780, + 4809, + 4837, + 4862, + 4880, + 4898, + 4919, + 4939, + 4965, + 4990, + 5008, + 5044, + 5045, + 5046, + 5047, + 5048, + 5049, + 5050, + 5051, + 5052, + 5077, + 5095, + 5113, + 5141, 5168, - 5169, - 5170, - 5171, - 5172, - 5173, - 5174, - 5175, - 5187, - 5221, - 5222, - 5223, - 5224, - 5225, - 5226, - 5227, - 5228, - 5229, - 5272, + 5186, + 5204, + 5230, + 5255, 5273, - 5274, - 5275, - 5276, - 5277, - 5278, - 5279, - 5280 + 5300, + 5301, + 5302, + 5315, + 5335, + 5355, + 5385, + 5397, + 5398, + 5399, + 5400, + 5401, + 5402, + 5403, + 5404, + 5405, + 5417, + 5451, + 5452, + 5453, + 5454, + 5455, + 5456, + 5457, + 5458, + 5459, + 5502, + 5503, + 5504, + 5505, + 5506, + 5507, + 5508, + 5509, + 5510 ], "types": { "ActiveConnection": { @@ -600,7 +628,7 @@ export default { 78 ], "query_start": [ - 4023 + 4202 ], "state": [ 78 @@ -629,7 +657,7 @@ export default { 78 ], "query_start": [ - 4023 + 4202 ], "state": [ 78 @@ -727,7 +755,7 @@ export default { 38 ], "payload": [ - 1352 + 1531 ], "start_ms": [ 38 @@ -761,7 +789,7 @@ export default { 78 ], "match_map_id": [ - 4462 + 4641 ], "output": [ 6 @@ -821,7 +849,7 @@ export default { }, "CpuStat": { "time": [ - 4023 + 4202 ], "total": [ 180 @@ -838,7 +866,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4462 + 4641 ], "success": [ 3 @@ -849,7 +877,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4462 + 4641 ], "__typename": [ 78 @@ -857,7 +885,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4462 + 4641 ], "__typename": [ 78 @@ -1013,7 +1041,7 @@ export default { 20 ], "time": [ - 4023 + 4202 ], "__typename": [ 78 @@ -1039,7 +1067,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "mode": [ 78 @@ -1118,7 +1146,7 @@ export default { 3 ], "modified": [ - 4023 + 4202 ], "name": [ 78 @@ -1222,7 +1250,7 @@ export default { 32 ], "time": [ - 4023 + 4202 ], "__typename": [ 78 @@ -1464,7 +1492,7 @@ export default { 78 ], "player": [ - 3439 + 3618 ], "profile_url": [ 78 @@ -1481,7 +1509,7 @@ export default { }, "MemoryStat": { "time": [ - 4023 + 4202 ], "total": [ 180 @@ -1498,7 +1526,7 @@ export default { 49 ], "time": [ - 4023 + 4202 ], "__typename": [ 78 @@ -1518,7 +1546,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "published_at": [ 78 @@ -2276,16 +2304,16 @@ export default { 38 ], "last_analyze": [ - 4023 + 4202 ], "last_autoanalyze": [ - 4023 + 4202 ], "last_autovacuum": [ - 4023 + 4202 ], "last_vacuum": [ - 4023 + 4202 ], "n_dead_tup": [ 38 @@ -2359,7 +2387,7 @@ export default { 78 ], "next_start": [ - 4023 + 4202 ], "__typename": [ 78 @@ -2381,7 +2409,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4462 + 4641 ], "depth": [ 38 @@ -2390,7 +2418,7 @@ export default { 3 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 @@ -2433,10 +2461,10 @@ export default { }, "_map_pool": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2487,10 +2515,10 @@ export default { 95 ], "map_id": [ - 4464 + 4643 ], "map_pool_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -2499,10 +2527,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2510,10 +2538,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2521,10 +2549,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2557,10 +2585,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2481 + 2660 ], "map_pool_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2568,10 +2596,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2580,10 +2608,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2602,10 +2630,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2626,10 +2654,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -2726,7 +2754,7 @@ export default { 119 ], "count": [ - 2481 + 2660 ], "max": [ 125 @@ -2780,7 +2808,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2797,10 +2825,10 @@ export default { 120 ], "abandoned_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "steam_id": [ 182 @@ -2820,10 +2848,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -2834,10 +2862,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -2848,13 +2876,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2862,10 +2890,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -2876,13 +2904,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2915,13 +2943,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2929,7 +2957,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -2938,10 +2966,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -2960,7 +2988,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2976,7 +3004,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -2992,7 +3020,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3011,10 +3039,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -3033,7 +3061,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3064,7 +3092,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3080,7 +3108,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3096,7 +3124,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3104,16 +3132,16 @@ export default { }, "api_keys": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3199,16 +3227,16 @@ export default { 156 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "label": [ 80 ], "last_used_at": [ - 4025 + 4204 ], "steam_id": [ 182 @@ -3228,16 +3256,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3248,16 +3276,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3268,16 +3296,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3313,19 +3341,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "last_used_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3333,7 +3361,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -3342,16 +3370,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3397,16 +3425,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "last_used_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -3464,7 +3492,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -3576,49 +3604,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 1843 + 2022 ], "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 ], "game_server_node": [ - 1229 + 1407 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map": [ - 2134 + 2313 ], "match_map_demo": [ - 2018 + 2197 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "paused": [ 3 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -3627,7 +3655,7 @@ export default { 38 ], "spec": [ - 1352, + 1531, { "path": [ 78 @@ -3638,7 +3666,7 @@ export default { 78 ], "status_history": [ - 1352, + 1531, { "path": [ 78 @@ -3646,7 +3674,7 @@ export default { } ], "user": [ - 3439 + 3618 ], "user_steam_id": [ 180 @@ -3783,7 +3811,7 @@ export default { 196 ], "count": [ - 2481 + 2660 ], "max": [ 205 @@ -3818,10 +3846,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1352 + 1531 ], "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -3854,13 +3882,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -3877,49 +3905,49 @@ export default { 197 ], "clip": [ - 1852 + 2031 ], "clip_id": [ - 4464 + 4643 ], "created_at": [ - 4025 + 4204 ], "error_message": [ 80 ], "game_server_node": [ - 1241 + 1419 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4643 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4025 + 4204 ], "match_map": [ - 2143 + 2322 ], "match_map_demo": [ - 2030 + 2209 ], "match_map_demo_id": [ - 4464 + 4643 ], "match_map_id": [ - 4464 + 4643 ], "paused": [ 4 ], "progress": [ - 2480 + 2659 ], "session_token": [ 80 @@ -3928,16 +3956,16 @@ export default { 39 ], "spec": [ - 1354 + 1533 ], "status": [ 80 ], "status_history": [ - 1354 + 1533 ], "user": [ - 3443 + 3622 ], "user_steam_id": [ 182 @@ -3982,7 +4010,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2479 + 2658 ], "sort_index": [ 38 @@ -3996,49 +4024,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 1861 + 2040 ], "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 ], "game_server_node": [ - 1253 + 1431 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map": [ - 2152 + 2331 ], "match_map_demo": [ - 2042 + 2221 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "paused": [ 3 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -4047,16 +4075,16 @@ export default { 38 ], "spec": [ - 1352 + 1531 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "user": [ - 3450 + 3629 ], "user_steam_id": [ 180 @@ -4067,10 +4095,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -4079,22 +4107,22 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -4114,46 +4142,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "progress": [ - 2481 + 2660 ], "session_token": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4161,10 +4189,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -4173,22 +4201,22 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -4208,46 +4236,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "progress": [ - 2481 + 2660 ], "session_token": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4280,70 +4308,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 1863 + 2042 ], "clip_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node": [ - 1255 + 1433 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_demo": [ - 2044 + 2223 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "paused": [ - 2481 + 2660 ], "progress": [ - 2481 + 2660 ], "session_token": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "spec": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "status_history": [ - 2481 + 2660 ], "user": [ - 3452 + 3631 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4351,7 +4379,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -4359,10 +4387,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1352 + 1531 ], "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -4373,10 +4401,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -4385,25 +4413,25 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "paused": [ 3 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -4412,13 +4440,13 @@ export default { 38 ], "spec": [ - 1352 + 1531 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "user_steam_id": [ 180 @@ -4443,13 +4471,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4471,13 +4499,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4499,13 +4527,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4524,10 +4552,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -4536,25 +4564,25 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "paused": [ 3 ], "progress": [ - 2479 + 2658 ], "session_token": [ 78 @@ -4563,13 +4591,13 @@ export default { 38 ], "spec": [ - 1352 + 1531 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "user_steam_id": [ 180 @@ -4580,7 +4608,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2479 + 2658 ], "sort_index": [ 38 @@ -4594,13 +4622,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4652,13 +4680,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4680,13 +4708,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4708,13 +4736,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2481 + 2660 ], "sort_index": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4722,7 +4750,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -4731,10 +4759,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -4823,10 +4851,10 @@ export default { 241 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "name": [ 80 @@ -4849,10 +4877,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -4866,10 +4894,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -4883,10 +4911,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -4925,16 +4953,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "__typename": [ 78 @@ -4942,7 +4970,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -4951,10 +4979,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -5003,10 +5031,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -5070,22 +5098,22 @@ export default { 3 ], "captain": [ - 3439 + 3618 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "draft_game": [ 354 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "is_organizer": [ 3 @@ -5094,7 +5122,7 @@ export default { 38 ], "picked": [ - 3439 + 3618 ], "picked_steam_id": [ 180 @@ -5231,7 +5259,7 @@ export default { 274 ], "count": [ - 2481 + 2660 ], "max": [ 280 @@ -5291,13 +5319,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5317,22 +5345,22 @@ export default { 4 ], "captain": [ - 3443 + 3622 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4204 ], "draft_game": [ 365 ], "draft_game_id": [ - 4464 + 4643 ], "id": [ - 4464 + 4643 ], "is_organizer": [ 4 @@ -5341,7 +5369,7 @@ export default { 39 ], "picked": [ - 3443 + 3622 ], "picked_steam_id": [ 182 @@ -5370,28 +5398,28 @@ export default { 3 ], "captain": [ - 3450 + 3629 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "draft_game": [ 374 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "lineup": [ 38 ], "picked": [ - 3450 + 3629 ], "picked_steam_id": [ 180 @@ -5405,13 +5433,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "lineup": [ 38 @@ -5425,22 +5453,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "draft_game_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5451,13 +5479,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "lineup": [ 38 @@ -5471,22 +5499,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "draft_game_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5519,37 +5547,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2481 + 2660 ], "captain": [ - 3452 + 3631 ], "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "draft_game": [ 376 ], "draft_game_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_organizer": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked": [ - 3452 + 3631 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5557,7 +5585,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -5574,13 +5602,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "lineup": [ 38 @@ -5608,13 +5636,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5636,13 +5664,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5664,13 +5692,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5695,13 +5723,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "draft_game_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "lineup": [ 38 @@ -5729,13 +5757,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5772,13 +5800,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5800,13 +5828,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5828,13 +5856,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "picked_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -5845,7 +5873,7 @@ export default { 354 ], "draft_game_id": [ - 4462 + 4641 ], "e_draft_game_player_status": [ 483 @@ -5860,7 +5888,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -5869,7 +5897,7 @@ export default { 38 ], "player": [ - 3439 + 3618 ], "status": [ 488 @@ -6009,7 +6037,7 @@ export default { 319 ], "count": [ - 2481 + 2660 ], "max": [ 325 @@ -6072,16 +6100,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6101,7 +6129,7 @@ export default { 365 ], "draft_game_id": [ - 4464 + 4643 ], "e_draft_game_player_status": [ 486 @@ -6116,7 +6144,7 @@ export default { 4 ], "joined_at": [ - 4025 + 4204 ], "lineup": [ 39 @@ -6125,7 +6153,7 @@ export default { 39 ], "player": [ - 3443 + 3622 ], "status": [ 489 @@ -6160,7 +6188,7 @@ export default { 374 ], "draft_game_id": [ - 4462 + 4641 ], "e_draft_game_player_status": [ 494 @@ -6172,7 +6200,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -6181,7 +6209,7 @@ export default { 38 ], "player": [ - 3450 + 3629 ], "status": [ 488 @@ -6195,13 +6223,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4462 + 4641 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -6218,22 +6246,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2481 + 2660 ], "elo_snapshot": [ - 2481 + 2660 ], "joined_at": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6241,13 +6269,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4462 + 4641 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -6264,22 +6292,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2481 + 2660 ], "elo_snapshot": [ - 2481 + 2660 ], "joined_at": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6315,37 +6343,37 @@ export default { 376 ], "draft_game_id": [ - 2481 + 2660 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2481 + 2660 ], "is_captain": [ - 2481 + 2660 ], "is_organizer": [ - 2481 + 2660 ], "joined_at": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "status": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6353,7 +6381,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -6367,7 +6395,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": [ - 4462 + 4641 ], "elo_snapshot": [ 38 @@ -6376,7 +6404,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -6413,16 +6441,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6447,16 +6475,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6481,16 +6509,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6509,7 +6537,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4462 + 4641 ], "elo_snapshot": [ 38 @@ -6518,7 +6546,7 @@ export default { 3 ], "joined_at": [ - 4024 + 4203 ], "lineup": [ 38 @@ -6555,16 +6583,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6604,16 +6632,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6638,16 +6666,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6672,16 +6700,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2481 + 2660 ], "lineup": [ - 2481 + 2660 ], "pick_order": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -6689,7 +6717,7 @@ export default { }, "draft_games": { "access": [ - 676 + 696 ], "capacity": [ 38 @@ -6698,7 +6726,7 @@ export default { 425 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 @@ -6719,43 +6747,43 @@ export default { 504 ], "e_lobby_access": [ - 671 + 691 ], "expires_at": [ - 4024 + 4203 ], "host": [ - 3439 + 3618 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4641 ], "is_organizer": [ 3 ], "map_pool": [ - 1795 + 1974 ], "map_pool_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -6767,10 +6795,10 @@ export default { 467 ], "options": [ - 2176 + 2355 ], "pattern": [ - 1352, + 1531, { "path": [ 78 @@ -6778,7 +6806,7 @@ export default { } ], "pick_deadline": [ - 4024 + 4203 ], "picks": [ 264, @@ -6875,28 +6903,28 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4203 ], "status": [ 509 ], "team_1": [ - 3981 + 4160 ], "team_1_id": [ - 4462 + 4641 ], "team_2": [ - 3981 + 4160 ], "team_2_id": [ - 4462 + 4641 ], "type": [ - 820 + 840 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -7030,7 +7058,7 @@ export default { 364 ], "count": [ - 2481 + 2660 ], "max": [ 370 @@ -7096,19 +7124,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7125,7 +7153,7 @@ export default { 365 ], "access": [ - 677 + 697 ], "capacity": [ 39 @@ -7134,7 +7162,7 @@ export default { 426 ], "created_at": [ - 4025 + 4204 ], "current_pick_lineup": [ 39 @@ -7155,43 +7183,43 @@ export default { 507 ], "e_lobby_access": [ - 674 + 694 ], "expires_at": [ - 4025 + 4204 ], "host": [ - 3443 + 3622 ], "host_steam_id": [ 182 ], "id": [ - 4464 + 4643 ], "inner_squad": [ 4 ], "invite_code": [ - 4464 + 4643 ], "is_organizer": [ 4 ], "map_pool": [ - 1798 + 1977 ], "map_pool_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_options_id": [ - 4464 + 4643 ], "max_elo": [ 39 @@ -7203,13 +7231,13 @@ export default { 468 ], "options": [ - 2180 + 2359 ], "pattern": [ - 1354 + 1533 ], "pick_deadline": [ - 4025 + 4204 ], "picks": [ 275 @@ -7230,28 +7258,28 @@ export default { 4 ], "scheduled_at": [ - 4025 + 4204 ], "status": [ 510 ], "team_1": [ - 3990 + 4169 ], "team_1_id": [ - 4464 + 4643 ], "team_2": [ - 3990 + 4169 ], "team_2_id": [ - 4464 + 4643 ], "type": [ - 821 + 841 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -7280,7 +7308,7 @@ export default { }, "draft_games_insert_input": { "access": [ - 676 + 696 ], "capacity": [ 38 @@ -7289,7 +7317,7 @@ export default { 425 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 @@ -7310,40 +7338,40 @@ export default { 515 ], "e_lobby_access": [ - 682 + 702 ], "expires_at": [ - 4024 + 4203 ], "host": [ - 3450 + 3629 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4641 ], "map_pool": [ - 1804 + 1983 ], "map_pool_id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -7355,10 +7383,10 @@ export default { 467 ], "options": [ - 2187 + 2366 ], "pick_deadline": [ - 4024 + 4203 ], "picks": [ 272 @@ -7373,28 +7401,28 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4203 ], "status": [ 509 ], "team_1": [ - 3999 + 4178 ], "team_1_id": [ - 4462 + 4641 ], "team_2": [ - 3999 + 4178 ], "team_2_id": [ - 4462 + 4641 ], "type": [ - 820 + 840 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -7405,31 +7433,31 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4203 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "invite_code": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -7438,22 +7466,22 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4203 ], "regions": [ 78 ], "scheduled_at": [ - 4024 + 4203 ], "team_1_id": [ - 4462 + 4641 ], "team_2_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -7461,58 +7489,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invite_code": [ - 2481 + 2660 ], "map_pool_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "pick_deadline": [ - 2481 + 2660 ], "regions": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "team_1_id": [ - 2481 + 2660 ], "team_2_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7523,31 +7551,31 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4024 + 4203 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "invite_code": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -7556,22 +7584,22 @@ export default { 38 ], "pick_deadline": [ - 4024 + 4203 ], "regions": [ 78 ], "scheduled_at": [ - 4024 + 4203 ], "team_1_id": [ - 4462 + 4641 ], "team_2_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -7579,58 +7607,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invite_code": [ - 2481 + 2660 ], "map_pool_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "pick_deadline": [ - 2481 + 2660 ], "regions": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "team_1_id": [ - 2481 + 2660 ], "team_2_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7674,22 +7702,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2481 + 2660 ], "capacity": [ - 2481 + 2660 ], "captain_selection": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "draft_order": [ - 2481 + 2660 ], "e_draft_game_captain_selection": [ 433 @@ -7704,61 +7732,61 @@ export default { 517 ], "e_lobby_access": [ - 684 + 704 ], "expires_at": [ - 2481 + 2660 ], "host": [ - 3452 + 3631 ], "host_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "inner_squad": [ - 2481 + 2660 ], "invite_code": [ - 2481 + 2660 ], "is_organizer": [ - 2481 + 2660 ], "map_pool": [ - 1806 + 1985 ], "map_pool_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "mode": [ - 2481 + 2660 ], "options": [ - 2189 + 2368 ], "pattern": [ - 2481 + 2660 ], "pick_deadline": [ - 2481 + 2660 ], "picks_aggregate": [ 271 @@ -7767,34 +7795,34 @@ export default { 316 ], "regions": [ - 2481 + 2660 ], "require_approval": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "team_1": [ - 4001 + 4180 ], "team_1_id": [ - 2481 + 2660 ], "team_2": [ - 4001 + 4180 ], "team_2_id": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7802,7 +7830,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -7813,7 +7841,7 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 676 + 696 ], "capacity": [ 38 @@ -7822,7 +7850,7 @@ export default { 425 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 @@ -7831,28 +7859,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4203 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -7864,7 +7892,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4203 ], "regions": [ 78 @@ -7873,22 +7901,22 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4203 ], "status": [ 509 ], "team_1_id": [ - 4462 + 4641 ], "team_2_id": [ - 4462 + 4641 ], "type": [ - 820 + 840 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -7916,19 +7944,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7956,19 +7984,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -7996,19 +8024,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8027,7 +8055,7 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 676 + 696 ], "capacity": [ 38 @@ -8036,7 +8064,7 @@ export default { 425 ], "created_at": [ - 4024 + 4203 ], "current_pick_lineup": [ 38 @@ -8045,28 +8073,28 @@ export default { 446 ], "expires_at": [ - 4024 + 4203 ], "host_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "inner_squad": [ 3 ], "invite_code": [ - 4462 + 4641 ], "map_pool_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_elo": [ 38 @@ -8078,7 +8106,7 @@ export default { 467 ], "pick_deadline": [ - 4024 + 4203 ], "regions": [ 78 @@ -8087,22 +8115,22 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4203 ], "status": [ 509 ], "team_1_id": [ - 4462 + 4641 ], "team_2_id": [ - 4462 + 4641 ], "type": [ - 820 + 840 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -8130,19 +8158,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8185,19 +8213,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8225,19 +8253,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8265,19 +8293,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2481 + 2660 ], "current_pick_lineup": [ - 2481 + 2660 ], "host_steam_id": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8430,10 +8458,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8651,10 +8679,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -8872,10 +8900,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9093,10 +9121,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9314,10 +9342,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9535,10 +9563,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9598,7 +9626,7 @@ export default { 78 ] }, - "e_friend_status": { + "e_event_status": { "description": [ 78 ], @@ -9609,7 +9637,7 @@ export default { 78 ] }, - "e_friend_status_aggregate": { + "e_event_status_aggregate": { "aggregate": [ 527 ], @@ -9620,13 +9648,13 @@ export default { 78 ] }, - "e_friend_status_aggregate_fields": { + "e_event_status_aggregate_fields": { "count": [ 38, { "columns": [ - 540, - "[e_friend_status_select_column!]" + 539, + "[e_event_status_select_column!]" ], "distinct": [ 3 @@ -9643,7 +9671,7 @@ export default { 78 ] }, - "e_friend_status_bool_exp": { + "e_event_status_bool_exp": { "_and": [ 528 ], @@ -9663,9 +9691,9 @@ export default { 78 ] }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { + "e_event_status_constraint": {}, + "e_event_status_enum": {}, + "e_event_status_enum_comparison_exp": { "_eq": [ 530 ], @@ -9685,6 +9713,216 @@ export default { 78 ] }, + "e_event_status_insert_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_max_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_min_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 525 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_on_conflict": { + "constraint": [ + 529 + ], + "update_columns": [ + 543 + ], + "where": [ + 528 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_order_by": { + "description": [ + 2660 + ], + "value": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_pk_columns_input": { + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_select_column": {}, + "e_event_status_set_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_stream_cursor_input": { + "initial_value": [ + 542 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_stream_cursor_value_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_status_update_column": {}, + "e_event_status_updates": { + "_set": [ + 540 + ], + "where": [ + 528 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 547 + ], + "nodes": [ + 545 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 560, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 553 + ], + "min": [ + 554 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 548 + ], + "_not": [ + 548 + ], + "_or": [ + 548 + ], + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 550 + ], + "_in": [ + 550 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 550 + ], + "_nin": [ + 550 + ], + "__typename": [ + 78 + ] + }, "e_friend_status_insert_input": { "description": [ 78 @@ -9723,7 +9961,7 @@ export default { 38 ], "returning": [ - 525 + 545 ], "__typename": [ 78 @@ -9731,10 +9969,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 532 + 552 ], "on_conflict": [ - 537 + 557 ], "__typename": [ 78 @@ -9742,13 +9980,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 529 + 549 ], "update_columns": [ - 544 + 564 ], "where": [ - 528 + 548 ], "__typename": [ 78 @@ -9756,10 +9994,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9787,7 +10025,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 543 + 563 ], "ordering": [ 236 @@ -9810,10 +10048,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 541 + 561 ], "where": [ - 528 + 548 ], "__typename": [ 78 @@ -9832,10 +10070,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 548 + 568 ], "nodes": [ - 546 + 566 ], "__typename": [ 78 @@ -9846,7 +10084,7 @@ export default { 38, { "columns": [ - 560, + 580, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -9855,10 +10093,10 @@ export default { } ], "max": [ - 554 + 574 ], "min": [ - 555 + 575 ], "__typename": [ 78 @@ -9866,13 +10104,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 549 + 569 ], "_not": [ - 549 + 569 ], "_or": [ - 549 + 569 ], "description": [ 80 @@ -9888,19 +10126,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 551 + 571 ], "_in": [ - 551 + 571 ], "_is_null": [ 3 ], "_neq": [ - 551 + 571 ], "_nin": [ - 551 + 571 ], "__typename": [ 78 @@ -9944,7 +10182,7 @@ export default { 38 ], "returning": [ - 546 + 566 ], "__typename": [ 78 @@ -9952,13 +10190,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 550 + 570 ], "update_columns": [ - 564 + 584 ], "where": [ - 549 + 569 ], "__typename": [ 78 @@ -9966,10 +10204,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -9997,7 +10235,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 563 + 583 ], "ordering": [ 236 @@ -10020,10 +10258,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 561 + 581 ], "where": [ - 549 + 569 ], "__typename": [ 78 @@ -10042,10 +10280,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 568 + 588 ], "nodes": [ - 566 + 586 ], "__typename": [ 78 @@ -10056,7 +10294,7 @@ export default { 38, { "columns": [ - 581, + 601, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -10065,10 +10303,10 @@ export default { } ], "max": [ - 574 + 594 ], "min": [ - 575 + 595 ], "__typename": [ 78 @@ -10076,13 +10314,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 569 + 589 ], "_not": [ - 569 + 589 ], "_or": [ - 569 + 589 ], "description": [ 80 @@ -10098,19 +10336,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 571 + 591 ], "_in": [ - 571 + 591 ], "_is_null": [ 3 ], "_neq": [ - 571 + 591 ], "_nin": [ - 571 + 591 ], "__typename": [ 78 @@ -10154,7 +10392,7 @@ export default { 38 ], "returning": [ - 566 + 586 ], "__typename": [ 78 @@ -10162,10 +10400,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 573 + 593 ], "on_conflict": [ - 578 + 598 ], "__typename": [ 78 @@ -10173,13 +10411,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 570 + 590 ], "update_columns": [ - 585 + 605 ], "where": [ - 569 + 589 ], "__typename": [ 78 @@ -10187,10 +10425,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -10218,7 +10456,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 584 + 604 ], "ordering": [ 236 @@ -10241,10 +10479,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 582 + 602 ], "where": [ - 569 + 589 ], "__typename": [ 78 @@ -10263,10 +10501,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 589 + 609 ], "nodes": [ - 587 + 607 ], "__typename": [ 78 @@ -10277,7 +10515,7 @@ export default { 38, { "columns": [ - 602, + 622, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -10286,10 +10524,10 @@ export default { } ], "max": [ - 595 + 615 ], "min": [ - 596 + 616 ], "__typename": [ 78 @@ -10297,13 +10535,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 590 + 610 ], "_not": [ - 590 + 610 ], "_or": [ - 590 + 610 ], "description": [ 80 @@ -10319,19 +10557,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 592 + 612 ], "_in": [ - 592 + 612 ], "_is_null": [ 3 ], "_neq": [ - 592 + 612 ], "_nin": [ - 592 + 612 ], "__typename": [ 78 @@ -10375,7 +10613,7 @@ export default { 38 ], "returning": [ - 587 + 607 ], "__typename": [ 78 @@ -10383,10 +10621,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 594 + 614 ], "on_conflict": [ - 599 + 619 ], "__typename": [ 78 @@ -10394,13 +10632,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 591 + 611 ], "update_columns": [ - 606 + 626 ], "where": [ - 590 + 610 ], "__typename": [ 78 @@ -10408,10 +10646,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -10439,7 +10677,7 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 605 + 625 ], "ordering": [ 236 @@ -10462,10 +10700,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 603 + 623 ], "where": [ - 590 + 610 ], "__typename": [ 78 @@ -10484,10 +10722,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 610 + 630 ], "nodes": [ - 608 + 628 ], "__typename": [ 78 @@ -10498,7 +10736,7 @@ export default { 38, { "columns": [ - 623, + 643, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -10507,10 +10745,10 @@ export default { } ], "max": [ - 616 + 636 ], "min": [ - 617 + 637 ], "__typename": [ 78 @@ -10518,13 +10756,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 611 + 631 ], "_not": [ - 611 + 631 ], "_or": [ - 611 + 631 ], "description": [ 80 @@ -10540,19 +10778,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 613 + 633 ], "_in": [ - 613 + 633 ], "_is_null": [ 3 ], "_neq": [ - 613 + 633 ], "_nin": [ - 613 + 633 ], "__typename": [ 78 @@ -10596,7 +10834,7 @@ export default { 38 ], "returning": [ - 608 + 628 ], "__typename": [ 78 @@ -10604,10 +10842,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 615 + 635 ], "on_conflict": [ - 620 + 640 ], "__typename": [ 78 @@ -10615,13 +10853,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 612 + 632 ], "update_columns": [ - 627 + 647 ], "where": [ - 611 + 631 ], "__typename": [ 78 @@ -10629,10 +10867,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -10660,7 +10898,7 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 626 + 646 ], "ordering": [ 236 @@ -10683,10 +10921,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 624 + 644 ], "where": [ - 611 + 631 ], "__typename": [ 78 @@ -10705,10 +10943,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 631 + 651 ], "nodes": [ - 629 + 649 ], "__typename": [ 78 @@ -10719,7 +10957,7 @@ export default { 38, { "columns": [ - 644, + 664, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -10728,10 +10966,10 @@ export default { } ], "max": [ - 637 + 657 ], "min": [ - 638 + 658 ], "__typename": [ 78 @@ -10739,13 +10977,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 632 + 652 ], "_not": [ - 632 + 652 ], "_or": [ - 632 + 652 ], "description": [ 80 @@ -10761,19 +10999,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 634 + 654 ], "_in": [ - 634 + 654 ], "_is_null": [ 3 ], "_neq": [ - 634 + 654 ], "_nin": [ - 634 + 654 ], "__typename": [ 78 @@ -10817,7 +11055,7 @@ export default { 38 ], "returning": [ - 629 + 649 ], "__typename": [ 78 @@ -10825,10 +11063,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 636 + 656 ], "on_conflict": [ - 641 + 661 ], "__typename": [ 78 @@ -10836,13 +11074,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 633 + 653 ], "update_columns": [ - 648 + 668 ], "where": [ - 632 + 652 ], "__typename": [ 78 @@ -10850,10 +11088,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -10881,7 +11119,7 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 647 + 667 ], "ordering": [ 236 @@ -10904,10 +11142,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 645 + 665 ], "where": [ - 632 + 652 ], "__typename": [ 78 @@ -10926,10 +11164,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 652 + 672 ], "nodes": [ - 650 + 670 ], "__typename": [ 78 @@ -10940,7 +11178,7 @@ export default { 38, { "columns": [ - 665, + 685, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -10949,10 +11187,10 @@ export default { } ], "max": [ - 658 + 678 ], "min": [ - 659 + 679 ], "__typename": [ 78 @@ -10960,13 +11198,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 653 + 673 ], "_not": [ - 653 + 673 ], "_or": [ - 653 + 673 ], "description": [ 80 @@ -10982,19 +11220,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 655 + 675 ], "_in": [ - 655 + 675 ], "_is_null": [ 3 ], "_neq": [ - 655 + 675 ], "_nin": [ - 655 + 675 ], "__typename": [ 78 @@ -11038,7 +11276,7 @@ export default { 38 ], "returning": [ - 650 + 670 ], "__typename": [ 78 @@ -11046,10 +11284,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 657 + 677 ], "on_conflict": [ - 662 + 682 ], "__typename": [ 78 @@ -11057,13 +11295,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 654 + 674 ], "update_columns": [ - 669 + 689 ], "where": [ - 653 + 673 ], "__typename": [ 78 @@ -11071,10 +11309,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -11102,7 +11340,7 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 668 + 688 ], "ordering": [ 236 @@ -11125,10 +11363,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 666 + 686 ], "where": [ - 653 + 673 ], "__typename": [ 78 @@ -11147,10 +11385,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 673 + 693 ], "nodes": [ - 671 + 691 ], "__typename": [ 78 @@ -11161,7 +11399,7 @@ export default { 38, { "columns": [ - 686, + 706, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -11170,10 +11408,10 @@ export default { } ], "max": [ - 679 + 699 ], "min": [ - 680 + 700 ], "__typename": [ 78 @@ -11181,13 +11419,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 674 + 694 ], "_not": [ - 674 + 694 ], "_or": [ - 674 + 694 ], "description": [ 80 @@ -11203,19 +11441,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 676 + 696 ], "_in": [ - 676 + 696 ], "_is_null": [ 3 ], "_neq": [ - 676 + 696 ], "_nin": [ - 676 + 696 ], "__typename": [ 78 @@ -11259,7 +11497,7 @@ export default { 38 ], "returning": [ - 671 + 691 ], "__typename": [ 78 @@ -11267,10 +11505,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 678 + 698 ], "on_conflict": [ - 683 + 703 ], "__typename": [ 78 @@ -11278,13 +11516,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 675 + 695 ], "update_columns": [ - 690 + 710 ], "where": [ - 674 + 694 ], "__typename": [ 78 @@ -11292,10 +11530,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -11323,7 +11561,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 689 + 709 ], "ordering": [ 236 @@ -11346,10 +11584,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 687 + 707 ], "where": [ - 674 + 694 ], "__typename": [ 78 @@ -11368,10 +11606,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 694 + 714 ], "nodes": [ - 692 + 712 ], "__typename": [ 78 @@ -11382,7 +11620,7 @@ export default { 38, { "columns": [ - 706, + 726, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -11391,10 +11629,10 @@ export default { } ], "max": [ - 700 + 720 ], "min": [ - 701 + 721 ], "__typename": [ 78 @@ -11402,13 +11640,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 695 + 715 ], "_not": [ - 695 + 715 ], "_or": [ - 695 + 715 ], "description": [ 80 @@ -11424,19 +11662,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 697 + 717 ], "_in": [ - 697 + 717 ], "_is_null": [ 3 ], "_neq": [ - 697 + 717 ], "_nin": [ - 697 + 717 ], "__typename": [ 78 @@ -11480,7 +11718,7 @@ export default { 38 ], "returning": [ - 692 + 712 ], "__typename": [ 78 @@ -11488,13 +11726,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 696 + 716 ], "update_columns": [ - 710 + 730 ], "where": [ - 695 + 715 ], "__typename": [ 78 @@ -11502,10 +11740,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -11533,7 +11771,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 709 + 729 ], "ordering": [ 236 @@ -11556,10 +11794,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 707 + 727 ], "where": [ - 695 + 715 ], "__typename": [ 78 @@ -11578,10 +11816,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 714 + 734 ], "nodes": [ - 712 + 732 ], "__typename": [ 78 @@ -11592,7 +11830,7 @@ export default { 38, { "columns": [ - 727, + 747, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -11601,10 +11839,10 @@ export default { } ], "max": [ - 720 + 740 ], "min": [ - 721 + 741 ], "__typename": [ 78 @@ -11612,13 +11850,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 715 + 735 ], "_not": [ - 715 + 735 ], "_or": [ - 715 + 735 ], "description": [ 80 @@ -11634,19 +11872,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 717 + 737 ], "_in": [ - 717 + 737 ], "_is_null": [ 3 ], "_neq": [ - 717 + 737 ], "_nin": [ - 717 + 737 ], "__typename": [ 78 @@ -11690,7 +11928,7 @@ export default { 38 ], "returning": [ - 712 + 732 ], "__typename": [ 78 @@ -11698,10 +11936,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 719 + 739 ], "on_conflict": [ - 724 + 744 ], "__typename": [ 78 @@ -11709,13 +11947,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 716 + 736 ], "update_columns": [ - 731 + 751 ], "where": [ - 715 + 735 ], "__typename": [ 78 @@ -11723,10 +11961,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -11754,7 +11992,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 730 + 750 ], "ordering": [ 236 @@ -11777,10 +12015,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 728 + 748 ], "where": [ - 715 + 735 ], "__typename": [ 78 @@ -11791,10 +12029,10 @@ export default { 78 ], "match_clips": [ - 1843, + 2022, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -11804,19 +12042,19 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_aggregate": [ - 1844, + 2023, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -11826,11 +12064,11 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], @@ -11843,10 +12081,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 735 + 755 ], "nodes": [ - 733 + 753 ], "__typename": [ 78 @@ -11857,7 +12095,7 @@ export default { 38, { "columns": [ - 747, + 767, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -11866,10 +12104,10 @@ export default { } ], "max": [ - 741 + 761 ], "min": [ - 742 + 762 ], "__typename": [ 78 @@ -11877,22 +12115,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 736 + 756 ], "_not": [ - 736 + 756 ], "_or": [ - 736 + 756 ], "description": [ 80 ], "match_clips": [ - 1852 + 2031 ], "match_clips_aggregate": [ - 1845 + 2024 ], "value": [ 80 @@ -11905,19 +12143,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 738 + 758 ], "_in": [ - 738 + 758 ], "_is_null": [ 3 ], "_neq": [ - 738 + 758 ], "_nin": [ - 738 + 758 ], "__typename": [ 78 @@ -11928,7 +12166,7 @@ export default { 78 ], "match_clips": [ - 1849 + 2028 ], "value": [ 78 @@ -11964,7 +12202,7 @@ export default { 38 ], "returning": [ - 733 + 753 ], "__typename": [ 78 @@ -11972,13 +12210,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 737 + 757 ], "update_columns": [ - 751 + 771 ], "where": [ - 736 + 756 ], "__typename": [ 78 @@ -11986,13 +12224,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2481 + 2660 ], "match_clips_aggregate": [ - 1848 + 2027 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -12020,7 +12258,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 750 + 770 ], "ordering": [ 236 @@ -12043,10 +12281,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 748 + 768 ], "where": [ - 736 + 756 ], "__typename": [ 78 @@ -12057,10 +12295,10 @@ export default { 78 ], "match_maps": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -12070,19 +12308,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -12092,11 +12330,11 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], @@ -12109,10 +12347,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 755 + 775 ], "nodes": [ - 753 + 773 ], "__typename": [ 78 @@ -12123,7 +12361,7 @@ export default { 38, { "columns": [ - 768, + 788, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -12132,10 +12370,10 @@ export default { } ], "max": [ - 761 + 781 ], "min": [ - 762 + 782 ], "__typename": [ 78 @@ -12143,22 +12381,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 756 + 776 ], "_not": [ - 756 + 776 ], "_or": [ - 756 + 776 ], "description": [ 80 ], "match_maps": [ - 2143 + 2322 ], "match_maps_aggregate": [ - 2136 + 2315 ], "value": [ 80 @@ -12171,19 +12409,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 758 + 778 ], "_in": [ - 758 + 778 ], "_is_null": [ 3 ], "_neq": [ - 758 + 778 ], "_nin": [ - 758 + 778 ], "__typename": [ 78 @@ -12194,7 +12432,7 @@ export default { 78 ], "match_maps": [ - 2140 + 2319 ], "value": [ 78 @@ -12230,7 +12468,7 @@ export default { 38 ], "returning": [ - 753 + 773 ], "__typename": [ 78 @@ -12238,10 +12476,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 760 + 780 ], "on_conflict": [ - 765 + 785 ], "__typename": [ 78 @@ -12249,13 +12487,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 757 + 777 ], "update_columns": [ - 772 + 792 ], "where": [ - 756 + 776 ], "__typename": [ 78 @@ -12263,13 +12501,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2481 + 2660 ], "match_maps_aggregate": [ - 2139 + 2318 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -12297,7 +12535,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 771 + 791 ], "ordering": [ 236 @@ -12320,10 +12558,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 769 + 789 ], "where": [ - 756 + 776 ], "__typename": [ 78 @@ -12342,10 +12580,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 776 + 796 ], "nodes": [ - 774 + 794 ], "__typename": [ 78 @@ -12356,7 +12594,7 @@ export default { 38, { "columns": [ - 788, + 808, "[e_match_mode_select_column!]" ], "distinct": [ @@ -12365,10 +12603,10 @@ export default { } ], "max": [ - 782 + 802 ], "min": [ - 783 + 803 ], "__typename": [ 78 @@ -12376,13 +12614,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 777 + 797 ], "_not": [ - 777 + 797 ], "_or": [ - 777 + 797 ], "description": [ 80 @@ -12398,19 +12636,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 779 + 799 ], "_in": [ - 779 + 799 ], "_is_null": [ 3 ], "_neq": [ - 779 + 799 ], "_nin": [ - 779 + 799 ], "__typename": [ 78 @@ -12454,7 +12692,7 @@ export default { 38 ], "returning": [ - 774 + 794 ], "__typename": [ 78 @@ -12462,13 +12700,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 778 + 798 ], "update_columns": [ - 792 + 812 ], "where": [ - 777 + 797 ], "__typename": [ 78 @@ -12476,10 +12714,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -12507,7 +12745,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 791 + 811 ], "ordering": [ 236 @@ -12530,10 +12768,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 789 + 809 ], "where": [ - 777 + 797 ], "__typename": [ 78 @@ -12544,10 +12782,10 @@ export default { 78 ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -12557,19 +12795,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_aggregate": [ - 2297, + 2476, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -12579,11 +12817,11 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], @@ -12596,10 +12834,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 796 + 816 ], "nodes": [ - 794 + 814 ], "__typename": [ 78 @@ -12610,7 +12848,7 @@ export default { 38, { "columns": [ - 809, + 829, "[e_match_status_select_column!]" ], "distinct": [ @@ -12619,10 +12857,10 @@ export default { } ], "max": [ - 802 + 822 ], "min": [ - 803 + 823 ], "__typename": [ 78 @@ -12630,22 +12868,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 797 + 817 ], "_not": [ - 797 + 817 ], "_or": [ - 797 + 817 ], "description": [ 80 ], "matches": [ - 2305 + 2484 ], "matches_aggregate": [ - 2298 + 2477 ], "value": [ 80 @@ -12658,19 +12896,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 799 + 819 ], "_in": [ - 799 + 819 ], "_is_null": [ 3 ], "_neq": [ - 799 + 819 ], "_nin": [ - 799 + 819 ], "__typename": [ 78 @@ -12681,7 +12919,7 @@ export default { 78 ], "matches": [ - 2302 + 2481 ], "value": [ 78 @@ -12717,7 +12955,7 @@ export default { 38 ], "returning": [ - 794 + 814 ], "__typename": [ 78 @@ -12725,10 +12963,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 801 + 821 ], "on_conflict": [ - 806 + 826 ], "__typename": [ 78 @@ -12736,13 +12974,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 798 + 818 ], "update_columns": [ - 813 + 833 ], "where": [ - 797 + 817 ], "__typename": [ 78 @@ -12750,13 +12988,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2481 + 2660 ], "matches_aggregate": [ - 2301 + 2480 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -12784,7 +13022,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 812 + 832 ], "ordering": [ 236 @@ -12807,10 +13045,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 810 + 830 ], "where": [ - 797 + 817 ], "__typename": [ 78 @@ -12821,10 +13059,10 @@ export default { 78 ], "maps": [ - 1814, + 1993, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -12834,19 +13072,19 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], "maps_aggregate": [ - 1815, + 1994, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -12856,11 +13094,11 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], @@ -12873,10 +13111,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 817 + 837 ], "nodes": [ - 815 + 835 ], "__typename": [ 78 @@ -12887,7 +13125,7 @@ export default { 38, { "columns": [ - 830, + 850, "[e_match_types_select_column!]" ], "distinct": [ @@ -12896,10 +13134,10 @@ export default { } ], "max": [ - 823 + 843 ], "min": [ - 824 + 844 ], "__typename": [ 78 @@ -12907,22 +13145,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 818 + 838 ], "_not": [ - 818 + 838 ], "_or": [ - 818 + 838 ], "description": [ 80 ], "maps": [ - 1823 + 2002 ], "maps_aggregate": [ - 1816 + 1995 ], "value": [ 80 @@ -12935,19 +13173,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 820 + 840 ], "_in": [ - 820 + 840 ], "_is_null": [ 3 ], "_neq": [ - 820 + 840 ], "_nin": [ - 820 + 840 ], "__typename": [ 78 @@ -12958,7 +13196,7 @@ export default { 78 ], "maps": [ - 1822 + 2001 ], "value": [ 78 @@ -12994,7 +13232,7 @@ export default { 38 ], "returning": [ - 815 + 835 ], "__typename": [ 78 @@ -13002,10 +13240,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 822 + 842 ], "on_conflict": [ - 827 + 847 ], "__typename": [ 78 @@ -13013,13 +13251,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 819 + 839 ], "update_columns": [ - 834 + 854 ], "where": [ - 818 + 838 ], "__typename": [ 78 @@ -13027,13 +13265,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2481 + 2660 ], "maps_aggregate": [ - 1821 + 2000 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -13061,7 +13299,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 833 + 853 ], "ordering": [ 236 @@ -13084,10 +13322,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 831 + 851 ], "where": [ - 818 + 838 ], "__typename": [ 78 @@ -13106,10 +13344,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 838 + 858 ], "nodes": [ - 836 + 856 ], "__typename": [ 78 @@ -13120,7 +13358,7 @@ export default { 38, { "columns": [ - 850, + 870, "[e_notification_types_select_column!]" ], "distinct": [ @@ -13129,10 +13367,10 @@ export default { } ], "max": [ - 844 + 864 ], "min": [ - 845 + 865 ], "__typename": [ 78 @@ -13140,13 +13378,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 839 + 859 ], "_not": [ - 839 + 859 ], "_or": [ - 839 + 859 ], "description": [ 80 @@ -13162,19 +13400,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 841 + 861 ], "_in": [ - 841 + 861 ], "_is_null": [ 3 ], "_neq": [ - 841 + 861 ], "_nin": [ - 841 + 861 ], "__typename": [ 78 @@ -13218,7 +13456,7 @@ export default { 38 ], "returning": [ - 836 + 856 ], "__typename": [ 78 @@ -13226,13 +13464,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 840 + 860 ], "update_columns": [ - 854 + 874 ], "where": [ - 839 + 859 ], "__typename": [ 78 @@ -13240,10 +13478,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -13271,7 +13509,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 853 + 873 ], "ordering": [ 236 @@ -13294,10 +13532,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 851 + 871 ], "where": [ - 839 + 859 ], "__typename": [ 78 @@ -13308,10 +13546,10 @@ export default { 78 ], "player_objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -13321,19 +13559,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -13343,11 +13581,11 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], @@ -13360,10 +13598,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 858 + 878 ], "nodes": [ - 856 + 876 ], "__typename": [ 78 @@ -13374,7 +13612,7 @@ export default { 38, { "columns": [ - 870, + 890, "[e_objective_types_select_column!]" ], "distinct": [ @@ -13383,10 +13621,10 @@ export default { } ], "max": [ - 864 + 884 ], "min": [ - 865 + 885 ], "__typename": [ 78 @@ -13394,22 +13632,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 859 + 879 ], "_not": [ - 859 + 879 ], "_or": [ - 859 + 879 ], "description": [ 80 ], "player_objectives": [ - 3046 + 3225 ], "player_objectives_aggregate": [ - 3039 + 3218 ], "value": [ 80 @@ -13422,19 +13660,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 861 + 881 ], "_in": [ - 861 + 881 ], "_is_null": [ 3 ], "_neq": [ - 861 + 881 ], "_nin": [ - 861 + 881 ], "__typename": [ 78 @@ -13445,7 +13683,7 @@ export default { 78 ], "player_objectives": [ - 3043 + 3222 ], "value": [ 78 @@ -13481,7 +13719,7 @@ export default { 38 ], "returning": [ - 856 + 876 ], "__typename": [ 78 @@ -13489,13 +13727,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 860 + 880 ], "update_columns": [ - 874 + 894 ], "where": [ - 859 + 879 ], "__typename": [ 78 @@ -13503,13 +13741,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2481 + 2660 ], "player_objectives_aggregate": [ - 3042 + 3221 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -13537,7 +13775,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 873 + 893 ], "ordering": [ 236 @@ -13560,10 +13798,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 871 + 891 ], "where": [ - 859 + 879 ], "__typename": [ 78 @@ -13582,10 +13820,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 878 + 898 ], "nodes": [ - 876 + 896 ], "__typename": [ 78 @@ -13596,7 +13834,7 @@ export default { 38, { "columns": [ - 890, + 910, "[e_player_roles_select_column!]" ], "distinct": [ @@ -13605,10 +13843,10 @@ export default { } ], "max": [ - 884 + 904 ], "min": [ - 885 + 905 ], "__typename": [ 78 @@ -13616,13 +13854,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 879 + 899 ], "_not": [ - 879 + 899 ], "_or": [ - 879 + 899 ], "description": [ 80 @@ -13638,19 +13876,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 881 + 901 ], "_in": [ - 881 + 901 ], "_is_null": [ 3 ], "_neq": [ - 881 + 901 ], "_nin": [ - 881 + 901 ], "__typename": [ 78 @@ -13694,7 +13932,7 @@ export default { 38 ], "returning": [ - 876 + 896 ], "__typename": [ 78 @@ -13702,13 +13940,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 880 + 900 ], "update_columns": [ - 894 + 914 ], "where": [ - 879 + 899 ], "__typename": [ 78 @@ -13716,10 +13954,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -13747,7 +13985,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 893 + 913 ], "ordering": [ 236 @@ -13770,10 +14008,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 891 + 911 ], "where": [ - 879 + 899 ], "__typename": [ 78 @@ -13792,10 +14030,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 898 + 918 ], "nodes": [ - 896 + 916 ], "__typename": [ 78 @@ -13806,7 +14044,7 @@ export default { 38, { "columns": [ - 910, + 930, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -13815,10 +14053,10 @@ export default { } ], "max": [ - 904 + 924 ], "min": [ - 905 + 925 ], "__typename": [ 78 @@ -13826,13 +14064,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 899 + 919 ], "_not": [ - 899 + 919 ], "_or": [ - 899 + 919 ], "description": [ 80 @@ -13848,19 +14086,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 901 + 921 ], "_in": [ - 901 + 921 ], "_is_null": [ 3 ], "_neq": [ - 901 + 921 ], "_nin": [ - 901 + 921 ], "__typename": [ 78 @@ -13904,7 +14142,7 @@ export default { 38 ], "returning": [ - 896 + 916 ], "__typename": [ 78 @@ -13912,13 +14150,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 900 + 920 ], "update_columns": [ - 914 + 934 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -13926,10 +14164,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -13957,7 +14195,7 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 913 + 933 ], "ordering": [ 236 @@ -13980,10 +14218,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 911 + 931 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -14002,10 +14240,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 918 + 938 ], "nodes": [ - 916 + 936 ], "__typename": [ 78 @@ -14016,7 +14254,7 @@ export default { 38, { "columns": [ - 930, + 950, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -14025,10 +14263,10 @@ export default { } ], "max": [ - 924 + 944 ], "min": [ - 925 + 945 ], "__typename": [ 78 @@ -14036,13 +14274,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 919 + 939 ], "_not": [ - 919 + 939 ], "_or": [ - 919 + 939 ], "description": [ 80 @@ -14058,19 +14296,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 921 + 941 ], "_in": [ - 921 + 941 ], "_is_null": [ 3 ], "_neq": [ - 921 + 941 ], "_nin": [ - 921 + 941 ], "__typename": [ 78 @@ -14114,7 +14352,7 @@ export default { 38 ], "returning": [ - 916 + 936 ], "__typename": [ 78 @@ -14122,13 +14360,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 920 + 940 ], "update_columns": [ - 934 + 954 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14136,10 +14374,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -14167,7 +14405,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 933 + 953 ], "ordering": [ 236 @@ -14190,10 +14428,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 931 + 951 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14212,10 +14450,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 938 + 958 ], "nodes": [ - 936 + 956 ], "__typename": [ 78 @@ -14226,7 +14464,7 @@ export default { 38, { "columns": [ - 951, + 971, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14235,10 +14473,10 @@ export default { } ], "max": [ - 944 + 964 ], "min": [ - 945 + 965 ], "__typename": [ 78 @@ -14246,13 +14484,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 939 + 959 ], "_not": [ - 939 + 959 ], "_or": [ - 939 + 959 ], "description": [ 80 @@ -14268,19 +14506,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 941 + 961 ], "_in": [ - 941 + 961 ], "_is_null": [ 3 ], "_neq": [ - 941 + 961 ], "_nin": [ - 941 + 961 ], "__typename": [ 78 @@ -14324,7 +14562,7 @@ export default { 38 ], "returning": [ - 936 + 956 ], "__typename": [ 78 @@ -14332,10 +14570,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 943 + 963 ], "on_conflict": [ - 948 + 968 ], "__typename": [ 78 @@ -14343,13 +14581,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 940 + 960 ], "update_columns": [ - 955 + 975 ], "where": [ - 939 + 959 ], "__typename": [ 78 @@ -14357,10 +14595,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -14388,7 +14626,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 954 + 974 ], "ordering": [ 236 @@ -14411,10 +14649,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 952 + 972 ], "where": [ - 939 + 959 ], "__typename": [ 78 @@ -14425,10 +14663,10 @@ export default { 78 ], "scrim_requests": [ - 3880, + 4059, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14438,19 +14676,19 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], "scrim_requests_aggregate": [ - 3881, + 4060, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14460,11 +14698,11 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], @@ -14477,10 +14715,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 959 + 979 ], "nodes": [ - 957 + 977 ], "__typename": [ 78 @@ -14491,7 +14729,7 @@ export default { 38, { "columns": [ - 971, + 991, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14500,10 +14738,10 @@ export default { } ], "max": [ - 965 + 985 ], "min": [ - 966 + 986 ], "__typename": [ 78 @@ -14511,22 +14749,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 960 + 980 ], "_not": [ - 960 + 980 ], "_or": [ - 960 + 980 ], "description": [ 80 ], "scrim_requests": [ - 3891 + 4070 ], "scrim_requests_aggregate": [ - 3882 + 4061 ], "value": [ 80 @@ -14539,19 +14777,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 962 + 982 ], "_in": [ - 962 + 982 ], "_is_null": [ 3 ], "_neq": [ - 962 + 982 ], "_nin": [ - 962 + 982 ], "__typename": [ 78 @@ -14562,7 +14800,7 @@ export default { 78 ], "scrim_requests": [ - 3888 + 4067 ], "value": [ 78 @@ -14598,7 +14836,7 @@ export default { 38 ], "returning": [ - 957 + 977 ], "__typename": [ 78 @@ -14606,13 +14844,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 961 + 981 ], "update_columns": [ - 975 + 995 ], "where": [ - 960 + 980 ], "__typename": [ 78 @@ -14620,13 +14858,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2481 + 2660 ], "scrim_requests_aggregate": [ - 3887 + 4066 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -14654,7 +14892,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 974 + 994 ], "ordering": [ 236 @@ -14677,10 +14915,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 972 + 992 ], "where": [ - 960 + 980 ], "__typename": [ 78 @@ -14691,10 +14929,10 @@ export default { 78 ], "servers": [ - 3553, + 3732, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -14704,19 +14942,19 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], "servers_aggregate": [ - 3554, + 3733, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -14726,11 +14964,11 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], @@ -14743,10 +14981,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 979 + 999 ], "nodes": [ - 977 + 997 ], "__typename": [ 78 @@ -14757,7 +14995,7 @@ export default { 38, { "columns": [ - 991, + 1011, "[e_server_types_select_column!]" ], "distinct": [ @@ -14766,10 +15004,10 @@ export default { } ], "max": [ - 985 + 1005 ], "min": [ - 986 + 1006 ], "__typename": [ 78 @@ -14777,22 +15015,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 980 + 1000 ], "_not": [ - 980 + 1000 ], "_or": [ - 980 + 1000 ], "description": [ 80 ], "servers": [ - 3564 + 3743 ], "servers_aggregate": [ - 3555 + 3734 ], "value": [ 80 @@ -14805,19 +15043,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 982 + 1002 ], "_in": [ - 982 + 1002 ], "_is_null": [ 3 ], "_neq": [ - 982 + 1002 ], "_nin": [ - 982 + 1002 ], "__typename": [ 78 @@ -14828,7 +15066,7 @@ export default { 78 ], "servers": [ - 3561 + 3740 ], "value": [ 78 @@ -14864,7 +15102,7 @@ export default { 38 ], "returning": [ - 977 + 997 ], "__typename": [ 78 @@ -14872,13 +15110,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 981 + 1001 ], "update_columns": [ - 995 + 1015 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -14886,13 +15124,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2481 + 2660 ], "servers_aggregate": [ - 3560 + 3739 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -14920,7 +15158,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 994 + 1014 ], "ordering": [ 236 @@ -14943,10 +15181,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 992 + 1012 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -14957,10 +15195,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -14970,19 +15208,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_map_lineup_1_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -14992,19 +15230,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_map_lineup_2": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -15014,19 +15252,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_map_lineup_2_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -15036,11 +15274,11 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], @@ -15053,10 +15291,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 999 + 1019 ], "nodes": [ - 997 + 1017 ], "__typename": [ 78 @@ -15067,7 +15305,7 @@ export default { 38, { "columns": [ - 1011, + 1031, "[e_sides_select_column!]" ], "distinct": [ @@ -15076,10 +15314,10 @@ export default { } ], "max": [ - 1005 + 1025 ], "min": [ - 1006 + 1026 ], "__typename": [ 78 @@ -15087,28 +15325,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1000 + 1020 ], "_not": [ - 1000 + 1020 ], "_or": [ - 1000 + 1020 ], "description": [ 80 ], "match_map_lineup_1": [ - 2143 + 2322 ], "match_map_lineup_1_aggregate": [ - 2136 + 2315 ], "match_map_lineup_2": [ - 2143 + 2322 ], "match_map_lineup_2_aggregate": [ - 2136 + 2315 ], "value": [ 80 @@ -15121,19 +15359,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1002 + 1022 ], "_in": [ - 1002 + 1022 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 1022 ], "_nin": [ - 1002 + 1022 ], "__typename": [ 78 @@ -15144,10 +15382,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2140 + 2319 ], "match_map_lineup_2": [ - 2140 + 2319 ], "value": [ 78 @@ -15183,7 +15421,7 @@ export default { 38 ], "returning": [ - 997 + 1017 ], "__typename": [ 78 @@ -15191,13 +15429,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1001 + 1021 ], "update_columns": [ - 1015 + 1035 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15205,16 +15443,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2481 + 2660 ], "match_map_lineup_1_aggregate": [ - 2139 + 2318 ], "match_map_lineup_2_aggregate": [ - 2139 + 2318 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -15242,7 +15480,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1014 + 1034 ], "ordering": [ 236 @@ -15265,10 +15503,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1012 + 1032 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15287,10 +15525,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1019 + 1039 ], "nodes": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15301,7 +15539,7 @@ export default { 38, { "columns": [ - 1031, + 1051, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15310,10 +15548,10 @@ export default { } ], "max": [ - 1025 + 1045 ], "min": [ - 1026 + 1046 ], "__typename": [ 78 @@ -15321,13 +15559,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1020 + 1040 ], "_not": [ - 1020 + 1040 ], "_or": [ - 1020 + 1040 ], "description": [ 80 @@ -15343,19 +15581,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1022 + 1042 ], "_in": [ - 1022 + 1042 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1042 ], "_nin": [ - 1022 + 1042 ], "__typename": [ 78 @@ -15399,7 +15637,7 @@ export default { 38 ], "returning": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15407,13 +15645,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1021 + 1041 ], "update_columns": [ - 1035 + 1055 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15421,10 +15659,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -15452,7 +15690,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1034 + 1054 ], "ordering": [ 236 @@ -15475,10 +15713,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1032 + 1052 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15489,10 +15727,10 @@ export default { 78 ], "team_rosters": [ - 3739, + 3918, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -15502,19 +15740,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_rosters_aggregate": [ - 3740, + 3919, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -15524,19 +15762,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "tournament_team_rosters": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15546,19 +15784,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_team_rosters_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15568,11 +15806,11 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], @@ -15585,10 +15823,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1039 + 1059 ], "nodes": [ - 1037 + 1057 ], "__typename": [ 78 @@ -15599,7 +15837,7 @@ export default { 38, { "columns": [ - 1052, + 1072, "[e_team_roles_select_column!]" ], "distinct": [ @@ -15608,10 +15846,10 @@ export default { } ], "max": [ - 1045 + 1065 ], "min": [ - 1046 + 1066 ], "__typename": [ 78 @@ -15619,28 +15857,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1040 + 1060 ], "_not": [ - 1040 + 1060 ], "_or": [ - 1040 + 1060 ], "description": [ 80 ], "team_rosters": [ - 3750 + 3929 ], "team_rosters_aggregate": [ - 3741 + 3920 ], "tournament_team_rosters": [ - 4255 + 4434 ], "tournament_team_rosters_aggregate": [ - 4248 + 4427 ], "value": [ 80 @@ -15653,19 +15891,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1042 + 1062 ], "_in": [ - 1042 + 1062 ], "_is_null": [ 3 ], "_neq": [ - 1042 + 1062 ], "_nin": [ - 1042 + 1062 ], "__typename": [ 78 @@ -15676,10 +15914,10 @@ export default { 78 ], "team_rosters": [ - 3747 + 3926 ], "tournament_team_rosters": [ - 4252 + 4431 ], "value": [ 78 @@ -15715,7 +15953,7 @@ export default { 38 ], "returning": [ - 1037 + 1057 ], "__typename": [ 78 @@ -15723,10 +15961,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1044 + 1064 ], "on_conflict": [ - 1049 + 1069 ], "__typename": [ 78 @@ -15734,13 +15972,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1041 + 1061 ], "update_columns": [ - 1056 + 1076 ], "where": [ - 1040 + 1060 ], "__typename": [ 78 @@ -15748,16 +15986,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2481 + 2660 ], "team_rosters_aggregate": [ - 3746 + 3925 ], "tournament_team_rosters_aggregate": [ - 4251 + 4430 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -15785,7 +16023,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1055 + 1075 ], "ordering": [ 236 @@ -15808,10 +16046,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1053 + 1073 ], "where": [ - 1040 + 1060 ], "__typename": [ 78 @@ -15830,10 +16068,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1060 + 1080 ], "nodes": [ - 1058 + 1078 ], "__typename": [ 78 @@ -15844,7 +16082,7 @@ export default { 38, { "columns": [ - 1072, + 1092, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -15853,10 +16091,10 @@ export default { } ], "max": [ - 1066 + 1086 ], "min": [ - 1067 + 1087 ], "__typename": [ 78 @@ -15864,13 +16102,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1061 + 1081 ], "_not": [ - 1061 + 1081 ], "_or": [ - 1061 + 1081 ], "description": [ 80 @@ -15886,19 +16124,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1063 + 1083 ], "_in": [ - 1063 + 1083 ], "_is_null": [ 3 ], "_neq": [ - 1063 + 1083 ], "_nin": [ - 1063 + 1083 ], "__typename": [ 78 @@ -15942,7 +16180,7 @@ export default { 38 ], "returning": [ - 1058 + 1078 ], "__typename": [ 78 @@ -15950,13 +16188,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1062 + 1082 ], "update_columns": [ - 1076 + 1096 ], "where": [ - 1061 + 1081 ], "__typename": [ 78 @@ -15964,10 +16202,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -15995,7 +16233,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1075 + 1095 ], "ordering": [ 236 @@ -16018,10 +16256,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1073 + 1093 ], "where": [ - 1061 + 1081 ], "__typename": [ 78 @@ -16040,10 +16278,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1080 + 1100 ], "nodes": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16054,7 +16292,7 @@ export default { 38, { "columns": [ - 1092, + 1112, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -16063,10 +16301,10 @@ export default { } ], "max": [ - 1086 + 1106 ], "min": [ - 1087 + 1107 ], "__typename": [ 78 @@ -16074,13 +16312,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1081 + 1101 ], "_not": [ - 1081 + 1101 ], "_or": [ - 1081 + 1101 ], "description": [ 80 @@ -16096,19 +16334,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1083 + 1103 ], "_in": [ - 1083 + 1103 ], "_is_null": [ 3 ], "_neq": [ - 1083 + 1103 ], "_nin": [ - 1083 + 1103 ], "__typename": [ 78 @@ -16152,7 +16390,7 @@ export default { 38 ], "returning": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16160,13 +16398,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1082 + 1102 ], "update_columns": [ - 1096 + 1116 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16174,10 +16412,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -16205,7 +16443,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1095 + 1115 ], "ordering": [ 236 @@ -16228,10 +16466,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1093 + 1113 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16242,10 +16480,10 @@ export default { 78 ], "tournament_stages": [ - 4154, + 4333, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -16255,19 +16493,19 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "tournament_stages_aggregate": [ - 4155, + 4334, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -16277,11 +16515,11 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], @@ -16294,10 +16532,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1100 + 1120 ], "nodes": [ - 1098 + 1118 ], "__typename": [ 78 @@ -16308,7 +16546,7 @@ export default { 38, { "columns": [ - 1113, + 1133, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16317,10 +16555,10 @@ export default { } ], "max": [ - 1106 + 1126 ], "min": [ - 1107 + 1127 ], "__typename": [ 78 @@ -16328,22 +16566,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1101 + 1121 ], "_not": [ - 1101 + 1121 ], "_or": [ - 1101 + 1121 ], "description": [ 80 ], "tournament_stages": [ - 4166 + 4345 ], "tournament_stages_aggregate": [ - 4156 + 4335 ], "value": [ 80 @@ -16356,19 +16594,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1103 + 1123 ], "_in": [ - 1103 + 1123 ], "_is_null": [ 3 ], "_neq": [ - 1103 + 1123 ], "_nin": [ - 1103 + 1123 ], "__typename": [ 78 @@ -16379,7 +16617,7 @@ export default { 78 ], "tournament_stages": [ - 4163 + 4342 ], "value": [ 78 @@ -16415,7 +16653,7 @@ export default { 38 ], "returning": [ - 1098 + 1118 ], "__typename": [ 78 @@ -16423,10 +16661,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1105 + 1125 ], "on_conflict": [ - 1110 + 1130 ], "__typename": [ 78 @@ -16434,13 +16672,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1102 + 1122 ], "update_columns": [ - 1117 + 1137 ], "where": [ - 1101 + 1121 ], "__typename": [ 78 @@ -16448,13 +16686,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2481 + 2660 ], "tournament_stages_aggregate": [ - 4161 + 4340 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -16482,7 +16720,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1116 + 1136 ], "ordering": [ 236 @@ -16505,10 +16743,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1114 + 1134 ], "where": [ - 1101 + 1121 ], "__typename": [ 78 @@ -16519,10 +16757,10 @@ export default { 78 ], "tournaments": [ - 4416, + 4595, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -16532,19 +16770,19 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_aggregate": [ - 4417, + 4596, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -16554,11 +16792,11 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], @@ -16571,10 +16809,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1121 + 1141 ], "nodes": [ - 1119 + 1139 ], "__typename": [ 78 @@ -16585,7 +16823,7 @@ export default { 38, { "columns": [ - 1134, + 1154, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -16594,10 +16832,10 @@ export default { } ], "max": [ - 1127 + 1147 ], "min": [ - 1128 + 1148 ], "__typename": [ 78 @@ -16605,22 +16843,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1122 + 1142 ], "_not": [ - 1122 + 1142 ], "_or": [ - 1122 + 1142 ], "description": [ 80 ], "tournaments": [ - 4427 + 4606 ], "tournaments_aggregate": [ - 4418 + 4597 ], "value": [ 80 @@ -16633,19 +16871,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1124 + 1144 ], "_in": [ - 1124 + 1144 ], "_is_null": [ 3 ], "_neq": [ - 1124 + 1144 ], "_nin": [ - 1124 + 1144 ], "__typename": [ 78 @@ -16656,7 +16894,7 @@ export default { 78 ], "tournaments": [ - 4424 + 4603 ], "value": [ 78 @@ -16692,7 +16930,7 @@ export default { 38 ], "returning": [ - 1119 + 1139 ], "__typename": [ 78 @@ -16700,10 +16938,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1126 + 1146 ], "on_conflict": [ - 1131 + 1151 ], "__typename": [ 78 @@ -16711,13 +16949,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1123 + 1143 ], "update_columns": [ - 1138 + 1158 ], "where": [ - 1122 + 1142 ], "__typename": [ 78 @@ -16725,13 +16963,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2481 + 2660 ], "tournaments_aggregate": [ - 4423 + 4602 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -16759,7 +16997,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1137 + 1157 ], "ordering": [ 236 @@ -16782,10 +17020,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1135 + 1155 ], "where": [ - 1122 + 1142 ], "__typename": [ 78 @@ -16796,10 +17034,10 @@ export default { 78 ], "player_utilities": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -16809,19 +17047,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utilities_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -16831,11 +17069,11 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], @@ -16848,10 +17086,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1142 + 1162 ], "nodes": [ - 1140 + 1160 ], "__typename": [ 78 @@ -16862,7 +17100,7 @@ export default { 38, { "columns": [ - 1154, + 1174, "[e_utility_types_select_column!]" ], "distinct": [ @@ -16871,10 +17109,10 @@ export default { } ], "max": [ - 1148 + 1168 ], "min": [ - 1149 + 1169 ], "__typename": [ 78 @@ -16882,22 +17120,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1143 + 1163 ], "_not": [ - 1143 + 1163 ], "_or": [ - 1143 + 1163 ], "description": [ 80 ], "player_utilities": [ - 3374 + 3553 ], "player_utilities_aggregate": [ - 3367 + 3546 ], "value": [ 80 @@ -16910,19 +17148,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1145 + 1165 ], "_in": [ - 1145 + 1165 ], "_is_null": [ 3 ], "_neq": [ - 1145 + 1165 ], "_nin": [ - 1145 + 1165 ], "__typename": [ 78 @@ -16933,7 +17171,7 @@ export default { 78 ], "player_utilities": [ - 3371 + 3550 ], "value": [ 78 @@ -16969,7 +17207,7 @@ export default { 38 ], "returning": [ - 1140 + 1160 ], "__typename": [ 78 @@ -16977,13 +17215,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1144 + 1164 ], "update_columns": [ - 1158 + 1178 ], "where": [ - 1143 + 1163 ], "__typename": [ 78 @@ -16991,13 +17229,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2481 + 2660 ], "player_utilities_aggregate": [ - 3370 + 3549 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -17025,7 +17263,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1157 + 1177 ], "ordering": [ 236 @@ -17048,10 +17286,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1155 + 1175 ], "where": [ - 1143 + 1163 ], "__typename": [ 78 @@ -17062,10 +17300,10 @@ export default { 78 ], "match_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17075,19 +17313,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17097,11 +17335,11 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], @@ -17114,10 +17352,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1162 + 1182 ], "nodes": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17128,7 +17366,7 @@ export default { 38, { "columns": [ - 1174, + 1194, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -17137,10 +17375,10 @@ export default { } ], "max": [ - 1168 + 1188 ], "min": [ - 1169 + 1189 ], "__typename": [ 78 @@ -17148,22 +17386,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1163 + 1183 ], "_not": [ - 1163 + 1183 ], "_or": [ - 1163 + 1183 ], "description": [ 80 ], "match_veto_picks": [ - 2117 + 2296 ], "match_veto_picks_aggregate": [ - 2112 + 2291 ], "value": [ 80 @@ -17176,19 +17414,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1165 + 1185 ], "_in": [ - 1165 + 1185 ], "_is_null": [ 3 ], "_neq": [ - 1165 + 1185 ], "_nin": [ - 1165 + 1185 ], "__typename": [ 78 @@ -17199,7 +17437,7 @@ export default { 78 ], "match_veto_picks": [ - 2116 + 2295 ], "value": [ 78 @@ -17235,7 +17473,7 @@ export default { 38 ], "returning": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17243,13 +17481,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1164 + 1184 ], "update_columns": [ - 1178 + 1198 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17257,13 +17495,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2481 + 2660 ], "match_veto_picks_aggregate": [ - 2115 + 2294 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -17291,7 +17529,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1177 + 1197 ], "ordering": [ 236 @@ -17314,10 +17552,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1175 + 1195 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17336,10 +17574,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1182 + 1202 ], "nodes": [ - 1180 + 1200 ], "__typename": [ 78 @@ -17350,7 +17588,7 @@ export default { 38, { "columns": [ - 1194, + 1214, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17359,10 +17597,10 @@ export default { } ], "max": [ - 1188 + 1208 ], "min": [ - 1189 + 1209 ], "__typename": [ 78 @@ -17370,13 +17608,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1183 + 1203 ], "_not": [ - 1183 + 1203 ], "_or": [ - 1183 + 1203 ], "description": [ 80 @@ -17392,19 +17630,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1185 + 1205 ], "_in": [ - 1185 + 1205 ], "_is_null": [ 3 ], "_neq": [ - 1185 + 1205 ], "_nin": [ - 1185 + 1205 ], "__typename": [ 78 @@ -17448,7 +17686,7 @@ export default { 38 ], "returning": [ - 1180 + 1200 ], "__typename": [ 78 @@ -17456,13 +17694,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1184 + 1204 ], "update_columns": [ - 1198 + 1218 ], "where": [ - 1183 + 1203 ], "__typename": [ 78 @@ -17470,10 +17708,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -17501,7 +17739,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1197 + 1217 ], "ordering": [ 236 @@ -17524,86 +17762,81 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1195 + 1215 ], "where": [ - 1183 + 1203 ], "__typename": [ 78 ] }, - "float8": {}, - "float8_comparison_exp": { - "_eq": [ - 1200 - ], - "_gt": [ - 1200 - ], - "_gte": [ - 1200 - ], - "_in": [ - 1200 - ], - "_is_null": [ - 3 + "event_organizers": { + "created_at": [ + 4203 ], - "_lt": [ - 1200 + "event": [ + 1350 ], - "_lte": [ - 1200 + "event_id": [ + 4641 ], - "_neq": [ - 1200 + "organizer": [ + 3618 ], - "_nin": [ - 1200 + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "friends": { - "e_status": [ - 525 - ], - "other_player_steam_id": [ - 180 + "event_organizers_aggregate": { + "aggregate": [ + 1224 ], - "player_steam_id": [ - 180 + "nodes": [ + 1220 ], - "status": [ - 530 + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_bool_exp": { + "count": [ + 1223 ], "__typename": [ 78 ] }, - "friends_aggregate": { - "aggregate": [ - 1204 + "event_organizers_aggregate_bool_exp_count": { + "arguments": [ + 1241 ], - "nodes": [ - 1202 + "distinct": [ + 3 + ], + "filter": [ + 1229 + ], + "predicate": [ + 39 ], "__typename": [ 78 ] }, - "friends_aggregate_fields": { + "event_organizers_aggregate_fields": { "avg": [ - 1205 + 1227 ], "count": [ 38, { "columns": [ - 1216, - "[friends_select_column!]" + 1241, + "[event_organizers_select_column!]" ], "distinct": [ 3 @@ -17611,228 +17844,337 @@ export default { } ], "max": [ - 1210 + 1233 ], "min": [ - 1211 + 1235 ], "stddev": [ - 1218 + 1243 ], "stddev_pop": [ - 1219 + 1245 ], "stddev_samp": [ - 1220 + 1247 ], "sum": [ - 1223 + 1251 ], "var_pop": [ - 1226 + 1255 ], "var_samp": [ - 1227 + 1257 ], "variance": [ + 1259 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_order_by": { + "avg": [ 1228 ], + "count": [ + 2660 + ], + "max": [ + 1234 + ], + "min": [ + 1236 + ], + "stddev": [ + 1244 + ], + "stddev_pop": [ + 1246 + ], + "stddev_samp": [ + 1248 + ], + "sum": [ + 1252 + ], + "var_pop": [ + 1256 + ], + "var_samp": [ + 1258 + ], + "variance": [ + 1260 + ], "__typename": [ 78 ] }, - "friends_avg_fields": { - "other_player_steam_id": [ - 29 + "event_organizers_arr_rel_insert_input": { + "data": [ + 1232 ], - "player_steam_id": [ + "on_conflict": [ + 1238 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_avg_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "friends_bool_exp": { + "event_organizers_avg_order_by": { + "steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_bool_exp": { "_and": [ - 1206 + 1229 ], "_not": [ - 1206 + 1229 ], "_or": [ - 1206 + 1229 ], - "e_status": [ - 528 + "created_at": [ + 4204 ], - "other_player_steam_id": [ - 182 + "event": [ + 1354 ], - "player_steam_id": [ - 182 + "event_id": [ + 4643 ], - "status": [ - 531 + "organizer": [ + 3622 + ], + "steam_id": [ + 182 ], "__typename": [ 78 ] }, - "friends_constraint": {}, - "friends_inc_input": { - "other_player_steam_id": [ + "event_organizers_constraint": {}, + "event_organizers_inc_input": { + "steam_id": [ 180 ], - "player_steam_id": [ + "__typename": [ + 78 + ] + }, + "event_organizers_insert_input": { + "created_at": [ + 4203 + ], + "event": [ + 1361 + ], + "event_id": [ + 4641 + ], + "organizer": [ + 3629 + ], + "steam_id": [ 180 ], "__typename": [ 78 ] }, - "friends_insert_input": { - "e_status": [ - 536 + "event_organizers_max_fields": { + "created_at": [ + 4203 ], - "other_player_steam_id": [ - 180 + "event_id": [ + 4641 ], - "player_steam_id": [ + "steam_id": [ 180 ], - "status": [ - 530 + "__typename": [ + 78 + ] + }, + "event_organizers_max_order_by": { + "created_at": [ + 2660 + ], + "event_id": [ + 2660 + ], + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_max_fields": { - "other_player_steam_id": [ - 180 + "event_organizers_min_fields": { + "created_at": [ + 4203 ], - "player_steam_id": [ + "event_id": [ + 4641 + ], + "steam_id": [ 180 ], "__typename": [ 78 ] }, - "friends_min_fields": { - "other_player_steam_id": [ - 180 + "event_organizers_min_order_by": { + "created_at": [ + 2660 ], - "player_steam_id": [ - 180 + "event_id": [ + 2660 + ], + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_mutation_response": { + "event_organizers_mutation_response": { "affected_rows": [ 38 ], "returning": [ - 1202 + 1220 ], "__typename": [ 78 ] }, - "friends_on_conflict": { + "event_organizers_on_conflict": { "constraint": [ - 1207 + 1230 ], "update_columns": [ - 1224 + 1253 ], "where": [ - 1206 + 1229 ], "__typename": [ 78 ] }, - "friends_order_by": { - "e_status": [ - 538 + "event_organizers_order_by": { + "created_at": [ + 2660 ], - "other_player_steam_id": [ - 2481 + "event": [ + 1363 ], - "player_steam_id": [ - 2481 + "event_id": [ + 2660 ], - "status": [ - 2481 + "organizer": [ + 3631 + ], + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_pk_columns_input": { - "other_player_steam_id": [ - 180 + "event_organizers_pk_columns_input": { + "event_id": [ + 4641 ], - "player_steam_id": [ + "steam_id": [ 180 ], "__typename": [ 78 ] }, - "friends_select_column": {}, - "friends_set_input": { - "other_player_steam_id": [ - 180 + "event_organizers_select_column": {}, + "event_organizers_set_input": { + "created_at": [ + 4203 ], - "player_steam_id": [ - 180 + "event_id": [ + 4641 ], - "status": [ - 530 + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "friends_stddev_fields": { - "other_player_steam_id": [ + "event_organizers_stddev_fields": { + "steam_id": [ 29 ], - "player_steam_id": [ - 29 + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_stddev_pop_fields": { - "other_player_steam_id": [ + "event_organizers_stddev_pop_fields": { + "steam_id": [ 29 ], - "player_steam_id": [ - 29 + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_pop_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_stddev_samp_fields": { - "other_player_steam_id": [ + "event_organizers_stddev_samp_fields": { + "steam_id": [ 29 ], - "player_steam_id": [ - 29 + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_samp_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_stream_cursor_input": { + "event_organizers_stream_cursor_input": { "initial_value": [ - 1222 + 1250 ], "ordering": [ 236 @@ -17841,367 +18183,147 @@ export default { 78 ] }, - "friends_stream_cursor_value_input": { - "other_player_steam_id": [ - 180 + "event_organizers_stream_cursor_value_input": { + "created_at": [ + 4203 ], - "player_steam_id": [ - 180 + "event_id": [ + 4641 ], - "status": [ - 530 + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "friends_sum_fields": { - "other_player_steam_id": [ + "event_organizers_sum_fields": { + "steam_id": [ 180 ], - "player_steam_id": [ - 180 + "__typename": [ + 78 + ] + }, + "event_organizers_sum_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_update_column": {}, - "friends_updates": { + "event_organizers_update_column": {}, + "event_organizers_updates": { "_inc": [ - 1208 + 1231 ], "_set": [ - 1217 + 1242 ], "where": [ - 1206 + 1229 ], "__typename": [ 78 ] }, - "friends_var_pop_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ + "event_organizers_var_pop_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "friends_var_samp_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ - 29 + "event_organizers_var_pop_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "friends_variance_fields": { - "other_player_steam_id": [ - 29 - ], - "player_steam_id": [ + "event_organizers_var_samp_fields": { + "steam_id": [ 29 ], "__typename": [ 78 ] }, - "game_server_nodes": { - "available_server_count": [ - 38 - ], - "build_id": [ - 38 - ], - "cpu_cores_per_socket": [ - 38 - ], - "cpu_frequency_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cpu_governor_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cpu_sockets": [ - 38 - ], - "cpu_threads_per_core": [ - 38 - ], - "cs2_launch_options": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "cs2_video_settings": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "csgo_build_id": [ - 38 - ], - "demo_network_limiter": [ - 38 - ], - "disk_available_gb": [ - 38 - ], - "disk_used_percent": [ - 38 - ], - "e_region": [ - 3526 - ], - "e_status": [ - 566 - ], - "enabled": [ - 3 - ], - "enabled_for_match_making": [ - 3 - ], - "end_port_range": [ - 38 - ], - "gpu": [ - 3 - ], - "gpu_demos_enabled": [ - 3 - ], - "gpu_info": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "gpu_rendering_enabled": [ - 3 - ], - "gpu_streaming_enabled": [ - 3 - ], - "id": [ - 78 - ], - "label": [ - 78 - ], - "lan_ip": [ - 1348 - ], - "node_ip": [ - 1348 - ], - "offline_at": [ - 4024 - ], - "pin_build_id": [ - 38 - ], - "pin_plugin_runtime": [ - 78 - ], - "pin_plugin_version": [ - 78 - ], - "pinned_version": [ - 1280 - ], - "plugin_supported": [ - 3 - ], - "public_ip": [ - 1348 - ], - "region": [ - 78 - ], - "servers": [ - 3553, - { - "distinct_on": [ - 3577, - "[servers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 3575, - "[servers_order_by!]" - ], - "where": [ - 3564 - ] - } - ], - "servers_aggregate": [ - 3554, - { - "distinct_on": [ - 3577, - "[servers_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 3575, - "[servers_order_by!]" - ], - "where": [ - 3564 - ] - } - ], - "shader_bake_progress": [ - 2479 - ], - "shader_bake_progress_stage": [ - 78 - ], - "shader_bake_status": [ - 78 - ], - "shader_bake_status_history": [ - 1352, - { - "path": [ - 78 - ] - } - ], - "start_port_range": [ - 38 - ], - "status": [ - 571 - ], - "supports_cpu_pinning": [ - 3 - ], - "supports_low_latency": [ - 3 - ], - "token": [ - 78 - ], - "total_server_count": [ - 38 - ], - "update_status": [ - 78 - ], - "version": [ - 1280 + "event_organizers_var_samp_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate": { - "aggregate": [ - 1235 - ], - "nodes": [ - 1229 + "event_organizers_variance_fields": { + "steam_id": [ + 29 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp": { - "bool_and": [ - 1232 - ], - "bool_or": [ - 1233 - ], - "count": [ - 1234 + "event_organizers_variance_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp_bool_and": { - "arguments": [ - 1259 + "event_players": { + "created_at": [ + 4203 ], - "distinct": [ - 3 + "event": [ + 1350 ], - "filter": [ - 1241 + "event_id": [ + 4641 ], - "predicate": [ - 4 + "player": [ + 3618 + ], + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp_bool_or": { - "arguments": [ - 1260 - ], - "distinct": [ - 3 + "event_players_aggregate": { + "aggregate": [ + 1265 ], - "filter": [ - 1241 + "nodes": [ + 1261 ], - "predicate": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_aggregate_bool_exp": { + "count": [ + 1264 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_bool_exp_count": { + "event_players_aggregate_bool_exp_count": { "arguments": [ - 1258 + 1282 ], "distinct": [ 3 ], "filter": [ - 1241 + 1270 ], "predicate": [ 39 @@ -18210,16 +18332,16 @@ export default { 78 ] }, - "game_server_nodes_aggregate_fields": { + "event_players_aggregate_fields": { "avg": [ - 1239 + 1268 ], "count": [ 38, { "columns": [ - 1258, - "[game_server_nodes_select_column!]" + 1282, + "[event_players_select_column!]" ], "distinct": [ 3 @@ -18227,319 +18349,2819 @@ export default { } ], "max": [ - 1248 + 1274 ], "min": [ - 1250 + 1276 ], "stddev": [ - 1262 + 1284 ], "stddev_pop": [ - 1264 + 1286 ], "stddev_samp": [ - 1266 + 1288 ], "sum": [ - 1270 + 1292 ], "var_pop": [ - 1274 + 1296 ], "var_samp": [ - 1276 + 1298 ], "variance": [ - 1278 + 1300 ], "__typename": [ 78 ] }, - "game_server_nodes_aggregate_order_by": { + "event_players_aggregate_order_by": { "avg": [ - 1240 + 1269 ], "count": [ - 2481 + 2660 ], "max": [ - 1249 + 1275 ], "min": [ - 1251 + 1277 ], "stddev": [ - 1263 + 1285 ], "stddev_pop": [ - 1265 + 1287 ], "stddev_samp": [ - 1267 + 1289 ], "sum": [ - 1271 + 1293 ], "var_pop": [ - 1275 + 1297 ], "var_samp": [ - 1277 + 1299 ], "variance": [ - 1279 + 1301 ], "__typename": [ 78 ] }, - "game_server_nodes_append_input": { - "cpu_frequency_info": [ - 1352 - ], - "cpu_governor_info": [ - 1352 - ], - "cs2_launch_options": [ - 1352 - ], - "cs2_video_settings": [ - 1352 - ], - "gpu_info": [ - 1352 + "event_players_arr_rel_insert_input": { + "data": [ + 1273 ], - "shader_bake_status_history": [ - 1352 + "on_conflict": [ + 1279 ], "__typename": [ 78 ] }, - "game_server_nodes_arr_rel_insert_input": { - "data": [ - 1247 + "event_players_avg_fields": { + "steam_id": [ + 29 ], - "on_conflict": [ - 1254 + "__typename": [ + 78 + ] + }, + "event_players_avg_order_by": { + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "game_server_nodes_avg_fields": { - "available_server_count": [ - 38 + "event_players_bool_exp": { + "_and": [ + 1270 ], - "build_id": [ - 29 + "_not": [ + 1270 ], - "cpu_cores_per_socket": [ - 29 + "_or": [ + 1270 ], - "cpu_sockets": [ - 29 + "created_at": [ + 4204 ], - "cpu_threads_per_core": [ - 29 + "event": [ + 1354 ], - "csgo_build_id": [ - 29 + "event_id": [ + 4643 ], - "demo_network_limiter": [ - 29 + "player": [ + 3622 ], - "disk_available_gb": [ - 29 + "steam_id": [ + 182 ], - "disk_used_percent": [ - 29 + "__typename": [ + 78 + ] + }, + "event_players_constraint": {}, + "event_players_inc_input": { + "steam_id": [ + 180 ], - "end_port_range": [ - 29 + "__typename": [ + 78 + ] + }, + "event_players_insert_input": { + "created_at": [ + 4203 ], - "pin_build_id": [ - 29 + "event": [ + 1361 ], - "shader_bake_progress": [ - 29 + "event_id": [ + 4641 ], - "start_port_range": [ - 29 + "player": [ + 3629 ], - "total_server_count": [ - 38 + "steam_id": [ + 180 ], "__typename": [ 78 ] }, - "game_server_nodes_avg_order_by": { - "build_id": [ - 2481 + "event_players_max_fields": { + "created_at": [ + 4203 ], - "cpu_cores_per_socket": [ - 2481 + "event_id": [ + 4641 ], - "cpu_sockets": [ - 2481 + "steam_id": [ + 180 ], - "cpu_threads_per_core": [ - 2481 + "__typename": [ + 78 + ] + }, + "event_players_max_order_by": { + "created_at": [ + 2660 ], - "csgo_build_id": [ - 2481 + "event_id": [ + 2660 ], - "demo_network_limiter": [ - 2481 + "steam_id": [ + 2660 ], - "disk_available_gb": [ - 2481 + "__typename": [ + 78 + ] + }, + "event_players_min_fields": { + "created_at": [ + 4203 ], - "disk_used_percent": [ - 2481 + "event_id": [ + 4641 ], - "end_port_range": [ - 2481 + "steam_id": [ + 180 ], - "pin_build_id": [ - 2481 + "__typename": [ + 78 + ] + }, + "event_players_min_order_by": { + "created_at": [ + 2660 ], - "shader_bake_progress": [ - 2481 + "event_id": [ + 2660 ], - "start_port_range": [ - 2481 + "steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "game_server_nodes_bool_exp": { - "_and": [ - 1241 - ], - "_not": [ - 1241 + "event_players_mutation_response": { + "affected_rows": [ + 38 ], - "_or": [ - 1241 + "returning": [ + 1261 ], - "available_server_count": [ - 39 + "__typename": [ + 78 + ] + }, + "event_players_on_conflict": { + "constraint": [ + 1271 ], - "build_id": [ - 39 + "update_columns": [ + 1294 ], - "cpu_cores_per_socket": [ - 39 + "where": [ + 1270 ], - "cpu_frequency_info": [ - 1354 + "__typename": [ + 78 + ] + }, + "event_players_order_by": { + "created_at": [ + 2660 ], - "cpu_governor_info": [ - 1354 + "event": [ + 1363 ], - "cpu_sockets": [ - 39 + "event_id": [ + 2660 ], - "cpu_threads_per_core": [ - 39 + "player": [ + 3631 ], - "cs2_launch_options": [ - 1354 + "steam_id": [ + 2660 ], - "cs2_video_settings": [ - 1354 + "__typename": [ + 78 + ] + }, + "event_players_pk_columns_input": { + "event_id": [ + 4641 ], - "csgo_build_id": [ - 39 + "steam_id": [ + 180 ], - "demo_network_limiter": [ - 39 + "__typename": [ + 78 + ] + }, + "event_players_select_column": {}, + "event_players_set_input": { + "created_at": [ + 4203 ], - "disk_available_gb": [ - 39 + "event_id": [ + 4641 ], - "disk_used_percent": [ - 39 + "steam_id": [ + 180 ], - "e_region": [ - 3530 + "__typename": [ + 78 + ] + }, + "event_players_stddev_fields": { + "steam_id": [ + 29 ], - "e_status": [ - 569 + "__typename": [ + 78 + ] + }, + "event_players_stddev_order_by": { + "steam_id": [ + 2660 ], - "enabled": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_stddev_pop_fields": { + "steam_id": [ + 29 ], - "enabled_for_match_making": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_stddev_pop_order_by": { + "steam_id": [ + 2660 ], - "end_port_range": [ - 39 + "__typename": [ + 78 + ] + }, + "event_players_stddev_samp_fields": { + "steam_id": [ + 29 ], - "gpu": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_stddev_samp_order_by": { + "steam_id": [ + 2660 ], - "gpu_demos_enabled": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_stream_cursor_input": { + "initial_value": [ + 1291 ], - "gpu_info": [ - 1354 + "ordering": [ + 236 ], - "gpu_rendering_enabled": [ - 4 + "__typename": [ + 78 + ] + }, + "event_players_stream_cursor_value_input": { + "created_at": [ + 4203 ], - "gpu_streaming_enabled": [ - 4 + "event_id": [ + 4641 ], - "id": [ - 80 + "steam_id": [ + 180 ], - "label": [ - 80 + "__typename": [ + 78 + ] + }, + "event_players_sum_fields": { + "steam_id": [ + 180 ], - "lan_ip": [ - 1349 + "__typename": [ + 78 + ] + }, + "event_players_sum_order_by": { + "steam_id": [ + 2660 ], - "node_ip": [ - 1349 + "__typename": [ + 78 + ] + }, + "event_players_update_column": {}, + "event_players_updates": { + "_inc": [ + 1272 ], - "offline_at": [ - 4025 + "_set": [ + 1283 ], - "pin_build_id": [ - 39 + "where": [ + 1270 ], - "pin_plugin_runtime": [ - 80 + "__typename": [ + 78 + ] + }, + "event_players_var_pop_fields": { + "steam_id": [ + 29 ], - "pin_plugin_version": [ - 80 + "__typename": [ + 78 + ] + }, + "event_players_var_pop_order_by": { + "steam_id": [ + 2660 ], - "pinned_version": [ - 1285 + "__typename": [ + 78 + ] + }, + "event_players_var_samp_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_players_var_samp_order_by": { + "steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_players_variance_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_players_variance_order_by": { + "steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_teams": { + "created_at": [ + 4203 + ], + "event": [ + 1350 + ], + "event_id": [ + 4641 + ], + "team": [ + 4160 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_aggregate": { + "aggregate": [ + 1306 + ], + "nodes": [ + 1302 + ], + "__typename": [ + 78 + ] + }, + "event_teams_aggregate_bool_exp": { + "count": [ + 1305 + ], + "__typename": [ + 78 + ] + }, + "event_teams_aggregate_bool_exp_count": { + "arguments": [ + 1320 + ], + "distinct": [ + 3 + ], + "filter": [ + 1309 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "event_teams_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 1320, + "[event_teams_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1312 + ], + "min": [ + 1314 + ], + "__typename": [ + 78 + ] + }, + "event_teams_aggregate_order_by": { + "count": [ + 2660 + ], + "max": [ + 1313 + ], + "min": [ + 1315 + ], + "__typename": [ + 78 + ] + }, + "event_teams_arr_rel_insert_input": { + "data": [ + 1311 + ], + "on_conflict": [ + 1317 + ], + "__typename": [ + 78 + ] + }, + "event_teams_bool_exp": { + "_and": [ + 1309 + ], + "_not": [ + 1309 + ], + "_or": [ + 1309 + ], + "created_at": [ + 4204 + ], + "event": [ + 1354 + ], + "event_id": [ + 4643 + ], + "team": [ + 4169 + ], + "team_id": [ + 4643 + ], + "__typename": [ + 78 + ] + }, + "event_teams_constraint": {}, + "event_teams_insert_input": { + "created_at": [ + 4203 + ], + "event": [ + 1361 + ], + "event_id": [ + 4641 + ], + "team": [ + 4178 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_max_fields": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_max_order_by": { + "created_at": [ + 2660 + ], + "event_id": [ + 2660 + ], + "team_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_teams_min_fields": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_min_order_by": { + "created_at": [ + 2660 + ], + "event_id": [ + 2660 + ], + "team_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_teams_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1302 + ], + "__typename": [ + 78 + ] + }, + "event_teams_on_conflict": { + "constraint": [ + 1310 + ], + "update_columns": [ + 1324 + ], + "where": [ + 1309 + ], + "__typename": [ + 78 + ] + }, + "event_teams_order_by": { + "created_at": [ + 2660 + ], + "event": [ + 1363 + ], + "event_id": [ + 2660 + ], + "team": [ + 4180 + ], + "team_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_teams_pk_columns_input": { + "event_id": [ + 4641 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_select_column": {}, + "event_teams_set_input": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_stream_cursor_input": { + "initial_value": [ + 1323 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_teams_stream_cursor_value_input": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "team_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_teams_update_column": {}, + "event_teams_updates": { + "_set": [ + 1321 + ], + "where": [ + 1309 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments": { + "created_at": [ + 4203 + ], + "event": [ + 1350 + ], + "event_id": [ + 4641 + ], + "tournament": [ + 4595 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_aggregate": { + "aggregate": [ + 1330 + ], + "nodes": [ + 1326 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_aggregate_bool_exp": { + "count": [ + 1329 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_aggregate_bool_exp_count": { + "arguments": [ + 1344 + ], + "distinct": [ + 3 + ], + "filter": [ + 1333 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 1344, + "[event_tournaments_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1336 + ], + "min": [ + 1338 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_aggregate_order_by": { + "count": [ + 2660 + ], + "max": [ + 1337 + ], + "min": [ + 1339 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_arr_rel_insert_input": { + "data": [ + 1335 + ], + "on_conflict": [ + 1341 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_bool_exp": { + "_and": [ + 1333 + ], + "_not": [ + 1333 + ], + "_or": [ + 1333 + ], + "created_at": [ + 4204 + ], + "event": [ + 1354 + ], + "event_id": [ + 4643 + ], + "tournament": [ + 4606 + ], + "tournament_id": [ + 4643 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_constraint": {}, + "event_tournaments_insert_input": { + "created_at": [ + 4203 + ], + "event": [ + 1361 + ], + "event_id": [ + 4641 + ], + "tournament": [ + 4615 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_max_fields": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_max_order_by": { + "created_at": [ + 2660 + ], + "event_id": [ + 2660 + ], + "tournament_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_min_fields": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_min_order_by": { + "created_at": [ + 2660 + ], + "event_id": [ + 2660 + ], + "tournament_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1326 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_on_conflict": { + "constraint": [ + 1334 + ], + "update_columns": [ + 1348 + ], + "where": [ + 1333 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_order_by": { + "created_at": [ + 2660 + ], + "event": [ + 1363 + ], + "event_id": [ + 2660 + ], + "tournament": [ + 4617 + ], + "tournament_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_pk_columns_input": { + "event_id": [ + 4641 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_select_column": {}, + "event_tournaments_set_input": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_stream_cursor_input": { + "initial_value": [ + 1347 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_stream_cursor_value_input": { + "created_at": [ + 4203 + ], + "event_id": [ + 4641 + ], + "tournament_id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "event_tournaments_update_column": {}, + "event_tournaments_updates": { + "_set": [ + 1345 + ], + "where": [ + 1333 + ], + "__typename": [ + 78 + ] + }, + "events": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "is_organizer": [ + 3 + ], + "name": [ + 78 + ], + "organizer": [ + 3618 + ], + "organizer_steam_id": [ + 180 + ], + "organizers": [ + 1220, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "organizers_aggregate": [ + 1221, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "player_stats": [ + 4644, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], + "player_stats_aggregate": [ + 4645, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], + "players": [ + 1261, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "players_aggregate": [ + 1262, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "starts_at": [ + 4203 + ], + "status": [ + 530 + ], + "teams": [ + 1302, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "teams_aggregate": [ + 1303, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "tournaments": [ + 1326, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "tournaments_aggregate": [ + 1327, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "__typename": [ + 78 + ] + }, + "events_aggregate": { + "aggregate": [ + 1352 + ], + "nodes": [ + 1350 + ], + "__typename": [ + 78 + ] + }, + "events_aggregate_fields": { + "avg": [ + 1353 + ], + "count": [ + 38, + { + "columns": [ + 1365, + "[events_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1358 + ], + "min": [ + 1359 + ], + "stddev": [ + 1367 + ], + "stddev_pop": [ + 1368 + ], + "stddev_samp": [ + 1369 + ], + "sum": [ + 1372 + ], + "var_pop": [ + 1375 + ], + "var_samp": [ + 1376 + ], + "variance": [ + 1377 + ], + "__typename": [ + 78 + ] + }, + "events_avg_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_bool_exp": { + "_and": [ + 1354 + ], + "_not": [ + 1354 + ], + "_or": [ + 1354 + ], + "created_at": [ + 4204 + ], + "description": [ + 80 + ], + "ends_at": [ + 4204 + ], + "id": [ + 4643 + ], + "is_organizer": [ + 4 + ], + "name": [ + 80 + ], + "organizer": [ + 3622 + ], + "organizer_steam_id": [ + 182 + ], + "organizers": [ + 1229 + ], + "organizers_aggregate": [ + 1222 + ], + "player_stats": [ + 4663 + ], + "player_stats_aggregate": [ + 4646 + ], + "players": [ + 1270 + ], + "players_aggregate": [ + 1263 + ], + "starts_at": [ + 4204 + ], + "status": [ + 531 + ], + "teams": [ + 1309 + ], + "teams_aggregate": [ + 1304 + ], + "tournaments": [ + 1333 + ], + "tournaments_aggregate": [ + 1328 + ], + "__typename": [ + 78 + ] + }, + "events_constraint": {}, + "events_inc_input": { + "organizer_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "events_insert_input": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "name": [ + 78 + ], + "organizer": [ + 3629 + ], + "organizer_steam_id": [ + 180 + ], + "organizers": [ + 1226 + ], + "player_stats": [ + 4660 + ], + "players": [ + 1267 + ], + "starts_at": [ + 4203 + ], + "status": [ + 530 + ], + "teams": [ + 1308 + ], + "tournaments": [ + 1332 + ], + "__typename": [ + 78 + ] + }, + "events_max_fields": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "starts_at": [ + 4203 + ], + "__typename": [ + 78 + ] + }, + "events_min_fields": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "starts_at": [ + 4203 + ], + "__typename": [ + 78 + ] + }, + "events_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1350 + ], + "__typename": [ + 78 + ] + }, + "events_obj_rel_insert_input": { + "data": [ + 1357 + ], + "on_conflict": [ + 1362 + ], + "__typename": [ + 78 + ] + }, + "events_on_conflict": { + "constraint": [ + 1355 + ], + "update_columns": [ + 1373 + ], + "where": [ + 1354 + ], + "__typename": [ + 78 + ] + }, + "events_order_by": { + "created_at": [ + 2660 + ], + "description": [ + 2660 + ], + "ends_at": [ + 2660 + ], + "id": [ + 2660 + ], + "is_organizer": [ + 2660 + ], + "name": [ + 2660 + ], + "organizer": [ + 3631 + ], + "organizer_steam_id": [ + 2660 + ], + "organizers_aggregate": [ + 1225 + ], + "player_stats_aggregate": [ + 4659 + ], + "players_aggregate": [ + 1266 + ], + "starts_at": [ + 2660 + ], + "status": [ + 2660 + ], + "teams_aggregate": [ + 1307 + ], + "tournaments_aggregate": [ + 1331 + ], + "__typename": [ + 78 + ] + }, + "events_pk_columns_input": { + "id": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "events_select_column": {}, + "events_set_input": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "starts_at": [ + 4203 + ], + "status": [ + 530 + ], + "__typename": [ + 78 + ] + }, + "events_stddev_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_stddev_pop_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_stddev_samp_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_stream_cursor_input": { + "initial_value": [ + 1371 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "events_stream_cursor_value_input": { + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "ends_at": [ + 4203 + ], + "id": [ + 4641 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "starts_at": [ + 4203 + ], + "status": [ + 530 + ], + "__typename": [ + 78 + ] + }, + "events_sum_fields": { + "organizer_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "events_update_column": {}, + "events_updates": { + "_inc": [ + 1356 + ], + "_set": [ + 1366 + ], + "where": [ + 1354 + ], + "__typename": [ + 78 + ] + }, + "events_var_pop_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_var_samp_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "events_variance_fields": { + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "float8": {}, + "float8_comparison_exp": { + "_eq": [ + 1378 + ], + "_gt": [ + 1378 + ], + "_gte": [ + 1378 + ], + "_in": [ + 1378 + ], + "_is_null": [ + 3 + ], + "_lt": [ + 1378 + ], + "_lte": [ + 1378 + ], + "_neq": [ + 1378 + ], + "_nin": [ + 1378 + ], + "__typename": [ + 78 + ] + }, + "friends": { + "e_status": [ + 545 + ], + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "status": [ + 550 + ], + "__typename": [ + 78 + ] + }, + "friends_aggregate": { + "aggregate": [ + 1382 + ], + "nodes": [ + 1380 + ], + "__typename": [ + 78 + ] + }, + "friends_aggregate_fields": { + "avg": [ + 1383 + ], + "count": [ + 38, + { + "columns": [ + 1394, + "[friends_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1388 + ], + "min": [ + 1389 + ], + "stddev": [ + 1396 + ], + "stddev_pop": [ + 1397 + ], + "stddev_samp": [ + 1398 + ], + "sum": [ + 1401 + ], + "var_pop": [ + 1404 + ], + "var_samp": [ + 1405 + ], + "variance": [ + 1406 + ], + "__typename": [ + 78 + ] + }, + "friends_avg_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_bool_exp": { + "_and": [ + 1384 + ], + "_not": [ + 1384 + ], + "_or": [ + 1384 + ], + "e_status": [ + 548 + ], + "other_player_steam_id": [ + 182 + ], + "player_steam_id": [ + 182 + ], + "status": [ + 551 + ], + "__typename": [ + 78 + ] + }, + "friends_constraint": {}, + "friends_inc_input": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "friends_insert_input": { + "e_status": [ + 556 + ], + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "status": [ + 550 + ], + "__typename": [ + 78 + ] + }, + "friends_max_fields": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "friends_min_fields": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "friends_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1380 + ], + "__typename": [ + 78 + ] + }, + "friends_on_conflict": { + "constraint": [ + 1385 + ], + "update_columns": [ + 1402 + ], + "where": [ + 1384 + ], + "__typename": [ + 78 + ] + }, + "friends_order_by": { + "e_status": [ + 558 + ], + "other_player_steam_id": [ + 2660 + ], + "player_steam_id": [ + 2660 + ], + "status": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "friends_pk_columns_input": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "friends_select_column": {}, + "friends_set_input": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "status": [ + 550 + ], + "__typename": [ + 78 + ] + }, + "friends_stddev_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_stddev_pop_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_stddev_samp_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_stream_cursor_input": { + "initial_value": [ + 1400 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "friends_stream_cursor_value_input": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "status": [ + 550 + ], + "__typename": [ + 78 + ] + }, + "friends_sum_fields": { + "other_player_steam_id": [ + 180 + ], + "player_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "friends_update_column": {}, + "friends_updates": { + "_inc": [ + 1386 + ], + "_set": [ + 1395 + ], + "where": [ + 1384 + ], + "__typename": [ + 78 + ] + }, + "friends_var_pop_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_var_samp_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "friends_variance_fields": { + "other_player_steam_id": [ + 29 + ], + "player_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes": { + "available_server_count": [ + 38 + ], + "build_id": [ + 38 + ], + "cpu_cores_per_socket": [ + 38 + ], + "cpu_frequency_info": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "cpu_governor_info": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "cpu_sockets": [ + 38 + ], + "cpu_threads_per_core": [ + 38 + ], + "cs2_launch_options": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "cs2_video_settings": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "csgo_build_id": [ + 38 + ], + "demo_network_limiter": [ + 38 + ], + "disk_available_gb": [ + 38 + ], + "disk_used_percent": [ + 38 + ], + "e_region": [ + 3705 + ], + "e_status": [ + 586 + ], + "enabled": [ + 3 + ], + "enabled_for_match_making": [ + 3 + ], + "end_port_range": [ + 38 + ], + "gpu": [ + 3 + ], + "gpu_demos_enabled": [ + 3 + ], + "gpu_info": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "gpu_rendering_enabled": [ + 3 + ], + "gpu_streaming_enabled": [ + 3 + ], + "id": [ + 78 + ], + "label": [ + 78 + ], + "lan_ip": [ + 1527 + ], + "node_ip": [ + 1527 + ], + "offline_at": [ + 4203 + ], + "pin_build_id": [ + 38 + ], + "pin_plugin_runtime": [ + 78 + ], + "pin_plugin_version": [ + 78 + ], + "pinned_version": [ + 1458 + ], + "plugin_supported": [ + 3 + ], + "public_ip": [ + 1527 + ], + "region": [ + 78 + ], + "servers": [ + 3732, + { + "distinct_on": [ + 3756, + "[servers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 3754, + "[servers_order_by!]" + ], + "where": [ + 3743 + ] + } + ], + "servers_aggregate": [ + 3733, + { + "distinct_on": [ + 3756, + "[servers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 3754, + "[servers_order_by!]" + ], + "where": [ + 3743 + ] + } + ], + "shader_bake_progress": [ + 2658 + ], + "shader_bake_progress_stage": [ + 78 + ], + "shader_bake_status": [ + 78 + ], + "shader_bake_status_history": [ + 1531, + { + "path": [ + 78 + ] + } + ], + "start_port_range": [ + 38 + ], + "status": [ + 591 + ], + "supports_cpu_pinning": [ + 3 + ], + "supports_low_latency": [ + 3 + ], + "token": [ + 78 + ], + "total_server_count": [ + 38 + ], + "update_status": [ + 78 + ], + "version": [ + 1458 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate": { + "aggregate": [ + 1413 + ], + "nodes": [ + 1407 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp": { + "bool_and": [ + 1410 + ], + "bool_or": [ + 1411 + ], + "count": [ + 1412 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp_bool_and": { + "arguments": [ + 1437 + ], + "distinct": [ + 3 + ], + "filter": [ + 1419 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp_bool_or": { + "arguments": [ + 1438 + ], + "distinct": [ + 3 + ], + "filter": [ + 1419 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_bool_exp_count": { + "arguments": [ + 1436 + ], + "distinct": [ + 3 + ], + "filter": [ + 1419 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_fields": { + "avg": [ + 1417 + ], + "count": [ + 38, + { + "columns": [ + 1436, + "[game_server_nodes_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1426 + ], + "min": [ + 1428 + ], + "stddev": [ + 1440 + ], + "stddev_pop": [ + 1442 + ], + "stddev_samp": [ + 1444 + ], + "sum": [ + 1448 + ], + "var_pop": [ + 1452 + ], + "var_samp": [ + 1454 + ], + "variance": [ + 1456 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_aggregate_order_by": { + "avg": [ + 1418 + ], + "count": [ + 2660 + ], + "max": [ + 1427 + ], + "min": [ + 1429 + ], + "stddev": [ + 1441 + ], + "stddev_pop": [ + 1443 + ], + "stddev_samp": [ + 1445 + ], + "sum": [ + 1449 + ], + "var_pop": [ + 1453 + ], + "var_samp": [ + 1455 + ], + "variance": [ + 1457 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_append_input": { + "cpu_frequency_info": [ + 1531 + ], + "cpu_governor_info": [ + 1531 + ], + "cs2_launch_options": [ + 1531 + ], + "cs2_video_settings": [ + 1531 + ], + "gpu_info": [ + 1531 + ], + "shader_bake_status_history": [ + 1531 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_arr_rel_insert_input": { + "data": [ + 1425 + ], + "on_conflict": [ + 1432 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_avg_fields": { + "available_server_count": [ + 38 + ], + "build_id": [ + 29 + ], + "cpu_cores_per_socket": [ + 29 + ], + "cpu_sockets": [ + 29 + ], + "cpu_threads_per_core": [ + 29 + ], + "csgo_build_id": [ + 29 + ], + "demo_network_limiter": [ + 29 + ], + "disk_available_gb": [ + 29 + ], + "disk_used_percent": [ + 29 + ], + "end_port_range": [ + 29 + ], + "pin_build_id": [ + 29 + ], + "shader_bake_progress": [ + 29 + ], + "start_port_range": [ + 29 + ], + "total_server_count": [ + 38 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_avg_order_by": { + "build_id": [ + 2660 + ], + "cpu_cores_per_socket": [ + 2660 + ], + "cpu_sockets": [ + 2660 + ], + "cpu_threads_per_core": [ + 2660 + ], + "csgo_build_id": [ + 2660 + ], + "demo_network_limiter": [ + 2660 + ], + "disk_available_gb": [ + 2660 + ], + "disk_used_percent": [ + 2660 + ], + "end_port_range": [ + 2660 + ], + "pin_build_id": [ + 2660 + ], + "shader_bake_progress": [ + 2660 + ], + "start_port_range": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "game_server_nodes_bool_exp": { + "_and": [ + 1419 + ], + "_not": [ + 1419 + ], + "_or": [ + 1419 + ], + "available_server_count": [ + 39 + ], + "build_id": [ + 39 + ], + "cpu_cores_per_socket": [ + 39 + ], + "cpu_frequency_info": [ + 1533 + ], + "cpu_governor_info": [ + 1533 + ], + "cpu_sockets": [ + 39 + ], + "cpu_threads_per_core": [ + 39 + ], + "cs2_launch_options": [ + 1533 + ], + "cs2_video_settings": [ + 1533 + ], + "csgo_build_id": [ + 39 + ], + "demo_network_limiter": [ + 39 + ], + "disk_available_gb": [ + 39 + ], + "disk_used_percent": [ + 39 + ], + "e_region": [ + 3709 + ], + "e_status": [ + 589 + ], + "enabled": [ + 4 + ], + "enabled_for_match_making": [ + 4 + ], + "end_port_range": [ + 39 + ], + "gpu": [ + 4 + ], + "gpu_demos_enabled": [ + 4 + ], + "gpu_info": [ + 1533 + ], + "gpu_rendering_enabled": [ + 4 + ], + "gpu_streaming_enabled": [ + 4 + ], + "id": [ + 80 + ], + "label": [ + 80 + ], + "lan_ip": [ + 1528 + ], + "node_ip": [ + 1528 + ], + "offline_at": [ + 4204 + ], + "pin_build_id": [ + 39 + ], + "pin_plugin_runtime": [ + 80 + ], + "pin_plugin_version": [ + 80 + ], + "pinned_version": [ + 1463 ], "plugin_supported": [ 4 ], "public_ip": [ - 1349 + 1528 ], "region": [ 80 ], "servers": [ - 3564 + 3743 ], "servers_aggregate": [ - 3555 + 3734 ], "shader_bake_progress": [ - 2480 + 2659 ], "shader_bake_progress_stage": [ 80 @@ -18548,13 +21170,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1354 + 1533 ], "start_port_range": [ 39 ], "status": [ - 572 + 592 ], "supports_cpu_pinning": [ 4 @@ -18572,7 +21194,7 @@ export default { 80 ], "version": [ - 1285 + 1463 ], "__typename": [ 78 @@ -18680,7 +21302,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2658 ], "start_port_range": [ 38 @@ -18697,10 +21319,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1531 ], "cpu_governor_info": [ - 1352 + 1531 ], "cpu_sockets": [ 38 @@ -18709,10 +21331,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1531 ], "cs2_video_settings": [ - 1352 + 1531 ], "csgo_build_id": [ 38 @@ -18727,10 +21349,10 @@ export default { 38 ], "e_region": [ - 3536 + 3715 ], "e_status": [ - 577 + 597 ], "enabled": [ 3 @@ -18748,7 +21370,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1531 ], "gpu_rendering_enabled": [ 3 @@ -18763,13 +21385,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1527 ], "node_ip": [ - 1348 + 1527 ], "offline_at": [ - 4024 + 4203 ], "pin_build_id": [ 38 @@ -18781,19 +21403,19 @@ export default { 78 ], "pinned_version": [ - 1295 + 1473 ], "public_ip": [ - 1348 + 1527 ], "region": [ 78 ], "servers": [ - 3561 + 3740 ], "shader_bake_progress": [ - 2479 + 2658 ], "shader_bake_progress_stage": [ 78 @@ -18802,13 +21424,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1531 ], "start_port_range": [ 38 ], "status": [ - 571 + 591 ], "supports_cpu_pinning": [ 3 @@ -18823,7 +21445,7 @@ export default { 78 ], "version": [ - 1295 + 1473 ], "__typename": [ 78 @@ -18867,7 +21489,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4203 ], "pin_build_id": [ 38 @@ -18882,7 +21504,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2658 ], "shader_bake_progress_stage": [ 78 @@ -18908,70 +21530,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "pin_plugin_runtime": [ - 2481 + 2660 ], "pin_plugin_version": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "shader_bake_progress_stage": [ - 2481 + 2660 ], "shader_bake_status": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "token": [ - 2481 + 2660 ], "update_status": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19015,7 +21637,7 @@ export default { 78 ], "offline_at": [ - 4024 + 4203 ], "pin_build_id": [ 38 @@ -19030,7 +21652,7 @@ export default { 78 ], "shader_bake_progress": [ - 2479 + 2658 ], "shader_bake_progress_stage": [ 78 @@ -19056,70 +21678,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "pin_plugin_runtime": [ - 2481 + 2660 ], "pin_plugin_version": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "shader_bake_progress_stage": [ - 2481 + 2660 ], "shader_bake_status": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "token": [ - 2481 + 2660 ], "update_status": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19130,7 +21752,7 @@ export default { 38 ], "returning": [ - 1229 + 1407 ], "__typename": [ 78 @@ -19138,10 +21760,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1247 + 1425 ], "on_conflict": [ - 1254 + 1432 ], "__typename": [ 78 @@ -19149,13 +21771,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1242 + 1420 ], "update_columns": [ - 1272 + 1450 ], "where": [ - 1241 + 1419 ], "__typename": [ 78 @@ -19163,148 +21785,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2481 + 2660 ], "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_frequency_info": [ - 2481 + 2660 ], "cpu_governor_info": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "cs2_launch_options": [ - 2481 + 2660 ], "cs2_video_settings": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "e_region": [ - 3538 + 3717 ], "e_status": [ - 579 + 599 ], "enabled": [ - 2481 + 2660 ], "enabled_for_match_making": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "gpu": [ - 2481 + 2660 ], "gpu_demos_enabled": [ - 2481 + 2660 ], "gpu_info": [ - 2481 + 2660 ], "gpu_rendering_enabled": [ - 2481 + 2660 ], "gpu_streaming_enabled": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "lan_ip": [ - 2481 + 2660 ], "node_ip": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "pin_plugin_runtime": [ - 2481 + 2660 ], "pin_plugin_version": [ - 2481 + 2660 ], "pinned_version": [ - 1297 + 1475 ], "plugin_supported": [ - 2481 + 2660 ], "public_ip": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "servers_aggregate": [ - 3560 + 3739 ], "shader_bake_progress": [ - 2481 + 2660 ], "shader_bake_progress_stage": [ - 2481 + 2660 ], "shader_bake_status": [ - 2481 + 2660 ], "shader_bake_status_history": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "supports_cpu_pinning": [ - 2481 + 2660 ], "supports_low_latency": [ - 2481 + 2660 ], "token": [ - 2481 + 2660 ], "total_server_count": [ - 2481 + 2660 ], "update_status": [ - 2481 + 2660 ], "version": [ - 1297 + 1475 ], "__typename": [ 78 @@ -19320,22 +21942,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1352 + 1531 ], "cpu_governor_info": [ - 1352 + 1531 ], "cs2_launch_options": [ - 1352 + 1531 ], "cs2_video_settings": [ - 1352 + 1531 ], "gpu_info": [ - 1352 + 1531 ], "shader_bake_status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -19352,10 +21974,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1531 ], "cpu_governor_info": [ - 1352 + 1531 ], "cpu_sockets": [ 38 @@ -19364,10 +21986,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1531 ], "cs2_video_settings": [ - 1352 + 1531 ], "csgo_build_id": [ 38 @@ -19397,7 +22019,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1531 ], "gpu_rendering_enabled": [ 3 @@ -19412,13 +22034,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1527 ], "node_ip": [ - 1348 + 1527 ], "offline_at": [ - 4024 + 4203 ], "pin_build_id": [ 38 @@ -19430,13 +22052,13 @@ export default { 78 ], "public_ip": [ - 1348 + 1527 ], "region": [ 78 ], "shader_bake_progress": [ - 2479 + 2658 ], "shader_bake_progress_stage": [ 78 @@ -19445,13 +22067,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1531 ], "start_port_range": [ 38 ], "status": [ - 571 + 591 ], "supports_cpu_pinning": [ 3 @@ -19518,40 +22140,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19606,40 +22228,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19694,40 +22316,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19735,7 +22357,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1269 + 1447 ], "ordering": [ 236 @@ -19752,10 +22374,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1352 + 1531 ], "cpu_governor_info": [ - 1352 + 1531 ], "cpu_sockets": [ 38 @@ -19764,10 +22386,10 @@ export default { 38 ], "cs2_launch_options": [ - 1352 + 1531 ], "cs2_video_settings": [ - 1352 + 1531 ], "csgo_build_id": [ 38 @@ -19797,7 +22419,7 @@ export default { 3 ], "gpu_info": [ - 1352 + 1531 ], "gpu_rendering_enabled": [ 3 @@ -19812,13 +22434,13 @@ export default { 78 ], "lan_ip": [ - 1348 + 1527 ], "node_ip": [ - 1348 + 1527 ], "offline_at": [ - 4024 + 4203 ], "pin_build_id": [ 38 @@ -19830,13 +22452,13 @@ export default { 78 ], "public_ip": [ - 1348 + 1527 ], "region": [ 78 ], "shader_bake_progress": [ - 2479 + 2658 ], "shader_bake_progress_stage": [ 78 @@ -19845,13 +22467,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1352 + 1531 ], "start_port_range": [ 38 ], "status": [ - 571 + 591 ], "supports_cpu_pinning": [ 3 @@ -19904,7 +22526,7 @@ export default { 38 ], "shader_bake_progress": [ - 2479 + 2658 ], "start_port_range": [ 38 @@ -19918,40 +22540,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -19960,28 +22582,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1237 + 1415 ], "_delete_at_path": [ - 1243 + 1421 ], "_delete_elem": [ - 1244 + 1422 ], "_delete_key": [ - 1245 + 1423 ], "_inc": [ - 1246 + 1424 ], "_prepend": [ - 1257 + 1435 ], "_set": [ - 1261 + 1439 ], "where": [ - 1241 + 1419 ], "__typename": [ 78 @@ -20036,40 +22658,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -20124,40 +22746,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -20212,40 +22834,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2481 + 2660 ], "cpu_cores_per_socket": [ - 2481 + 2660 ], "cpu_sockets": [ - 2481 + 2660 ], "cpu_threads_per_core": [ - 2481 + 2660 ], "csgo_build_id": [ - 2481 + 2660 ], "demo_network_limiter": [ - 2481 + 2660 ], "disk_available_gb": [ - 2481 + 2660 ], "disk_used_percent": [ - 2481 + 2660 ], "end_port_range": [ - 2481 + 2660 ], "pin_build_id": [ - 2481 + 2660 ], "shader_bake_progress": [ - 2481 + 2660 ], "start_port_range": [ - 2481 + 2660 ], "__typename": [ 78 @@ -20265,7 +22887,7 @@ export default { 78 ], "downloads": [ - 1352, + 1531, { "path": [ 78 @@ -20273,7 +22895,7 @@ export default { } ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20284,10 +22906,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1282 + 1460 ], "nodes": [ - 1280 + 1458 ], "__typename": [ 78 @@ -20295,13 +22917,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1284 + 1462 ], "count": [ 38, { "columns": [ - 1300, + 1478, "[game_versions_select_column!]" ], "distinct": [ @@ -20310,31 +22932,31 @@ export default { } ], "max": [ - 1292 + 1470 ], "min": [ - 1293 + 1471 ], "stddev": [ - 1302 + 1480 ], "stddev_pop": [ - 1303 + 1481 ], "stddev_samp": [ - 1304 + 1482 ], "sum": [ - 1307 + 1485 ], "var_pop": [ - 1310 + 1488 ], "var_samp": [ - 1311 + 1489 ], "variance": [ - 1312 + 1490 ], "__typename": [ 78 @@ -20342,7 +22964,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1352 + 1531 ], "__typename": [ 78 @@ -20358,13 +22980,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1285 + 1463 ], "_not": [ - 1285 + 1463 ], "_or": [ - 1285 + 1463 ], "build_id": [ 39 @@ -20379,10 +23001,10 @@ export default { 80 ], "downloads": [ - 1354 + 1533 ], "updated_at": [ - 4025 + 4204 ], "version": [ 80 @@ -20438,10 +23060,10 @@ export default { 78 ], "downloads": [ - 1352 + 1531 ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20458,7 +23080,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20475,7 +23097,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20489,7 +23111,7 @@ export default { 38 ], "returning": [ - 1280 + 1458 ], "__typename": [ 78 @@ -20497,10 +23119,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1291 + 1469 ], "on_conflict": [ - 1296 + 1474 ], "__typename": [ 78 @@ -20508,13 +23130,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1286 + 1464 ], "update_columns": [ - 1308 + 1486 ], "where": [ - 1285 + 1463 ], "__typename": [ 78 @@ -20522,25 +23144,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2481 + 2660 ], "current": [ - 2481 + 2660 ], "cvars": [ - 2481 + 2660 ], "description": [ - 2481 + 2660 ], "downloads": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "version": [ - 2481 + 2660 ], "__typename": [ 78 @@ -20556,7 +23178,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1352 + 1531 ], "__typename": [ 78 @@ -20577,10 +23199,10 @@ export default { 78 ], "downloads": [ - 1352 + 1531 ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20615,7 +23237,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1306 + 1484 ], "ordering": [ 236 @@ -20638,10 +23260,10 @@ export default { 78 ], "downloads": [ - 1352 + 1531 ], "updated_at": [ - 4024 + 4203 ], "version": [ 78 @@ -20661,28 +23283,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1283 + 1461 ], "_delete_at_path": [ - 1287 + 1465 ], "_delete_elem": [ - 1288 + 1466 ], "_delete_key": [ - 1289 + 1467 ], "_inc": [ - 1290 + 1468 ], "_prepend": [ - 1299 + 1477 ], "_set": [ - 1301 + 1479 ], "where": [ - 1285 + 1463 ], "__typename": [ 78 @@ -20720,13 +23342,13 @@ export default { 38 ], "game_version": [ - 1280 + 1458 ], "id": [ - 4462 + 4641 ], "results": [ - 1352, + 1531, { "path": [ 78 @@ -20737,7 +23359,7 @@ export default { 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -20745,10 +23367,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1315 + 1493 ], "nodes": [ - 1313 + 1491 ], "__typename": [ 78 @@ -20756,13 +23378,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1317 + 1495 ], "count": [ 38, { "columns": [ - 1332, + 1510, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -20771,31 +23393,31 @@ export default { } ], "max": [ - 1325 + 1503 ], "min": [ - 1326 + 1504 ], "stddev": [ - 1334 + 1512 ], "stddev_pop": [ - 1335 + 1513 ], "stddev_samp": [ - 1336 + 1514 ], "sum": [ - 1339 + 1517 ], "var_pop": [ - 1342 + 1520 ], "var_samp": [ - 1343 + 1521 ], "variance": [ - 1344 + 1522 ], "__typename": [ 78 @@ -20803,7 +23425,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1352 + 1531 ], "__typename": [ 78 @@ -20819,13 +23441,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1318 + 1496 ], "_not": [ - 1318 + 1496 ], "_or": [ - 1318 + 1496 ], "branch": [ 80 @@ -20834,19 +23456,19 @@ export default { 39 ], "game_version": [ - 1285 + 1463 ], "id": [ - 4464 + 4643 ], "results": [ - 1354 + 1533 ], "status": [ 80 ], "validated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -20893,19 +23515,19 @@ export default { 38 ], "game_version": [ - 1295 + 1473 ], "id": [ - 4462 + 4641 ], "results": [ - 1352 + 1531 ], "status": [ 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -20919,13 +23541,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "status": [ 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -20939,13 +23561,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "status": [ 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -20956,7 +23578,7 @@ export default { 38 ], "returning": [ - 1313 + 1491 ], "__typename": [ 78 @@ -20964,13 +23586,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1319 + 1497 ], "update_columns": [ - 1340 + 1518 ], "where": [ - 1318 + 1496 ], "__typename": [ 78 @@ -20978,25 +23600,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2481 + 2660 ], "build_id": [ - 2481 + 2660 ], "game_version": [ - 1297 + 1475 ], "id": [ - 2481 + 2660 ], "results": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "validated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -21004,7 +23626,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -21012,7 +23634,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1352 + 1531 ], "__typename": [ 78 @@ -21027,16 +23649,16 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "results": [ - 1352 + 1531 ], "status": [ 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -21068,7 +23690,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1338 + 1516 ], "ordering": [ 236 @@ -21085,16 +23707,16 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "results": [ - 1352 + 1531 ], "status": [ 78 ], "validated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -21111,28 +23733,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1316 + 1494 ], "_delete_at_path": [ - 1320 + 1498 ], "_delete_elem": [ - 1321 + 1499 ], "_delete_key": [ - 1322 + 1500 ], "_inc": [ - 1323 + 1501 ], "_prepend": [ - 1331 + 1509 ], "_set": [ - 1333 + 1511 ], "where": [ - 1318 + 1496 ], "__typename": [ 78 @@ -21162,6 +23784,23 @@ export default { 78 ] }, + "get_event_leaderboard_args": { + "_category": [ + 78 + ], + "_event_id": [ + 4641 + ], + "_match_type": [ + 78 + ], + "_min_rounds": [ + 38 + ], + "__typename": [ + 78 + ] + }, "get_leaderboard_args": { "_category": [ 78 @@ -21176,7 +23815,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4641 ], "_window_days": [ 38 @@ -21190,7 +23829,7 @@ export default { 78 ], "_league_season_id": [ - 4462 + 4641 ], "_role": [ 78 @@ -21213,7 +23852,7 @@ export default { 78 ], "_season_id": [ - 4462 + 4641 ], "_window_days": [ 38 @@ -21225,31 +23864,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1348 + 1527 ], "_gt": [ - 1348 + 1527 ], "_gte": [ - 1348 + 1527 ], "_in": [ - 1348 + 1527 ], "_is_null": [ 3 ], "_lt": [ - 1348 + 1527 ], "_lte": [ - 1348 + 1527 ], "_neq": [ - 1348 + 1527 ], "_nin": [ - 1348 + 1527 ], "__typename": [ 78 @@ -21258,31 +23897,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1350 + 1529 ], "_gt": [ - 1350 + 1529 ], "_gte": [ - 1350 + 1529 ], "_in": [ - 1350 + 1529 ], "_is_null": [ 3 ], "_lt": [ - 1350 + 1529 ], "_lte": [ - 1350 + 1529 ], "_neq": [ - 1350 + 1529 ], "_nin": [ - 1350 + 1529 ], "__typename": [ 78 @@ -21299,22 +23938,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1353 + 1532 ], "_contained_in": [ - 1352 + 1531 ], "_contains": [ - 1352 + 1531 ], "_eq": [ - 1352 + 1531 ], "_gt": [ - 1352 + 1531 ], "_gte": [ - 1352 + 1531 ], "_has_key": [ 78 @@ -21326,22 +23965,22 @@ export default { 78 ], "_in": [ - 1352 + 1531 ], "_is_null": [ 3 ], "_lt": [ - 1352 + 1531 ], "_lte": [ - 1352 + 1531 ], "_neq": [ - 1352 + 1531 ], "_nin": [ - 1352 + 1531 ], "__typename": [ 78 @@ -21364,13 +24003,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21378,10 +24017,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1357 + 1536 ], "nodes": [ - 1355 + 1534 ], "__typename": [ 78 @@ -21389,13 +24028,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1358 + 1537 ], "count": [ 38, { "columns": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -21404,31 +24043,31 @@ export default { } ], "max": [ - 1362 + 1541 ], "min": [ - 1363 + 1542 ], "stddev": [ - 1368 + 1547 ], "stddev_pop": [ - 1369 + 1548 ], "stddev_samp": [ - 1370 + 1549 ], "sum": [ - 1373 + 1552 ], "var_pop": [ - 1375 + 1554 ], "var_samp": [ - 1376 + 1555 ], "variance": [ - 1377 + 1556 ], "__typename": [ 78 @@ -21453,13 +24092,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1359 + 1538 ], "_not": [ - 1359 + 1538 ], "_or": [ - 1359 + 1538 ], "matches_played": [ 39 @@ -21477,13 +24116,13 @@ export default { 80 ], "secondary_value": [ - 1201 + 1379 ], "tertiary_value": [ - 1201 + 1379 ], "value": [ - 1201 + 1379 ], "__typename": [ 78 @@ -21494,13 +24133,13 @@ export default { 38 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21523,13 +24162,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21552,13 +24191,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21581,13 +24220,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21598,7 +24237,7 @@ export default { 38 ], "returning": [ - 1355 + 1534 ], "__typename": [ 78 @@ -21606,28 +24245,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2481 + 2660 ], "player_avatar_url": [ - 2481 + 2660 ], "player_country": [ - 2481 + 2660 ], "player_name": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "secondary_value": [ - 2481 + 2660 ], "tertiary_value": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -21651,13 +24290,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21716,7 +24355,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1372 + 1551 ], "ordering": [ 236 @@ -21742,13 +24381,13 @@ export default { 78 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21759,13 +24398,13 @@ export default { 38 ], "secondary_value": [ - 1200 + 1378 ], "tertiary_value": [ - 1200 + 1378 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -21773,13 +24412,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1360 + 1539 ], "_set": [ - 1367 + 1546 ], "where": [ - 1359 + 1538 ], "__typename": [ 78 @@ -21838,10 +24477,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4462 + 4641 ], "_winning_tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -21849,19 +24488,19 @@ export default { }, "league_divisions": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "season_divisions": [ - 1530, + 1709, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21871,19 +24510,19 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "season_divisions_aggregate": [ - 1531, + 1710, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -21893,16 +24532,16 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -21910,10 +24549,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1381 + 1560 ], "nodes": [ - 1379 + 1558 ], "__typename": [ 78 @@ -21921,13 +24560,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1382 + 1561 ], "count": [ 38, { "columns": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "distinct": [ @@ -21936,31 +24575,31 @@ export default { } ], "max": [ - 1387 + 1566 ], "min": [ - 1388 + 1567 ], "stddev": [ - 1396 + 1575 ], "stddev_pop": [ - 1397 + 1576 ], "stddev_samp": [ - 1398 + 1577 ], "sum": [ - 1401 + 1580 ], "var_pop": [ - 1404 + 1583 ], "var_samp": [ - 1405 + 1584 ], "variance": [ - 1406 + 1585 ], "__typename": [ 78 @@ -21976,31 +24615,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1383 + 1562 ], "_not": [ - 1383 + 1562 ], "_or": [ - 1383 + 1562 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "name": [ 80 ], "season_divisions": [ - 1537 + 1716 ], "season_divisions_aggregate": [ - 1532 + 1711 ], "tier": [ - 3618 + 3797 ], "__typename": [ 78 @@ -22009,7 +24648,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22017,19 +24656,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "season_divisions": [ - 1536 + 1715 ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22037,16 +24676,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22054,16 +24693,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22074,7 +24713,7 @@ export default { 38 ], "returning": [ - 1379 + 1558 ], "__typename": [ 78 @@ -22082,10 +24721,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1386 + 1565 ], "on_conflict": [ - 1391 + 1570 ], "__typename": [ 78 @@ -22093,13 +24732,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1384 + 1563 ], "update_columns": [ - 1402 + 1581 ], "where": [ - 1383 + 1562 ], "__typename": [ 78 @@ -22107,19 +24746,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "season_divisions_aggregate": [ - 1535 + 1714 ], "tier": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22127,7 +24766,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -22136,16 +24775,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22177,7 +24816,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1400 + 1579 ], "ordering": [ 236 @@ -22188,16 +24827,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 ], "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22205,7 +24844,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3617 + 3796 ], "__typename": [ 78 @@ -22214,13 +24853,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1385 + 1564 ], "_set": [ - 1395 + 1574 ], "where": [ - 1383 + 1562 ], "__typename": [ 78 @@ -22252,25 +24891,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "season": [ - 1555 + 1734 ], "week_number": [ 38 @@ -22281,10 +24920,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1411 + 1590 ], "nodes": [ - 1407 + 1586 ], "__typename": [ 78 @@ -22292,7 +24931,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1410 + 1589 ], "__typename": [ 78 @@ -22300,13 +24939,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1428 + 1607 ], "distinct": [ 3 ], "filter": [ - 1416 + 1595 ], "predicate": [ 39 @@ -22317,13 +24956,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1414 + 1593 ], "count": [ 38, { "columns": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -22332,31 +24971,31 @@ export default { } ], "max": [ - 1420 + 1599 ], "min": [ - 1422 + 1601 ], "stddev": [ - 1430 + 1609 ], "stddev_pop": [ - 1432 + 1611 ], "stddev_samp": [ - 1434 + 1613 ], "sum": [ - 1438 + 1617 ], "var_pop": [ - 1442 + 1621 ], "var_samp": [ - 1444 + 1623 ], "variance": [ - 1446 + 1625 ], "__typename": [ 78 @@ -22364,37 +25003,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1415 + 1594 ], "count": [ - 2481 + 2660 ], "max": [ - 1421 + 1600 ], "min": [ - 1423 + 1602 ], "stddev": [ - 1431 + 1610 ], "stddev_pop": [ - 1433 + 1612 ], "stddev_samp": [ - 1435 + 1614 ], "sum": [ - 1439 + 1618 ], "var_pop": [ - 1443 + 1622 ], "var_samp": [ - 1445 + 1624 ], "variance": [ - 1447 + 1626 ], "__typename": [ 78 @@ -22402,10 +25041,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1419 + 1598 ], "on_conflict": [ - 1425 + 1604 ], "__typename": [ 78 @@ -22421,7 +25060,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22429,34 +25068,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1416 + 1595 ], "_not": [ - 1416 + 1595 ], "_or": [ - 1416 + 1595 ], "closes_at": [ - 4025 + 4204 ], "created_at": [ - 4025 + 4204 ], "default_match_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "opens_at": [ - 4025 + 4204 ], "season": [ - 1560 + 1739 ], "week_number": [ 39 @@ -22476,25 +25115,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "season": [ - 1570 + 1749 ], "week_number": [ 38 @@ -22505,22 +25144,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "week_number": [ 38 @@ -22531,25 +25170,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22557,22 +25196,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "week_number": [ 38 @@ -22583,25 +25222,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22612,7 +25251,7 @@ export default { 38 ], "returning": [ - 1407 + 1586 ], "__typename": [ 78 @@ -22620,13 +25259,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1417 + 1596 ], "update_columns": [ - 1440 + 1619 ], "where": [ - 1416 + 1595 ], "__typename": [ 78 @@ -22634,28 +25273,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "season": [ - 1572 + 1751 ], "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22663,7 +25302,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -22672,22 +25311,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "week_number": [ 38 @@ -22706,7 +25345,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22722,7 +25361,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22738,7 +25377,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22746,7 +25385,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1437 + 1616 ], "ordering": [ 236 @@ -22757,22 +25396,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "week_number": [ 38 @@ -22791,7 +25430,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22800,13 +25439,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1418 + 1597 ], "_set": [ - 1429 + 1608 ], "where": [ - 1416 + 1595 ], "__typename": [ 78 @@ -22822,7 +25461,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22838,7 +25477,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22854,7 +25493,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2481 + 2660 ], "__typename": [ 78 @@ -22862,40 +25501,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4024 + 4203 ], "higher_division": [ - 1379 + 1558 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division": [ - 1379 + 1558 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "season": [ - 1555 + 1734 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -22903,10 +25542,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1452 + 1631 ], "nodes": [ - 1448 + 1627 ], "__typename": [ 78 @@ -22914,7 +25553,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1451 + 1630 ], "__typename": [ 78 @@ -22922,13 +25561,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1469 + 1648 ], "distinct": [ 3 ], "filter": [ - 1457 + 1636 ], "predicate": [ 39 @@ -22939,13 +25578,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1455 + 1634 ], "count": [ 38, { "columns": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -22954,31 +25593,31 @@ export default { } ], "max": [ - 1461 + 1640 ], "min": [ - 1463 + 1642 ], "stddev": [ - 1471 + 1650 ], "stddev_pop": [ - 1473 + 1652 ], "stddev_samp": [ - 1475 + 1654 ], "sum": [ - 1479 + 1658 ], "var_pop": [ - 1483 + 1662 ], "var_samp": [ - 1485 + 1664 ], "variance": [ - 1487 + 1666 ], "__typename": [ 78 @@ -22986,37 +25625,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1456 + 1635 ], "count": [ - 2481 + 2660 ], "max": [ - 1462 + 1641 ], "min": [ - 1464 + 1643 ], "stddev": [ - 1472 + 1651 ], "stddev_pop": [ - 1474 + 1653 ], "stddev_samp": [ - 1476 + 1655 ], "sum": [ - 1480 + 1659 ], "var_pop": [ - 1484 + 1663 ], "var_samp": [ - 1486 + 1665 ], "variance": [ - 1488 + 1667 ], "__typename": [ 78 @@ -23024,10 +25663,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1460 + 1639 ], "on_conflict": [ - 1466 + 1645 ], "__typename": [ 78 @@ -23043,7 +25682,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23051,49 +25690,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1457 + 1636 ], "_not": [ - 1457 + 1636 ], "_or": [ - 1457 + 1636 ], "created_at": [ - 4025 + 4204 ], "higher_division": [ - 1383 + 1562 ], "higher_division_id": [ - 4464 + 4643 ], "higher_slots": [ 39 ], "id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "lower_division": [ - 1383 + 1562 ], "lower_division_id": [ - 4464 + 4643 ], "resolved_at": [ - 4025 + 4204 ], "season": [ - 1560 + 1739 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -23110,40 +25749,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4024 + 4203 ], "higher_division": [ - 1390 + 1569 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division": [ - 1390 + 1569 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "season": [ - 1570 + 1749 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23151,28 +25790,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4024 + 4203 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23180,28 +25819,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2481 + 2660 ], "higher_division_id": [ - 2481 + 2660 ], "higher_slots": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "lower_division_id": [ - 2481 + 2660 ], "resolved_at": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23209,28 +25848,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4024 + 4203 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23238,28 +25877,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2481 + 2660 ], "higher_division_id": [ - 2481 + 2660 ], "higher_slots": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "lower_division_id": [ - 2481 + 2660 ], "resolved_at": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23270,7 +25909,7 @@ export default { 38 ], "returning": [ - 1448 + 1627 ], "__typename": [ 78 @@ -23278,13 +25917,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1458 + 1637 ], "update_columns": [ - 1481 + 1660 ], "where": [ - 1457 + 1636 ], "__typename": [ 78 @@ -23292,40 +25931,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2481 + 2660 ], "higher_division": [ - 1392 + 1571 ], "higher_division_id": [ - 2481 + 2660 ], "higher_slots": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "lower_division": [ - 1392 + 1571 ], "lower_division_id": [ - 2481 + 2660 ], "resolved_at": [ - 2481 + 2660 ], "season": [ - 1572 + 1751 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23333,7 +25972,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23342,28 +25981,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4024 + 4203 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23379,7 +26018,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23395,7 +26034,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23411,7 +26050,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23419,7 +26058,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1478 + 1657 ], "ordering": [ 236 @@ -23430,28 +26069,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "higher_division_id": [ - 4462 + 4641 ], "higher_slots": [ 38 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "lower_division_id": [ - 4462 + 4641 ], "resolved_at": [ - 4024 + 4203 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23467,7 +26106,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23476,13 +26115,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1459 + 1638 ], "_set": [ - 1470 + 1649 ], "where": [ - 1457 + 1636 ], "__typename": [ 78 @@ -23498,7 +26137,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23514,7 +26153,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23530,7 +26169,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23538,46 +26177,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4026 + 4205 ], "created_at": [ - 4024 + 4203 ], "e_proposal_status": [ - 608 + 628 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by": [ - 3439 + 3618 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by": [ - 3439 + 3618 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 633 ], "team_season": [ - 1670 + 1849 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23585,10 +26224,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1493 + 1672 ], "nodes": [ - 1489 + 1668 ], "__typename": [ 78 @@ -23596,7 +26235,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1492 + 1671 ], "__typename": [ 78 @@ -23604,13 +26243,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1510 + 1689 ], "distinct": [ 3 ], "filter": [ - 1498 + 1677 ], "predicate": [ 39 @@ -23621,13 +26260,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1496 + 1675 ], "count": [ 38, { "columns": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -23636,31 +26275,31 @@ export default { } ], "max": [ - 1502 + 1681 ], "min": [ - 1504 + 1683 ], "stddev": [ - 1512 + 1691 ], "stddev_pop": [ - 1514 + 1693 ], "stddev_samp": [ - 1516 + 1695 ], "sum": [ - 1520 + 1699 ], "var_pop": [ - 1524 + 1703 ], "var_samp": [ - 1526 + 1705 ], "variance": [ - 1528 + 1707 ], "__typename": [ 78 @@ -23668,37 +26307,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1497 + 1676 ], "count": [ - 2481 + 2660 ], "max": [ - 1503 + 1682 ], "min": [ - 1505 + 1684 ], "stddev": [ - 1513 + 1692 ], "stddev_pop": [ - 1515 + 1694 ], "stddev_samp": [ - 1517 + 1696 ], "sum": [ - 1521 + 1700 ], "var_pop": [ - 1525 + 1704 ], "var_samp": [ - 1527 + 1706 ], "variance": [ - 1529 + 1708 ], "__typename": [ 78 @@ -23706,10 +26345,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1501 + 1680 ], "on_conflict": [ - 1507 + 1686 ], "__typename": [ 78 @@ -23728,10 +26367,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23739,55 +26378,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1498 + 1677 ], "_not": [ - 1498 + 1677 ], "_or": [ - 1498 + 1677 ], "bracket": [ - 4037 + 4216 ], "created_at": [ - 4025 + 4204 ], "e_proposal_status": [ - 611 + 631 ], "id": [ - 4464 + 4643 ], "message": [ 80 ], "proposed_by": [ - 3443 + 3622 ], "proposed_by_league_team_season_id": [ - 4464 + 4643 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4025 + 4204 ], "responded_by": [ - 3443 + 3622 ], "responded_by_steam_id": [ 182 ], "status": [ - 614 + 634 ], "team_season": [ - 1679 + 1858 ], "tournament_bracket_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -23807,46 +26446,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4046 + 4225 ], "created_at": [ - 4024 + 4203 ], "e_proposal_status": [ - 619 + 639 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by": [ - 3450 + 3629 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by": [ - 3450 + 3629 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 633 ], "team_season": [ - 1688 + 1867 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23854,28 +26493,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23883,28 +26522,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "proposed_by_league_team_season_id": [ - 2481 + 2660 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_time": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "tournament_bracket_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23912,28 +26551,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -23941,28 +26580,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "proposed_by_league_team_season_id": [ - 2481 + 2660 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_time": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "tournament_bracket_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -23973,7 +26612,7 @@ export default { 38 ], "returning": [ - 1489 + 1668 ], "__typename": [ 78 @@ -23981,13 +26620,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1499 + 1678 ], "update_columns": [ - 1522 + 1701 ], "where": [ - 1498 + 1677 ], "__typename": [ 78 @@ -23995,46 +26634,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4048 + 4227 ], "created_at": [ - 2481 + 2660 ], "e_proposal_status": [ - 621 + 641 ], "id": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "proposed_by": [ - 3452 + 3631 ], "proposed_by_league_team_season_id": [ - 2481 + 2660 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_time": [ - 2481 + 2660 ], "responded_by": [ - 3452 + 3631 ], "responded_by_steam_id": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "team_season": [ - 1690 + 1869 ], "tournament_bracket_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24042,7 +26681,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24051,31 +26690,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 633 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24094,10 +26733,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24116,10 +26755,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24138,10 +26777,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24149,7 +26788,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1519 + 1698 ], "ordering": [ 236 @@ -24160,31 +26799,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4024 + 4203 ], "responded_by_steam_id": [ 180 ], "status": [ - 613 + 633 ], "tournament_bracket_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24203,10 +26842,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24215,13 +26854,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1500 + 1679 ], "_set": [ - 1511 + 1690 ], "where": [ - 1498 + 1677 ], "__typename": [ 78 @@ -24240,10 +26879,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24262,10 +26901,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24284,10 +26923,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "responded_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24295,28 +26934,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4024 + 4203 ], "division": [ - 1379 + 1558 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "season": [ - 1555 + 1734 ], "standings": [ - 4483, + 4713, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24326,19 +26965,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "standings_aggregate": [ - 4484, + 4714, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -24348,19 +26987,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24368,10 +27007,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1534 + 1713 ], "nodes": [ - 1530 + 1709 ], "__typename": [ 78 @@ -24379,7 +27018,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1533 + 1712 ], "__typename": [ 78 @@ -24387,13 +27026,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1549 + 1728 ], "distinct": [ 3 ], "filter": [ - 1537 + 1716 ], "predicate": [ 39 @@ -24407,7 +27046,7 @@ export default { 38, { "columns": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -24416,10 +27055,10 @@ export default { } ], "max": [ - 1540 + 1719 ], "min": [ - 1542 + 1721 ], "__typename": [ 78 @@ -24427,13 +27066,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 1541 + 1720 ], "min": [ - 1543 + 1722 ], "__typename": [ 78 @@ -24441,10 +27080,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1539 + 1718 ], "on_conflict": [ - 1546 + 1725 ], "__typename": [ 78 @@ -24452,43 +27091,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1537 + 1716 ], "_not": [ - 1537 + 1716 ], "_or": [ - 1537 + 1716 ], "created_at": [ - 4025 + 4204 ], "division": [ - 1383 + 1562 ], "id": [ - 4464 + 4643 ], "league_division_id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "season": [ - 1560 + 1739 ], "standings": [ - 4492 + 4722 ], "standings_aggregate": [ - 4485 + 4715 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -24497,31 +27136,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4024 + 4203 ], "division": [ - 1390 + 1569 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "season": [ - 1570 + 1749 ], "standings": [ - 4489 + 4719 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24529,19 +27168,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24549,19 +27188,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24569,19 +27208,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24589,19 +27228,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24612,7 +27251,7 @@ export default { 38 ], "returning": [ - 1530 + 1709 ], "__typename": [ 78 @@ -24620,10 +27259,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1539 + 1718 ], "on_conflict": [ - 1546 + 1725 ], "__typename": [ 78 @@ -24631,13 +27270,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1538 + 1717 ], "update_columns": [ - 1553 + 1732 ], "where": [ - 1537 + 1716 ], "__typename": [ 78 @@ -24645,31 +27284,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2481 + 2660 ], "division": [ - 1392 + 1571 ], "id": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "season": [ - 1572 + 1751 ], "standings_aggregate": [ - 4488 + 4718 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -24677,7 +27316,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24686,19 +27325,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24706,7 +27345,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1552 + 1731 ], "ordering": [ 236 @@ -24717,19 +27356,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "league_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -24738,10 +27377,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1550 + 1729 ], "where": [ - 1537 + 1716 ], "__typename": [ 78 @@ -24755,7 +27394,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -24770,13 +27409,13 @@ export default { 38 ], "e_league_season_status": [ - 650 + 670 ], "games_per_week": [ 38 ], "id": [ - 4462 + 4641 ], "is_league_admin": [ 3 @@ -24785,13 +27424,13 @@ export default { 3 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks": [ - 1407, + 1586, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24801,19 +27440,19 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], "match_weeks_aggregate": [ - 1408, + 1587, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -24823,11 +27462,11 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], @@ -24841,10 +27480,10 @@ export default { 38 ], "movements": [ - 1588, + 1767, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -24854,19 +27493,19 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "movements_aggregate": [ - 1589, + 1768, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -24876,19 +27515,19 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "my_registration": [ - 1670, + 1849, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -24898,11 +27537,11 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], @@ -24910,13 +27549,13 @@ export default { 78 ], "options": [ - 2176 + 2355 ], "player_stats": [ - 4516, + 4746, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24926,19 +27565,19 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], "player_stats_aggregate": [ - 4517, + 4747, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -24948,11 +27587,11 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], @@ -24960,7 +27599,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1352, + 1531, { "path": [ 78 @@ -24971,7 +27610,7 @@ export default { 38 ], "playoff_stage_type": [ - 1103 + 1123 ], "playoff_third_place_match": [ 3 @@ -24980,7 +27619,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1123 ], "relegate_count": [ 38 @@ -24989,10 +27628,10 @@ export default { 38 ], "relegation_playoffs": [ - 1448, + 1627, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -25002,19 +27641,19 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], "relegation_playoffs_aggregate": [ - 1449, + 1628, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -25024,11 +27663,11 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], @@ -25036,13 +27675,13 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_divisions": [ - 1530, + 1709, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -25052,19 +27691,19 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "season_divisions_aggregate": [ - 1531, + 1710, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -25074,11 +27713,11 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], @@ -25086,16 +27725,16 @@ export default { 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "standings": [ - 4483, + 4713, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25105,19 +27744,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "standings_aggregate": [ - 4484, + 4714, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -25127,25 +27766,25 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "starts_at": [ - 4024 + 4203 ], "status": [ - 655 + 675 ], "team_seasons": [ - 1670, + 1849, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -25155,19 +27794,19 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "team_seasons_aggregate": [ - 1671, + 1850, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -25177,16 +27816,16 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "week_best_of": [ - 1352, + 1531, { "path": [ 78 @@ -25199,10 +27838,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1557 + 1736 ], "nodes": [ - 1555 + 1734 ], "__typename": [ 78 @@ -25210,13 +27849,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1559 + 1738 ], "count": [ 38, { "columns": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "distinct": [ @@ -25225,31 +27864,31 @@ export default { } ], "max": [ - 1567 + 1746 ], "min": [ - 1568 + 1747 ], "stddev": [ - 1577 + 1756 ], "stddev_pop": [ - 1578 + 1757 ], "stddev_samp": [ - 1579 + 1758 ], "sum": [ - 1582 + 1761 ], "var_pop": [ - 1585 + 1764 ], "var_samp": [ - 1586 + 1765 ], "variance": [ - 1587 + 1766 ], "__typename": [ 78 @@ -25257,10 +27896,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1352 + 1531 ], "week_best_of": [ - 1352 + 1531 ], "__typename": [ 78 @@ -25318,13 +27957,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1560 + 1739 ], "_not": [ - 1560 + 1739 ], "_or": [ - 1560 + 1739 ], "auto_regular_season_format": [ 4 @@ -25333,7 +27972,7 @@ export default { 4 ], "created_at": [ - 4025 + 4204 ], "created_by_steam_id": [ 182 @@ -25348,13 +27987,13 @@ export default { 39 ], "e_league_season_status": [ - 653 + 673 ], "games_per_week": [ 39 ], "id": [ - 4464 + 4643 ], "is_league_admin": [ 4 @@ -25363,13 +28002,13 @@ export default { 4 ], "match_options_id": [ - 4464 + 4643 ], "match_weeks": [ - 1416 + 1595 ], "match_weeks_aggregate": [ - 1409 + 1588 ], "match_weeks_count": [ 39 @@ -25381,37 +28020,37 @@ export default { 39 ], "movements": [ - 1597 + 1776 ], "movements_aggregate": [ - 1590 + 1769 ], "my_registration": [ - 1679 + 1858 ], "name": [ 80 ], "options": [ - 2180 + 2359 ], "player_stats": [ - 4535 + 4765 ], "player_stats_aggregate": [ - 4518 + 4748 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1354 + 1533 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1104 + 1124 ], "playoff_third_place_match": [ 4 @@ -25420,7 +28059,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1104 + 1124 ], "relegate_count": [ 39 @@ -25429,52 +28068,52 @@ export default { 39 ], "relegation_playoffs": [ - 1457 + 1636 ], "relegation_playoffs_aggregate": [ - 1450 + 1629 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4025 + 4204 ], "season_divisions": [ - 1537 + 1716 ], "season_divisions_aggregate": [ - 1532 + 1711 ], "season_number": [ 39 ], "signup_closes_at": [ - 4025 + 4204 ], "signup_opens_at": [ - 4025 + 4204 ], "standings": [ - 4492 + 4722 ], "standings_aggregate": [ - 4485 + 4715 ], "starts_at": [ - 4025 + 4204 ], "status": [ - 656 + 676 ], "team_seasons": [ - 1679 + 1858 ], "team_seasons_aggregate": [ - 1672 + 1851 ], "week_best_of": [ - 1354 + 1533 ], "__typename": [ 78 @@ -25569,7 +28208,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -25584,19 +28223,19 @@ export default { 38 ], "e_league_season_status": [ - 661 + 681 ], "games_per_week": [ 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks": [ - 1413 + 1592 ], "match_weeks_count": [ 38 @@ -25608,28 +28247,28 @@ export default { 38 ], "movements": [ - 1594 + 1773 ], "name": [ 78 ], "options": [ - 2187 + 2366 ], "player_stats": [ - 4532 + 4762 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1352 + 1531 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1123 ], "playoff_third_place_match": [ 3 @@ -25638,7 +28277,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1123 ], "relegate_count": [ 38 @@ -25647,40 +28286,40 @@ export default { 38 ], "relegation_playoffs": [ - 1454 + 1633 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_divisions": [ - 1536 + 1715 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "standings": [ - 4489 + 4719 ], "starts_at": [ - 4024 + 4203 ], "status": [ - 655 + 675 ], "team_seasons": [ - 1676 + 1855 ], "week_best_of": [ - 1352 + 1531 ], "__typename": [ 78 @@ -25688,7 +28327,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -25706,10 +28345,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks_count": [ 38 @@ -25742,19 +28381,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -25762,7 +28401,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -25780,10 +28419,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks_count": [ 38 @@ -25816,19 +28455,19 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -25839,7 +28478,7 @@ export default { 38 ], "returning": [ - 1555 + 1734 ], "__typename": [ 78 @@ -25847,10 +28486,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1566 + 1745 ], "on_conflict": [ - 1571 + 1750 ], "__typename": [ 78 @@ -25858,13 +28497,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1561 + 1740 ], "update_columns": [ - 1583 + 1762 ], "where": [ - 1560 + 1739 ], "__typename": [ 78 @@ -25872,133 +28511,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2481 + 2660 ], "can_register": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "created_by_steam_id": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "direct_promote_count": [ - 2481 + 2660 ], "direct_relegate_count": [ - 2481 + 2660 ], "e_league_season_status": [ - 663 + 683 ], "games_per_week": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_league_admin": [ - 2481 + 2660 ], "is_roster_locked": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "match_weeks_aggregate": [ - 1412 + 1591 ], "match_weeks_count": [ - 2481 + 2660 ], "max_roster_size": [ - 2481 + 2660 ], "min_roster_size": [ - 2481 + 2660 ], "movements_aggregate": [ - 1593 + 1772 ], "my_registration_aggregate": [ - 1675 + 1854 ], "name": [ - 2481 + 2660 ], "options": [ - 2189 + 2368 ], "player_stats_aggregate": [ - 4531 + 4761 ], "playoff_best_of": [ - 2481 + 2660 ], "playoff_round_best_of": [ - 2481 + 2660 ], "playoff_seats": [ - 2481 + 2660 ], "playoff_stage_type": [ - 2481 + 2660 ], "playoff_third_place_match": [ - 2481 + 2660 ], "promote_count": [ - 2481 + 2660 ], "regular_season_stage_type": [ - 2481 + 2660 ], "relegate_count": [ - 2481 + 2660 ], "relegation_down_count": [ - 2481 + 2660 ], "relegation_playoffs_aggregate": [ - 1453 + 1632 ], "relegation_up_count": [ - 2481 + 2660 ], "roster_lock_at": [ - 2481 + 2660 ], "season_divisions_aggregate": [ - 1535 + 1714 ], "season_number": [ - 2481 + 2660 ], "signup_closes_at": [ - 2481 + 2660 ], "signup_opens_at": [ - 2481 + 2660 ], "standings_aggregate": [ - 4488 + 4718 ], "starts_at": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "team_seasons_aggregate": [ - 1675 + 1854 ], "week_best_of": [ - 2481 + 2660 ], "__typename": [ 78 @@ -26006,7 +28645,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -26014,10 +28653,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1352 + 1531 ], "week_best_of": [ - 1352 + 1531 ], "__typename": [ 78 @@ -26029,7 +28668,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -26047,10 +28686,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks_count": [ 38 @@ -26068,13 +28707,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1352 + 1531 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1123 ], "playoff_third_place_match": [ 3 @@ -26083,7 +28722,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1123 ], "relegate_count": [ 38 @@ -26095,25 +28734,25 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "starts_at": [ - 4024 + 4203 ], "status": [ - 655 + 675 ], "week_best_of": [ - 1352 + 1531 ], "__typename": [ 78 @@ -26271,7 +28910,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1581 + 1760 ], "ordering": [ 236 @@ -26285,7 +28924,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "created_by_steam_id": [ 180 @@ -26303,10 +28942,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_weeks_count": [ 38 @@ -26324,13 +28963,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1352 + 1531 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1103 + 1123 ], "playoff_third_place_match": [ 3 @@ -26339,7 +28978,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1103 + 1123 ], "relegate_count": [ 38 @@ -26351,25 +28990,25 @@ export default { 38 ], "roster_lock_at": [ - 4024 + 4203 ], "season_number": [ 38 ], "signup_closes_at": [ - 4024 + 4203 ], "signup_opens_at": [ - 4024 + 4203 ], "starts_at": [ - 4024 + 4203 ], "status": [ - 655 + 675 ], "week_best_of": [ - 1352 + 1531 ], "__typename": [ 78 @@ -26428,28 +29067,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1558 + 1737 ], "_delete_at_path": [ - 1562 + 1741 ], "_delete_elem": [ - 1563 + 1742 ], "_delete_key": [ - 1564 + 1743 ], "_inc": [ - 1565 + 1744 ], "_prepend": [ - 1574 + 1753 ], "_set": [ - 1576 + 1755 ], "where": [ - 1560 + 1739 ], "__typename": [ 78 @@ -26607,58 +29246,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4024 + 4203 ], "approved_by": [ - 3439 + 3618 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1379 + 1558 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "e_movement_type": [ - 587 + 607 ], "final_rank": [ 38 ], "final_to_division": [ - 1379 + 1558 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division": [ - 1379 + 1558 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1712 + 1891 ], "league_team_id": [ - 4462 + 4641 ], "season": [ - 1555 + 1734 ], "type": [ - 592 + 612 ], "__typename": [ 78 @@ -26666,10 +29305,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1592 + 1771 ], "nodes": [ - 1588 + 1767 ], "__typename": [ 78 @@ -26677,7 +29316,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1591 + 1770 ], "__typename": [ 78 @@ -26685,13 +29324,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1609 + 1788 ], "distinct": [ 3 ], "filter": [ - 1597 + 1776 ], "predicate": [ 39 @@ -26702,13 +29341,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1595 + 1774 ], "count": [ 38, { "columns": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "distinct": [ @@ -26717,31 +29356,31 @@ export default { } ], "max": [ - 1601 + 1780 ], "min": [ - 1603 + 1782 ], "stddev": [ - 1611 + 1790 ], "stddev_pop": [ - 1613 + 1792 ], "stddev_samp": [ - 1615 + 1794 ], "sum": [ - 1619 + 1798 ], "var_pop": [ - 1623 + 1802 ], "var_samp": [ - 1625 + 1804 ], "variance": [ - 1627 + 1806 ], "__typename": [ 78 @@ -26749,37 +29388,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1596 + 1775 ], "count": [ - 2481 + 2660 ], "max": [ - 1602 + 1781 ], "min": [ - 1604 + 1783 ], "stddev": [ - 1612 + 1791 ], "stddev_pop": [ - 1614 + 1793 ], "stddev_samp": [ - 1616 + 1795 ], "sum": [ - 1620 + 1799 ], "var_pop": [ - 1624 + 1803 ], "var_samp": [ - 1626 + 1805 ], "variance": [ - 1628 + 1807 ], "__typename": [ 78 @@ -26787,10 +29426,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1600 + 1779 ], "on_conflict": [ - 1606 + 1785 ], "__typename": [ 78 @@ -26809,10 +29448,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -26820,67 +29459,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1597 + 1776 ], "_not": [ - 1597 + 1776 ], "_or": [ - 1597 + 1776 ], "approved_at": [ - 4025 + 4204 ], "approved_by": [ - 3443 + 3622 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1383 + 1562 ], "computed_to_division_id": [ - 4464 + 4643 ], "created_at": [ - 4025 + 4204 ], "e_movement_type": [ - 590 + 610 ], "final_rank": [ 39 ], "final_to_division": [ - 1383 + 1562 ], "final_to_division_id": [ - 4464 + 4643 ], "from_division": [ - 1383 + 1562 ], "from_division_id": [ - 4464 + 4643 ], "id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "league_team": [ - 1715 + 1894 ], "league_team_id": [ - 4464 + 4643 ], "season": [ - 1560 + 1739 ], "type": [ - 593 + 613 ], "__typename": [ 78 @@ -26900,58 +29539,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4024 + 4203 ], "approved_by": [ - 3450 + 3629 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1390 + 1569 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "e_movement_type": [ - 598 + 618 ], "final_rank": [ 38 ], "final_to_division": [ - 1390 + 1569 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division": [ - 1390 + 1569 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1721 + 1900 ], "league_team_id": [ - 4462 + 4641 ], "season": [ - 1570 + 1749 ], "type": [ - 592 + 612 ], "__typename": [ 78 @@ -26959,34 +29598,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4024 + 4203 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -26994,34 +29633,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2481 + 2660 ], "approved_by_steam_id": [ - 2481 + 2660 ], "computed_to_division_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "final_to_division_id": [ - 2481 + 2660 ], "from_division_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27029,34 +29668,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4024 + 4203 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -27064,34 +29703,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2481 + 2660 ], "approved_by_steam_id": [ - 2481 + 2660 ], "computed_to_division_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "final_to_division_id": [ - 2481 + 2660 ], "from_division_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27102,7 +29741,7 @@ export default { 38 ], "returning": [ - 1588 + 1767 ], "__typename": [ 78 @@ -27110,13 +29749,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1598 + 1777 ], "update_columns": [ - 1621 + 1800 ], "where": [ - 1597 + 1776 ], "__typename": [ 78 @@ -27124,58 +29763,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2481 + 2660 ], "approved_by": [ - 3452 + 3631 ], "approved_by_steam_id": [ - 2481 + 2660 ], "computed_to_division": [ - 1392 + 1571 ], "computed_to_division_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "e_movement_type": [ - 600 + 620 ], "final_rank": [ - 2481 + 2660 ], "final_to_division": [ - 1392 + 1571 ], "final_to_division_id": [ - 2481 + 2660 ], "from_division": [ - 1392 + 1571 ], "from_division_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team": [ - 1723 + 1902 ], "league_team_id": [ - 2481 + 2660 ], "season": [ - 1572 + 1751 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27183,7 +29822,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -27192,37 +29831,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4024 + 4203 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "type": [ - 592 + 612 ], "__typename": [ 78 @@ -27241,10 +29880,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27263,10 +29902,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27285,10 +29924,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27296,7 +29935,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1618 + 1797 ], "ordering": [ 236 @@ -27307,37 +29946,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4024 + 4203 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4462 + 4641 ], "from_division_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "type": [ - 592 + 612 ], "__typename": [ 78 @@ -27356,10 +29995,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27368,13 +30007,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1599 + 1778 ], "_set": [ - 1610 + 1789 ], "where": [ - 1597 + 1776 ], "__typename": [ 78 @@ -27393,10 +30032,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27415,10 +30054,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27437,10 +30076,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2481 + 2660 ], "final_rank": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27448,28 +30087,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1083 ], "team_season": [ - 1670 + 1849 ], "__typename": [ 78 @@ -27477,10 +30116,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1633 + 1812 ], "nodes": [ - 1629 + 1808 ], "__typename": [ 78 @@ -27488,7 +30127,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1632 + 1811 ], "__typename": [ 78 @@ -27496,13 +30135,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1650 + 1829 ], "distinct": [ 3 ], "filter": [ - 1638 + 1817 ], "predicate": [ 39 @@ -27513,13 +30152,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1636 + 1815 ], "count": [ 38, { "columns": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -27528,31 +30167,31 @@ export default { } ], "max": [ - 1642 + 1821 ], "min": [ - 1644 + 1823 ], "stddev": [ - 1652 + 1831 ], "stddev_pop": [ - 1654 + 1833 ], "stddev_samp": [ - 1656 + 1835 ], "sum": [ - 1660 + 1839 ], "var_pop": [ - 1664 + 1843 ], "var_samp": [ - 1666 + 1845 ], "variance": [ - 1668 + 1847 ], "__typename": [ 78 @@ -27560,37 +30199,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1637 + 1816 ], "count": [ - 2481 + 2660 ], "max": [ - 1643 + 1822 ], "min": [ - 1645 + 1824 ], "stddev": [ - 1653 + 1832 ], "stddev_pop": [ - 1655 + 1834 ], "stddev_samp": [ - 1657 + 1836 ], "sum": [ - 1661 + 1840 ], "var_pop": [ - 1665 + 1844 ], "var_samp": [ - 1667 + 1846 ], "variance": [ - 1669 + 1848 ], "__typename": [ 78 @@ -27598,10 +30237,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1641 + 1820 ], "on_conflict": [ - 1647 + 1826 ], "__typename": [ 78 @@ -27617,7 +30256,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27625,37 +30264,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1638 + 1817 ], "_not": [ - 1638 + 1817 ], "_or": [ - 1638 + 1817 ], "added_at": [ - 4025 + 4204 ], "league_team_season_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "removed_at": [ - 4025 + 4204 ], "removed_reason": [ 80 ], "status": [ - 1064 + 1084 ], "team_season": [ - 1679 + 1858 ], "__typename": [ 78 @@ -27672,28 +30311,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1083 ], "team_season": [ - 1688 + 1867 ], "__typename": [ 78 @@ -27701,16 +30340,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 @@ -27721,19 +30360,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "removed_at": [ - 2481 + 2660 ], "removed_reason": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27741,16 +30380,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 @@ -27761,19 +30400,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "removed_at": [ - 2481 + 2660 ], "removed_reason": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27784,7 +30423,7 @@ export default { 38 ], "returning": [ - 1629 + 1808 ], "__typename": [ 78 @@ -27792,13 +30431,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1639 + 1818 ], "update_columns": [ - 1662 + 1841 ], "where": [ - 1638 + 1817 ], "__typename": [ 78 @@ -27806,28 +30445,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "removed_at": [ - 2481 + 2660 ], "removed_reason": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "team_season": [ - 1690 + 1869 ], "__typename": [ 78 @@ -27835,7 +30474,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -27847,22 +30486,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1083 ], "__typename": [ 78 @@ -27878,7 +30517,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27894,7 +30533,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27910,7 +30549,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27918,7 +30557,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1659 + 1838 ], "ordering": [ 236 @@ -27929,22 +30568,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4024 + 4203 ], "league_team_season_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 ], "removed_at": [ - 4024 + 4203 ], "removed_reason": [ 78 ], "status": [ - 1063 + 1083 ], "__typename": [ 78 @@ -27960,7 +30599,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -27969,13 +30608,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1640 + 1819 ], "_set": [ - 1651 + 1830 ], "where": [ - 1638 + 1817 ], "__typename": [ 78 @@ -27991,7 +30630,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28007,7 +30646,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28023,7 +30662,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28031,55 +30670,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1379 + 1558 ], "assigned_division_id": [ - 4462 + 4641 ], "captain": [ - 3439 + 3618 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "e_registration_status": [ - 629 + 649 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1712 + 1891 ], "league_team_id": [ - 4462 + 4641 ], "registered_by": [ - 3439 + 3618 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1379 + 1558 ], "requested_division_id": [ - 4462 + 4641 ], "roster": [ - 1629, + 1808, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -28089,19 +30728,19 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "roster_aggregate": [ - 1630, + 1809, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -28111,28 +30750,28 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "season": [ - 1555 + 1734 ], "seed": [ 38 ], "status": [ - 634 + 654 ], "tournament_team": [ - 4287 + 4466 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28140,10 +30779,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1674 + 1853 ], "nodes": [ - 1670 + 1849 ], "__typename": [ 78 @@ -28151,7 +30790,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1673 + 1852 ], "__typename": [ 78 @@ -28159,13 +30798,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1692 + 1871 ], "distinct": [ 3 ], "filter": [ - 1679 + 1858 ], "predicate": [ 39 @@ -28176,13 +30815,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1677 + 1856 ], "count": [ 38, { "columns": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -28191,31 +30830,31 @@ export default { } ], "max": [ - 1683 + 1862 ], "min": [ - 1685 + 1864 ], "stddev": [ - 1694 + 1873 ], "stddev_pop": [ - 1696 + 1875 ], "stddev_samp": [ - 1698 + 1877 ], "sum": [ - 1702 + 1881 ], "var_pop": [ - 1706 + 1885 ], "var_samp": [ - 1708 + 1887 ], "variance": [ - 1710 + 1889 ], "__typename": [ 78 @@ -28223,37 +30862,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1678 + 1857 ], "count": [ - 2481 + 2660 ], "max": [ - 1684 + 1863 ], "min": [ - 1686 + 1865 ], "stddev": [ - 1695 + 1874 ], "stddev_pop": [ - 1697 + 1876 ], "stddev_samp": [ - 1699 + 1878 ], "sum": [ - 1703 + 1882 ], "var_pop": [ - 1707 + 1886 ], "var_samp": [ - 1709 + 1888 ], "variance": [ - 1711 + 1890 ], "__typename": [ 78 @@ -28261,10 +30900,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1682 + 1861 ], "on_conflict": [ - 1689 + 1868 ], "__typename": [ 78 @@ -28286,13 +30925,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28300,79 +30939,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1679 + 1858 ], "_not": [ - 1679 + 1858 ], "_or": [ - 1679 + 1858 ], "assigned_division": [ - 1383 + 1562 ], "assigned_division_id": [ - 4464 + 4643 ], "captain": [ - 3443 + 3622 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4204 ], "decline_reason": [ 80 ], "e_registration_status": [ - 632 + 652 ], "id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "league_team": [ - 1715 + 1894 ], "league_team_id": [ - 4464 + 4643 ], "registered_by": [ - 3443 + 3622 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1383 + 1562 ], "requested_division_id": [ - 4464 + 4643 ], "roster": [ - 1638 + 1817 ], "roster_aggregate": [ - 1631 + 1810 ], "season": [ - 1560 + 1739 ], "seed": [ 39 ], "status": [ - 635 + 655 ], "tournament_team": [ - 4296 + 4475 ], "tournament_team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -28395,67 +31034,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1390 + 1569 ], "assigned_division_id": [ - 4462 + 4641 ], "captain": [ - 3450 + 3629 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "e_registration_status": [ - 640 + 660 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1721 + 1900 ], "league_team_id": [ - 4462 + 4641 ], "registered_by": [ - 3450 + 3629 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1390 + 1569 ], "requested_division_id": [ - 4462 + 4641 ], "roster": [ - 1635 + 1814 ], "season": [ - 1570 + 1749 ], "seed": [ 38 ], "status": [ - 634 + 654 ], "tournament_team": [ - 4305 + 4484 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28463,37 +31102,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4462 + 4641 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4641 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28501,37 +31140,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2481 + 2660 ], "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "decline_reason": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "requested_division_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28539,37 +31178,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4462 + 4641 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4641 ], "seed": [ 38 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28577,37 +31216,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2481 + 2660 ], "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "decline_reason": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "requested_division_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28618,7 +31257,7 @@ export default { 38 ], "returning": [ - 1670 + 1849 ], "__typename": [ 78 @@ -28626,10 +31265,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1682 + 1861 ], "on_conflict": [ - 1689 + 1868 ], "__typename": [ 78 @@ -28637,13 +31276,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1680 + 1859 ], "update_columns": [ - 1704 + 1883 ], "where": [ - 1679 + 1858 ], "__typename": [ 78 @@ -28651,67 +31290,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1392 + 1571 ], "assigned_division_id": [ - 2481 + 2660 ], "captain": [ - 3452 + 3631 ], "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "decline_reason": [ - 2481 + 2660 ], "e_registration_status": [ - 642 + 662 ], "id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team": [ - 1723 + 1902 ], "league_team_id": [ - 2481 + 2660 ], "registered_by": [ - 3452 + 3631 ], "registered_by_steam_id": [ - 2481 + 2660 ], "requested_division": [ - 1392 + 1571 ], "requested_division_id": [ - 2481 + 2660 ], "roster_aggregate": [ - 1634 + 1813 ], "season": [ - 1572 + 1751 ], "seed": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "tournament_team": [ - 4307 + 4486 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28719,7 +31358,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28728,40 +31367,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4462 + 4641 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4641 ], "seed": [ 38 ], "status": [ - 634 + 654 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28783,13 +31422,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28811,13 +31450,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28839,13 +31478,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28853,7 +31492,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 1701 + 1880 ], "ordering": [ 236 @@ -28864,40 +31503,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4462 + 4641 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "decline_reason": [ 78 ], "id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4462 + 4641 ], "seed": [ 38 ], "status": [ - 634 + 654 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -28919,13 +31558,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28934,13 +31573,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1681 + 1860 ], "_set": [ - 1693 + 1872 ], "where": [ - 1679 + 1858 ], "__typename": [ 78 @@ -28962,13 +31601,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -28990,13 +31629,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -29018,13 +31657,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "registered_by_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -29032,16 +31671,16 @@ export default { }, "league_teams": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "movements": [ - 1588, + 1767, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -29051,19 +31690,19 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "movements_aggregate": [ - 1589, + 1768, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -29073,25 +31712,25 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "team_seasons": [ - 1670, + 1849, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29101,19 +31740,19 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "team_seasons_aggregate": [ - 1671, + 1850, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29123,11 +31762,11 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], @@ -29137,10 +31776,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 1714 + 1893 ], "nodes": [ - 1712 + 1891 ], "__typename": [ 78 @@ -29151,7 +31790,7 @@ export default { 38, { "columns": [ - 1725, + 1904, "[league_teams_select_column!]" ], "distinct": [ @@ -29160,10 +31799,10 @@ export default { } ], "max": [ - 1718 + 1897 ], "min": [ - 1719 + 1898 ], "__typename": [ 78 @@ -29171,37 +31810,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 1715 + 1894 ], "_not": [ - 1715 + 1894 ], "_or": [ - 1715 + 1894 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "movements": [ - 1597 + 1776 ], "movements_aggregate": [ - 1590 + 1769 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "team_seasons": [ - 1679 + 1858 ], "team_seasons_aggregate": [ - 1672 + 1851 ], "__typename": [ 78 @@ -29210,22 +31849,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "movements": [ - 1594 + 1773 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "team_seasons": [ - 1676 + 1855 ], "__typename": [ 78 @@ -29233,13 +31872,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29247,13 +31886,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29264,7 +31903,7 @@ export default { 38 ], "returning": [ - 1712 + 1891 ], "__typename": [ 78 @@ -29272,10 +31911,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 1717 + 1896 ], "on_conflict": [ - 1722 + 1901 ], "__typename": [ 78 @@ -29283,13 +31922,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 1716 + 1895 ], "update_columns": [ - 1729 + 1908 ], "where": [ - 1715 + 1894 ], "__typename": [ 78 @@ -29297,22 +31936,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "movements_aggregate": [ - 1593 + 1772 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "team_seasons_aggregate": [ - 1675 + 1854 ], "__typename": [ 78 @@ -29320,7 +31959,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29329,13 +31968,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29343,7 +31982,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 1728 + 1907 ], "ordering": [ 236 @@ -29354,13 +31993,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29369,10 +32008,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 1726 + 1905 ], "where": [ - 1715 + 1894 ], "__typename": [ 78 @@ -29380,22 +32019,22 @@ export default { }, "lobbies": { "access": [ - 676 + 696 ], "created_at": [ - 4024 + 4203 ], "e_lobby_access": [ - 671 + 691 ], "id": [ - 4462 + 4641 ], "players": [ - 1750, + 1929, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -29405,19 +32044,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "players_aggregate": [ - 1751, + 1930, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -29427,11 +32066,11 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], @@ -29441,10 +32080,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 1733 + 1912 ], "nodes": [ - 1731 + 1910 ], "__typename": [ 78 @@ -29455,7 +32094,7 @@ export default { 38, { "columns": [ - 1744, + 1923, "[lobbies_select_column!]" ], "distinct": [ @@ -29464,10 +32103,10 @@ export default { } ], "max": [ - 1737 + 1916 ], "min": [ - 1738 + 1917 ], "__typename": [ 78 @@ -29475,31 +32114,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 1734 + 1913 ], "_not": [ - 1734 + 1913 ], "_or": [ - 1734 + 1913 ], "access": [ - 677 + 697 ], "created_at": [ - 4025 + 4204 ], "e_lobby_access": [ - 674 + 694 ], "id": [ - 4464 + 4643 ], "players": [ - 1761 + 1940 ], "players_aggregate": [ - 1752 + 1931 ], "__typename": [ 78 @@ -29508,19 +32147,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 676 + 696 ], "created_at": [ - 4024 + 4203 ], "e_lobby_access": [ - 682 + 702 ], "id": [ - 4462 + 4641 ], "players": [ - 1758 + 1937 ], "__typename": [ 78 @@ -29528,10 +32167,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29539,10 +32178,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29553,7 +32192,7 @@ export default { 38 ], "returning": [ - 1731 + 1910 ], "__typename": [ 78 @@ -29561,10 +32200,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 1736 + 1915 ], "on_conflict": [ - 1741 + 1920 ], "__typename": [ 78 @@ -29572,13 +32211,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 1735 + 1914 ], "update_columns": [ - 1748 + 1927 ], "where": [ - 1734 + 1913 ], "__typename": [ 78 @@ -29586,19 +32225,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "e_lobby_access": [ - 684 + 704 ], "id": [ - 2481 + 2660 ], "players_aggregate": [ - 1757 + 1936 ], "__typename": [ 78 @@ -29606,7 +32245,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29615,13 +32254,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 676 + 696 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29629,7 +32268,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 1747 + 1926 ], "ordering": [ 236 @@ -29640,13 +32279,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 676 + 696 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -29655,10 +32294,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1745 + 1924 ], "where": [ - 1734 + 1913 ], "__typename": [ 78 @@ -29672,16 +32311,16 @@ export default { 180 ], "lobby": [ - 1731 + 1910 ], "lobby_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "status": [ - 697 + 717 ], "steam_id": [ 180 @@ -29692,10 +32331,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 1756 + 1935 ], "nodes": [ - 1750 + 1929 ], "__typename": [ 78 @@ -29703,13 +32342,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1753 + 1932 ], "bool_or": [ - 1754 + 1933 ], "count": [ - 1755 + 1934 ], "__typename": [ 78 @@ -29717,13 +32356,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1774 + 1953 ], "distinct": [ 3 ], "filter": [ - 1761 + 1940 ], "predicate": [ 4 @@ -29734,13 +32373,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1775 + 1954 ], "distinct": [ 3 ], "filter": [ - 1761 + 1940 ], "predicate": [ 4 @@ -29751,13 +32390,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1773 + 1952 ], "distinct": [ 3 ], "filter": [ - 1761 + 1940 ], "predicate": [ 39 @@ -29768,13 +32407,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 1759 + 1938 ], "count": [ 38, { "columns": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "distinct": [ @@ -29783,31 +32422,31 @@ export default { } ], "max": [ - 1765 + 1944 ], "min": [ - 1767 + 1946 ], "stddev": [ - 1777 + 1956 ], "stddev_pop": [ - 1779 + 1958 ], "stddev_samp": [ - 1781 + 1960 ], "sum": [ - 1785 + 1964 ], "var_pop": [ - 1789 + 1968 ], "var_samp": [ - 1791 + 1970 ], "variance": [ - 1793 + 1972 ], "__typename": [ 78 @@ -29815,37 +32454,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 1760 + 1939 ], "count": [ - 2481 + 2660 ], "max": [ - 1766 + 1945 ], "min": [ - 1768 + 1947 ], "stddev": [ - 1778 + 1957 ], "stddev_pop": [ - 1780 + 1959 ], "stddev_samp": [ - 1782 + 1961 ], "sum": [ - 1786 + 1965 ], "var_pop": [ - 1790 + 1969 ], "var_samp": [ - 1792 + 1971 ], "variance": [ - 1794 + 1973 ], "__typename": [ 78 @@ -29853,10 +32492,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 1764 + 1943 ], "on_conflict": [ - 1770 + 1949 ], "__typename": [ 78 @@ -29875,10 +32514,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -29886,13 +32525,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 1761 + 1940 ], "_not": [ - 1761 + 1940 ], "_or": [ - 1761 + 1940 ], "captain": [ 4 @@ -29901,16 +32540,16 @@ export default { 182 ], "lobby": [ - 1734 + 1913 ], "lobby_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "status": [ - 698 + 718 ], "steam_id": [ 182 @@ -29939,16 +32578,16 @@ export default { 180 ], "lobby": [ - 1740 + 1919 ], "lobby_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "status": [ - 697 + 717 ], "steam_id": [ 180 @@ -29962,7 +32601,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -29973,13 +32612,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "lobby_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -29990,7 +32629,7 @@ export default { 180 ], "lobby_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -30001,13 +32640,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "lobby_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30018,7 +32657,7 @@ export default { 38 ], "returning": [ - 1750 + 1929 ], "__typename": [ 78 @@ -30026,13 +32665,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 1762 + 1941 ], "update_columns": [ - 1787 + 1966 ], "where": [ - 1761 + 1940 ], "__typename": [ 78 @@ -30040,25 +32679,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "lobby": [ - 1742 + 1921 ], "lobby_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "status": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30066,7 +32705,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -30086,10 +32725,10 @@ export default { 180 ], "lobby_id": [ - 4462 + 4641 ], "status": [ - 697 + 717 ], "steam_id": [ 180 @@ -30111,10 +32750,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30133,10 +32772,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30155,10 +32794,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30166,7 +32805,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1784 + 1963 ], "ordering": [ 236 @@ -30183,10 +32822,10 @@ export default { 180 ], "lobby_id": [ - 4462 + 4641 ], "status": [ - 697 + 717 ], "steam_id": [ 180 @@ -30208,10 +32847,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30220,13 +32859,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1763 + 1942 ], "_set": [ - 1776 + 1955 ], "where": [ - 1761 + 1940 ], "__typename": [ 78 @@ -30245,10 +32884,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30267,10 +32906,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30289,10 +32928,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30300,19 +32939,19 @@ export default { }, "map_pools": { "e_type": [ - 712 + 732 ], "enabled": [ 3 ], "id": [ - 4462 + 4641 ], "maps": [ - 5053, + 5283, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30322,19 +32961,19 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], "maps_aggregate": [ - 5054, + 5284, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -30344,11 +32983,11 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], @@ -30356,7 +32995,7 @@ export default { 3 ], "type": [ - 717 + 737 ], "__typename": [ 78 @@ -30364,10 +33003,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 1797 + 1976 ], "nodes": [ - 1795 + 1974 ], "__typename": [ 78 @@ -30378,7 +33017,7 @@ export default { 38, { "columns": [ - 1808, + 1987, "[map_pools_select_column!]" ], "distinct": [ @@ -30387,10 +33026,10 @@ export default { } ], "max": [ - 1801 + 1980 ], "min": [ - 1802 + 1981 ], "__typename": [ 78 @@ -30398,34 +33037,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 1798 + 1977 ], "_not": [ - 1798 + 1977 ], "_or": [ - 1798 + 1977 ], "e_type": [ - 715 + 735 ], "enabled": [ 4 ], "id": [ - 4464 + 4643 ], "maps": [ - 5062 + 5292 ], "maps_aggregate": [ - 5055 + 5285 ], "seed": [ 4 ], "type": [ - 718 + 738 ], "__typename": [ 78 @@ -30434,22 +33073,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 723 + 743 ], "enabled": [ 3 ], "id": [ - 4462 + 4641 ], "maps": [ - 5061 + 5291 ], "seed": [ 3 ], "type": [ - 717 + 737 ], "__typename": [ 78 @@ -30457,7 +33096,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -30465,7 +33104,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -30476,7 +33115,7 @@ export default { 38 ], "returning": [ - 1795 + 1974 ], "__typename": [ 78 @@ -30484,10 +33123,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 1800 + 1979 ], "on_conflict": [ - 1805 + 1984 ], "__typename": [ 78 @@ -30495,13 +33134,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 1799 + 1978 ], "update_columns": [ - 1812 + 1991 ], "where": [ - 1798 + 1977 ], "__typename": [ 78 @@ -30509,22 +33148,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 725 + 745 ], "enabled": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "maps_aggregate": [ - 5060 + 5290 ], "seed": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30532,7 +33171,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -30544,13 +33183,13 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "seed": [ 3 ], "type": [ - 717 + 737 ], "__typename": [ 78 @@ -30558,7 +33197,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 1811 + 1990 ], "ordering": [ 236 @@ -30572,13 +33211,13 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "seed": [ 3 ], "type": [ - 717 + 737 ], "__typename": [ 78 @@ -30587,10 +33226,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1809 + 1988 ], "where": [ - 1798 + 1977 ], "__typename": [ 78 @@ -30601,22 +33240,22 @@ export default { 3 ], "e_match_type": [ - 815 + 835 ], "enabled": [ 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "match_maps": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -30626,19 +33265,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -30648,19 +33287,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30670,19 +33309,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -30692,11 +33331,11 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], @@ -30710,7 +33349,7 @@ export default { 78 ], "type": [ - 820 + 840 ], "workshop_map_id": [ 78 @@ -30721,10 +33360,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 1820 + 1999 ], "nodes": [ - 1814 + 1993 ], "__typename": [ 78 @@ -30732,13 +33371,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 1817 + 1996 ], "bool_or": [ - 1818 + 1997 ], "count": [ - 1819 + 1998 ], "__typename": [ 78 @@ -30746,13 +33385,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1836 + 2015 ], "distinct": [ 3 ], "filter": [ - 1823 + 2002 ], "predicate": [ 4 @@ -30763,13 +33402,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1837 + 2016 ], "distinct": [ 3 ], "filter": [ - 1823 + 2002 ], "predicate": [ 4 @@ -30780,13 +33419,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1835 + 2014 ], "distinct": [ 3 ], "filter": [ - 1823 + 2002 ], "predicate": [ 39 @@ -30800,7 +33439,7 @@ export default { 38, { "columns": [ - 1835, + 2014, "[maps_select_column!]" ], "distinct": [ @@ -30809,10 +33448,10 @@ export default { } ], "max": [ - 1826 + 2005 ], "min": [ - 1828 + 2007 ], "__typename": [ 78 @@ -30820,13 +33459,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 1827 + 2006 ], "min": [ - 1829 + 2008 ], "__typename": [ 78 @@ -30834,10 +33473,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 1825 + 2004 ], "on_conflict": [ - 1832 + 2011 ], "__typename": [ 78 @@ -30845,40 +33484,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 1823 + 2002 ], "_not": [ - 1823 + 2002 ], "_or": [ - 1823 + 2002 ], "active_pool": [ 4 ], "e_match_type": [ - 818 + 838 ], "enabled": [ 4 ], "id": [ - 4464 + 4643 ], "label": [ 80 ], "match_maps": [ - 2143 + 2322 ], "match_maps_aggregate": [ - 2136 + 2315 ], "match_veto_picks": [ - 2117 + 2296 ], "match_veto_picks_aggregate": [ - 2112 + 2291 ], "name": [ 80 @@ -30890,7 +33529,7 @@ export default { 80 ], "type": [ - 821 + 841 ], "workshop_map_id": [ 80 @@ -30905,22 +33544,22 @@ export default { 3 ], "e_match_type": [ - 826 + 846 ], "enabled": [ 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "match_maps": [ - 2140 + 2319 ], "match_veto_picks": [ - 2116 + 2295 ], "name": [ 78 @@ -30932,7 +33571,7 @@ export default { 78 ], "type": [ - 820 + 840 ], "workshop_map_id": [ 78 @@ -30943,7 +33582,7 @@ export default { }, "maps_max_fields": { "id": [ - 4462 + 4641 ], "label": [ 78 @@ -30966,22 +33605,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -30989,7 +33628,7 @@ export default { }, "maps_min_fields": { "id": [ - 4462 + 4641 ], "label": [ 78 @@ -31012,22 +33651,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31038,7 +33677,7 @@ export default { 38 ], "returning": [ - 1814 + 1993 ], "__typename": [ 78 @@ -31046,10 +33685,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 1825 + 2004 ], "on_conflict": [ - 1832 + 2011 ], "__typename": [ 78 @@ -31057,13 +33696,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 1824 + 2003 ], "update_columns": [ - 1841 + 2020 ], "where": [ - 1823 + 2002 ], "__typename": [ 78 @@ -31071,40 +33710,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2481 + 2660 ], "e_match_type": [ - 828 + 848 ], "enabled": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "match_maps_aggregate": [ - 2139 + 2318 ], "match_veto_picks_aggregate": [ - 2115 + 2294 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31112,7 +33751,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -31129,7 +33768,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 @@ -31144,7 +33783,7 @@ export default { 78 ], "type": [ - 820 + 840 ], "workshop_map_id": [ 78 @@ -31155,7 +33794,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 1840 + 2019 ], "ordering": [ 236 @@ -31172,7 +33811,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 @@ -31187,7 +33826,7 @@ export default { 78 ], "type": [ - 820 + 840 ], "workshop_map_id": [ 78 @@ -31199,10 +33838,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 1838 + 2017 ], "where": [ - 1823 + 2002 ], "__typename": [ 78 @@ -31210,7 +33849,7 @@ export default { }, "match_clips": { "created_at": [ - 4024 + 4203 ], "download_url": [ 78 @@ -31222,22 +33861,22 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map": [ - 2134 + 2313 ], "match_map_demo": [ - 2018 + 2197 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "render_jobs": [ 185, @@ -31290,7 +33929,7 @@ export default { 180 ], "target": [ - 3439 + 3618 ], "target_steam_id": [ 180 @@ -31305,7 +33944,7 @@ export default { 78 ], "user": [ - 3439 + 3618 ], "user_steam_id": [ 180 @@ -31314,7 +33953,7 @@ export default { 38 ], "visibility": [ - 738 + 758 ], "__typename": [ 78 @@ -31322,10 +33961,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 1847 + 2026 ], "nodes": [ - 1843 + 2022 ], "__typename": [ 78 @@ -31333,7 +33972,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 1846 + 2025 ], "__typename": [ 78 @@ -31341,13 +33980,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1865 + 2044 ], "distinct": [ 3 ], "filter": [ - 1852 + 2031 ], "predicate": [ 39 @@ -31358,13 +33997,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 1850 + 2029 ], "count": [ 38, { "columns": [ - 1865, + 2044, "[match_clips_select_column!]" ], "distinct": [ @@ -31373,31 +34012,31 @@ export default { } ], "max": [ - 1856 + 2035 ], "min": [ - 1858 + 2037 ], "stddev": [ - 1867 + 2046 ], "stddev_pop": [ - 1869 + 2048 ], "stddev_samp": [ - 1871 + 2050 ], "sum": [ - 1875 + 2054 ], "var_pop": [ - 1879 + 2058 ], "var_samp": [ - 1881 + 2060 ], "variance": [ - 1883 + 2062 ], "__typename": [ 78 @@ -31405,37 +34044,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 1851 + 2030 ], "count": [ - 2481 + 2660 ], "max": [ - 1857 + 2036 ], "min": [ - 1859 + 2038 ], "stddev": [ - 1868 + 2047 ], "stddev_pop": [ - 1870 + 2049 ], "stddev_samp": [ - 1872 + 2051 ], "sum": [ - 1876 + 2055 ], "var_pop": [ - 1880 + 2059 ], "var_samp": [ - 1882 + 2061 ], "variance": [ - 1884 + 2063 ], "__typename": [ 78 @@ -31443,10 +34082,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 1855 + 2034 ], "on_conflict": [ - 1862 + 2041 ], "__typename": [ 78 @@ -31480,25 +34119,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31506,16 +34145,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 1852 + 2031 ], "_not": [ - 1852 + 2031 ], "_or": [ - 1852 + 2031 ], "created_at": [ - 4025 + 4204 ], "download_url": [ 80 @@ -31527,22 +34166,22 @@ export default { 80 ], "id": [ - 4464 + 4643 ], "kills_count": [ 39 ], "match_map": [ - 2143 + 2322 ], "match_map_demo": [ - 2030 + 2209 ], "match_map_demo_id": [ - 4464 + 4643 ], "match_map_id": [ - 4464 + 4643 ], "render_jobs": [ 197 @@ -31557,7 +34196,7 @@ export default { 182 ], "target": [ - 3443 + 3622 ], "target_steam_id": [ 182 @@ -31572,7 +34211,7 @@ export default { 80 ], "user": [ - 3443 + 3622 ], "user_steam_id": [ 182 @@ -31581,7 +34220,7 @@ export default { 39 ], "visibility": [ - 739 + 759 ], "__typename": [ 78 @@ -31616,7 +34255,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4024 + 4203 ], "duration_ms": [ 38 @@ -31625,22 +34264,22 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map": [ - 2152 + 2331 ], "match_map_demo": [ - 2042 + 2221 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "render_jobs": [ 194 @@ -31652,7 +34291,7 @@ export default { 180 ], "target": [ - 3450 + 3629 ], "target_steam_id": [ 180 @@ -31664,7 +34303,7 @@ export default { 78 ], "user": [ - 3450 + 3629 ], "user_steam_id": [ 180 @@ -31673,7 +34312,7 @@ export default { 38 ], "visibility": [ - 738 + 758 ], "__typename": [ 78 @@ -31681,7 +34320,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4024 + 4203 ], "download_url": [ 78 @@ -31693,16 +34332,16 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -31734,46 +34373,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2481 + 2660 ], "duration_ms": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "thumbnail_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31781,7 +34420,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4024 + 4203 ], "download_url": [ 78 @@ -31793,16 +34432,16 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -31834,46 +34473,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2481 + 2660 ], "duration_ms": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "thumbnail_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31884,7 +34523,7 @@ export default { 38 ], "returning": [ - 1843 + 2022 ], "__typename": [ 78 @@ -31892,10 +34531,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 1855 + 2034 ], "on_conflict": [ - 1862 + 2041 ], "__typename": [ 78 @@ -31903,13 +34542,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 1853 + 2032 ], "update_columns": [ - 1877 + 2056 ], "where": [ - 1852 + 2031 ], "__typename": [ 78 @@ -31917,70 +34556,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2481 + 2660 ], "download_url": [ - 2481 + 2660 ], "duration_ms": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_demo": [ - 2044 + 2223 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target": [ - 3452 + 3631 ], "target_steam_id": [ - 2481 + 2660 ], "thumbnail_download_url": [ - 2481 + 2660 ], "thumbnail_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "user": [ - 3452 + 3631 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "visibility": [ - 2481 + 2660 ], "__typename": [ 78 @@ -31988,7 +34627,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -31997,7 +34636,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4024 + 4203 ], "duration_ms": [ 38 @@ -32006,16 +34645,16 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -32039,7 +34678,7 @@ export default { 38 ], "visibility": [ - 738 + 758 ], "__typename": [ 78 @@ -32073,25 +34712,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32125,25 +34764,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32177,25 +34816,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32203,7 +34842,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 1874 + 2053 ], "ordering": [ 236 @@ -32214,7 +34853,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "duration_ms": [ 38 @@ -32223,16 +34862,16 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -32256,7 +34895,7 @@ export default { 38 ], "visibility": [ - 738 + 758 ], "__typename": [ 78 @@ -32290,25 +34929,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32317,13 +34956,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1854 + 2033 ], "_set": [ - 1866 + 2045 ], "where": [ - 1852 + 2031 ], "__typename": [ 78 @@ -32357,25 +34996,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32409,25 +35048,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32461,25 +35100,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2481 + 2660 ], "kills_count": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "target_steam_id": [ - 2481 + 2660 ], "user_steam_id": [ - 2481 + 2660 ], "views_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32487,52 +35126,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 ], "game_server_node": [ - 1229 + 1407 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_demo": [ - 2018 + 2197 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 ], "status_history": [ - 1352, + 1531, { "path": [ 78 @@ -32543,7 +35182,7 @@ export default { 78 ], "watcher": [ - 3439 + 3618 ], "watcher_steam_id": [ 180 @@ -32554,10 +35193,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 1889 + 2068 ], "nodes": [ - 1885 + 2064 ], "__typename": [ 78 @@ -32565,7 +35204,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1888 + 2067 ], "__typename": [ 78 @@ -32573,13 +35212,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1911 + 2090 ], "distinct": [ 3 ], "filter": [ - 1895 + 2074 ], "predicate": [ 39 @@ -32590,13 +35229,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1893 + 2072 ], "count": [ 38, { "columns": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -32605,31 +35244,31 @@ export default { } ], "max": [ - 1902 + 2081 ], "min": [ - 1904 + 2083 ], "stddev": [ - 1913 + 2092 ], "stddev_pop": [ - 1915 + 2094 ], "stddev_samp": [ - 1917 + 2096 ], "sum": [ - 1921 + 2100 ], "var_pop": [ - 1925 + 2104 ], "var_samp": [ - 1927 + 2106 ], "variance": [ - 1929 + 2108 ], "__typename": [ 78 @@ -32637,37 +35276,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1894 + 2073 ], "count": [ - 2481 + 2660 ], "max": [ - 1903 + 2082 ], "min": [ - 1905 + 2084 ], "stddev": [ - 1914 + 2093 ], "stddev_pop": [ - 1916 + 2095 ], "stddev_samp": [ - 1918 + 2097 ], "sum": [ - 1922 + 2101 ], "var_pop": [ - 1926 + 2105 ], "var_samp": [ - 1928 + 2107 ], "variance": [ - 1930 + 2109 ], "__typename": [ 78 @@ -32675,7 +35314,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -32683,10 +35322,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1901 + 2080 ], "on_conflict": [ - 1907 + 2086 ], "__typename": [ 78 @@ -32702,7 +35341,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32710,67 +35349,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 1895 + 2074 ], "_not": [ - 1895 + 2074 ], "_or": [ - 1895 + 2074 ], "created_at": [ - 4025 + 4204 ], "error_message": [ 80 ], "game_server_node": [ - 1241 + 1419 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4643 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4025 + 4204 ], "last_status_at": [ - 4025 + 4204 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_demo": [ - 2030 + 2209 ], "match_map_demo_id": [ - 4464 + 4643 ], "match_map_id": [ - 4464 + 4643 ], "status": [ 80 ], "status_history": [ - 1354 + 1533 ], "stream_url": [ 80 ], "watcher": [ - 3443 + 3622 ], "watcher_steam_id": [ 182 @@ -32814,58 +35453,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 ], "game_server_node": [ - 1253 + 1431 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_demo": [ - 2042 + 2221 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 ], "watcher": [ - 3450 + 3629 ], "watcher_steam_id": [ 180 @@ -32876,7 +35515,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -32885,25 +35524,25 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 @@ -32920,43 +35559,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_activity_at": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -32964,7 +35603,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -32973,25 +35612,25 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 @@ -33008,43 +35647,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_activity_at": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33055,7 +35694,7 @@ export default { 38 ], "returning": [ - 1885 + 2064 ], "__typename": [ 78 @@ -33063,13 +35702,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 1896 + 2075 ], "update_columns": [ - 1923 + 2102 ], "where": [ - 1895 + 2074 ], "__typename": [ 78 @@ -33077,61 +35716,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node": [ - 1255 + 1433 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "last_activity_at": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_demo": [ - 2044 + 2223 ], "match_map_demo_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "status_history": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "watcher": [ - 3452 + 3631 ], "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33139,7 +35778,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -33147,7 +35786,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -33156,7 +35795,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -33165,31 +35804,31 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 @@ -33211,7 +35850,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33227,7 +35866,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33243,7 +35882,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33251,7 +35890,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1920 + 2099 ], "ordering": [ 236 @@ -33262,7 +35901,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "error_message": [ 78 @@ -33271,31 +35910,31 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4024 + 4203 ], "last_status_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "status": [ 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 @@ -33317,7 +35956,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33326,28 +35965,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1891 + 2070 ], "_delete_at_path": [ - 1897 + 2076 ], "_delete_elem": [ - 1898 + 2077 ], "_delete_key": [ - 1899 + 2078 ], "_inc": [ - 1900 + 2079 ], "_prepend": [ - 1910 + 2089 ], "_set": [ - 1912 + 2091 ], "where": [ - 1895 + 2074 ], "__typename": [ 78 @@ -33363,7 +36002,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33379,7 +36018,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33395,7 +36034,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33412,19 +36051,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 @@ -33435,10 +36074,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 1937 + 2116 ], "nodes": [ - 1931 + 2110 ], "__typename": [ 78 @@ -33446,13 +36085,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1934 + 2113 ], "bool_or": [ - 1935 + 2114 ], "count": [ - 1936 + 2115 ], "__typename": [ 78 @@ -33460,13 +36099,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1955 + 2134 ], "distinct": [ 3 ], "filter": [ - 1942 + 2121 ], "predicate": [ 4 @@ -33477,13 +36116,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1956 + 2135 ], "distinct": [ 3 ], "filter": [ - 1942 + 2121 ], "predicate": [ 4 @@ -33494,13 +36133,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1954 + 2133 ], "distinct": [ 3 ], "filter": [ - 1942 + 2121 ], "predicate": [ 39 @@ -33511,13 +36150,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 1940 + 2119 ], "count": [ 38, { "columns": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -33526,31 +36165,31 @@ export default { } ], "max": [ - 1946 + 2125 ], "min": [ - 1948 + 2127 ], "stddev": [ - 1958 + 2137 ], "stddev_pop": [ - 1960 + 2139 ], "stddev_samp": [ - 1962 + 2141 ], "sum": [ - 1966 + 2145 ], "var_pop": [ - 1970 + 2149 ], "var_samp": [ - 1972 + 2151 ], "variance": [ - 1974 + 2153 ], "__typename": [ 78 @@ -33558,37 +36197,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1941 + 2120 ], "count": [ - 2481 + 2660 ], "max": [ - 1947 + 2126 ], "min": [ - 1949 + 2128 ], "stddev": [ - 1959 + 2138 ], "stddev_pop": [ - 1961 + 2140 ], "stddev_samp": [ - 1963 + 2142 ], "sum": [ - 1967 + 2146 ], "var_pop": [ - 1971 + 2150 ], "var_samp": [ - 1973 + 2152 ], "variance": [ - 1975 + 2154 ], "__typename": [ 78 @@ -33596,10 +36235,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1945 + 2124 ], "on_conflict": [ - 1951 + 2130 ], "__typename": [ 78 @@ -33615,7 +36254,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33623,13 +36262,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 1942 + 2121 ], "_not": [ - 1942 + 2121 ], "_or": [ - 1942 + 2121 ], "captain": [ 4 @@ -33641,19 +36280,19 @@ export default { 80 ], "id": [ - 4464 + 4643 ], "lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 @@ -33682,19 +36321,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 @@ -33708,10 +36347,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -33725,19 +36364,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "placeholder_name": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33748,10 +36387,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -33765,19 +36404,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "placeholder_name": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33788,7 +36427,7 @@ export default { 38 ], "returning": [ - 1931 + 2110 ], "__typename": [ 78 @@ -33796,13 +36435,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 1943 + 2122 ], "update_columns": [ - 1968 + 2147 ], "where": [ - 1942 + 2121 ], "__typename": [ 78 @@ -33810,31 +36449,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2481 + 2660 ], "checked_in": [ - 2481 + 2660 ], "discord_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "placeholder_name": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33842,7 +36481,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -33862,10 +36501,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -33887,7 +36526,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33903,7 +36542,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33919,7 +36558,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33927,7 +36566,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1965 + 2144 ], "ordering": [ 236 @@ -33947,10 +36586,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -33972,7 +36611,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -33981,13 +36620,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1944 + 2123 ], "_set": [ - 1957 + 2136 ], "where": [ - 1942 + 2121 ], "__typename": [ 78 @@ -34003,7 +36642,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34019,7 +36658,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34035,7 +36674,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34052,16 +36691,16 @@ export default { 3 ], "captain": [ - 4567 + 4797 ], "coach": [ - 3439 + 3618 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "is_on_lineup": [ 3 @@ -34076,10 +36715,10 @@ export default { 3 ], "lineup_players": [ - 1931, + 2110, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -34089,19 +36728,19 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "lineup_players_aggregate": [ - 1932, + 2111, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -34111,25 +36750,25 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34139,19 +36778,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34161,11 +36800,11 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], @@ -34173,10 +36812,10 @@ export default { 78 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34187,10 +36826,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 1980 + 2159 ], "nodes": [ - 1976 + 2155 ], "__typename": [ 78 @@ -34198,7 +36837,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 1979 + 2158 ], "__typename": [ 78 @@ -34206,13 +36845,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1998 + 2177 ], "distinct": [ 3 ], "filter": [ - 1985 + 2164 ], "predicate": [ 39 @@ -34223,13 +36862,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 1983 + 2162 ], "count": [ 38, { "columns": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "distinct": [ @@ -34238,31 +36877,31 @@ export default { } ], "max": [ - 1989 + 2168 ], "min": [ - 1991 + 2170 ], "stddev": [ - 2000 + 2179 ], "stddev_pop": [ - 2002 + 2181 ], "stddev_samp": [ - 2004 + 2183 ], "sum": [ - 2008 + 2187 ], "var_pop": [ - 2012 + 2191 ], "var_samp": [ - 2014 + 2193 ], "variance": [ - 2016 + 2195 ], "__typename": [ 78 @@ -34270,37 +36909,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 1984 + 2163 ], "count": [ - 2481 + 2660 ], "max": [ - 1990 + 2169 ], "min": [ - 1992 + 2171 ], "stddev": [ - 2001 + 2180 ], "stddev_pop": [ - 2003 + 2182 ], "stddev_samp": [ - 2005 + 2184 ], "sum": [ - 2009 + 2188 ], "var_pop": [ - 2013 + 2192 ], "var_samp": [ - 2015 + 2194 ], "variance": [ - 2017 + 2196 ], "__typename": [ 78 @@ -34308,10 +36947,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 1988 + 2167 ], "on_conflict": [ - 1995 + 2174 ], "__typename": [ 78 @@ -34327,7 +36966,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34335,13 +36974,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 1985 + 2164 ], "_not": [ - 1985 + 2164 ], "_or": [ - 1985 + 2164 ], "can_pick_map_veto": [ 4 @@ -34353,16 +36992,16 @@ export default { 4 ], "captain": [ - 4571 + 4801 ], "coach": [ - 3443 + 3622 ], "coach_steam_id": [ 182 ], "id": [ - 4464 + 4643 ], "is_on_lineup": [ 4 @@ -34377,31 +37016,31 @@ export default { 4 ], "lineup_players": [ - 1942 + 2121 ], "lineup_players_aggregate": [ - 1933 + 2112 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_veto_picks": [ - 2117 + 2296 ], "match_veto_picks_aggregate": [ - 2112 + 2291 ], "name": [ 80 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "team_name": [ 80 @@ -34421,34 +37060,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4577 + 4807 ], "coach": [ - 3450 + 3629 ], "coach_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "lineup_players": [ - 1939 + 2118 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_veto_picks": [ - 2116 + 2295 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34462,16 +37101,16 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "name": [ 78 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34482,19 +37121,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "team_name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34505,16 +37144,16 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "name": [ 78 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34525,19 +37164,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "team_name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34548,7 +37187,7 @@ export default { 38 ], "returning": [ - 1976 + 2155 ], "__typename": [ 78 @@ -34556,10 +37195,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 1988 + 2167 ], "on_conflict": [ - 1995 + 2174 ], "__typename": [ 78 @@ -34567,13 +37206,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 1986 + 2165 ], "update_columns": [ - 2010 + 2189 ], "where": [ - 1985 + 2164 ], "__typename": [ 78 @@ -34581,61 +37220,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2481 + 2660 ], "can_pick_region_veto": [ - 2481 + 2660 ], "can_update_lineup": [ - 2481 + 2660 ], "captain": [ - 4578 + 4808 ], "coach": [ - 3452 + 3631 ], "coach_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_on_lineup": [ - 2481 + 2660 ], "is_picking_map_veto": [ - 2481 + 2660 ], "is_picking_region_veto": [ - 2481 + 2660 ], "is_ready": [ - 2481 + 2660 ], "lineup_players_aggregate": [ - 1938 + 2117 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_veto_picks_aggregate": [ - 2115 + 2294 ], "name": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "team_name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34643,7 +37282,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -34655,13 +37294,13 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34680,7 +37319,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34696,7 +37335,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34712,7 +37351,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34720,7 +37359,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2007 + 2186 ], "ordering": [ 236 @@ -34734,13 +37373,13 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "team_id": [ - 4462 + 4641 ], "team_name": [ 78 @@ -34759,7 +37398,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34768,13 +37407,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1987 + 2166 ], "_set": [ - 1999 + 2178 ], "where": [ - 1985 + 2164 ], "__typename": [ 78 @@ -34790,7 +37429,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34806,7 +37445,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34822,7 +37461,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -34830,7 +37469,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1352, + 1531, { "path": [ 78 @@ -34882,16 +37521,16 @@ export default { } ], "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1885, + 2064, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34901,19 +37540,19 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], "demo_sessions_aggregate": [ - 1886, + 2065, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -34923,11 +37562,11 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], @@ -34944,10 +37583,10 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "kills": [ - 1352, + 1531, { "path": [ 78 @@ -34958,13 +37597,13 @@ export default { 78 ], "match": [ - 2296 + 2475 ], "match_clips": [ - 1843, + 2022, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -34974,19 +37613,19 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_aggregate": [ - 1844, + 2023, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -34996,25 +37635,25 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -35026,7 +37665,7 @@ export default { 78 ], "players": [ - 1352, + 1531, { "path": [ 78 @@ -35034,7 +37673,7 @@ export default { } ], "round_ticks": [ - 1352, + 1531, { "path": [ 78 @@ -35059,10 +37698,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2024 + 2203 ], "nodes": [ - 2018 + 2197 ], "__typename": [ 78 @@ -35070,13 +37709,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2021 + 2200 ], "bool_or": [ - 2022 + 2201 ], "count": [ - 2023 + 2202 ], "__typename": [ 78 @@ -35084,13 +37723,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2048 + 2227 ], "distinct": [ 3 ], "filter": [ - 2030 + 2209 ], "predicate": [ 4 @@ -35101,13 +37740,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2049 + 2228 ], "distinct": [ 3 ], "filter": [ - 2030 + 2209 ], "predicate": [ 4 @@ -35118,13 +37757,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2047 + 2226 ], "distinct": [ 3 ], "filter": [ - 2030 + 2209 ], "predicate": [ 39 @@ -35135,13 +37774,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2028 + 2207 ], "count": [ 38, { "columns": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "distinct": [ @@ -35150,31 +37789,31 @@ export default { } ], "max": [ - 2037 + 2216 ], "min": [ - 2039 + 2218 ], "stddev": [ - 2051 + 2230 ], "stddev_pop": [ - 2053 + 2232 ], "stddev_samp": [ - 2055 + 2234 ], "sum": [ - 2059 + 2238 ], "var_pop": [ - 2063 + 2242 ], "var_samp": [ - 2065 + 2244 ], "variance": [ - 2067 + 2246 ], "__typename": [ 78 @@ -35182,37 +37821,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2029 + 2208 ], "count": [ - 2481 + 2660 ], "max": [ - 2038 + 2217 ], "min": [ - 2040 + 2219 ], "stddev": [ - 2052 + 2231 ], "stddev_pop": [ - 2054 + 2233 ], "stddev_samp": [ - 2056 + 2235 ], "sum": [ - 2060 + 2239 ], "var_pop": [ - 2064 + 2243 ], "var_samp": [ - 2066 + 2245 ], "variance": [ - 2068 + 2247 ], "__typename": [ 78 @@ -35220,16 +37859,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1352 + 1531 ], "kills": [ - 1352 + 1531 ], "players": [ - 1352 + 1531 ], "round_ticks": [ - 1352 + 1531 ], "__typename": [ 78 @@ -35237,10 +37876,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2036 + 2215 ], "on_conflict": [ - 2043 + 2222 ], "__typename": [ 78 @@ -35268,19 +37907,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -35288,16 +37927,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2030 + 2209 ], "_not": [ - 2030 + 2209 ], "_or": [ - 2030 + 2209 ], "bombs": [ - 1354 + 1533 ], "clip_render_jobs": [ 197 @@ -35306,16 +37945,16 @@ export default { 187 ], "created_at": [ - 4025 + 4204 ], "cs2_build": [ 80 ], "demo_sessions": [ - 1895 + 2074 ], "demo_sessions_aggregate": [ - 1887 + 2066 ], "download_url": [ 80 @@ -35330,34 +37969,34 @@ export default { 4 ], "id": [ - 4464 + 4643 ], "kills": [ - 1354 + 1533 ], "map_name": [ 80 ], "match": [ - 2305 + 2484 ], "match_clips": [ - 1852 + 2031 ], "match_clips_aggregate": [ - 1845 + 2024 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "metadata_parsed_at": [ - 4025 + 4204 ], "playback_file": [ 80 @@ -35369,10 +38008,10 @@ export default { 80 ], "players": [ - 1354 + 1533 ], "round_ticks": [ - 1354 + 1533 ], "size": [ 39 @@ -35461,19 +38100,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1352 + 1531 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 ], "demo_sessions": [ - 1892 + 2071 ], "file": [ 78 @@ -35482,31 +38121,31 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "kills": [ - 1352 + 1531 ], "map_name": [ 78 ], "match": [ - 2314 + 2493 ], "match_clips": [ - 1849 + 2028 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -35515,10 +38154,10 @@ export default { 38 ], "players": [ - 1352 + 1531 ], "round_ticks": [ - 1352 + 1531 ], "size": [ 38 @@ -35538,7 +38177,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 @@ -35553,19 +38192,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -35594,49 +38233,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2481 + 2660 ], "cs2_build": [ - 2481 + 2660 ], "duration_seconds": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map_name": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "metadata_parsed_at": [ - 2481 + 2660 ], "playback_file": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "workshop_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -35644,7 +38283,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 @@ -35659,19 +38298,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -35700,49 +38339,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2481 + 2660 ], "cs2_build": [ - 2481 + 2660 ], "duration_seconds": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map_name": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "metadata_parsed_at": [ - 2481 + 2660 ], "playback_file": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "workshop_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -35753,7 +38392,7 @@ export default { 38 ], "returning": [ - 2018 + 2197 ], "__typename": [ 78 @@ -35761,10 +38400,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2036 + 2215 ], "on_conflict": [ - 2043 + 2222 ], "__typename": [ 78 @@ -35772,13 +38411,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2031 + 2210 ], "update_columns": [ - 2061 + 2240 ], "where": [ - 2030 + 2209 ], "__typename": [ 78 @@ -35786,85 +38425,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2481 + 2660 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2481 + 2660 ], "cs2_build": [ - 2481 + 2660 ], "demo_sessions_aggregate": [ - 1890 + 2069 ], "download_url": [ - 2481 + 2660 ], "duration_seconds": [ - 2481 + 2660 ], "file": [ - 2481 + 2660 ], "geometry_validated": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_name": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_clips_aggregate": [ - 1848 + 2027 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "metadata_parsed_at": [ - 2481 + 2660 ], "playback_file": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "playback_url": [ - 2481 + 2660 ], "players": [ - 2481 + 2660 ], "round_ticks": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "workshop_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -35872,7 +38511,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -35880,16 +38519,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1352 + 1531 ], "kills": [ - 1352 + 1531 ], "players": [ - 1352 + 1531 ], "round_ticks": [ - 1352 + 1531 ], "__typename": [ 78 @@ -35900,10 +38539,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1352 + 1531 ], "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 @@ -35915,22 +38554,22 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "kills": [ - 1352 + 1531 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -35939,10 +38578,10 @@ export default { 38 ], "players": [ - 1352 + 1531 ], "round_ticks": [ - 1352 + 1531 ], "size": [ 38 @@ -35982,19 +38621,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36022,19 +38661,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36062,19 +38701,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36082,7 +38721,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2058 + 2237 ], "ordering": [ 236 @@ -36093,10 +38732,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1352 + 1531 ], "created_at": [ - 4024 + 4203 ], "cs2_build": [ 78 @@ -36111,22 +38750,22 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "kills": [ - 1352 + 1531 ], "map_name": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "metadata_parsed_at": [ - 4024 + 4203 ], "playback_file": [ 78 @@ -36135,10 +38774,10 @@ export default { 38 ], "players": [ - 1352 + 1531 ], "round_ticks": [ - 1352 + 1531 ], "size": [ 38 @@ -36178,19 +38817,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36199,28 +38838,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2026 + 2205 ], "_delete_at_path": [ - 2032 + 2211 ], "_delete_elem": [ - 2033 + 2212 ], "_delete_key": [ - 2034 + 2213 ], "_inc": [ - 2035 + 2214 ], "_prepend": [ - 2046 + 2225 ], "_set": [ - 2050 + 2229 ], "where": [ - 2030 + 2209 ], "__typename": [ 78 @@ -36248,19 +38887,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36288,19 +38927,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36328,19 +38967,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2481 + 2660 ], "playback_size": [ - 2481 + 2660 ], "size": [ - 2481 + 2660 ], "tick_rate": [ - 2481 + 2660 ], "total_ticks": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36348,10 +38987,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -36361,19 +39000,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -36383,11 +39022,11 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], @@ -36395,22 +39034,22 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "has_backup_file": [ 3 ], "id": [ - 4462 + 4641 ], "kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -36420,19 +39059,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -36442,11 +39081,11 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], @@ -36457,7 +39096,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 @@ -36469,25 +39108,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_reason": [ - 1185 + 1205 ], "winning_side": [ 78 @@ -36498,10 +39137,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2073 + 2252 ], "nodes": [ - 2069 + 2248 ], "__typename": [ 78 @@ -36509,7 +39148,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2072 + 2251 ], "__typename": [ 78 @@ -36517,13 +39156,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2090 + 2269 ], "distinct": [ 3 ], "filter": [ - 2078 + 2257 ], "predicate": [ 39 @@ -36534,13 +39173,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2076 + 2255 ], "count": [ 38, { "columns": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -36549,31 +39188,31 @@ export default { } ], "max": [ - 2082 + 2261 ], "min": [ - 2084 + 2263 ], "stddev": [ - 2092 + 2271 ], "stddev_pop": [ - 2094 + 2273 ], "stddev_samp": [ - 2096 + 2275 ], "sum": [ - 2100 + 2279 ], "var_pop": [ - 2104 + 2283 ], "var_samp": [ - 2106 + 2285 ], "variance": [ - 2108 + 2287 ], "__typename": [ 78 @@ -36581,37 +39220,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2077 + 2256 ], "count": [ - 2481 + 2660 ], "max": [ - 2083 + 2262 ], "min": [ - 2085 + 2264 ], "stddev": [ - 2093 + 2272 ], "stddev_pop": [ - 2095 + 2274 ], "stddev_samp": [ - 2097 + 2276 ], "sum": [ - 2101 + 2280 ], "var_pop": [ - 2105 + 2284 ], "var_samp": [ - 2107 + 2286 ], "variance": [ - 2109 + 2288 ], "__typename": [ 78 @@ -36619,10 +39258,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2081 + 2260 ], "on_conflict": [ - 2087 + 2266 ], "__typename": [ 78 @@ -36656,25 +39295,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36682,40 +39321,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2078 + 2257 ], "_not": [ - 2078 + 2257 ], "_or": [ - 2078 + 2257 ], "assists": [ - 2630 + 2809 ], "assists_aggregate": [ - 2621 + 2800 ], "backup_file": [ 80 ], "created_at": [ - 4025 + 4204 ], "deleted_at": [ - 4025 + 4204 ], "has_backup_file": [ 4 ], "id": [ - 4464 + 4643 ], "kills": [ - 2847 + 3026 ], "kills_aggregate": [ - 2838 + 3017 ], "lineup_1_money": [ 39 @@ -36724,7 +39363,7 @@ export default { 39 ], "lineup_1_side": [ - 1003 + 1023 ], "lineup_1_timeouts_available": [ 39 @@ -36736,25 +39375,25 @@ export default { 39 ], "lineup_2_side": [ - 1003 + 1023 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "round": [ 39 ], "time": [ - 4025 + 4204 ], "winning_reason": [ - 1186 + 1206 ], "winning_side": [ 80 @@ -36792,22 +39431,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2627 + 2806 ], "backup_file": [ 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "kills": [ - 2844 + 3023 ], "lineup_1_money": [ 38 @@ -36816,7 +39455,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 @@ -36828,25 +39467,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_reason": [ - 1185 + 1205 ], "winning_side": [ 78 @@ -36860,13 +39499,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "lineup_1_money": [ 38 @@ -36887,13 +39526,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_side": [ 78 @@ -36904,46 +39543,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "winning_side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -36954,13 +39593,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "lineup_1_money": [ 38 @@ -36981,13 +39620,13 @@ export default { 38 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_side": [ 78 @@ -36998,46 +39637,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "winning_side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37048,7 +39687,7 @@ export default { 38 ], "returning": [ - 2069 + 2248 ], "__typename": [ 78 @@ -37056,13 +39695,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2079 + 2258 ], "update_columns": [ - 2102 + 2281 ], "where": [ - 2078 + 2257 ], "__typename": [ 78 @@ -37070,67 +39709,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2626 + 2805 ], "backup_file": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "has_backup_file": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "kills_aggregate": [ - 2843 + 3022 ], "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_side": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_side": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "winning_reason": [ - 2481 + 2660 ], "winning_side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37138,7 +39777,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -37150,13 +39789,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "lineup_1_money": [ 38 @@ -37165,7 +39804,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 @@ -37177,22 +39816,22 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_reason": [ - 1185 + 1205 ], "winning_side": [ 78 @@ -37229,25 +39868,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37281,25 +39920,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37333,25 +39972,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37359,7 +39998,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2099 + 2278 ], "ordering": [ 236 @@ -37373,13 +40012,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "lineup_1_money": [ 38 @@ -37388,7 +40027,7 @@ export default { 38 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 @@ -37400,22 +40039,22 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "winning_reason": [ - 1185 + 1205 ], "winning_side": [ 78 @@ -37452,25 +40091,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37479,13 +40118,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2080 + 2259 ], "_set": [ - 2091 + 2270 ], "where": [ - 2078 + 2257 ], "__typename": [ 78 @@ -37519,25 +40158,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37571,25 +40210,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37623,25 +40262,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_money": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37649,34 +40288,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -37684,10 +40323,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2114 + 2293 ], "nodes": [ - 2110 + 2289 ], "__typename": [ 78 @@ -37695,7 +40334,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2113 + 2292 ], "__typename": [ 78 @@ -37703,13 +40342,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2128 + 2307 ], "distinct": [ 3 ], "filter": [ - 2117 + 2296 ], "predicate": [ 39 @@ -37723,7 +40362,7 @@ export default { 38, { "columns": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -37732,10 +40371,10 @@ export default { } ], "max": [ - 2120 + 2299 ], "min": [ - 2122 + 2301 ], "__typename": [ 78 @@ -37743,13 +40382,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 2121 + 2300 ], "min": [ - 2123 + 2302 ], "__typename": [ 78 @@ -37757,10 +40396,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2119 + 2298 ], "on_conflict": [ - 2125 + 2304 ], "__typename": [ 78 @@ -37768,43 +40407,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2117 + 2296 ], "_not": [ - 2117 + 2296 ], "_or": [ - 2117 + 2296 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "side": [ 80 ], "type": [ - 1166 + 1186 ], "__typename": [ 78 @@ -37813,34 +40452,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map": [ - 1831 + 2010 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -37848,19 +40487,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 @@ -37871,22 +40510,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37894,19 +40533,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 @@ -37917,22 +40556,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -37943,7 +40582,7 @@ export default { 38 ], "returning": [ - 2110 + 2289 ], "__typename": [ 78 @@ -37951,13 +40590,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2118 + 2297 ], "update_columns": [ - 2132 + 2311 ], "where": [ - 2117 + 2296 ], "__typename": [ 78 @@ -37965,34 +40604,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -38000,7 +40639,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -38009,25 +40648,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -38035,7 +40674,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2131 + 2310 ], "ordering": [ 236 @@ -38046,25 +40685,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "side": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -38073,10 +40712,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2129 + 2308 ], "where": [ - 2117 + 2296 ], "__typename": [ 78 @@ -38087,13 +40726,13 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "demos": [ - 2018, + 2197, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -38103,19 +40742,19 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "demos_aggregate": [ - 2019, + 2198, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -38125,11 +40764,11 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], @@ -38140,16 +40779,16 @@ export default { 38 ], "e_match_map_status": [ - 753 + 773 ], "ended_at": [ - 4024 + 4203 ], "flashes": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -38159,19 +40798,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "flashes_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -38181,28 +40820,28 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "id": [ - 4462 + 4641 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 @@ -38211,25 +40850,25 @@ export default { 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_clips": [ - 1843, + 2022, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -38239,19 +40878,19 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_aggregate": [ - 1844, + 2023, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -38261,22 +40900,22 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_id": [ - 4462 + 4641 ], "objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -38286,19 +40925,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -38308,11 +40947,11 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], @@ -38320,10 +40959,10 @@ export default { 38 ], "player_assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -38333,19 +40972,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -38355,19 +40994,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_damages": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -38377,19 +41016,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -38399,19 +41038,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -38421,19 +41060,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -38443,19 +41082,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_unused_utilities": [ - 3324, + 3503, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38465,19 +41104,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3504, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -38487,11 +41126,11 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], @@ -38499,13 +41138,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "rounds": [ - 2069, + 2248, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38515,19 +41154,19 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "rounds_aggregate": [ - 2070, + 2249, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -38537,25 +41176,25 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "started_at": [ - 4024 + 4203 ], "status": [ - 758 + 778 ], "utility": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -38565,19 +41204,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "utility_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -38587,19 +41226,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "vetos": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38609,19 +41248,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "vetos_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38631,16 +41270,16 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -38648,10 +41287,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2138 + 2317 ], "nodes": [ - 2134 + 2313 ], "__typename": [ 78 @@ -38659,7 +41298,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2137 + 2316 ], "__typename": [ 78 @@ -38667,13 +41306,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2156 + 2335 ], "distinct": [ 3 ], "filter": [ - 2143 + 2322 ], "predicate": [ 39 @@ -38684,13 +41323,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2141 + 2320 ], "count": [ 38, { "columns": [ - 2156, + 2335, "[match_maps_select_column!]" ], "distinct": [ @@ -38699,31 +41338,31 @@ export default { } ], "max": [ - 2147 + 2326 ], "min": [ - 2149 + 2328 ], "stddev": [ - 2158 + 2337 ], "stddev_pop": [ - 2160 + 2339 ], "stddev_samp": [ - 2162 + 2341 ], "sum": [ - 2166 + 2345 ], "var_pop": [ - 2170 + 2349 ], "var_samp": [ - 2172 + 2351 ], "variance": [ - 2174 + 2353 ], "__typename": [ 78 @@ -38731,37 +41370,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2142 + 2321 ], "count": [ - 2481 + 2660 ], "max": [ - 2148 + 2327 ], "min": [ - 2150 + 2329 ], "stddev": [ - 2159 + 2338 ], "stddev_pop": [ - 2161 + 2340 ], "stddev_samp": [ - 2163 + 2342 ], "sum": [ - 2167 + 2346 ], "var_pop": [ - 2171 + 2350 ], "var_samp": [ - 2173 + 2352 ], "variance": [ - 2175 + 2354 ], "__typename": [ 78 @@ -38769,10 +41408,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2146 + 2325 ], "on_conflict": [ - 2153 + 2332 ], "__typename": [ 78 @@ -38809,19 +41448,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -38829,25 +41468,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2143 + 2322 ], "_not": [ - 2143 + 2322 ], "_or": [ - 2143 + 2322 ], "clips_count": [ 39 ], "created_at": [ - 4025 + 4204 ], "demos": [ - 2030 + 2209 ], "demos_aggregate": [ - 2020 + 2199 ], "demos_download_url": [ 80 @@ -38856,31 +41495,31 @@ export default { 39 ], "e_match_map_status": [ - 756 + 776 ], "ended_at": [ - 4025 + 4204 ], "flashes": [ - 2802 + 2981 ], "flashes_aggregate": [ - 2793 + 2972 ], "id": [ - 4464 + 4643 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4025 + 4204 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 1003 + 1023 ], "lineup_1_timeouts_available": [ 39 @@ -38889,94 +41528,94 @@ export default { 39 ], "lineup_2_side": [ - 1003 + 1023 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_clips": [ - 1852 + 2031 ], "match_clips_aggregate": [ - 1845 + 2024 ], "match_id": [ - 4464 + 4643 ], "objectives": [ - 3046 + 3225 ], "objectives_aggregate": [ - 3039 + 3218 ], "order": [ 39 ], "player_assists": [ - 2630 + 2809 ], "player_assists_aggregate": [ - 2621 + 2800 ], "player_damages": [ - 2691 + 2870 ], "player_damages_aggregate": [ - 2684 + 2863 ], "player_kills": [ - 2847 + 3026 ], "player_kills_aggregate": [ - 2838 + 3017 ], "player_unused_utilities": [ - 3333 + 3512 ], "player_unused_utilities_aggregate": [ - 3326 + 3505 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4025 + 4204 ], "rounds": [ - 2078 + 2257 ], "rounds_aggregate": [ - 2071 + 2250 ], "started_at": [ - 4025 + 4204 ], "status": [ - 759 + 779 ], "utility": [ - 3374 + 3553 ], "utility_aggregate": [ - 3367 + 3546 ], "vetos": [ - 2117 + 2296 ], "vetos_aggregate": [ - 2112 + 2291 ], "winning_lineup_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -39008,94 +41647,94 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "demos": [ - 2027 + 2206 ], "e_match_map_status": [ - 764 + 784 ], "ended_at": [ - 4024 + 4203 ], "flashes": [ - 2799 + 2978 ], "id": [ - 4462 + 4641 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1831 + 2010 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_clips": [ - 1849 + 2028 ], "match_id": [ - 4462 + 4641 ], "objectives": [ - 3043 + 3222 ], "order": [ 38 ], "player_assists": [ - 2627 + 2806 ], "player_damages": [ - 2688 + 2867 ], "player_kills": [ - 2844 + 3023 ], "player_unused_utilities": [ - 3330 + 3509 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "rounds": [ - 2075 + 2254 ], "started_at": [ - 4024 + 4203 ], "status": [ - 758 + 778 ], "utility": [ - 3371 + 3550 ], "vetos": [ - 2116 + 2295 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39106,7 +41745,7 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "demos_download_url": [ 78 @@ -39115,13 +41754,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_score": [ 38 @@ -39136,10 +41775,10 @@ export default { 38 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "order": [ 38 @@ -39148,13 +41787,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "started_at": [ - 4024 + 4203 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39162,46 +41801,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "ended_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "latest_clip_at": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "public_latest_clip_at": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39212,7 +41851,7 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "demos_download_url": [ 78 @@ -39221,13 +41860,13 @@ export default { 38 ], "ended_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_score": [ 38 @@ -39242,10 +41881,10 @@ export default { 38 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "order": [ 38 @@ -39254,13 +41893,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "started_at": [ - 4024 + 4203 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39268,46 +41907,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "ended_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "latest_clip_at": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "public_latest_clip_at": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39318,7 +41957,7 @@ export default { 38 ], "returning": [ - 2134 + 2313 ], "__typename": [ 78 @@ -39326,10 +41965,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2146 + 2325 ], "on_conflict": [ - 2153 + 2332 ], "__typename": [ 78 @@ -39337,13 +41976,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2144 + 2323 ], "update_columns": [ - 2168 + 2347 ], "where": [ - 2143 + 2322 ], "__typename": [ 78 @@ -39351,112 +41990,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "demos_aggregate": [ - 2025 + 2204 ], "demos_download_url": [ - 2481 + 2660 ], "demos_total_size": [ - 2481 + 2660 ], "e_match_map_status": [ - 766 + 786 ], "ended_at": [ - 2481 + 2660 ], "flashes_aggregate": [ - 2798 + 2977 ], "id": [ - 2481 + 2660 ], "is_current_map": [ - 2481 + 2660 ], "latest_clip_at": [ - 2481 + 2660 ], "lineup_1_score": [ - 2481 + 2660 ], "lineup_1_side": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_score": [ - 2481 + 2660 ], "lineup_2_side": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_clips_aggregate": [ - 1848 + 2027 ], "match_id": [ - 2481 + 2660 ], "objectives_aggregate": [ - 3042 + 3221 ], "order": [ - 2481 + 2660 ], "player_assists_aggregate": [ - 2626 + 2805 ], "player_damages_aggregate": [ - 2687 + 2866 ], "player_kills_aggregate": [ - 2843 + 3022 ], "player_unused_utilities_aggregate": [ - 3329 + 3508 ], "public_clips_count": [ - 2481 + 2660 ], "public_latest_clip_at": [ - 2481 + 2660 ], "rounds_aggregate": [ - 2074 + 2253 ], "started_at": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "utility_aggregate": [ - 3370 + 3549 ], "vetos_aggregate": [ - 2115 + 2294 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39464,7 +42103,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39476,34 +42115,34 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "order": [ 38 @@ -39512,16 +42151,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "started_at": [ - 4024 + 4203 ], "status": [ - 758 + 778 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39558,19 +42197,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39607,19 +42246,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39656,19 +42295,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39676,7 +42315,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2165 + 2344 ], "ordering": [ 236 @@ -39690,34 +42329,34 @@ export default { 38 ], "created_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "latest_clip_at": [ - 4024 + 4203 ], "lineup_1_side": [ - 1002 + 1022 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1002 + 1022 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "order": [ 38 @@ -39726,16 +42365,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4024 + 4203 ], "started_at": [ - 4024 + 4203 ], "status": [ - 758 + 778 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -39772,19 +42411,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39793,13 +42432,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2145 + 2324 ], "_set": [ - 2157 + 2336 ], "where": [ - 2143 + 2322 ], "__typename": [ 78 @@ -39836,19 +42475,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39885,19 +42524,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39934,19 +42573,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2481 + 2660 ], "lineup_1_timeouts_available": [ - 2481 + 2660 ], "lineup_2_timeouts_available": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "public_clips_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -39975,7 +42614,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -39987,22 +42626,22 @@ export default { 38 ], "map_pool": [ - 1795 + 1974 ], "map_pool_id": [ - 4462 + 4641 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 799 ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -40012,19 +42651,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_aggregate": [ - 2297, + 2476, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -40034,11 +42673,11 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], @@ -40055,7 +42694,7 @@ export default { 3 ], "ready_setting": [ - 921 + 941 ], "region_veto": [ 3 @@ -40064,25 +42703,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1103 ], "timeout_setting": [ - 1083 + 1103 ], "tournament": [ - 4416 + 4595 ], "tournament_bracket": [ - 4026 + 4205 ], "tournament_stage": [ - 4154 + 4333 ], "tv_delay": [ 38 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -40090,10 +42729,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2178 + 2357 ], "nodes": [ - 2176 + 2355 ], "__typename": [ 78 @@ -40101,13 +42740,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2179 + 2358 ], "count": [ 38, { "columns": [ - 2191, + 2370, "[match_options_select_column!]" ], "distinct": [ @@ -40116,31 +42755,31 @@ export default { } ], "max": [ - 2184 + 2363 ], "min": [ - 2185 + 2364 ], "stddev": [ - 2193 + 2372 ], "stddev_pop": [ - 2194 + 2373 ], "stddev_samp": [ - 2195 + 2374 ], "sum": [ - 2198 + 2377 ], "var_pop": [ - 2201 + 2380 ], "var_samp": [ - 2202 + 2381 ], "variance": [ - 2203 + 2382 ], "__typename": [ 78 @@ -40171,13 +42810,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2180 + 2359 ], "_not": [ - 2180 + 2359 ], "_or": [ - 2180 + 2359 ], "auto_cancel_duration": [ 39 @@ -40201,7 +42840,7 @@ export default { 4 ], "id": [ - 4464 + 4643 ], "invite_code": [ 80 @@ -40213,22 +42852,22 @@ export default { 39 ], "map_pool": [ - 1798 + 1977 ], "map_pool_id": [ - 4464 + 4643 ], "map_veto": [ 4 ], "match_mode": [ - 780 + 800 ], "matches": [ - 2305 + 2484 ], "matches_aggregate": [ - 2298 + 2477 ], "mr": [ 39 @@ -40243,7 +42882,7 @@ export default { 4 ], "ready_setting": [ - 922 + 942 ], "region_veto": [ 4 @@ -40252,25 +42891,25 @@ export default { 79 ], "tech_timeout_setting": [ - 1084 + 1104 ], "timeout_setting": [ - 1084 + 1104 ], "tournament": [ - 4427 + 4606 ], "tournament_bracket": [ - 4037 + 4216 ], "tournament_stage": [ - 4166 + 4345 ], "tv_delay": [ 39 ], "type": [ - 821 + 841 ], "__typename": [ 78 @@ -40320,7 +42959,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -40332,19 +42971,19 @@ export default { 38 ], "map_pool": [ - 1804 + 1983 ], "map_pool_id": [ - 4462 + 4641 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 799 ], "matches": [ - 2302 + 2481 ], "mr": [ 38 @@ -40359,7 +42998,7 @@ export default { 3 ], "ready_setting": [ - 921 + 941 ], "region_veto": [ 3 @@ -40368,25 +43007,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1103 ], "timeout_setting": [ - 1083 + 1103 ], "tournament": [ - 4436 + 4615 ], "tournament_bracket": [ - 4046 + 4225 ], "tournament_stage": [ - 4178 + 4357 ], "tv_delay": [ 38 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -40400,7 +43039,7 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -40409,7 +43048,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4641 ], "mr": [ 38 @@ -40435,7 +43074,7 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -40444,7 +43083,7 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4641 ], "mr": [ 38 @@ -40467,7 +43106,7 @@ export default { 38 ], "returning": [ - 2176 + 2355 ], "__typename": [ 78 @@ -40475,10 +43114,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2183 + 2362 ], "on_conflict": [ - 2188 + 2367 ], "__typename": [ 78 @@ -40486,13 +43125,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2181 + 2360 ], "update_columns": [ - 2199 + 2378 ], "where": [ - 2180 + 2359 ], "__typename": [ 78 @@ -40500,94 +43139,94 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2481 + 2660 ], "auto_cancellation": [ - 2481 + 2660 ], "best_of": [ - 2481 + 2660 ], "check_in_setting": [ - 2481 + 2660 ], "coaches": [ - 2481 + 2660 ], "default_models": [ - 2481 + 2660 ], "has_active_matches": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invite_code": [ - 2481 + 2660 ], "knife_round": [ - 2481 + 2660 ], "live_match_timeout": [ - 2481 + 2660 ], "map_pool": [ - 1806 + 1985 ], "map_pool_id": [ - 2481 + 2660 ], "map_veto": [ - 2481 + 2660 ], "match_mode": [ - 2481 + 2660 ], "matches_aggregate": [ - 2301 + 2480 ], "mr": [ - 2481 + 2660 ], "number_of_substitutes": [ - 2481 + 2660 ], "overtime": [ - 2481 + 2660 ], "prefer_dedicated_server": [ - 2481 + 2660 ], "ready_setting": [ - 2481 + 2660 ], "region_veto": [ - 2481 + 2660 ], "regions": [ - 2481 + 2660 ], "tech_timeout_setting": [ - 2481 + 2660 ], "timeout_setting": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_bracket": [ - 4048 + 4227 ], "tournament_stage": [ - 4180 + 4359 ], "tv_delay": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -40595,7 +43234,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -40622,7 +43261,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -40634,13 +43273,13 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4641 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 799 ], "mr": [ 38 @@ -40655,7 +43294,7 @@ export default { 3 ], "ready_setting": [ - 921 + 941 ], "region_veto": [ 3 @@ -40664,16 +43303,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1103 ], "timeout_setting": [ - 1083 + 1103 ], "tv_delay": [ 38 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -40750,7 +43389,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2197 + 2376 ], "ordering": [ 236 @@ -40779,7 +43418,7 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -40791,13 +43430,13 @@ export default { 38 ], "map_pool_id": [ - 4462 + 4641 ], "map_veto": [ 3 ], "match_mode": [ - 779 + 799 ], "mr": [ 38 @@ -40812,7 +43451,7 @@ export default { 3 ], "ready_setting": [ - 921 + 941 ], "region_veto": [ 3 @@ -40821,16 +43460,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1083 + 1103 ], "timeout_setting": [ - 1083 + 1103 ], "tv_delay": [ 38 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -40862,13 +43501,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2182 + 2361 ], "_set": [ - 2192 + 2371 ], "where": [ - 2180 + 2359 ], "__typename": [ 78 @@ -40945,28 +43584,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -40974,10 +43613,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2208 + 2387 ], "nodes": [ - 2204 + 2383 ], "__typename": [ 78 @@ -40985,7 +43624,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2207 + 2386 ], "__typename": [ 78 @@ -40993,13 +43632,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2222 + 2401 ], "distinct": [ 3 ], "filter": [ - 2211 + 2390 ], "predicate": [ 39 @@ -41013,7 +43652,7 @@ export default { 38, { "columns": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -41022,10 +43661,10 @@ export default { } ], "max": [ - 2214 + 2393 ], "min": [ - 2216 + 2395 ], "__typename": [ 78 @@ -41033,13 +43672,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 2215 + 2394 ], "min": [ - 2217 + 2396 ], "__typename": [ 78 @@ -41047,10 +43686,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2213 + 2392 ], "on_conflict": [ - 2219 + 2398 ], "__typename": [ 78 @@ -41058,37 +43697,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2211 + 2390 ], "_not": [ - 2211 + 2390 ], "_or": [ - 2211 + 2390 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "region": [ 80 ], "type": [ - 1166 + 1186 ], "__typename": [ 78 @@ -41097,28 +43736,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -41126,16 +43765,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 @@ -41146,19 +43785,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41166,16 +43805,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 @@ -41186,19 +43825,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41209,7 +43848,7 @@ export default { 38 ], "returning": [ - 2204 + 2383 ], "__typename": [ 78 @@ -41217,13 +43856,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2212 + 2391 ], "update_columns": [ - 2226 + 2405 ], "where": [ - 2211 + 2390 ], "__typename": [ 78 @@ -41231,28 +43870,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41260,7 +43899,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -41269,22 +43908,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -41292,7 +43931,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2225 + 2404 ], "ordering": [ 236 @@ -41303,22 +43942,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "region": [ 78 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -41327,10 +43966,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2223 + 2402 ], "where": [ - 2211 + 2390 ], "__typename": [ 78 @@ -41344,13 +43983,13 @@ export default { 78 ], "game_server_node": [ - 1229 + 1407 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_game_streamer": [ 3 @@ -41362,16 +44001,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -41383,7 +44022,7 @@ export default { 78 ], "status_history": [ - 1352, + 1531, { "path": [ 78 @@ -41402,10 +44041,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2234 + 2413 ], "nodes": [ - 2228 + 2407 ], "__typename": [ 78 @@ -41413,13 +44052,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2231 + 2410 ], "bool_or": [ - 2232 + 2411 ], "count": [ - 2233 + 2412 ], "__typename": [ 78 @@ -41427,13 +44066,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2257 + 2436 ], "distinct": [ 3 ], "filter": [ - 2240 + 2419 ], "predicate": [ 4 @@ -41444,13 +44083,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2258 + 2437 ], "distinct": [ 3 ], "filter": [ - 2240 + 2419 ], "predicate": [ 4 @@ -41461,13 +44100,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2256 + 2435 ], "distinct": [ 3 ], "filter": [ - 2240 + 2419 ], "predicate": [ 39 @@ -41478,13 +44117,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2238 + 2417 ], "count": [ 38, { "columns": [ - 2256, + 2435, "[match_streams_select_column!]" ], "distinct": [ @@ -41493,31 +44132,31 @@ export default { } ], "max": [ - 2247 + 2426 ], "min": [ - 2249 + 2428 ], "stddev": [ - 2260 + 2439 ], "stddev_pop": [ - 2262 + 2441 ], "stddev_samp": [ - 2264 + 2443 ], "sum": [ - 2268 + 2447 ], "var_pop": [ - 2272 + 2451 ], "var_samp": [ - 2274 + 2453 ], "variance": [ - 2276 + 2455 ], "__typename": [ 78 @@ -41525,37 +44164,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2239 + 2418 ], "count": [ - 2481 + 2660 ], "max": [ - 2248 + 2427 ], "min": [ - 2250 + 2429 ], "stddev": [ - 2261 + 2440 ], "stddev_pop": [ - 2263 + 2442 ], "stddev_samp": [ - 2265 + 2444 ], "sum": [ - 2269 + 2448 ], "var_pop": [ - 2273 + 2452 ], "var_samp": [ - 2275 + 2454 ], "variance": [ - 2277 + 2456 ], "__typename": [ 78 @@ -41563,7 +44202,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -41571,10 +44210,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2246 + 2425 ], "on_conflict": [ - 2252 + 2431 ], "__typename": [ 78 @@ -41590,7 +44229,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41598,13 +44237,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2240 + 2419 ], "_not": [ - 2240 + 2419 ], "_or": [ - 2240 + 2419 ], "autodirector": [ 4 @@ -41613,13 +44252,13 @@ export default { 80 ], "game_server_node": [ - 1241 + 1419 ], "game_server_node_id": [ 80 ], "id": [ - 4464 + 4643 ], "is_game_streamer": [ 4 @@ -41631,16 +44270,16 @@ export default { 80 ], "last_status_at": [ - 4025 + 4204 ], "link": [ 80 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "mode": [ 80 @@ -41652,7 +44291,7 @@ export default { 80 ], "status_history": [ - 1354 + 1533 ], "stream_url": [ 80 @@ -41705,13 +44344,13 @@ export default { 78 ], "game_server_node": [ - 1253 + 1431 ], "game_server_node_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_game_streamer": [ 3 @@ -41723,16 +44362,16 @@ export default { 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -41744,7 +44383,7 @@ export default { 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 @@ -41764,19 +44403,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -41799,40 +44438,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_service_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "link": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "mode": [ - 2481 + 2660 ], "priority": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41846,19 +44485,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -41881,40 +44520,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_service_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "link": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "mode": [ - 2481 + 2660 ], "priority": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "__typename": [ 78 @@ -41925,7 +44564,7 @@ export default { 38 ], "returning": [ - 2228 + 2407 ], "__typename": [ 78 @@ -41933,13 +44572,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2241 + 2420 ], "update_columns": [ - 2270 + 2449 ], "where": [ - 2240 + 2419 ], "__typename": [ 78 @@ -41947,58 +44586,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2481 + 2660 ], "error_message": [ - 2481 + 2660 ], "game_server_node": [ - 1255 + 1433 ], "game_server_node_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_game_streamer": [ - 2481 + 2660 ], "is_live": [ - 2481 + 2660 ], "k8s_service_name": [ - 2481 + 2660 ], "last_status_at": [ - 2481 + 2660 ], "link": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "mode": [ - 2481 + 2660 ], "priority": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "status_history": [ - 2481 + 2660 ], "stream_url": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42006,7 +44645,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -42014,7 +44653,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1352 + 1531 ], "__typename": [ 78 @@ -42034,7 +44673,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_game_streamer": [ 3 @@ -42046,13 +44685,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -42064,7 +44703,7 @@ export default { 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 @@ -42086,7 +44725,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42102,7 +44741,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42118,7 +44757,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42126,7 +44765,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2267 + 2446 ], "ordering": [ 236 @@ -42146,7 +44785,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_game_streamer": [ 3 @@ -42158,13 +44797,13 @@ export default { 78 ], "last_status_at": [ - 4024 + 4203 ], "link": [ 78 ], "match_id": [ - 4462 + 4641 ], "mode": [ 78 @@ -42176,7 +44815,7 @@ export default { 78 ], "status_history": [ - 1352 + 1531 ], "stream_url": [ 78 @@ -42198,7 +44837,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42207,28 +44846,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2236 + 2415 ], "_delete_at_path": [ - 2242 + 2421 ], "_delete_elem": [ - 2243 + 2422 ], "_delete_key": [ - 2244 + 2423 ], "_inc": [ - 2245 + 2424 ], "_prepend": [ - 2255 + 2434 ], "_set": [ - 2259 + 2438 ], "where": [ - 2240 + 2419 ], "__typename": [ 78 @@ -42244,7 +44883,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42260,7 +44899,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42276,7 +44915,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42287,7 +44926,7 @@ export default { 78 ], "type": [ - 551 + 571 ], "__typename": [ 78 @@ -42295,10 +44934,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2280 + 2459 ], "nodes": [ - 2278 + 2457 ], "__typename": [ 78 @@ -42309,7 +44948,7 @@ export default { 38, { "columns": [ - 2290, + 2469, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -42318,10 +44957,10 @@ export default { } ], "max": [ - 2284 + 2463 ], "min": [ - 2285 + 2464 ], "__typename": [ 78 @@ -42329,19 +44968,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2281 + 2460 ], "_not": [ - 2281 + 2460 ], "_or": [ - 2281 + 2460 ], "cfg": [ 80 ], "type": [ - 552 + 572 ], "__typename": [ 78 @@ -42353,7 +44992,7 @@ export default { 78 ], "type": [ - 551 + 571 ], "__typename": [ 78 @@ -42380,7 +45019,7 @@ export default { 38 ], "returning": [ - 2278 + 2457 ], "__typename": [ 78 @@ -42388,13 +45027,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2282 + 2461 ], "update_columns": [ - 2294 + 2473 ], "where": [ - 2281 + 2460 ], "__typename": [ 78 @@ -42402,10 +45041,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -42413,7 +45052,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 551 + 571 ], "__typename": [ 78 @@ -42425,7 +45064,7 @@ export default { 78 ], "type": [ - 551 + 571 ], "__typename": [ 78 @@ -42433,7 +45072,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2293 + 2472 ], "ordering": [ 236 @@ -42447,7 +45086,7 @@ export default { 78 ], "type": [ - 551 + 571 ], "__typename": [ 78 @@ -42456,10 +45095,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2291 + 2470 ], "where": [ - 2281 + 2460 ], "__typename": [ 78 @@ -42491,13 +45130,13 @@ export default { 3 ], "cancels_at": [ - 4024 + 4203 ], "clutches": [ - 4591, + 4821, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42507,19 +45146,19 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], "clutches_aggregate": [ - 4592, + 4822, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -42529,11 +45168,11 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], @@ -42544,16 +45183,16 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_match_map_id": [ - 4462 + 4641 ], "demos": [ - 2018, + 2197, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -42563,19 +45202,19 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "demos_aggregate": [ - 2019, + 2198, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -42585,11 +45224,11 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], @@ -42638,19 +45277,19 @@ export default { } ], "e_match_status": [ - 794 + 814 ], "e_region": [ - 3526 + 3705 ], "effective_at": [ - 4024 + 4203 ], "elo_changes": [ - 4788, + 5018, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -42660,19 +45299,19 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "elo_changes_aggregate": [ - 4789, + 5019, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -42682,22 +45321,22 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -42730,19 +45369,19 @@ export default { 78 ], "lineup_1": [ - 1976 + 2155 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2": [ - 1976 + 2155 ], "lineup_2_id": [ - 4462 + 4641 ], "lineup_counts": [ - 1350, + 1529, { "path": [ 78 @@ -42750,13 +45389,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4462 + 4641 ], "map_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42766,19 +45405,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "map_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42788,11 +45427,11 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], @@ -42800,10 +45439,10 @@ export default { 78 ], "match_maps": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -42813,19 +45452,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -42835,16 +45474,16 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_options_id": [ - 4462 + 4641 ], "max_players_per_lineup": [ 38 @@ -42853,10 +45492,10 @@ export default { 38 ], "opening_duels": [ - 4719, + 4949, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42866,19 +45505,19 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "opening_duels_aggregate": [ - 4720, + 4950, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -42888,19 +45527,19 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "options": [ - 2176 + 2355 ], "organizer": [ - 3439 + 3618 ], "organizer_steam_id": [ 180 @@ -42909,10 +45548,10 @@ export default { 78 ], "player_assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -42922,19 +45561,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -42944,19 +45583,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_damages": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -42966,19 +45605,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -42988,19 +45627,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_flashes": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -43010,19 +45649,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_flashes_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -43032,19 +45671,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -43054,19 +45693,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -43076,19 +45715,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -43098,19 +45737,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -43120,19 +45759,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_unused_utilities": [ - 3324, + 3503, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43142,19 +45781,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3504, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -43164,19 +45803,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_utility": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -43186,19 +45825,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utility_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -43208,11 +45847,11 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], @@ -43220,13 +45859,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4641 ], "region_veto_picks": [ - 2204, + 2383, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43236,19 +45875,19 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], "region_veto_picks_aggregate": [ - 2205, + 2384, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -43258,11 +45897,11 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], @@ -43270,16 +45909,16 @@ export default { 3 ], "scheduled_at": [ - 4024 + 4203 ], "server": [ - 3553 + 3732 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "server_region": [ 78 @@ -43291,16 +45930,16 @@ export default { 78 ], "started_at": [ - 4024 + 4203 ], "status": [ - 799 + 819 ], "streams": [ - 2228, + 2407, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -43310,19 +45949,19 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "streams_aggregate": [ - 2229, + 2408, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -43332,19 +45971,19 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "teams": [ - 3981, + 4160, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -43354,19 +45993,19 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "tournament_brackets": [ - 4026, + 4205, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43376,19 +46015,19 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4206, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -43398,11 +46037,11 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], @@ -43410,10 +46049,10 @@ export default { 78 ], "winner": [ - 1976 + 2155 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -43421,10 +46060,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2300 + 2479 ], "nodes": [ - 2296 + 2475 ], "__typename": [ 78 @@ -43432,7 +46071,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2299 + 2478 ], "__typename": [ 78 @@ -43440,13 +46079,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2318 + 2497 ], "distinct": [ 3 ], "filter": [ - 2305 + 2484 ], "predicate": [ 39 @@ -43457,13 +46096,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2303 + 2482 ], "count": [ 38, { "columns": [ - 2318, + 2497, "[matches_select_column!]" ], "distinct": [ @@ -43472,31 +46111,31 @@ export default { } ], "max": [ - 2309 + 2488 ], "min": [ - 2311 + 2490 ], "stddev": [ - 2320 + 2499 ], "stddev_pop": [ - 2322 + 2501 ], "stddev_samp": [ - 2324 + 2503 ], "sum": [ - 2328 + 2507 ], "var_pop": [ - 2332 + 2511 ], "var_samp": [ - 2334 + 2513 ], "variance": [ - 2336 + 2515 ], "__typename": [ 78 @@ -43504,37 +46143,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2304 + 2483 ], "count": [ - 2481 + 2660 ], "max": [ - 2310 + 2489 ], "min": [ - 2312 + 2491 ], "stddev": [ - 2321 + 2500 ], "stddev_pop": [ - 2323 + 2502 ], "stddev_samp": [ - 2325 + 2504 ], "sum": [ - 2329 + 2508 ], "var_pop": [ - 2333 + 2512 ], "var_samp": [ - 2335 + 2514 ], "variance": [ - 2337 + 2516 ], "__typename": [ 78 @@ -43542,10 +46181,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2308 + 2487 ], "on_conflict": [ - 2315 + 2494 ], "__typename": [ 78 @@ -43567,7 +46206,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -43575,13 +46214,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2305 + 2484 ], "_not": [ - 2305 + 2484 ], "_or": [ - 2305 + 2484 ], "can_assign_server": [ 4 @@ -43608,13 +46247,13 @@ export default { 4 ], "cancels_at": [ - 4025 + 4204 ], "clutches": [ - 4600 + 4830 ], "clutches_aggregate": [ - 4593 + 4823 ], "connection_link": [ 80 @@ -43623,16 +46262,16 @@ export default { 80 ], "created_at": [ - 4025 + 4204 ], "current_match_map_id": [ - 4464 + 4643 ], "demos": [ - 2030 + 2209 ], "demos_aggregate": [ - 2020 + 2199 ], "draft_games": [ 365 @@ -43641,28 +46280,28 @@ export default { 356 ], "e_match_status": [ - 797 + 817 ], "e_region": [ - 3530 + 3709 ], "effective_at": [ - 4025 + 4204 ], "elo_changes": [ - 4807 + 5037 ], "elo_changes_aggregate": [ - 4790 + 5020 ], "ended_at": [ - 4025 + 4204 ], "external_id": [ 80 ], "id": [ - 4464 + 4643 ], "invite_code": [ 80 @@ -43695,40 +46334,40 @@ export default { 80 ], "lineup_1": [ - 1985 + 2164 ], "lineup_1_id": [ - 4464 + 4643 ], "lineup_2": [ - 1985 + 2164 ], "lineup_2_id": [ - 4464 + 4643 ], "lineup_counts": [ - 1351 + 1530 ], "map_veto_picking_lineup_id": [ - 4464 + 4643 ], "map_veto_picks": [ - 2117 + 2296 ], "map_veto_picks_aggregate": [ - 2112 + 2291 ], "map_veto_type": [ 80 ], "match_maps": [ - 2143 + 2322 ], "match_maps_aggregate": [ - 2136 + 2315 ], "match_options_id": [ - 4464 + 4643 ], "max_players_per_lineup": [ 39 @@ -43737,16 +46376,16 @@ export default { 39 ], "opening_duels": [ - 4728 + 4958 ], "opening_duels_aggregate": [ - 4721 + 4951 ], "options": [ - 2180 + 2359 ], "organizer": [ - 3443 + 3622 ], "organizer_steam_id": [ 182 @@ -43755,73 +46394,73 @@ export default { 80 ], "player_assists": [ - 2630 + 2809 ], "player_assists_aggregate": [ - 2621 + 2800 ], "player_damages": [ - 2691 + 2870 ], "player_damages_aggregate": [ - 2684 + 2863 ], "player_flashes": [ - 2802 + 2981 ], "player_flashes_aggregate": [ - 2793 + 2972 ], "player_kills": [ - 2847 + 3026 ], "player_kills_aggregate": [ - 2838 + 3017 ], "player_objectives": [ - 3046 + 3225 ], "player_objectives_aggregate": [ - 3039 + 3218 ], "player_unused_utilities": [ - 3333 + 3512 ], "player_unused_utilities_aggregate": [ - 3326 + 3505 ], "player_utility": [ - 3374 + 3553 ], "player_utility_aggregate": [ - 3367 + 3546 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4464 + 4643 ], "region_veto_picks": [ - 2211 + 2390 ], "region_veto_picks_aggregate": [ - 2206 + 2385 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4025 + 4204 ], "server": [ - 3564 + 3743 ], "server_error": [ 80 ], "server_id": [ - 4464 + 4643 ], "server_region": [ 80 @@ -43833,34 +46472,34 @@ export default { 80 ], "started_at": [ - 4025 + 4204 ], "status": [ - 800 + 820 ], "streams": [ - 2240 + 2419 ], "streams_aggregate": [ - 2230 + 2409 ], "teams": [ - 3990 + 4169 ], "tournament_brackets": [ - 4037 + 4216 ], "tournament_brackets_aggregate": [ - 4028 + 4207 ], "tv_connection_string": [ 80 ], "winner": [ - 1985 + 2164 ], "winning_lineup_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -43877,70 +46516,70 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4024 + 4203 ], "clutches": [ - 4597 + 4827 ], "created_at": [ - 4024 + 4203 ], "demos": [ - 2027 + 2206 ], "draft_games": [ 362 ], "e_match_status": [ - 805 + 825 ], "e_region": [ - 3536 + 3715 ], "elo_changes": [ - 4804 + 5034 ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "lineup_1": [ - 1994 + 2173 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2": [ - 1994 + 2173 ], "lineup_2_id": [ - 4462 + 4641 ], "map_veto_picks": [ - 2116 + 2295 ], "match_maps": [ - 2140 + 2319 ], "match_options_id": [ - 4462 + 4641 ], "opening_duels": [ - 4725 + 4955 ], "options": [ - 2187 + 2366 ], "organizer": [ - 3450 + 3629 ], "organizer_steam_id": [ 180 @@ -43949,64 +46588,64 @@ export default { 78 ], "player_assists": [ - 2627 + 2806 ], "player_damages": [ - 2688 + 2867 ], "player_flashes": [ - 2799 + 2978 ], "player_kills": [ - 2844 + 3023 ], "player_objectives": [ - 3043 + 3222 ], "player_unused_utilities": [ - 3330 + 3509 ], "player_utility": [ - 3371 + 3550 ], "region": [ 78 ], "region_veto_picks": [ - 2210 + 2389 ], "scheduled_at": [ - 4024 + 4203 ], "server": [ - 3573 + 3752 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "source": [ 78 ], "started_at": [ - 4024 + 4203 ], "status": [ - 799 + 819 ], "streams": [ - 2237 + 2416 ], "tournament_brackets": [ - 4034 + 4213 ], "winner": [ - 1994 + 2173 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44014,7 +46653,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4024 + 4203 ], "connection_link": [ 78 @@ -44023,22 +46662,22 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_match_map_id": [ - 4462 + 4641 ], "effective_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -44047,19 +46686,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2_id": [ - 4462 + 4641 ], "map_veto_picking_lineup_id": [ - 4462 + 4641 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4641 ], "max_players_per_lineup": [ 38 @@ -44077,16 +46716,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4641 ], "scheduled_at": [ - 4024 + 4203 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "server_region": [ 78 @@ -44098,13 +46737,13 @@ export default { 78 ], "started_at": [ - 4024 + 4203 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44112,61 +46751,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "effective_at": [ - 2481 + 2660 ], "ended_at": [ - 2481 + 2660 ], "external_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "lineup_1_id": [ - 2481 + 2660 ], "lineup_2_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "organizer_steam_id": [ - 2481 + 2660 ], "password": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "server_error": [ - 2481 + 2660 ], "server_id": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44174,7 +46813,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4024 + 4203 ], "connection_link": [ 78 @@ -44183,22 +46822,22 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_match_map_id": [ - 4462 + 4641 ], "effective_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "invite_code": [ 78 @@ -44207,19 +46846,19 @@ export default { 78 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2_id": [ - 4462 + 4641 ], "map_veto_picking_lineup_id": [ - 4462 + 4641 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4462 + 4641 ], "max_players_per_lineup": [ 38 @@ -44237,16 +46876,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4462 + 4641 ], "scheduled_at": [ - 4024 + 4203 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "server_region": [ 78 @@ -44258,13 +46897,13 @@ export default { 78 ], "started_at": [ - 4024 + 4203 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44272,61 +46911,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "effective_at": [ - 2481 + 2660 ], "ended_at": [ - 2481 + 2660 ], "external_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "lineup_1_id": [ - 2481 + 2660 ], "lineup_2_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "organizer_steam_id": [ - 2481 + 2660 ], "password": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "server_error": [ - 2481 + 2660 ], "server_id": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44337,7 +46976,7 @@ export default { 38 ], "returning": [ - 2296 + 2475 ], "__typename": [ 78 @@ -44345,10 +46984,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2308 + 2487 ], "on_conflict": [ - 2315 + 2494 ], "__typename": [ 78 @@ -44356,13 +46995,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2306 + 2485 ], "update_columns": [ - 2330 + 2509 ], "where": [ - 2305 + 2484 ], "__typename": [ 78 @@ -44370,232 +47009,232 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2481 + 2660 ], "can_cancel": [ - 2481 + 2660 ], "can_check_in": [ - 2481 + 2660 ], "can_reassign_winner": [ - 2481 + 2660 ], "can_schedule": [ - 2481 + 2660 ], "can_start": [ - 2481 + 2660 ], "can_stream_live": [ - 2481 + 2660 ], "can_stream_tv": [ - 2481 + 2660 ], "cancels_at": [ - 2481 + 2660 ], "clutches_aggregate": [ - 4596 + 4826 ], "connection_link": [ - 2481 + 2660 ], "connection_string": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current_match_map_id": [ - 2481 + 2660 ], "demos_aggregate": [ - 2025 + 2204 ], "draft_games_aggregate": [ 361 ], "e_match_status": [ - 807 + 827 ], "e_region": [ - 3538 + 3717 ], "effective_at": [ - 2481 + 2660 ], "elo_changes_aggregate": [ - 4803 + 5033 ], "ended_at": [ - 2481 + 2660 ], "external_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invite_code": [ - 2481 + 2660 ], "is_captain": [ - 2481 + 2660 ], "is_coach": [ - 2481 + 2660 ], "is_friend_in_match_lineup": [ - 2481 + 2660 ], "is_in_lineup": [ - 2481 + 2660 ], "is_match_server_available": [ - 2481 + 2660 ], "is_organizer": [ - 2481 + 2660 ], "is_server_online": [ - 2481 + 2660 ], "is_tournament_match": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "lineup_1": [ - 1996 + 2175 ], "lineup_1_id": [ - 2481 + 2660 ], "lineup_2": [ - 1996 + 2175 ], "lineup_2_id": [ - 2481 + 2660 ], "lineup_counts": [ - 2481 + 2660 ], "map_veto_picking_lineup_id": [ - 2481 + 2660 ], "map_veto_picks_aggregate": [ - 2115 + 2294 ], "map_veto_type": [ - 2481 + 2660 ], "match_maps_aggregate": [ - 2139 + 2318 ], "match_options_id": [ - 2481 + 2660 ], "max_players_per_lineup": [ - 2481 + 2660 ], "min_players_per_lineup": [ - 2481 + 2660 ], "opening_duels_aggregate": [ - 4724 + 4954 ], "options": [ - 2189 + 2368 ], "organizer": [ - 3452 + 3631 ], "organizer_steam_id": [ - 2481 + 2660 ], "password": [ - 2481 + 2660 ], "player_assists_aggregate": [ - 2626 + 2805 ], "player_damages_aggregate": [ - 2687 + 2866 ], "player_flashes_aggregate": [ - 2798 + 2977 ], "player_kills_aggregate": [ - 2843 + 3022 ], "player_objectives_aggregate": [ - 3042 + 3221 ], "player_unused_utilities_aggregate": [ - 3329 + 3508 ], "player_utility_aggregate": [ - 3370 + 3549 ], "region": [ - 2481 + 2660 ], "region_veto_picking_lineup_id": [ - 2481 + 2660 ], "region_veto_picks_aggregate": [ - 2209 + 2388 ], "requested_organizer": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "server": [ - 3575 + 3754 ], "server_error": [ - 2481 + 2660 ], "server_id": [ - 2481 + 2660 ], "server_region": [ - 2481 + 2660 ], "server_type": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "streams_aggregate": [ - 2235 + 2414 ], "teams_aggregate": [ - 3986 + 4165 ], "tournament_brackets_aggregate": [ - 4033 + 4212 ], "tv_connection_string": [ - 2481 + 2660 ], "winner": [ - 1996 + 2175 ], "winning_lineup_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44603,7 +47242,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44612,31 +47251,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "organizer_steam_id": [ 180 @@ -44648,25 +47287,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4203 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "source": [ 78 ], "started_at": [ - 4024 + 4203 ], "status": [ - 799 + 819 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44688,7 +47327,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44710,7 +47349,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44732,7 +47371,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44740,7 +47379,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2327 + 2506 ], "ordering": [ 236 @@ -44751,34 +47390,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "effective_at": [ - 4024 + 4203 ], "ended_at": [ - 4024 + 4203 ], "external_id": [ 78 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "lineup_1_id": [ - 4462 + 4641 ], "lineup_2_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "organizer_steam_id": [ 180 @@ -44790,25 +47429,25 @@ export default { 78 ], "scheduled_at": [ - 4024 + 4203 ], "server_error": [ 78 ], "server_id": [ - 4462 + 4641 ], "source": [ 78 ], "started_at": [ - 4024 + 4203 ], "status": [ - 799 + 819 ], "winning_lineup_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -44830,7 +47469,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44839,13 +47478,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2307 + 2486 ], "_set": [ - 2319 + 2498 ], "where": [ - 2305 + 2484 ], "__typename": [ 78 @@ -44867,7 +47506,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44889,7 +47528,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44911,7 +47550,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -44930,10 +47569,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2340 + 2519 ], "nodes": [ - 2338 + 2517 ], "__typename": [ 78 @@ -44944,7 +47583,7 @@ export default { 38, { "columns": [ - 2350, + 2529, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -44953,10 +47592,10 @@ export default { } ], "max": [ - 2344 + 2523 ], "min": [ - 2345 + 2524 ], "__typename": [ 78 @@ -44964,13 +47603,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2341 + 2520 ], "_not": [ - 2341 + 2520 ], "_or": [ - 2341 + 2520 ], "hash": [ 80 @@ -45021,7 +47660,7 @@ export default { 38 ], "returning": [ - 2338 + 2517 ], "__typename": [ 78 @@ -45029,13 +47668,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2342 + 2521 ], "update_columns": [ - 2354 + 2533 ], "where": [ - 2341 + 2520 ], "__typename": [ 78 @@ -45043,10 +47682,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -45074,7 +47713,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2353 + 2532 ], "ordering": [ 236 @@ -45097,10 +47736,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2351 + 2530 ], "where": [ - 2341 + 2520 ], "__typename": [ 78 @@ -45114,7 +47753,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -45126,7 +47765,7 @@ export default { 78 ], "elo": [ - 1352, + 1531, { "path": [ 78 @@ -45146,7 +47785,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -45164,7 +47803,7 @@ export default { 78 ], "last_presence_state": [ - 1352, + 1531, { "path": [ 78 @@ -45172,10 +47811,10 @@ export default { } ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -45184,16 +47823,16 @@ export default { 3 ], "player": [ - 3439 + 3618 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -45211,7 +47850,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -45228,10 +47867,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2362 + 2541 ], "nodes": [ - 2356 + 2535 ], "__typename": [ 78 @@ -45239,13 +47878,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2359 + 2538 ], "bool_or": [ - 2360 + 2539 ], "count": [ - 2361 + 2540 ], "__typename": [ 78 @@ -45253,13 +47892,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2382 + 2561 ], "distinct": [ 3 ], "filter": [ - 2368 + 2547 ], "predicate": [ 4 @@ -45270,13 +47909,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2383 + 2562 ], "distinct": [ 3 ], "filter": [ - 2368 + 2547 ], "predicate": [ 4 @@ -45287,13 +47926,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2381 + 2560 ], "distinct": [ 3 ], "filter": [ - 2368 + 2547 ], "predicate": [ 39 @@ -45304,13 +47943,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2366 + 2545 ], "count": [ 38, { "columns": [ - 2381, + 2560, "[my_friends_select_column!]" ], "distinct": [ @@ -45319,31 +47958,31 @@ export default { } ], "max": [ - 2374 + 2553 ], "min": [ - 2376 + 2555 ], "stddev": [ - 2385 + 2564 ], "stddev_pop": [ - 2387 + 2566 ], "stddev_samp": [ - 2389 + 2568 ], "sum": [ - 2393 + 2572 ], "var_pop": [ - 2396 + 2575 ], "var_samp": [ - 2398 + 2577 ], "variance": [ - 2400 + 2579 ], "__typename": [ 78 @@ -45351,37 +47990,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2367 + 2546 ], "count": [ - 2481 + 2660 ], "max": [ - 2375 + 2554 ], "min": [ - 2377 + 2556 ], "stddev": [ - 2386 + 2565 ], "stddev_pop": [ - 2388 + 2567 ], "stddev_samp": [ - 2390 + 2569 ], "sum": [ - 2394 + 2573 ], "var_pop": [ - 2397 + 2576 ], "var_samp": [ - 2399 + 2578 ], "variance": [ - 2401 + 2580 ], "__typename": [ 78 @@ -45389,10 +48028,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1352 + 1531 ], "last_presence_state": [ - 1352 + 1531 ], "__typename": [ 78 @@ -45400,7 +48039,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2373 + 2552 ], "__typename": [ 78 @@ -45440,31 +48079,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -45472,13 +48111,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2368 + 2547 ], "_not": [ - 2368 + 2547 ], "_or": [ - 2368 + 2547 ], "avatar_url": [ 80 @@ -45487,7 +48126,7 @@ export default { 80 ], "created_at": [ - 4025 + 4204 ], "custom_avatar_url": [ 80 @@ -45499,7 +48138,7 @@ export default { 80 ], "elo": [ - 1354 + 1533 ], "faceit_elo": [ 39 @@ -45514,7 +48153,7 @@ export default { 39 ], "faceit_updated_at": [ - 4025 + 4204 ], "faceit_url": [ 80 @@ -45532,13 +48171,13 @@ export default { 80 ], "last_presence_state": [ - 1354 + 1533 ], "last_read_news_at": [ - 4025 + 4204 ], "last_sign_in_at": [ - 4025 + 4204 ], "name": [ 80 @@ -45547,16 +48186,16 @@ export default { 4 ], "player": [ - 3443 + 3622 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4025 + 4204 ], "presence_updated_at": [ - 4025 + 4204 ], "profile_url": [ 80 @@ -45574,7 +48213,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4025 + 4204 ], "steam_id": [ 182 @@ -45662,7 +48301,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -45674,7 +48313,7 @@ export default { 78 ], "elo": [ - 1352 + 1531 ], "faceit_elo": [ 38 @@ -45689,7 +48328,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -45707,13 +48346,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1531 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -45722,16 +48361,16 @@ export default { 3 ], "player": [ - 3450 + 3629 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -45749,7 +48388,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -45772,7 +48411,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -45796,7 +48435,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -45814,10 +48453,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -45826,10 +48465,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -45844,7 +48483,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -45858,91 +48497,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2481 + 2660 ], "country": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "custom_avatar_url": [ - 2481 + 2660 ], "days_since_last_ban": [ - 2481 + 2660 ], "discord_id": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_nickname": [ - 2481 + 2660 ], "faceit_player_id": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "faceit_updated_at": [ - 2481 + 2660 ], "faceit_url": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "language": [ - 2481 + 2660 ], "last_read_news_at": [ - 2481 + 2660 ], "last_sign_in_at": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "premier_rank_updated_at": [ - 2481 + 2660 ], "presence_updated_at": [ - 2481 + 2660 ], "profile_url": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "steam_bans_checked_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -45956,7 +48595,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -45980,7 +48619,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -45998,10 +48637,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -46010,10 +48649,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -46028,7 +48667,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -46042,91 +48681,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2481 + 2660 ], "country": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "custom_avatar_url": [ - 2481 + 2660 ], "days_since_last_ban": [ - 2481 + 2660 ], "discord_id": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_nickname": [ - 2481 + 2660 ], "faceit_player_id": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "faceit_updated_at": [ - 2481 + 2660 ], "faceit_url": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "language": [ - 2481 + 2660 ], "last_read_news_at": [ - 2481 + 2660 ], "last_sign_in_at": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "premier_rank_updated_at": [ - 2481 + 2660 ], "presence_updated_at": [ - 2481 + 2660 ], "profile_url": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "steam_bans_checked_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46137,7 +48776,7 @@ export default { 38 ], "returning": [ - 2356 + 2535 ], "__typename": [ 78 @@ -46145,109 +48784,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2481 + 2660 ], "country": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "custom_avatar_url": [ - 2481 + 2660 ], "days_since_last_ban": [ - 2481 + 2660 ], "discord_id": [ - 2481 + 2660 ], "elo": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_nickname": [ - 2481 + 2660 ], "faceit_player_id": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "faceit_updated_at": [ - 2481 + 2660 ], "faceit_url": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "language": [ - 2481 + 2660 ], "last_presence_state": [ - 2481 + 2660 ], "last_read_news_at": [ - 2481 + 2660 ], "last_sign_in_at": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "name_registered": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "premier_rank": [ - 2481 + 2660 ], "premier_rank_updated_at": [ - 2481 + 2660 ], "presence_updated_at": [ - 2481 + 2660 ], "profile_url": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "show_match_ready_modal": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "steam_bans_checked_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "vac_banned": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46255,10 +48894,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1352 + 1531 ], "last_presence_state": [ - 1352 + 1531 ], "__typename": [ 78 @@ -46275,7 +48914,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -46287,7 +48926,7 @@ export default { 78 ], "elo": [ - 1352 + 1531 ], "faceit_elo": [ 38 @@ -46302,7 +48941,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -46320,13 +48959,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1531 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -46338,10 +48977,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -46359,7 +48998,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -46408,31 +49047,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46472,31 +49111,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46536,31 +49175,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46568,7 +49207,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2392 + 2571 ], "ordering": [ 236 @@ -46585,7 +49224,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -46597,7 +49236,7 @@ export default { 78 ], "elo": [ - 1352 + 1531 ], "faceit_elo": [ 38 @@ -46612,7 +49251,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -46630,13 +49269,13 @@ export default { 78 ], "last_presence_state": [ - 1352 + 1531 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -46648,10 +49287,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "presence_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -46669,7 +49308,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -46718,31 +49357,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46750,28 +49389,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2364 + 2543 ], "_delete_at_path": [ - 2369 + 2548 ], "_delete_elem": [ - 2370 + 2549 ], "_delete_key": [ - 2371 + 2550 ], "_inc": [ - 2372 + 2551 ], "_prepend": [ - 2380 + 2559 ], "_set": [ - 2384 + 2563 ], "where": [ - 2368 + 2547 ], "__typename": [ 78 @@ -46811,31 +49450,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46875,31 +49514,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46939,31 +49578,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2481 + 2660 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_skill_level": [ - 2481 + 2660 ], "friend_steam_id": [ - 2481 + 2660 ], "game_ban_count": [ - 2481 + 2660 ], "invited_by_steam_id": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "vac_ban_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -46971,7 +49610,7 @@ export default { }, "news_articles": { "author": [ - 3439 + 3618 ], "author_steam_id": [ 180 @@ -46983,13 +49622,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47004,7 +49643,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47015,10 +49654,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2404 + 2583 ], "nodes": [ - 2402 + 2581 ], "__typename": [ 78 @@ -47026,13 +49665,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2405 + 2584 ], "count": [ 38, { "columns": [ - 2416, + 2595, "[news_articles_select_column!]" ], "distinct": [ @@ -47041,31 +49680,31 @@ export default { } ], "max": [ - 2410 + 2589 ], "min": [ - 2411 + 2590 ], "stddev": [ - 2418 + 2597 ], "stddev_pop": [ - 2419 + 2598 ], "stddev_samp": [ - 2420 + 2599 ], "sum": [ - 2423 + 2602 ], "var_pop": [ - 2426 + 2605 ], "var_samp": [ - 2427 + 2606 ], "variance": [ - 2428 + 2607 ], "__typename": [ 78 @@ -47084,16 +49723,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2406 + 2585 ], "_not": [ - 2406 + 2585 ], "_or": [ - 2406 + 2585 ], "author": [ - 3443 + 3622 ], "author_steam_id": [ 182 @@ -47105,13 +49744,13 @@ export default { 80 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "published_at": [ - 4025 + 4204 ], "slug": [ 80 @@ -47126,7 +49765,7 @@ export default { 80 ], "updated_at": [ - 4025 + 4204 ], "view_count": [ 182 @@ -47149,7 +49788,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3450 + 3629 ], "author_steam_id": [ 180 @@ -47161,13 +49800,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47182,7 +49821,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47202,13 +49841,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47223,7 +49862,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47243,13 +49882,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47264,7 +49903,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47278,7 +49917,7 @@ export default { 38 ], "returning": [ - 2402 + 2581 ], "__typename": [ 78 @@ -47286,13 +49925,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2407 + 2586 ], "update_columns": [ - 2424 + 2603 ], "where": [ - 2406 + 2585 ], "__typename": [ 78 @@ -47300,43 +49939,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3452 + 3631 ], "author_steam_id": [ - 2481 + 2660 ], "content_markdown": [ - 2481 + 2660 ], "cover_image_url": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "published_at": [ - 2481 + 2660 ], "slug": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "teaser": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "view_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -47344,7 +49983,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -47362,13 +50001,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47383,7 +50022,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47427,7 +50066,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2422 + 2601 ], "ordering": [ 236 @@ -47447,13 +50086,13 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "published_at": [ - 4024 + 4203 ], "slug": [ 78 @@ -47468,7 +50107,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "view_count": [ 180 @@ -47491,13 +50130,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2408 + 2587 ], "_set": [ - 2417 + 2596 ], "where": [ - 2406 + 2585 ], "__typename": [ 78 @@ -47538,7 +50177,7 @@ export default { }, "notifications": { "actions": [ - 1352, + 1531, { "path": [ 78 @@ -47546,19 +50185,19 @@ export default { } ], "created_at": [ - 4024 + 4203 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_read": [ 3 @@ -47567,10 +50206,10 @@ export default { 78 ], "player": [ - 3439 + 3618 ], "role": [ - 881 + 901 ], "steam_id": [ 180 @@ -47579,7 +50218,7 @@ export default { 78 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -47587,10 +50226,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2435 + 2614 ], "nodes": [ - 2429 + 2608 ], "__typename": [ 78 @@ -47598,13 +50237,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2432 + 2611 ], "bool_or": [ - 2433 + 2612 ], "count": [ - 2434 + 2613 ], "__typename": [ 78 @@ -47612,13 +50251,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2458 + 2637 ], "distinct": [ 3 ], "filter": [ - 2441 + 2620 ], "predicate": [ 4 @@ -47629,13 +50268,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2459 + 2638 ], "distinct": [ 3 ], "filter": [ - 2441 + 2620 ], "predicate": [ 4 @@ -47646,13 +50285,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2457 + 2636 ], "distinct": [ 3 ], "filter": [ - 2441 + 2620 ], "predicate": [ 39 @@ -47663,13 +50302,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2439 + 2618 ], "count": [ 38, { "columns": [ - 2457, + 2636, "[notifications_select_column!]" ], "distinct": [ @@ -47678,31 +50317,31 @@ export default { } ], "max": [ - 2448 + 2627 ], "min": [ - 2450 + 2629 ], "stddev": [ - 2461 + 2640 ], "stddev_pop": [ - 2463 + 2642 ], "stddev_samp": [ - 2465 + 2644 ], "sum": [ - 2469 + 2648 ], "var_pop": [ - 2473 + 2652 ], "var_samp": [ - 2475 + 2654 ], "variance": [ - 2477 + 2656 ], "__typename": [ 78 @@ -47710,37 +50349,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2440 + 2619 ], "count": [ - 2481 + 2660 ], "max": [ - 2449 + 2628 ], "min": [ - 2451 + 2630 ], "stddev": [ - 2462 + 2641 ], "stddev_pop": [ - 2464 + 2643 ], "stddev_samp": [ - 2466 + 2645 ], "sum": [ - 2470 + 2649 ], "var_pop": [ - 2474 + 2653 ], "var_samp": [ - 2476 + 2655 ], "variance": [ - 2478 + 2657 ], "__typename": [ 78 @@ -47748,7 +50387,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1352 + 1531 ], "__typename": [ 78 @@ -47756,10 +50395,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2447 + 2626 ], "on_conflict": [ - 2453 + 2632 ], "__typename": [ 78 @@ -47775,7 +50414,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -47783,31 +50422,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2441 + 2620 ], "_not": [ - 2441 + 2620 ], "_or": [ - 2441 + 2620 ], "actions": [ - 1354 + 1533 ], "created_at": [ - 4025 + 4204 ], "deletable": [ 4 ], "deleted_at": [ - 4025 + 4204 ], "entity_id": [ 80 ], "id": [ - 4464 + 4643 ], "is_read": [ 4 @@ -47816,10 +50455,10 @@ export default { 80 ], "player": [ - 3443 + 3622 ], "role": [ - 882 + 902 ], "steam_id": [ 182 @@ -47828,7 +50467,7 @@ export default { 80 ], "type": [ - 842 + 862 ], "__typename": [ 78 @@ -47869,22 +50508,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1352 + 1531 ], "created_at": [ - 4024 + 4203 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_read": [ 3 @@ -47893,10 +50532,10 @@ export default { 78 ], "player": [ - 3450 + 3629 ], "role": [ - 881 + 901 ], "steam_id": [ 180 @@ -47905,7 +50544,7 @@ export default { 78 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -47913,16 +50552,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "message": [ 78 @@ -47939,25 +50578,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "entity_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "__typename": [ 78 @@ -47965,16 +50604,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "message": [ 78 @@ -47991,25 +50630,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "entity_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48020,7 +50659,7 @@ export default { 38 ], "returning": [ - 2429 + 2608 ], "__typename": [ 78 @@ -48028,13 +50667,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2442 + 2621 ], "update_columns": [ - 2471 + 2650 ], "where": [ - 2441 + 2620 ], "__typename": [ 78 @@ -48042,43 +50681,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "deletable": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "entity_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_read": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "role": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48086,7 +50725,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -48094,7 +50733,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1352 + 1531 ], "__typename": [ 78 @@ -48105,22 +50744,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1352 + 1531 ], "created_at": [ - 4024 + 4203 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_read": [ 3 @@ -48129,7 +50768,7 @@ export default { 78 ], "role": [ - 881 + 901 ], "steam_id": [ 180 @@ -48138,7 +50777,7 @@ export default { 78 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -48154,7 +50793,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48170,7 +50809,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48186,7 +50825,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48194,7 +50833,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2468 + 2647 ], "ordering": [ 236 @@ -48205,22 +50844,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1352 + 1531 ], "created_at": [ - 4024 + 4203 ], "deletable": [ 3 ], "deleted_at": [ - 4024 + 4203 ], "entity_id": [ 78 ], "id": [ - 4462 + 4641 ], "is_read": [ 3 @@ -48229,7 +50868,7 @@ export default { 78 ], "role": [ - 881 + 901 ], "steam_id": [ 180 @@ -48238,7 +50877,7 @@ export default { 78 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -48254,7 +50893,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48263,28 +50902,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2437 + 2616 ], "_delete_at_path": [ - 2443 + 2622 ], "_delete_elem": [ - 2444 + 2623 ], "_delete_key": [ - 2445 + 2624 ], "_inc": [ - 2446 + 2625 ], "_prepend": [ - 2456 + 2635 ], "_set": [ - 2460 + 2639 ], "where": [ - 2441 + 2620 ], "__typename": [ 78 @@ -48300,7 +50939,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48316,7 +50955,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48332,7 +50971,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48341,31 +50980,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2479 + 2658 ], "_gt": [ - 2479 + 2658 ], "_gte": [ - 2479 + 2658 ], "_in": [ - 2479 + 2658 ], "_is_null": [ 3 ], "_lt": [ - 2479 + 2658 ], "_lte": [ - 2479 + 2658 ], "_neq": [ - 2479 + 2658 ], "_nin": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48374,19 +51013,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4024 + 4203 ], "pending_match_import": [ - 2523 + 2702 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48394,10 +51033,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2486 + 2665 ], "nodes": [ - 2482 + 2661 ], "__typename": [ 78 @@ -48405,7 +51044,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2485 + 2664 ], "__typename": [ 78 @@ -48413,13 +51052,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2503 + 2682 ], "distinct": [ 3 ], "filter": [ - 2491 + 2670 ], "predicate": [ 39 @@ -48430,13 +51069,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2489 + 2668 ], "count": [ 38, { "columns": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -48445,31 +51084,31 @@ export default { } ], "max": [ - 2495 + 2674 ], "min": [ - 2497 + 2676 ], "stddev": [ - 2505 + 2684 ], "stddev_pop": [ - 2507 + 2686 ], "stddev_samp": [ - 2509 + 2688 ], "sum": [ - 2513 + 2692 ], "var_pop": [ - 2517 + 2696 ], "var_samp": [ - 2519 + 2698 ], "variance": [ - 2521 + 2700 ], "__typename": [ 78 @@ -48477,37 +51116,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2490 + 2669 ], "count": [ - 2481 + 2660 ], "max": [ - 2496 + 2675 ], "min": [ - 2498 + 2677 ], "stddev": [ - 2506 + 2685 ], "stddev_pop": [ - 2508 + 2687 ], "stddev_samp": [ - 2510 + 2689 ], "sum": [ - 2514 + 2693 ], "var_pop": [ - 2518 + 2697 ], "var_samp": [ - 2520 + 2699 ], "variance": [ - 2522 + 2701 ], "__typename": [ 78 @@ -48515,10 +51154,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2494 + 2673 ], "on_conflict": [ - 2500 + 2679 ], "__typename": [ 78 @@ -48537,10 +51176,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48548,28 +51187,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2491 + 2670 ], "_not": [ - 2491 + 2670 ], "_or": [ - 2491 + 2670 ], "created_at": [ - 4025 + 4204 ], "pending_match_import": [ - 2527 + 2706 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 ], "valve_match_id": [ - 2480 + 2659 ], "__typename": [ 78 @@ -48581,7 +51220,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48589,19 +51228,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4024 + 4203 ], "pending_match_import": [ - 2534 + 2713 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48609,13 +51248,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48623,13 +51262,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48637,13 +51276,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48651,13 +51290,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48668,7 +51307,7 @@ export default { 38 ], "returning": [ - 2482 + 2661 ], "__typename": [ 78 @@ -48676,13 +51315,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2492 + 2671 ], "update_columns": [ - 2515 + 2694 ], "where": [ - 2491 + 2670 ], "__typename": [ 78 @@ -48690,19 +51329,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2481 + 2660 ], "pending_match_import": [ - 2536 + 2715 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48713,7 +51352,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48722,13 +51361,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48747,10 +51386,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48769,10 +51408,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48791,10 +51430,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48802,7 +51441,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2512 + 2691 ], "ordering": [ 236 @@ -48813,13 +51452,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48830,7 +51469,7 @@ export default { 180 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -48838,10 +51477,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48850,13 +51489,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2493 + 2672 ], "_set": [ - 2504 + 2683 ], "where": [ - 2491 + 2670 ], "__typename": [ 78 @@ -48875,10 +51514,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48897,10 +51536,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48919,10 +51558,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -48930,7 +51569,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -48942,13 +51581,13 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "players": [ - 2482, + 2661, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48958,19 +51597,19 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "players_aggregate": [ - 2483, + 2662, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -48980,11 +51619,11 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], @@ -48995,10 +51634,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49006,10 +51645,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2525 + 2704 ], "nodes": [ - 2523 + 2702 ], "__typename": [ 78 @@ -49017,13 +51656,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2526 + 2705 ], "count": [ 38, { "columns": [ - 2538, + 2717, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -49032,31 +51671,31 @@ export default { } ], "max": [ - 2531 + 2710 ], "min": [ - 2532 + 2711 ], "stddev": [ - 2540 + 2719 ], "stddev_pop": [ - 2541 + 2720 ], "stddev_samp": [ - 2542 + 2721 ], "sum": [ - 2545 + 2724 ], "var_pop": [ - 2548 + 2727 ], "var_samp": [ - 2549 + 2728 ], "variance": [ - 2550 + 2729 ], "__typename": [ 78 @@ -49072,16 +51711,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2527 + 2706 ], "_not": [ - 2527 + 2706 ], "_or": [ - 2527 + 2706 ], "created_at": [ - 4025 + 4204 ], "demo_url": [ 80 @@ -49093,13 +51732,13 @@ export default { 80 ], "match_start_time": [ - 4025 + 4204 ], "players": [ - 2491 + 2670 ], "players_aggregate": [ - 2484 + 2663 ], "share_code": [ 80 @@ -49108,10 +51747,10 @@ export default { 80 ], "updated_at": [ - 4025 + 4204 ], "valve_match_id": [ - 2480 + 2659 ], "__typename": [ 78 @@ -49120,7 +51759,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49128,7 +51767,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -49140,10 +51779,10 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "players": [ - 2488 + 2667 ], "share_code": [ 78 @@ -49152,10 +51791,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49163,7 +51802,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -49175,7 +51814,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "share_code": [ 78 @@ -49184,10 +51823,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49195,7 +51834,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -49207,7 +51846,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "share_code": [ 78 @@ -49216,10 +51855,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49230,7 +51869,7 @@ export default { 38 ], "returning": [ - 2523 + 2702 ], "__typename": [ 78 @@ -49238,10 +51877,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2530 + 2709 ], "on_conflict": [ - 2535 + 2714 ], "__typename": [ 78 @@ -49249,13 +51888,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2528 + 2707 ], "update_columns": [ - 2546 + 2725 ], "where": [ - 2527 + 2706 ], "__typename": [ 78 @@ -49263,34 +51902,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2481 + 2660 ], "demo_url": [ - 2481 + 2660 ], "error": [ - 2481 + 2660 ], "map_name": [ - 2481 + 2660 ], "match_start_time": [ - 2481 + 2660 ], "players_aggregate": [ - 2487 + 2666 ], "share_code": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "valve_match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -49298,7 +51937,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49307,7 +51946,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -49319,7 +51958,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "share_code": [ 78 @@ -49328,10 +51967,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49363,7 +52002,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2544 + 2723 ], "ordering": [ 236 @@ -49374,7 +52013,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "demo_url": [ 78 @@ -49386,7 +52025,7 @@ export default { 78 ], "match_start_time": [ - 4024 + 4203 ], "share_code": [ 78 @@ -49395,10 +52034,10 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49406,7 +52045,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2479 + 2658 ], "__typename": [ 78 @@ -49415,13 +52054,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2529 + 2708 ], "_set": [ - 2539 + 2718 ], "where": [ - 2527 + 2706 ], "__typename": [ 78 @@ -49453,7 +52092,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3439 + 3618 ], "attacker_steam_id": [ 180 @@ -49468,7 +52107,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -49486,16 +52125,16 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -49516,7 +52155,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -49527,10 +52166,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2553 + 2732 ], "nodes": [ - 2551 + 2730 ], "__typename": [ 78 @@ -49538,13 +52177,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2554 + 2733 ], "count": [ 38, { "columns": [ - 2565, + 2744, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -49553,31 +52192,31 @@ export default { } ], "max": [ - 2559 + 2738 ], "min": [ - 2560 + 2739 ], "stddev": [ - 2567 + 2746 ], "stddev_pop": [ - 2568 + 2747 ], "stddev_samp": [ - 2569 + 2748 ], "sum": [ - 2572 + 2751 ], "var_pop": [ - 2575 + 2754 ], "var_samp": [ - 2576 + 2755 ], "variance": [ - 2577 + 2756 ], "__typename": [ 78 @@ -49644,16 +52283,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2555 + 2734 ], "_not": [ - 2555 + 2734 ], "_or": [ - 2555 + 2734 ], "attacker": [ - 3443 + 3622 ], "attacker_steam_id": [ 182 @@ -49668,7 +52307,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2659 ], "first_bullet_hits": [ 39 @@ -49686,16 +52325,16 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "non_awp_hits": [ 39 @@ -49716,7 +52355,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2659 ], "total_engagement_frames": [ 39 @@ -49740,7 +52379,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -49776,7 +52415,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -49787,7 +52426,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3450 + 3629 ], "attacker_steam_id": [ 180 @@ -49802,7 +52441,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -49820,16 +52459,16 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -49850,7 +52489,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -49873,7 +52512,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -49891,10 +52530,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -49915,7 +52554,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -49938,7 +52577,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -49956,10 +52595,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -49980,7 +52619,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -49994,7 +52633,7 @@ export default { 38 ], "returning": [ - 2551 + 2730 ], "__typename": [ 78 @@ -50002,13 +52641,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2556 + 2735 ], "update_columns": [ - 2573 + 2752 ], "where": [ - 2555 + 2734 ], "__typename": [ 78 @@ -50016,73 +52655,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3452 + 3631 ], "attacker_steam_id": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "__typename": [ 78 @@ -50093,7 +52732,7 @@ export default { 180 ], "match_map_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -50114,7 +52753,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -50132,10 +52771,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -50156,7 +52795,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -50344,7 +52983,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2571 + 2750 ], "ordering": [ 236 @@ -50367,7 +53006,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -50385,10 +53024,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "non_awp_hits": [ 38 @@ -50409,7 +53048,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -50432,7 +53071,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "first_bullet_hits": [ 38 @@ -50468,7 +53107,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -50480,13 +53119,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2557 + 2736 ], "_set": [ - 2566 + 2745 ], "where": [ - 2555 + 2734 ], "__typename": [ 78 @@ -50683,19 +53322,19 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "shots": [ 38 @@ -50715,10 +53354,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2582 + 2761 ], "nodes": [ - 2578 + 2757 ], "__typename": [ 78 @@ -50726,7 +53365,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2581 + 2760 ], "__typename": [ 78 @@ -50734,13 +53373,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2599 + 2778 ], "distinct": [ 3 ], "filter": [ - 2587 + 2766 ], "predicate": [ 39 @@ -50751,13 +53390,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2585 + 2764 ], "count": [ 38, { "columns": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -50766,31 +53405,31 @@ export default { } ], "max": [ - 2591 + 2770 ], "min": [ - 2593 + 2772 ], "stddev": [ - 2601 + 2780 ], "stddev_pop": [ - 2603 + 2782 ], "stddev_samp": [ - 2605 + 2784 ], "sum": [ - 2609 + 2788 ], "var_pop": [ - 2613 + 2792 ], "var_samp": [ - 2615 + 2794 ], "variance": [ - 2617 + 2796 ], "__typename": [ 78 @@ -50798,37 +53437,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2586 + 2765 ], "count": [ - 2481 + 2660 ], "max": [ - 2592 + 2771 ], "min": [ - 2594 + 2773 ], "stddev": [ - 2602 + 2781 ], "stddev_pop": [ - 2604 + 2783 ], "stddev_samp": [ - 2606 + 2785 ], "sum": [ - 2610 + 2789 ], "var_pop": [ - 2614 + 2793 ], "var_samp": [ - 2616 + 2795 ], "variance": [ - 2618 + 2797 ], "__typename": [ 78 @@ -50836,10 +53475,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2590 + 2769 ], "on_conflict": [ - 2596 + 2775 ], "__typename": [ 78 @@ -50873,25 +53512,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -50899,13 +53538,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2587 + 2766 ], "_not": [ - 2587 + 2766 ], "_or": [ - 2587 + 2766 ], "first_bullet_hits": [ 39 @@ -50920,19 +53559,19 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "shots": [ 39 @@ -50991,19 +53630,19 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "shots": [ 38 @@ -51035,10 +53674,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -51058,34 +53697,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51105,10 +53744,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -51128,34 +53767,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51166,7 +53805,7 @@ export default { 38 ], "returning": [ - 2578 + 2757 ], "__typename": [ 78 @@ -51174,13 +53813,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2588 + 2767 ], "update_columns": [ - 2611 + 2790 ], "where": [ - 2587 + 2766 ], "__typename": [ 78 @@ -51188,43 +53827,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51232,7 +53871,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -51259,10 +53898,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -51308,25 +53947,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51360,25 +53999,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51412,25 +54051,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51438,7 +54077,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2608 + 2787 ], "ordering": [ 236 @@ -51461,10 +54100,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -51510,25 +54149,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51537,13 +54176,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2589 + 2768 ], "_set": [ - 2600 + 2779 ], "where": [ - 2587 + 2766 ], "__typename": [ 78 @@ -51577,25 +54216,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51629,25 +54268,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51681,25 +54320,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51707,7 +54346,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3439 + 3618 ], "attacked_steam_id": [ 180 @@ -51722,7 +54361,7 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "flash": [ 3 @@ -51731,25 +54370,25 @@ export default { 3 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -51757,10 +54396,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2625 + 2804 ], "nodes": [ - 2619 + 2798 ], "__typename": [ 78 @@ -51768,13 +54407,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2622 + 2801 ], "bool_or": [ - 2623 + 2802 ], "count": [ - 2624 + 2803 ], "__typename": [ 78 @@ -51782,13 +54421,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2643 + 2822 ], "distinct": [ 3 ], "filter": [ - 2630 + 2809 ], "predicate": [ 4 @@ -51799,13 +54438,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2644 + 2823 ], "distinct": [ 3 ], "filter": [ - 2630 + 2809 ], "predicate": [ 4 @@ -51816,13 +54455,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2642 + 2821 ], "distinct": [ 3 ], "filter": [ - 2630 + 2809 ], "predicate": [ 39 @@ -51833,13 +54472,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2628 + 2807 ], "count": [ 38, { "columns": [ - 2642, + 2821, "[player_assists_select_column!]" ], "distinct": [ @@ -51848,31 +54487,31 @@ export default { } ], "max": [ - 2634 + 2813 ], "min": [ - 2636 + 2815 ], "stddev": [ - 2646 + 2825 ], "stddev_pop": [ - 2648 + 2827 ], "stddev_samp": [ - 2650 + 2829 ], "sum": [ - 2654 + 2833 ], "var_pop": [ - 2658 + 2837 ], "var_samp": [ - 2660 + 2839 ], "variance": [ - 2662 + 2841 ], "__typename": [ 78 @@ -51880,37 +54519,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2629 + 2808 ], "count": [ - 2481 + 2660 ], "max": [ - 2635 + 2814 ], "min": [ - 2637 + 2816 ], "stddev": [ - 2647 + 2826 ], "stddev_pop": [ - 2649 + 2828 ], "stddev_samp": [ - 2651 + 2830 ], "sum": [ - 2655 + 2834 ], "var_pop": [ - 2659 + 2838 ], "var_samp": [ - 2661 + 2840 ], "variance": [ - 2663 + 2842 ], "__typename": [ 78 @@ -51918,10 +54557,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2633 + 2812 ], "on_conflict": [ - 2639 + 2818 ], "__typename": [ 78 @@ -51943,13 +54582,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -51957,16 +54596,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2630 + 2809 ], "_not": [ - 2630 + 2809 ], "_or": [ - 2630 + 2809 ], "attacked_player": [ - 3443 + 3622 ], "attacked_steam_id": [ 182 @@ -51981,7 +54620,7 @@ export default { 80 ], "deleted_at": [ - 4025 + 4204 ], "flash": [ 4 @@ -51990,25 +54629,25 @@ export default { 4 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "round": [ 39 ], "time": [ - 4025 + 4204 ], "__typename": [ 78 @@ -52031,7 +54670,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3450 + 3629 ], "attacked_steam_id": [ 180 @@ -52046,31 +54685,31 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "flash": [ 3 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52090,19 +54729,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52110,31 +54749,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52154,19 +54793,19 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52174,31 +54813,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52209,7 +54848,7 @@ export default { 38 ], "returning": [ - 2619 + 2798 ], "__typename": [ 78 @@ -52217,13 +54856,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2631 + 2810 ], "update_columns": [ - 2656 + 2835 ], "where": [ - 2630 + 2809 ], "__typename": [ 78 @@ -52231,49 +54870,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3452 + 3631 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "flash": [ - 2481 + 2660 ], "is_team_assist": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52287,10 +54926,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4641 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52313,22 +54952,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "flash": [ 3 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52350,13 +54989,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52378,13 +55017,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52406,13 +55045,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52420,7 +55059,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2653 + 2832 ], "ordering": [ 236 @@ -52443,22 +55082,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "flash": [ 3 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -52480,13 +55119,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52495,13 +55134,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2632 + 2811 ], "_set": [ - 2645 + 2824 ], "where": [ - 2630 + 2809 ], "__typename": [ 78 @@ -52523,13 +55162,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52551,13 +55190,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52579,13 +55218,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -52593,28 +55232,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "counter_strafe_pct": [ - 2479 + 2658 ], "crosshair_deg": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "maps": [ 38 @@ -52629,16 +55268,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "time_to_damage_s": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "__typename": [ 78 @@ -52646,10 +55285,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2666 + 2845 ], "nodes": [ - 2664 + 2843 ], "__typename": [ 78 @@ -52657,13 +55296,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2667 + 2846 ], "count": [ 38, { "columns": [ - 2672, + 2851, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -52672,31 +55311,31 @@ export default { } ], "max": [ - 2669 + 2848 ], "min": [ - 2670 + 2849 ], "stddev": [ - 2673 + 2852 ], "stddev_pop": [ - 2674 + 2853 ], "stddev_samp": [ - 2675 + 2854 ], "sum": [ - 2678 + 2857 ], "var_pop": [ - 2679 + 2858 ], "var_samp": [ - 2680 + 2859 ], "variance": [ - 2681 + 2860 ], "__typename": [ 78 @@ -52757,37 +55396,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2668 + 2847 ], "_not": [ - 2668 + 2847 ], "_or": [ - 2668 + 2847 ], "accuracy": [ - 2480 + 2659 ], "accuracy_spotted": [ - 2480 + 2659 ], "counter_strafe_pct": [ - 2480 + 2659 ], "crosshair_deg": [ - 2480 + 2659 ], "enemy_blind_pr": [ - 2480 + 2659 ], "flash_assists_pr": [ - 2480 + 2659 ], "hs_pct": [ - 2480 + 2659 ], "kast_pct": [ - 2480 + 2659 ], "maps": [ 39 @@ -52802,16 +55441,16 @@ export default { 182 ], "survival_pct": [ - 2480 + 2659 ], "time_to_damage_s": [ - 2480 + 2659 ], "traded_death_pct": [ - 2480 + 2659 ], "util_efficiency": [ - 2480 + 2659 ], "__typename": [ 78 @@ -52819,28 +55458,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "counter_strafe_pct": [ - 2479 + 2658 ], "crosshair_deg": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "maps": [ 38 @@ -52855,16 +55494,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "time_to_damage_s": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "__typename": [ 78 @@ -52872,28 +55511,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "counter_strafe_pct": [ - 2479 + 2658 ], "crosshair_deg": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "maps": [ 38 @@ -52908,16 +55547,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "time_to_damage_s": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "__typename": [ 78 @@ -52925,52 +55564,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2481 + 2660 ], "accuracy_spotted": [ - 2481 + 2660 ], "counter_strafe_pct": [ - 2481 + 2660 ], "crosshair_deg": [ - 2481 + 2660 ], "enemy_blind_pr": [ - 2481 + 2660 ], "flash_assists_pr": [ - 2481 + 2660 ], "hs_pct": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "maps": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "survival_pct": [ - 2481 + 2660 ], "time_to_damage_s": [ - 2481 + 2660 ], "traded_death_pct": [ - 2481 + 2660 ], "util_efficiency": [ - 2481 + 2660 ], "__typename": [ 78 @@ -53138,7 +55777,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2677 + 2856 ], "ordering": [ 236 @@ -53149,28 +55788,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "counter_strafe_pct": [ - 2479 + 2658 ], "crosshair_deg": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "maps": [ 38 @@ -53185,16 +55824,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "time_to_damage_s": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "__typename": [ 78 @@ -53202,28 +55841,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "counter_strafe_pct": [ - 2479 + 2658 ], "crosshair_deg": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "maps": [ 38 @@ -53238,16 +55877,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "time_to_damage_s": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "__typename": [ 78 @@ -53423,7 +56062,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3618 ], "attacked_steam_id": [ 180 @@ -53450,7 +56089,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -53459,31 +56098,31 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "round": [ - 2479 + 2658 ], "team_damage": [ 3 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -53494,10 +56133,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2686 + 2865 ], "nodes": [ - 2682 + 2861 ], "__typename": [ 78 @@ -53505,7 +56144,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2685 + 2864 ], "__typename": [ 78 @@ -53513,13 +56152,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2703 + 2882 ], "distinct": [ 3 ], "filter": [ - 2691 + 2870 ], "predicate": [ 39 @@ -53530,13 +56169,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2689 + 2868 ], "count": [ 38, { "columns": [ - 2703, + 2882, "[player_damages_select_column!]" ], "distinct": [ @@ -53545,31 +56184,31 @@ export default { } ], "max": [ - 2695 + 2874 ], "min": [ - 2697 + 2876 ], "stddev": [ - 2705 + 2884 ], "stddev_pop": [ - 2707 + 2886 ], "stddev_samp": [ - 2709 + 2888 ], "sum": [ - 2713 + 2892 ], "var_pop": [ - 2717 + 2896 ], "var_samp": [ - 2719 + 2898 ], "variance": [ - 2721 + 2900 ], "__typename": [ 78 @@ -53577,37 +56216,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2690 + 2869 ], "count": [ - 2481 + 2660 ], "max": [ - 2696 + 2875 ], "min": [ - 2698 + 2877 ], "stddev": [ - 2706 + 2885 ], "stddev_pop": [ - 2708 + 2887 ], "stddev_samp": [ - 2710 + 2889 ], "sum": [ - 2714 + 2893 ], "var_pop": [ - 2718 + 2897 ], "var_samp": [ - 2720 + 2899 ], "variance": [ - 2722 + 2901 ], "__typename": [ 78 @@ -53615,10 +56254,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2694 + 2873 ], "on_conflict": [ - 2700 + 2879 ], "__typename": [ 78 @@ -53652,25 +56291,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -53678,13 +56317,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2691 + 2870 ], "_not": [ - 2691 + 2870 ], "_or": [ - 2691 + 2870 ], "armor": [ 39 @@ -53696,7 +56335,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3622 ], "attacked_steam_id": [ 182 @@ -53723,7 +56362,7 @@ export default { 39 ], "deleted_at": [ - 4025 + 4204 ], "health": [ 39 @@ -53732,31 +56371,31 @@ export default { 80 ], "id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "round": [ - 2480 + 2659 ], "team_damage": [ 4 ], "time": [ - 4025 + 4204 ], "with": [ 80 @@ -53786,7 +56425,7 @@ export default { 38 ], "round": [ - 2479 + 2658 ], "__typename": [ 78 @@ -53803,7 +56442,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3629 ], "attacked_steam_id": [ 180 @@ -53830,7 +56469,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -53839,28 +56478,28 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "round": [ - 2479 + 2658 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -53904,7 +56543,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -53913,19 +56552,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ - 2479 + 2658 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -53936,64 +56575,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2481 + 2660 ], "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54034,7 +56673,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -54043,19 +56682,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ - 2479 + 2658 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -54066,64 +56705,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2481 + 2660 ], "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54134,7 +56773,7 @@ export default { 38 ], "returning": [ - 2682 + 2861 ], "__typename": [ 78 @@ -54142,13 +56781,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2692 + 2871 ], "update_columns": [ - 2715 + 2894 ], "where": [ - 2691 + 2870 ], "__typename": [ 78 @@ -54156,79 +56795,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2481 + 2660 ], "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_player": [ - 3452 + 3631 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "round": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54236,13 +56875,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -54284,7 +56923,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -54293,19 +56932,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ - 2479 + 2658 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -54342,25 +56981,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54394,25 +57033,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54446,25 +57085,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54472,7 +57111,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2712 + 2891 ], "ordering": [ 236 @@ -54516,7 +57155,7 @@ export default { 38 ], "deleted_at": [ - 4024 + 4203 ], "health": [ 38 @@ -54525,19 +57164,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ - 2479 + 2658 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -54566,7 +57205,7 @@ export default { 38 ], "round": [ - 2479 + 2658 ], "__typename": [ 78 @@ -54574,25 +57213,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54601,13 +57240,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2693 + 2872 ], "_set": [ - 2704 + 2883 ], "where": [ - 2691 + 2870 ], "__typename": [ 78 @@ -54641,25 +57280,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54693,25 +57332,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54745,25 +57384,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_armor": [ - 2481 + 2660 ], "health": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -54771,40 +57410,40 @@ export default { }, "player_elo": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -54816,28 +57455,28 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player": [ - 3439 + 3618 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season": [ - 3498 + 3677 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -54846,10 +57485,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -54857,10 +57496,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 2725 + 2904 ], "nodes": [ - 2723 + 2902 ], "__typename": [ 78 @@ -54868,13 +57507,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 2726 + 2905 ], "count": [ 38, { "columns": [ - 2737, + 2916, "[player_elo_select_column!]" ], "distinct": [ @@ -54883,31 +57522,31 @@ export default { } ], "max": [ - 2731 + 2910 ], "min": [ - 2732 + 2911 ], "stddev": [ - 2739 + 2918 ], "stddev_pop": [ - 2740 + 2919 ], "stddev_samp": [ - 2741 + 2920 ], "sum": [ - 2744 + 2923 ], "var_pop": [ - 2747 + 2926 ], "var_samp": [ - 2748 + 2927 ], "variance": [ - 2749 + 2928 ], "__typename": [ 78 @@ -54980,49 +57619,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 2727 + 2906 ], "_not": [ - 2727 + 2906 ], "_or": [ - 2727 + 2906 ], "actual_score": [ - 1201 + 1379 ], "assists": [ 39 ], "change": [ - 2480 + 2659 ], "created_at": [ - 4025 + 4204 ], "current": [ - 2480 + 2659 ], "damage": [ 39 ], "damage_percent": [ - 1201 + 1379 ], "deaths": [ 39 ], "expected_score": [ - 1201 + 1379 ], "impact": [ - 2480 + 2659 ], "k_factor": [ 39 ], "kda": [ - 1201 + 1379 ], "kills": [ 39 @@ -55034,28 +57673,28 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "opponent_team_elo_avg": [ - 1201 + 1379 ], "performance_multiplier": [ - 1201 + 1379 ], "player": [ - 3443 + 3622 ], "player_team_elo_avg": [ - 1201 + 1379 ], "season": [ - 3502 + 3681 ], "season_id": [ - 4464 + 4643 ], "series_multiplier": [ 39 @@ -55064,10 +57703,10 @@ export default { 182 ], "team_avg_kda": [ - 1201 + 1379 ], "type": [ - 821 + 841 ], "__typename": [ 78 @@ -55076,37 +57715,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55118,13 +57757,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "series_multiplier": [ 38 @@ -55133,7 +57772,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "__typename": [ 78 @@ -55141,40 +57780,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55186,28 +57825,28 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player": [ - 3450 + 3629 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season": [ - 3509 + 3688 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -55216,10 +57855,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -55227,40 +57866,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55272,19 +57911,19 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -55293,7 +57932,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "__typename": [ 78 @@ -55301,40 +57940,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55346,19 +57985,19 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -55367,7 +58006,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "__typename": [ 78 @@ -55378,7 +58017,7 @@ export default { 38 ], "returning": [ - 2723 + 2902 ], "__typename": [ 78 @@ -55386,13 +58025,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 2728 + 2907 ], "update_columns": [ - 2745 + 2924 ], "where": [ - 2727 + 2906 ], "__typename": [ 78 @@ -55400,85 +58039,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "change": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_team_elo_avg": [ - 2481 + 2660 ], "season": [ - 3511 + 3690 ], "season_id": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -55486,13 +58125,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4462 + 4641 ], "steam_id": [ 180 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -55501,40 +58140,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55546,19 +58185,19 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -55567,10 +58206,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -55773,7 +58412,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 2743 + 2922 ], "ordering": [ 236 @@ -55784,40 +58423,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "created_at": [ - 4024 + 4203 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55829,19 +58468,19 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 @@ -55850,10 +58489,10 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ - 820 + 840 ], "__typename": [ 78 @@ -55861,37 +58500,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 ], "change": [ - 2479 + 2658 ], "current": [ - 2479 + 2658 ], "damage": [ 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 2479 + 2658 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -55903,13 +58542,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_team_elo_avg": [ - 1200 + 1378 ], "series_multiplier": [ 38 @@ -55918,7 +58557,7 @@ export default { 180 ], "team_avg_kda": [ - 1200 + 1378 ], "__typename": [ 78 @@ -55927,13 +58566,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2729 + 2908 ], "_set": [ - 2738 + 2917 ], "where": [ - 2727 + 2906 ], "__typename": [ 78 @@ -56139,19 +58778,19 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "player": [ - 3439 + 3618 ], "previous_rank": [ 38 @@ -56168,10 +58807,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2754 + 2933 ], "nodes": [ - 2750 + 2929 ], "__typename": [ 78 @@ -56179,7 +58818,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2753 + 2932 ], "__typename": [ 78 @@ -56187,13 +58826,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2771 + 2950 ], "distinct": [ 3 ], "filter": [ - 2759 + 2938 ], "predicate": [ 39 @@ -56204,13 +58843,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2757 + 2936 ], "count": [ 38, { "columns": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -56219,31 +58858,31 @@ export default { } ], "max": [ - 2763 + 2942 ], "min": [ - 2765 + 2944 ], "stddev": [ - 2773 + 2952 ], "stddev_pop": [ - 2775 + 2954 ], "stddev_samp": [ - 2777 + 2956 ], "sum": [ - 2781 + 2960 ], "var_pop": [ - 2785 + 2964 ], "var_samp": [ - 2787 + 2966 ], "variance": [ - 2789 + 2968 ], "__typename": [ 78 @@ -56251,37 +58890,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2758 + 2937 ], "count": [ - 2481 + 2660 ], "max": [ - 2764 + 2943 ], "min": [ - 2766 + 2945 ], "stddev": [ - 2774 + 2953 ], "stddev_pop": [ - 2776 + 2955 ], "stddev_samp": [ - 2778 + 2957 ], "sum": [ - 2782 + 2961 ], "var_pop": [ - 2786 + 2965 ], "var_samp": [ - 2788 + 2967 ], "variance": [ - 2790 + 2969 ], "__typename": [ 78 @@ -56289,10 +58928,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2762 + 2941 ], "on_conflict": [ - 2768 + 2947 ], "__typename": [ 78 @@ -56317,16 +58956,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56334,31 +58973,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2759 + 2938 ], "_not": [ - 2759 + 2938 ], "_or": [ - 2759 + 2938 ], "elo": [ 39 ], "id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "observed_at": [ - 4025 + 4204 ], "player": [ - 3443 + 3622 ], "previous_rank": [ 39 @@ -56396,19 +59035,19 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "player": [ - 3450 + 3629 ], "previous_rank": [ 38 @@ -56428,13 +59067,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -56451,25 +59090,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56480,13 +59119,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -56503,25 +59142,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56532,7 +59171,7 @@ export default { 38 ], "returning": [ - 2750 + 2929 ], "__typename": [ 78 @@ -56540,13 +59179,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2760 + 2939 ], "update_columns": [ - 2783 + 2962 ], "where": [ - 2759 + 2938 ], "__typename": [ 78 @@ -56554,31 +59193,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56586,7 +59225,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -56598,13 +59237,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -56638,16 +59277,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56672,16 +59311,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56706,16 +59345,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56723,7 +59362,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2780 + 2959 ], "ordering": [ 236 @@ -56737,13 +59376,13 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -56777,16 +59416,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56795,13 +59434,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2761 + 2940 ], "_set": [ - 2772 + 2951 ], "where": [ - 2759 + 2938 ], "__typename": [ 78 @@ -56826,16 +59465,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56860,16 +59499,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56894,16 +59533,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "skill_level": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -56917,25 +59556,25 @@ export default { 180 ], "blinded": [ - 3439 + 3618 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -56944,10 +59583,10 @@ export default { 3 ], "thrown_by": [ - 3439 + 3618 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -56955,10 +59594,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2797 + 2976 ], "nodes": [ - 2791 + 2970 ], "__typename": [ 78 @@ -56966,13 +59605,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2794 + 2973 ], "bool_or": [ - 2795 + 2974 ], "count": [ - 2796 + 2975 ], "__typename": [ 78 @@ -56980,13 +59619,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2815 + 2994 ], "distinct": [ 3 ], "filter": [ - 2802 + 2981 ], "predicate": [ 4 @@ -56997,13 +59636,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2816 + 2995 ], "distinct": [ 3 ], "filter": [ - 2802 + 2981 ], "predicate": [ 4 @@ -57014,13 +59653,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2814 + 2993 ], "distinct": [ 3 ], "filter": [ - 2802 + 2981 ], "predicate": [ 39 @@ -57031,13 +59670,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2800 + 2979 ], "count": [ 38, { "columns": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "distinct": [ @@ -57046,31 +59685,31 @@ export default { } ], "max": [ - 2806 + 2985 ], "min": [ - 2808 + 2987 ], "stddev": [ - 2818 + 2997 ], "stddev_pop": [ - 2820 + 2999 ], "stddev_samp": [ - 2822 + 3001 ], "sum": [ - 2826 + 3005 ], "var_pop": [ - 2830 + 3009 ], "var_samp": [ - 2832 + 3011 ], "variance": [ - 2834 + 3013 ], "__typename": [ 78 @@ -57078,37 +59717,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2801 + 2980 ], "count": [ - 2481 + 2660 ], "max": [ - 2807 + 2986 ], "min": [ - 2809 + 2988 ], "stddev": [ - 2819 + 2998 ], "stddev_pop": [ - 2821 + 3000 ], "stddev_samp": [ - 2823 + 3002 ], "sum": [ - 2827 + 3006 ], "var_pop": [ - 2831 + 3010 ], "var_samp": [ - 2833 + 3012 ], "variance": [ - 2835 + 3014 ], "__typename": [ 78 @@ -57116,10 +59755,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2805 + 2984 ], "on_conflict": [ - 2811 + 2990 ], "__typename": [ 78 @@ -57144,16 +59783,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57161,13 +59800,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2802 + 2981 ], "_not": [ - 2802 + 2981 ], "_or": [ - 2802 + 2981 ], "attacked_steam_id": [ 182 @@ -57176,25 +59815,25 @@ export default { 182 ], "blinded": [ - 3443 + 3622 ], "deleted_at": [ - 4025 + 4204 ], "duration": [ - 2480 + 2659 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "round": [ 39 @@ -57203,10 +59842,10 @@ export default { 4 ], "thrown_by": [ - 3443 + 3622 ], "time": [ - 4025 + 4204 ], "__typename": [ 78 @@ -57221,7 +59860,7 @@ export default { 180 ], "duration": [ - 2479 + 2658 ], "round": [ 38 @@ -57238,25 +59877,25 @@ export default { 180 ], "blinded": [ - 3450 + 3629 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -57265,10 +59904,10 @@ export default { 3 ], "thrown_by": [ - 3450 + 3629 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57282,22 +59921,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57305,28 +59944,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57340,22 +59979,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57363,28 +60002,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57395,7 +60034,7 @@ export default { 38 ], "returning": [ - 2791 + 2970 ], "__typename": [ 78 @@ -57403,13 +60042,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2803 + 2982 ], "update_columns": [ - 2828 + 3007 ], "where": [ - 2802 + 2981 ], "__typename": [ 78 @@ -57417,43 +60056,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "blinded": [ - 3452 + 3631 ], "deleted_at": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_flash": [ - 2481 + 2660 ], "thrown_by": [ - 3452 + 3631 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57467,10 +60106,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4641 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57487,16 +60126,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -57505,7 +60144,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57530,16 +60169,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57564,16 +60203,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57598,16 +60237,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57615,7 +60254,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2825 + 3004 ], "ordering": [ 236 @@ -57632,16 +60271,16 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "duration": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -57650,7 +60289,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -57664,7 +60303,7 @@ export default { 180 ], "duration": [ - 2479 + 2658 ], "round": [ 38 @@ -57675,16 +60314,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57693,13 +60332,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2804 + 2983 ], "_set": [ - 2817 + 2996 ], "where": [ - 2802 + 2981 ], "__typename": [ 78 @@ -57724,16 +60363,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57758,16 +60397,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57792,16 +60431,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "duration": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -57818,7 +60457,7 @@ export default { 78 ], "attacked_player": [ - 3439 + 3618 ], "attacked_steam_id": [ 180 @@ -57842,7 +60481,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4203 ], "headshot": [ 3 @@ -57857,22 +60496,22 @@ export default { 3 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "no_scope": [ 3 ], "player": [ - 3439 + 3618 ], "round": [ 38 @@ -57887,7 +60526,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -57898,10 +60537,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 2842 + 3021 ], "nodes": [ - 2836 + 3015 ], "__typename": [ 78 @@ -57909,13 +60548,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2839 + 3018 ], "bool_or": [ - 2840 + 3019 ], "count": [ - 2841 + 3020 ], "__typename": [ 78 @@ -57923,13 +60562,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2901 + 3080 ], "distinct": [ 3 ], "filter": [ - 2847 + 3026 ], "predicate": [ 4 @@ -57940,13 +60579,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2902 + 3081 ], "distinct": [ 3 ], "filter": [ - 2847 + 3026 ], "predicate": [ 4 @@ -57957,13 +60596,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2900 + 3079 ], "distinct": [ 3 ], "filter": [ - 2847 + 3026 ], "predicate": [ 39 @@ -57974,13 +60613,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 2845 + 3024 ], "count": [ 38, { "columns": [ - 2900, + 3079, "[player_kills_select_column!]" ], "distinct": [ @@ -57989,31 +60628,31 @@ export default { } ], "max": [ - 2892 + 3071 ], "min": [ - 2894 + 3073 ], "stddev": [ - 2904 + 3083 ], "stddev_pop": [ - 2906 + 3085 ], "stddev_samp": [ - 2908 + 3087 ], "sum": [ - 2912 + 3091 ], "var_pop": [ - 2916 + 3095 ], "var_samp": [ - 2918 + 3097 ], "variance": [ - 2920 + 3099 ], "__typename": [ 78 @@ -58021,37 +60660,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 2846 + 3025 ], "count": [ - 2481 + 2660 ], "max": [ - 2893 + 3072 ], "min": [ - 2895 + 3074 ], "stddev": [ - 2905 + 3084 ], "stddev_pop": [ - 2907 + 3086 ], "stddev_samp": [ - 2909 + 3088 ], "sum": [ - 2913 + 3092 ], "var_pop": [ - 2917 + 3096 ], "var_samp": [ - 2919 + 3098 ], "variance": [ - 2921 + 3100 ], "__typename": [ 78 @@ -58059,10 +60698,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 2891 + 3070 ], "on_conflict": [ - 2897 + 3076 ], "__typename": [ 78 @@ -58084,13 +60723,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58098,13 +60737,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 2847 + 3026 ], "_not": [ - 2847 + 3026 ], "_or": [ - 2847 + 3026 ], "assisted": [ 4 @@ -58116,7 +60755,7 @@ export default { 80 ], "attacked_player": [ - 3443 + 3622 ], "attacked_steam_id": [ 182 @@ -58140,7 +60779,7 @@ export default { 4 ], "deleted_at": [ - 4025 + 4204 ], "headshot": [ 4 @@ -58155,22 +60794,22 @@ export default { 4 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "no_scope": [ 4 ], "player": [ - 3443 + 3622 ], "round": [ 39 @@ -58185,7 +60824,7 @@ export default { 4 ], "time": [ - 4025 + 4204 ], "with": [ 80 @@ -58199,7 +60838,7 @@ export default { 180 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -58213,10 +60852,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2852 + 3031 ], "nodes": [ - 2848 + 3027 ], "__typename": [ 78 @@ -58224,7 +60863,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2851 + 3030 ], "__typename": [ 78 @@ -58232,13 +60871,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2869 + 3048 ], "distinct": [ 3 ], "filter": [ - 2857 + 3036 ], "predicate": [ 39 @@ -58249,13 +60888,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2855 + 3034 ], "count": [ 38, { "columns": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -58264,31 +60903,31 @@ export default { } ], "max": [ - 2861 + 3040 ], "min": [ - 2863 + 3042 ], "stddev": [ - 2871 + 3050 ], "stddev_pop": [ - 2873 + 3052 ], "stddev_samp": [ - 2875 + 3054 ], "sum": [ - 2879 + 3058 ], "var_pop": [ - 2883 + 3062 ], "var_samp": [ - 2885 + 3064 ], "variance": [ - 2887 + 3066 ], "__typename": [ 78 @@ -58296,37 +60935,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2856 + 3035 ], "count": [ - 2481 + 2660 ], "max": [ - 2862 + 3041 ], "min": [ - 2864 + 3043 ], "stddev": [ - 2872 + 3051 ], "stddev_pop": [ - 2874 + 3053 ], "stddev_samp": [ - 2876 + 3055 ], "sum": [ - 2880 + 3059 ], "var_pop": [ - 2884 + 3063 ], "var_samp": [ - 2886 + 3065 ], "variance": [ - 2888 + 3067 ], "__typename": [ 78 @@ -58334,10 +60973,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2860 + 3039 ], "on_conflict": [ - 2866 + 3045 ], "__typename": [ 78 @@ -58356,10 +60995,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58367,19 +61006,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2857 + 3036 ], "_not": [ - 2857 + 3036 ], "_or": [ - 2857 + 3036 ], "kill_count": [ 182 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -58408,7 +61047,7 @@ export default { 180 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -58436,13 +61075,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58464,13 +61103,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58481,7 +61120,7 @@ export default { 38 ], "returning": [ - 2848 + 3027 ], "__typename": [ 78 @@ -58489,13 +61128,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2858 + 3037 ], "update_columns": [ - 2881 + 3060 ], "where": [ - 2857 + 3036 ], "__typename": [ 78 @@ -58503,16 +61142,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58557,10 +61196,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58579,10 +61218,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58601,10 +61240,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58612,7 +61251,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2878 + 3057 ], "ordering": [ 236 @@ -58648,10 +61287,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58660,13 +61299,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2859 + 3038 ], "_set": [ - 2870 + 3049 ], "where": [ - 2857 + 3036 ], "__typename": [ 78 @@ -58685,10 +61324,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58707,10 +61346,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58729,10 +61368,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58764,7 +61403,7 @@ export default { 78 ], "attacked_player": [ - 3450 + 3629 ], "attacked_steam_id": [ 180 @@ -58788,7 +61427,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4203 ], "headshot": [ 3 @@ -58800,22 +61439,22 @@ export default { 3 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "no_scope": [ 3 ], "player": [ - 3450 + 3629 ], "round": [ 38 @@ -58827,7 +61466,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -58862,22 +61501,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -58888,49 +61527,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -58962,22 +61601,22 @@ export default { 78 ], "deleted_at": [ - 4024 + 4203 ], "hitgroup": [ 78 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -58988,49 +61627,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59041,7 +61680,7 @@ export default { 38 ], "returning": [ - 2836 + 3015 ], "__typename": [ 78 @@ -59049,13 +61688,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 2889 + 3068 ], "update_columns": [ - 2914 + 3093 ], "where": [ - 2847 + 3026 ], "__typename": [ 78 @@ -59063,88 +61702,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2481 + 2660 ], "attacked_location": [ - 2481 + 2660 ], "attacked_location_coordinates": [ - 2481 + 2660 ], "attacked_player": [ - 3452 + 3631 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacked_team": [ - 2481 + 2660 ], "attacker_location": [ - 2481 + 2660 ], "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "attacker_team": [ - 2481 + 2660 ], "blinded": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "headshot": [ - 2481 + 2660 ], "hitgroup": [ - 2481 + 2660 ], "in_air": [ - 2481 + 2660 ], "is_suicide": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "no_scope": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "round": [ - 2481 + 2660 ], "team_kill": [ - 2481 + 2660 ], "thru_smoke": [ - 2481 + 2660 ], "thru_wall": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59158,10 +61797,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4641 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -59202,7 +61841,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4203 ], "headshot": [ 3 @@ -59214,10 +61853,10 @@ export default { 3 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "no_scope": [ 3 @@ -59232,7 +61871,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -59257,13 +61896,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59285,13 +61924,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59313,13 +61952,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59327,7 +61966,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 2911 + 3090 ], "ordering": [ 236 @@ -59368,7 +62007,7 @@ export default { 3 ], "deleted_at": [ - 4024 + 4203 ], "headshot": [ 3 @@ -59380,10 +62019,10 @@ export default { 3 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "no_scope": [ 3 @@ -59398,7 +62037,7 @@ export default { 3 ], "time": [ - 4024 + 4203 ], "with": [ 78 @@ -59423,13 +62062,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59438,13 +62077,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2890 + 3069 ], "_set": [ - 2903 + 3082 ], "where": [ - 2847 + 3026 ], "__typename": [ 78 @@ -59466,13 +62105,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59494,13 +62133,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59522,13 +62161,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59545,7 +62184,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59553,10 +62192,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2924 + 3103 ], "nodes": [ - 2922 + 3101 ], "__typename": [ 78 @@ -59564,13 +62203,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2925 + 3104 ], "count": [ 38, { "columns": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -59579,31 +62218,31 @@ export default { } ], "max": [ - 2929 + 3108 ], "min": [ - 2930 + 3109 ], "stddev": [ - 2935 + 3114 ], "stddev_pop": [ - 2936 + 3115 ], "stddev_samp": [ - 2937 + 3116 ], "sum": [ - 2940 + 3119 ], "var_pop": [ - 2942 + 3121 ], "var_samp": [ - 2943 + 3122 ], "variance": [ - 2944 + 3123 ], "__typename": [ 78 @@ -59625,13 +62264,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2926 + 3105 ], "_not": [ - 2926 + 3105 ], "_or": [ - 2926 + 3105 ], "player_steam_id": [ 80 @@ -59643,7 +62282,7 @@ export default { 39 ], "value": [ - 1201 + 1379 ], "__typename": [ 78 @@ -59657,7 +62296,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59674,7 +62313,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59691,7 +62330,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59708,7 +62347,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59719,7 +62358,7 @@ export default { 38 ], "returning": [ - 2922 + 3101 ], "__typename": [ 78 @@ -59727,16 +62366,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "total": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -59754,7 +62393,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59804,7 +62443,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2939 + 3118 ], "ordering": [ 236 @@ -59824,7 +62463,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59838,7 +62477,7 @@ export default { 38 ], "value": [ - 1200 + 1378 ], "__typename": [ 78 @@ -59846,13 +62485,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 2927 + 3106 ], "_set": [ - 2934 + 3113 ], "where": [ - 2926 + 3105 ], "__typename": [ 78 @@ -59920,7 +62559,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -59962,7 +62601,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -60016,16 +62655,16 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -60040,7 +62679,7 @@ export default { 38 ], "player": [ - 3439 + 3618 ], "rounds_ct": [ 38 @@ -60088,7 +62727,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -60118,7 +62757,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -60138,10 +62777,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 2949 + 3128 ], "nodes": [ - 2945 + 3124 ], "__typename": [ 78 @@ -60149,7 +62788,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2948 + 3127 ], "__typename": [ 78 @@ -60157,13 +62796,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2966 + 3145 ], "distinct": [ 3 ], "filter": [ - 2954 + 3133 ], "predicate": [ 39 @@ -60174,13 +62813,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2952 + 3131 ], "count": [ 38, { "columns": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -60189,31 +62828,31 @@ export default { } ], "max": [ - 2958 + 3137 ], "min": [ - 2960 + 3139 ], "stddev": [ - 2968 + 3147 ], "stddev_pop": [ - 2970 + 3149 ], "stddev_samp": [ - 2972 + 3151 ], "sum": [ - 2976 + 3155 ], "var_pop": [ - 2980 + 3159 ], "var_samp": [ - 2982 + 3161 ], "variance": [ - 2984 + 3163 ], "__typename": [ 78 @@ -60221,37 +62860,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2953 + 3132 ], "count": [ - 2481 + 2660 ], "max": [ - 2959 + 3138 ], "min": [ - 2961 + 3140 ], "stddev": [ - 2969 + 3148 ], "stddev_pop": [ - 2971 + 3150 ], "stddev_samp": [ - 2973 + 3152 ], "sum": [ - 2977 + 3156 ], "var_pop": [ - 2981 + 3160 ], "var_samp": [ - 2983 + 3162 ], "variance": [ - 2985 + 3164 ], "__typename": [ 78 @@ -60259,10 +62898,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2957 + 3136 ], "on_conflict": [ - 2963 + 3142 ], "__typename": [ 78 @@ -60488,217 +63127,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -60706,13 +63345,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 2954 + 3133 ], "_not": [ - 2954 + 3133 ], "_or": [ - 2954 + 3133 ], "assists": [ 39 @@ -60733,7 +63372,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2480 + 2659 ], "damage": [ 39 @@ -60775,7 +63414,7 @@ export default { 39 ], "flash_duration_sum": [ - 2480 + 2659 ], "flashes_thrown": [ 39 @@ -60829,16 +63468,16 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "molotov_damage": [ 39 @@ -60853,7 +63492,7 @@ export default { 39 ], "player": [ - 3443 + 3622 ], "rounds_ct": [ 39 @@ -60901,7 +63540,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2480 + 2659 ], "total_engagement_frames": [ 39 @@ -60931,7 +63570,7 @@ export default { 39 ], "updated_at": [ - 4025 + 4204 ], "util_on_death_count": [ 39 @@ -60970,7 +63609,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -61012,7 +63651,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -61123,7 +63762,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -61188,7 +63827,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -61230,7 +63869,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -61284,16 +63923,16 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -61308,7 +63947,7 @@ export default { 38 ], "player": [ - 3450 + 3629 ], "rounds_ct": [ 38 @@ -61356,7 +63995,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -61386,7 +64025,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -61424,7 +64063,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -61466,7 +64105,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -61520,10 +64159,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -61583,7 +64222,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -61613,7 +64252,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -61633,226 +64272,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -61878,7 +64517,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -61920,7 +64559,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -61974,10 +64613,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -62037,7 +64676,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -62067,7 +64706,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -62087,226 +64726,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -62317,7 +64956,7 @@ export default { 38 ], "returning": [ - 2945 + 3124 ], "__typename": [ 78 @@ -62325,13 +64964,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 2955 + 3134 ], "update_columns": [ - 2978 + 3157 ], "where": [ - 2954 + 3133 ], "__typename": [ 78 @@ -62339,235 +64978,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -62575,7 +65214,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4462 + 4641 ], "steam_id": [ 180 @@ -62605,7 +65244,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -62647,7 +65286,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -62701,10 +65340,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -62764,7 +65403,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -62794,7 +65433,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -63032,217 +65671,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -63468,217 +66107,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -63904,217 +66543,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -64122,7 +66761,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2975 + 3154 ], "ordering": [ 236 @@ -64151,7 +66790,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -64193,7 +66832,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -64247,10 +66886,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -64310,7 +66949,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -64340,7 +66979,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "util_on_death_count": [ 38 @@ -64378,7 +67017,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2479 + 2658 ], "damage": [ 38 @@ -64420,7 +67059,7 @@ export default { 38 ], "flash_duration_sum": [ - 2479 + 2658 ], "flashes_thrown": [ 38 @@ -64531,7 +67170,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2479 + 2658 ], "total_engagement_frames": [ 38 @@ -64578,217 +67217,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -64797,13 +67436,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2956 + 3135 ], "_set": [ - 2967 + 3146 ], "where": [ - 2954 + 3133 ], "__typename": [ 78 @@ -65029,217 +67668,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -65465,217 +68104,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -65901,217 +68540,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "crosshair_angle_count": [ - 2481 + 2660 ], "crosshair_angle_sum_deg": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flash_duration_count": [ - 2481 + 2660 ], "flash_duration_sum": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kast_rounds": [ - 2481 + 2660 ], "kast_total_rounds": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "time_to_damage_count": [ - 2481 + 2660 ], "time_to_damage_sum_s": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "util_on_death_count": [ - 2481 + 2660 ], "util_on_death_sum": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -66119,40 +68758,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "aim_rating": [ - 1200 + 1378 ], "counter_strafe_pct": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "overall_rating": [ - 1200 + 1378 ], "played_at": [ - 4024 + 4203 ], "positioning_rating": [ - 1200 + 1378 ], "rounds": [ 38 @@ -66164,16 +68803,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -66181,10 +68820,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 2988 + 3167 ], "nodes": [ - 2986 + 3165 ], "__typename": [ 78 @@ -66192,13 +68831,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2989 + 3168 ], "count": [ 38, { "columns": [ - 2994, + 3173, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -66207,31 +68846,31 @@ export default { } ], "max": [ - 2991 + 3170 ], "min": [ - 2992 + 3171 ], "stddev": [ - 2995 + 3174 ], "stddev_pop": [ - 2996 + 3175 ], "stddev_samp": [ - 2997 + 3176 ], "sum": [ - 3000 + 3179 ], "var_pop": [ - 3001 + 3180 ], "var_samp": [ - 3002 + 3181 ], "variance": [ - 3003 + 3182 ], "__typename": [ 78 @@ -66292,49 +68931,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 2990 + 3169 ], "_not": [ - 2990 + 3169 ], "_or": [ - 2990 + 3169 ], "accuracy": [ - 2480 + 2659 ], "accuracy_spotted": [ - 2480 + 2659 ], "aim_rating": [ - 1201 + 1379 ], "counter_strafe_pct": [ - 2480 + 2659 ], "enemy_blind_pr": [ - 2480 + 2659 ], "flash_assists_pr": [ - 2480 + 2659 ], "hs_pct": [ - 2480 + 2659 ], "kast_pct": [ - 2480 + 2659 ], "match_id": [ - 4464 + 4643 ], "overall_rating": [ - 1201 + 1379 ], "played_at": [ - 4025 + 4204 ], "positioning_rating": [ - 1201 + 1379 ], "rounds": [ 39 @@ -66346,16 +68985,16 @@ export default { 182 ], "survival_pct": [ - 2480 + 2659 ], "traded_death_pct": [ - 2480 + 2659 ], "util_efficiency": [ - 2480 + 2659 ], "utility_rating": [ - 1201 + 1379 ], "__typename": [ 78 @@ -66363,40 +69002,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "aim_rating": [ - 1200 + 1378 ], "counter_strafe_pct": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "overall_rating": [ - 1200 + 1378 ], "played_at": [ - 4024 + 4203 ], "positioning_rating": [ - 1200 + 1378 ], "rounds": [ 38 @@ -66408,16 +69047,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -66425,40 +69064,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "aim_rating": [ - 1200 + 1378 ], "counter_strafe_pct": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "overall_rating": [ - 1200 + 1378 ], "played_at": [ - 4024 + 4203 ], "positioning_rating": [ - 1200 + 1378 ], "rounds": [ 38 @@ -66470,16 +69109,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -66487,61 +69126,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2481 + 2660 ], "accuracy_spotted": [ - 2481 + 2660 ], "aim_rating": [ - 2481 + 2660 ], "counter_strafe_pct": [ - 2481 + 2660 ], "enemy_blind_pr": [ - 2481 + 2660 ], "flash_assists_pr": [ - 2481 + 2660 ], "hs_pct": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "overall_rating": [ - 2481 + 2660 ], "played_at": [ - 2481 + 2660 ], "positioning_rating": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "survival_pct": [ - 2481 + 2660 ], "traded_death_pct": [ - 2481 + 2660 ], "util_efficiency": [ - 2481 + 2660 ], "utility_rating": [ - 2481 + 2660 ], "__typename": [ 78 @@ -66709,7 +69348,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2999 + 3178 ], "ordering": [ 236 @@ -66720,40 +69359,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "aim_rating": [ - 1200 + 1378 ], "counter_strafe_pct": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "overall_rating": [ - 1200 + 1378 ], "played_at": [ - 4024 + 4203 ], "positioning_rating": [ - 1200 + 1378 ], "rounds": [ 38 @@ -66765,16 +69404,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -66782,34 +69421,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2479 + 2658 ], "accuracy_spotted": [ - 2479 + 2658 ], "aim_rating": [ - 1200 + 1378 ], "counter_strafe_pct": [ - 2479 + 2658 ], "enemy_blind_pr": [ - 2479 + 2658 ], "flash_assists_pr": [ - 2479 + 2658 ], "hs_pct": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "overall_rating": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "rounds": [ 38 @@ -66818,16 +69457,16 @@ export default { 180 ], "survival_pct": [ - 2479 + 2658 ], "traded_death_pct": [ - 2479 + 2658 ], "util_efficiency": [ - 2479 + 2658 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -67003,13 +69642,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -67099,7 +69738,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -67183,7 +69822,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -67197,10 +69836,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3008 + 3187 ], "nodes": [ - 3004 + 3183 ], "__typename": [ 78 @@ -67208,7 +69847,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3007 + 3186 ], "__typename": [ 78 @@ -67216,13 +69855,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3020 + 3199 ], "distinct": [ 3 ], "filter": [ - 3013 + 3192 ], "predicate": [ 39 @@ -67233,13 +69872,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3011 + 3190 ], "count": [ 38, { "columns": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -67248,31 +69887,31 @@ export default { } ], "max": [ - 3015 + 3194 ], "min": [ - 3017 + 3196 ], "stddev": [ - 3021 + 3200 ], "stddev_pop": [ - 3023 + 3202 ], "stddev_samp": [ - 3025 + 3204 ], "sum": [ - 3029 + 3208 ], "var_pop": [ - 3031 + 3210 ], "var_samp": [ - 3033 + 3212 ], "variance": [ - 3035 + 3214 ], "__typename": [ 78 @@ -67280,37 +69919,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3012 + 3191 ], "count": [ - 2481 + 2660 ], "max": [ - 3016 + 3195 ], "min": [ - 3018 + 3197 ], "stddev": [ - 3022 + 3201 ], "stddev_pop": [ - 3024 + 3203 ], "stddev_samp": [ - 3026 + 3205 ], "sum": [ - 3030 + 3209 ], "var_pop": [ - 3032 + 3211 ], "var_samp": [ - 3034 + 3213 ], "variance": [ - 3036 + 3215 ], "__typename": [ 78 @@ -67318,7 +69957,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3014 + 3193 ], "__typename": [ 78 @@ -67526,199 +70165,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -67726,13 +70365,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3013 + 3192 ], "_not": [ - 3013 + 3192 ], "_or": [ - 3013 + 3192 ], "assists": [ 39 @@ -67744,13 +70383,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2480 + 2659 ], "avg_flash_duration": [ - 2480 + 2659 ], "avg_time_to_damage_s": [ - 2480 + 2659 ], "counter_strafe_eligible_shots": [ 39 @@ -67840,7 +70479,7 @@ export default { 39 ], "match_id": [ - 4464 + 4643 ], "molotov_damage": [ 39 @@ -67924,7 +70563,7 @@ export default { 39 ], "utility_on_death": [ - 2480 + 2659 ], "wasted_magazine_shots": [ 39 @@ -67947,13 +70586,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -68043,7 +70682,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -68127,7 +70766,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -68150,13 +70789,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -68246,7 +70885,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -68330,7 +70969,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -68344,202 +70983,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -68556,13 +71195,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -68652,7 +71291,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -68736,7 +71375,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -68750,202 +71389,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -68953,202 +71592,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -69357,199 +71996,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -69757,199 +72396,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -70157,199 +72796,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -70357,7 +72996,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3028 + 3207 ], "ordering": [ 236 @@ -70377,13 +73016,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -70473,7 +73112,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "molotov_damage": [ 38 @@ -70557,7 +73196,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -70580,13 +73219,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2479 + 2658 ], "avg_flash_duration": [ - 2479 + 2658 ], "avg_time_to_damage_s": [ - 2479 + 2658 ], "counter_strafe_eligible_shots": [ 38 @@ -70757,7 +73396,7 @@ export default { 38 ], "utility_on_death": [ - 2479 + 2658 ], "wasted_magazine_shots": [ 38 @@ -70771,199 +73410,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -71171,199 +73810,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -71571,199 +74210,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -71971,199 +74610,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2481 + 2660 ], "assists_ct": [ - 2481 + 2660 ], "assists_t": [ - 2481 + 2660 ], "avg_crosshair_angle_deg": [ - 2481 + 2660 ], "avg_flash_duration": [ - 2481 + 2660 ], "avg_time_to_damage_s": [ - 2481 + 2660 ], "counter_strafe_eligible_shots": [ - 2481 + 2660 ], "counter_strafed_shots": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_ct": [ - 2481 + 2660 ], "damage_t": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "deaths_ct": [ - 2481 + 2660 ], "deaths_t": [ - 2481 + 2660 ], "decoy_throws": [ - 2481 + 2660 ], "enemies_flashed": [ - 2481 + 2660 ], "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "five_kill_rounds": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "flashes_thrown": [ - 2481 + 2660 ], "four_kill_rounds": [ - 2481 + 2660 ], "he_damage": [ - 2481 + 2660 ], "he_team_damage": [ - 2481 + 2660 ], "he_throws": [ - 2481 + 2660 ], "headshot_hits": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_at_spotted": [ - 2481 + 2660 ], "hs_kills": [ - 2481 + 2660 ], "hs_kills_ct": [ - 2481 + 2660 ], "hs_kills_t": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kills_ct": [ - 2481 + 2660 ], "kills_t": [ - 2481 + 2660 ], "knife_kills": [ - 2481 + 2660 ], "molotov_damage": [ - 2481 + 2660 ], "molotov_throws": [ - 2481 + 2660 ], "non_awp_hits": [ - 2481 + 2660 ], "on_target_frames": [ - 2481 + 2660 ], "rounds_ct": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "rounds_t": [ - 2481 + 2660 ], "shots_at_spotted": [ - 2481 + 2660 ], "shots_fired": [ - 2481 + 2660 ], "smoke_throws": [ - 2481 + 2660 ], "spotted_count": [ - 2481 + 2660 ], "spotted_with_damage_count": [ - 2481 + 2660 ], "spray_hits": [ - 2481 + 2660 ], "spray_shots": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_damage": [ - 2481 + 2660 ], "team_flashed": [ - 2481 + 2660 ], "three_kill_rounds": [ - 2481 + 2660 ], "total_engagement_frames": [ - 2481 + 2660 ], "trade_kill_attempts": [ - 2481 + 2660 ], "trade_kill_opportunities": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_attempts": [ - 2481 + 2660 ], "traded_death_opportunities": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "two_kill_rounds": [ - 2481 + 2660 ], "unused_utility_value": [ - 2481 + 2660 ], "utility_on_death": [ - 2481 + 2660 ], "wasted_magazine_shots": [ - 2481 + 2660 ], "zeus_kills": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72171,22 +74810,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4024 + 4203 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -72195,10 +74834,10 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -72206,10 +74845,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3041 + 3220 ], "nodes": [ - 3037 + 3216 ], "__typename": [ 78 @@ -72217,7 +74856,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3040 + 3219 ], "__typename": [ 78 @@ -72225,13 +74864,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3058 + 3237 ], "distinct": [ 3 ], "filter": [ - 3046 + 3225 ], "predicate": [ 39 @@ -72242,13 +74881,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3044 + 3223 ], "count": [ 38, { "columns": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "distinct": [ @@ -72257,31 +74896,31 @@ export default { } ], "max": [ - 3050 + 3229 ], "min": [ - 3052 + 3231 ], "stddev": [ - 3060 + 3239 ], "stddev_pop": [ - 3062 + 3241 ], "stddev_samp": [ - 3064 + 3243 ], "sum": [ - 3068 + 3247 ], "var_pop": [ - 3072 + 3251 ], "var_samp": [ - 3074 + 3253 ], "variance": [ - 3076 + 3255 ], "__typename": [ 78 @@ -72289,37 +74928,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3045 + 3224 ], "count": [ - 2481 + 2660 ], "max": [ - 3051 + 3230 ], "min": [ - 3053 + 3232 ], "stddev": [ - 3061 + 3240 ], "stddev_pop": [ - 3063 + 3242 ], "stddev_samp": [ - 3065 + 3244 ], "sum": [ - 3069 + 3248 ], "var_pop": [ - 3073 + 3252 ], "var_samp": [ - 3075 + 3254 ], "variance": [ - 3077 + 3256 ], "__typename": [ 78 @@ -72327,10 +74966,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3049 + 3228 ], "on_conflict": [ - 3055 + 3234 ], "__typename": [ 78 @@ -72349,10 +74988,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72360,31 +74999,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3046 + 3225 ], "_not": [ - 3046 + 3225 ], "_or": [ - 3046 + 3225 ], "deleted_at": [ - 4025 + 4204 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -72393,10 +75032,10 @@ export default { 39 ], "time": [ - 4025 + 4204 ], "type": [ - 862 + 882 ], "__typename": [ 78 @@ -72416,22 +75055,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4024 + 4203 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -72440,10 +75079,10 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -72451,13 +75090,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -72466,7 +75105,7 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -72474,22 +75113,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72497,13 +75136,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -72512,7 +75151,7 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -72520,22 +75159,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72546,7 +75185,7 @@ export default { 38 ], "returning": [ - 3037 + 3216 ], "__typename": [ 78 @@ -72554,13 +75193,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3047 + 3226 ], "update_columns": [ - 3070 + 3249 ], "where": [ - 3046 + 3225 ], "__typename": [ 78 @@ -72568,34 +75207,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72603,13 +75242,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -72618,13 +75257,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -72633,10 +75272,10 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -72655,10 +75294,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72677,10 +75316,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72699,10 +75338,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72710,7 +75349,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3067 + 3246 ], "ordering": [ 236 @@ -72721,13 +75360,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -72736,10 +75375,10 @@ export default { 38 ], "time": [ - 4024 + 4203 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -72758,10 +75397,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72770,13 +75409,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3048 + 3227 ], "_set": [ - 3059 + 3238 ], "where": [ - 3046 + 3225 ], "__typename": [ 78 @@ -72795,10 +75434,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72817,10 +75456,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72839,10 +75478,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -72850,13 +75489,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1200 + 1378 ], "aim_goal": [ - 1200 + 1378 ], "aim_rating": [ - 1200 + 1378 ], "band": [ 38 @@ -72865,31 +75504,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1378 ], "counter_strafe_score": [ - 1200 + 1378 ], "crosshair_score": [ - 1200 + 1378 ], "flash_assists_score": [ - 1200 + 1378 ], "hs_score": [ - 1200 + 1378 ], "kast_score": [ - 1200 + 1378 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "premier_rank": [ 38 @@ -72898,28 +75537,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1378 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1378 ], "traded_score": [ - 1200 + 1378 ], "ttd_score": [ - 1200 + 1378 ], "util_eff_score": [ - 1200 + 1378 ], "utility_goal": [ - 1200 + 1378 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -72927,10 +75566,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3080 + 3259 ], "nodes": [ - 3078 + 3257 ], "__typename": [ 78 @@ -72938,13 +75577,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3081 + 3260 ], "count": [ 38, { "columns": [ - 3086, + 3265, "[player_performance_v_select_column!]" ], "distinct": [ @@ -72953,31 +75592,31 @@ export default { } ], "max": [ - 3083 + 3262 ], "min": [ - 3084 + 3263 ], "stddev": [ - 3087 + 3266 ], "stddev_pop": [ - 3088 + 3267 ], "stddev_samp": [ - 3089 + 3268 ], "sum": [ - 3092 + 3271 ], "var_pop": [ - 3093 + 3272 ], "var_samp": [ - 3094 + 3273 ], "variance": [ - 3095 + 3274 ], "__typename": [ 78 @@ -73062,22 +75701,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3082 + 3261 ], "_not": [ - 3082 + 3261 ], "_or": [ - 3082 + 3261 ], "accuracy_score": [ - 1201 + 1379 ], "aim_goal": [ - 1201 + 1379 ], "aim_rating": [ - 1201 + 1379 ], "band": [ 39 @@ -73086,31 +75725,31 @@ export default { 182 ], "blind_score": [ - 1201 + 1379 ], "counter_strafe_score": [ - 1201 + 1379 ], "crosshair_score": [ - 1201 + 1379 ], "flash_assists_score": [ - 1201 + 1379 ], "hs_score": [ - 1201 + 1379 ], "kast_score": [ - 1201 + 1379 ], "maps": [ 39 ], "positioning_goal": [ - 1201 + 1379 ], "positioning_rating": [ - 1201 + 1379 ], "premier_rank": [ 39 @@ -73119,28 +75758,28 @@ export default { 39 ], "spotted_score": [ - 1201 + 1379 ], "steam_id": [ 182 ], "survival_score": [ - 1201 + 1379 ], "traded_score": [ - 1201 + 1379 ], "ttd_score": [ - 1201 + 1379 ], "util_eff_score": [ - 1201 + 1379 ], "utility_goal": [ - 1201 + 1379 ], "utility_rating": [ - 1201 + 1379 ], "__typename": [ 78 @@ -73148,13 +75787,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1200 + 1378 ], "aim_goal": [ - 1200 + 1378 ], "aim_rating": [ - 1200 + 1378 ], "band": [ 38 @@ -73163,31 +75802,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1378 ], "counter_strafe_score": [ - 1200 + 1378 ], "crosshair_score": [ - 1200 + 1378 ], "flash_assists_score": [ - 1200 + 1378 ], "hs_score": [ - 1200 + 1378 ], "kast_score": [ - 1200 + 1378 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "premier_rank": [ 38 @@ -73196,28 +75835,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1378 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1378 ], "traded_score": [ - 1200 + 1378 ], "ttd_score": [ - 1200 + 1378 ], "util_eff_score": [ - 1200 + 1378 ], "utility_goal": [ - 1200 + 1378 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -73225,13 +75864,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1200 + 1378 ], "aim_goal": [ - 1200 + 1378 ], "aim_rating": [ - 1200 + 1378 ], "band": [ 38 @@ -73240,31 +75879,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1378 ], "counter_strafe_score": [ - 1200 + 1378 ], "crosshair_score": [ - 1200 + 1378 ], "flash_assists_score": [ - 1200 + 1378 ], "hs_score": [ - 1200 + 1378 ], "kast_score": [ - 1200 + 1378 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "premier_rank": [ 38 @@ -73273,28 +75912,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1378 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1378 ], "traded_score": [ - 1200 + 1378 ], "ttd_score": [ - 1200 + 1378 ], "util_eff_score": [ - 1200 + 1378 ], "utility_goal": [ - 1200 + 1378 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -73302,76 +75941,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2481 + 2660 ], "aim_goal": [ - 2481 + 2660 ], "aim_rating": [ - 2481 + 2660 ], "band": [ - 2481 + 2660 ], "band_sample": [ - 2481 + 2660 ], "blind_score": [ - 2481 + 2660 ], "counter_strafe_score": [ - 2481 + 2660 ], "crosshair_score": [ - 2481 + 2660 ], "flash_assists_score": [ - 2481 + 2660 ], "hs_score": [ - 2481 + 2660 ], "kast_score": [ - 2481 + 2660 ], "maps": [ - 2481 + 2660 ], "positioning_goal": [ - 2481 + 2660 ], "positioning_rating": [ - 2481 + 2660 ], "premier_rank": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "spotted_score": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "survival_score": [ - 2481 + 2660 ], "traded_score": [ - 2481 + 2660 ], "ttd_score": [ - 2481 + 2660 ], "util_eff_score": [ - 2481 + 2660 ], "utility_goal": [ - 2481 + 2660 ], "utility_rating": [ - 2481 + 2660 ], "__typename": [ 78 @@ -73611,7 +76250,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3091 + 3270 ], "ordering": [ 236 @@ -73622,13 +76261,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1200 + 1378 ], "aim_goal": [ - 1200 + 1378 ], "aim_rating": [ - 1200 + 1378 ], "band": [ 38 @@ -73637,31 +76276,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1378 ], "counter_strafe_score": [ - 1200 + 1378 ], "crosshair_score": [ - 1200 + 1378 ], "flash_assists_score": [ - 1200 + 1378 ], "hs_score": [ - 1200 + 1378 ], "kast_score": [ - 1200 + 1378 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "premier_rank": [ 38 @@ -73670,28 +76309,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1378 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1378 ], "traded_score": [ - 1200 + 1378 ], "ttd_score": [ - 1200 + 1378 ], "util_eff_score": [ - 1200 + 1378 ], "utility_goal": [ - 1200 + 1378 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -73699,13 +76338,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1200 + 1378 ], "aim_goal": [ - 1200 + 1378 ], "aim_rating": [ - 1200 + 1378 ], "band": [ 38 @@ -73714,31 +76353,31 @@ export default { 180 ], "blind_score": [ - 1200 + 1378 ], "counter_strafe_score": [ - 1200 + 1378 ], "crosshair_score": [ - 1200 + 1378 ], "flash_assists_score": [ - 1200 + 1378 ], "hs_score": [ - 1200 + 1378 ], "kast_score": [ - 1200 + 1378 ], "maps": [ 38 ], "positioning_goal": [ - 1200 + 1378 ], "positioning_rating": [ - 1200 + 1378 ], "premier_rank": [ 38 @@ -73747,28 +76386,28 @@ export default { 38 ], "spotted_score": [ - 1200 + 1378 ], "steam_id": [ 180 ], "survival_score": [ - 1200 + 1378 ], "traded_score": [ - 1200 + 1378 ], "ttd_score": [ - 1200 + 1378 ], "util_eff_score": [ - 1200 + 1378 ], "utility_goal": [ - 1200 + 1378 ], "utility_rating": [ - 1200 + 1378 ], "__typename": [ 78 @@ -74007,25 +76646,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4462 + 4641 ], "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "player": [ - 3439 + 3618 ], "previous_rank": [ 38 @@ -74045,10 +76684,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3100 + 3279 ], "nodes": [ - 3096 + 3275 ], "__typename": [ 78 @@ -74056,7 +76695,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3099 + 3278 ], "__typename": [ 78 @@ -74064,13 +76703,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3117 + 3296 ], "distinct": [ 3 ], "filter": [ - 3105 + 3284 ], "predicate": [ 39 @@ -74081,13 +76720,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3103 + 3282 ], "count": [ 38, { "columns": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -74096,31 +76735,31 @@ export default { } ], "max": [ - 3109 + 3288 ], "min": [ - 3111 + 3290 ], "stddev": [ - 3119 + 3298 ], "stddev_pop": [ - 3121 + 3300 ], "stddev_samp": [ - 3123 + 3302 ], "sum": [ - 3127 + 3306 ], "var_pop": [ - 3131 + 3310 ], "var_samp": [ - 3133 + 3312 ], "variance": [ - 3135 + 3314 ], "__typename": [ 78 @@ -74128,37 +76767,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3104 + 3283 ], "count": [ - 2481 + 2660 ], "max": [ - 3110 + 3289 ], "min": [ - 3112 + 3291 ], "stddev": [ - 3120 + 3299 ], "stddev_pop": [ - 3122 + 3301 ], "stddev_samp": [ - 3124 + 3303 ], "sum": [ - 3128 + 3307 ], "var_pop": [ - 3132 + 3311 ], "var_samp": [ - 3134 + 3313 ], "variance": [ - 3136 + 3315 ], "__typename": [ 78 @@ -74166,10 +76805,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3108 + 3287 ], "on_conflict": [ - 3114 + 3293 ], "__typename": [ 78 @@ -74194,16 +76833,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74211,34 +76850,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3105 + 3284 ], "_not": [ - 3105 + 3284 ], "_or": [ - 3105 + 3284 ], "id": [ - 4464 + 4643 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "observed_at": [ - 4025 + 4204 ], "player": [ - 3443 + 3622 ], "previous_rank": [ 39 @@ -74276,25 +76915,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4462 + 4641 ], "map": [ - 1831 + 2010 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "player": [ - 3450 + 3629 ], "previous_rank": [ 38 @@ -74314,16 +76953,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -74343,28 +76982,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74372,16 +77011,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -74401,28 +77040,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2481 + 2660 ], "map_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74433,7 +77072,7 @@ export default { 38 ], "returning": [ - 3096 + 3275 ], "__typename": [ 78 @@ -74441,13 +77080,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3106 + 3285 ], "update_columns": [ - 3129 + 3308 ], "where": [ - 3105 + 3284 ], "__typename": [ 78 @@ -74455,37 +77094,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2481 + 2660 ], "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "observed_at": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74493,7 +77132,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -74502,16 +77141,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -74548,16 +77187,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74582,16 +77221,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74616,16 +77255,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74633,7 +77272,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3126 + 3305 ], "ordering": [ 236 @@ -74644,16 +77283,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4462 + 4641 ], "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "observed_at": [ - 4024 + 4203 ], "previous_rank": [ 38 @@ -74690,16 +77329,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74708,13 +77347,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3107 + 3286 ], "_set": [ - 3118 + 3297 ], "where": [ - 3105 + 3284 ], "__typename": [ 78 @@ -74739,16 +77378,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74773,16 +77412,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74807,16 +77446,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rank_type": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -74824,19 +77463,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "e_sanction_type": [ - 936 + 956 ], "id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -74845,16 +77484,16 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by": [ - 3439 + 3618 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 961 ], "__typename": [ 78 @@ -74862,10 +77501,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3141 + 3320 ], "nodes": [ - 3137 + 3316 ], "__typename": [ 78 @@ -74873,7 +77512,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3140 + 3319 ], "__typename": [ 78 @@ -74881,13 +77520,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3158 + 3337 ], "distinct": [ 3 ], "filter": [ - 3146 + 3325 ], "predicate": [ 39 @@ -74898,13 +77537,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3144 + 3323 ], "count": [ 38, { "columns": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "distinct": [ @@ -74913,31 +77552,31 @@ export default { } ], "max": [ - 3150 + 3329 ], "min": [ - 3152 + 3331 ], "stddev": [ - 3160 + 3339 ], "stddev_pop": [ - 3162 + 3341 ], "stddev_samp": [ - 3164 + 3343 ], "sum": [ - 3168 + 3347 ], "var_pop": [ - 3172 + 3351 ], "var_samp": [ - 3174 + 3353 ], "variance": [ - 3176 + 3355 ], "__typename": [ 78 @@ -74945,37 +77584,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3145 + 3324 ], "count": [ - 2481 + 2660 ], "max": [ - 3151 + 3330 ], "min": [ - 3153 + 3332 ], "stddev": [ - 3161 + 3340 ], "stddev_pop": [ - 3163 + 3342 ], "stddev_samp": [ - 3165 + 3344 ], "sum": [ - 3169 + 3348 ], "var_pop": [ - 3173 + 3352 ], "var_samp": [ - 3175 + 3354 ], "variance": [ - 3177 + 3356 ], "__typename": [ 78 @@ -74983,10 +77622,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3149 + 3328 ], "on_conflict": [ - 3155 + 3334 ], "__typename": [ 78 @@ -75005,10 +77644,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75016,28 +77655,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3146 + 3325 ], "_not": [ - 3146 + 3325 ], "_or": [ - 3146 + 3325 ], "created_at": [ - 4025 + 4204 ], "deleted_at": [ - 4025 + 4204 ], "e_sanction_type": [ - 939 + 959 ], "id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -75046,16 +77685,16 @@ export default { 80 ], "remove_sanction_date": [ - 4025 + 4204 ], "sanctioned_by": [ - 3443 + 3622 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 942 + 962 ], "__typename": [ 78 @@ -75075,19 +77714,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "e_sanction_type": [ - 947 + 967 ], "id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -75096,16 +77735,16 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by": [ - 3450 + 3629 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 961 ], "__typename": [ 78 @@ -75113,13 +77752,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -75128,7 +77767,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by_steam_id": [ 180 @@ -75139,25 +77778,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "reason": [ - 2481 + 2660 ], "remove_sanction_date": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75165,13 +77804,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -75180,7 +77819,7 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by_steam_id": [ 180 @@ -75191,25 +77830,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "reason": [ - 2481 + 2660 ], "remove_sanction_date": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75220,7 +77859,7 @@ export default { 38 ], "returning": [ - 3137 + 3316 ], "__typename": [ 78 @@ -75228,13 +77867,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3147 + 3326 ], "update_columns": [ - 3170 + 3349 ], "where": [ - 3146 + 3325 ], "__typename": [ 78 @@ -75242,37 +77881,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "e_sanction_type": [ - 949 + 969 ], "id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "reason": [ - 2481 + 2660 ], "remove_sanction_date": [ - 2481 + 2660 ], "sanctioned_by": [ - 3452 + 3631 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75280,10 +77919,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -75292,13 +77931,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -75307,13 +77946,13 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 961 ], "__typename": [ 78 @@ -75332,10 +77971,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75354,10 +77993,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75376,10 +78015,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75387,7 +78026,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3167 + 3346 ], "ordering": [ 236 @@ -75398,13 +78037,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "deleted_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -75413,13 +78052,13 @@ export default { 78 ], "remove_sanction_date": [ - 4024 + 4203 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 941 + 961 ], "__typename": [ 78 @@ -75438,10 +78077,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75450,13 +78089,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3148 + 3327 ], "_set": [ - 3159 + 3338 ], "where": [ - 3146 + 3325 ], "__typename": [ 78 @@ -75475,10 +78114,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75497,10 +78136,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75519,10 +78158,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "sanctioned_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75536,7 +78175,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -75545,16 +78184,16 @@ export default { 180 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "season": [ - 3498 + 3677 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -75562,10 +78201,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3192 + 3371 ], "nodes": [ - 3178 + 3357 ], "__typename": [ 78 @@ -75573,31 +78212,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3181 + 3360 ], "corr": [ - 3182 + 3361 ], "count": [ - 3184 + 3363 ], "covar_samp": [ - 3185 + 3364 ], "max": [ - 3187 + 3366 ], "min": [ - 3188 + 3367 ], "stddev_samp": [ - 3189 + 3368 ], "sum": [ - 3190 + 3369 ], "var_samp": [ - 3191 + 3370 ], "__typename": [ 78 @@ -75605,16 +78244,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3210 + 3389 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75622,16 +78261,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3183 + 3362 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75639,10 +78278,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3211 + 3390 ], "Y": [ - 3211 + 3390 ], "__typename": [ 78 @@ -75650,13 +78289,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3209 + 3388 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ 39 @@ -75667,16 +78306,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3186 + 3365 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75684,10 +78323,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3212 + 3391 ], "Y": [ - 3212 + 3391 ], "__typename": [ 78 @@ -75695,16 +78334,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3213 + 3392 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75712,16 +78351,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3214 + 3393 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75729,16 +78368,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3215 + 3394 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75746,16 +78385,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3216 + 3395 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75763,16 +78402,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3217 + 3396 ], "distinct": [ 3 ], "filter": [ - 3197 + 3376 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -75780,13 +78419,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3195 + 3374 ], "count": [ 38, { "columns": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "distinct": [ @@ -75795,31 +78434,31 @@ export default { } ], "max": [ - 3201 + 3380 ], "min": [ - 3203 + 3382 ], "stddev": [ - 3219 + 3398 ], "stddev_pop": [ - 3221 + 3400 ], "stddev_samp": [ - 3223 + 3402 ], "sum": [ - 3227 + 3406 ], "var_pop": [ - 3231 + 3410 ], "var_samp": [ - 3233 + 3412 ], "variance": [ - 3235 + 3414 ], "__typename": [ 78 @@ -75827,37 +78466,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3196 + 3375 ], "count": [ - 2481 + 2660 ], "max": [ - 3202 + 3381 ], "min": [ - 3204 + 3383 ], "stddev": [ - 3220 + 3399 ], "stddev_pop": [ - 3222 + 3401 ], "stddev_samp": [ - 3224 + 3403 ], "sum": [ - 3228 + 3407 ], "var_pop": [ - 3232 + 3411 ], "var_samp": [ - 3234 + 3413 ], "variance": [ - 3236 + 3415 ], "__typename": [ 78 @@ -75865,10 +78504,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3200 + 3379 ], "on_conflict": [ - 3206 + 3385 ], "__typename": [ 78 @@ -75899,22 +78538,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -75922,13 +78561,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3197 + 3376 ], "_not": [ - 3197 + 3376 ], "_or": [ - 3197 + 3376 ], "assists": [ 182 @@ -75937,7 +78576,7 @@ export default { 182 ], "headshot_percentage": [ - 1201 + 1379 ], "headshots": [ 182 @@ -75946,16 +78585,16 @@ export default { 182 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "season": [ - 3502 + 3681 ], "season_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -75970,7 +78609,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -75993,7 +78632,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76002,16 +78641,16 @@ export default { 180 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "season": [ - 3509 + 3688 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76025,7 +78664,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76037,7 +78676,7 @@ export default { 180 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76045,25 +78684,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "season_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76077,7 +78716,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76089,7 +78728,7 @@ export default { 180 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76097,25 +78736,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "season_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76126,7 +78765,7 @@ export default { 38 ], "returning": [ - 3178 + 3357 ], "__typename": [ 78 @@ -76134,13 +78773,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3198 + 3377 ], "update_columns": [ - 3229 + 3408 ], "where": [ - 3197 + 3376 ], "__typename": [ 78 @@ -76148,31 +78787,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "season": [ - 3511 + 3690 ], "season_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76183,7 +78822,7 @@ export default { 180 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76206,7 +78845,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76218,7 +78857,7 @@ export default { 180 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76249,22 +78888,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76295,22 +78934,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76341,22 +78980,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76364,7 +79003,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3226 + 3405 ], "ordering": [ 236 @@ -76381,7 +79020,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76393,7 +79032,7 @@ export default { 180 ], "season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -76407,7 +79046,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76424,22 +79063,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76448,13 +79087,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3199 + 3378 ], "_set": [ - 3218 + 3397 ], "where": [ - 3197 + 3376 ], "__typename": [ 78 @@ -76485,22 +79124,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76531,22 +79170,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76577,22 +79216,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76606,7 +79245,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76615,7 +79254,7 @@ export default { 180 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -76626,10 +79265,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3239 + 3418 ], "nodes": [ - 3237 + 3416 ], "__typename": [ 78 @@ -76637,13 +79276,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3240 + 3419 ], "count": [ 38, { "columns": [ - 3252, + 3431, "[player_stats_select_column!]" ], "distinct": [ @@ -76652,31 +79291,31 @@ export default { } ], "max": [ - 3245 + 3424 ], "min": [ - 3246 + 3425 ], "stddev": [ - 3254 + 3433 ], "stddev_pop": [ - 3255 + 3434 ], "stddev_samp": [ - 3256 + 3435 ], "sum": [ - 3259 + 3438 ], "var_pop": [ - 3262 + 3441 ], "var_samp": [ - 3263 + 3442 ], "variance": [ - 3264 + 3443 ], "__typename": [ 78 @@ -76707,13 +79346,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3241 + 3420 ], "_not": [ - 3241 + 3420 ], "_or": [ - 3241 + 3420 ], "assists": [ 182 @@ -76722,7 +79361,7 @@ export default { 182 ], "headshot_percentage": [ - 1201 + 1379 ], "headshots": [ 182 @@ -76731,7 +79370,7 @@ export default { 182 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -76749,7 +79388,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76772,7 +79411,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76781,7 +79420,7 @@ export default { 180 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -76798,7 +79437,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76821,7 +79460,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -76841,7 +79480,7 @@ export default { 38 ], "returning": [ - 3237 + 3416 ], "__typename": [ 78 @@ -76849,10 +79488,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3244 + 3423 ], "on_conflict": [ - 3249 + 3428 ], "__typename": [ 78 @@ -76860,13 +79499,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3242 + 3421 ], "update_columns": [ - 3260 + 3439 ], "where": [ - 3241 + 3420 ], "__typename": [ 78 @@ -76874,25 +79513,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -76915,7 +79554,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -77001,7 +79640,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3258 + 3437 ], "ordering": [ 236 @@ -77018,7 +79657,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -77041,7 +79680,7 @@ export default { 180 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 180 @@ -77059,13 +79698,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3243 + 3422 ], "_set": [ - 3253 + 3432 ], "where": [ - 3241 + 3420 ], "__typename": [ 78 @@ -77142,19 +79781,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "last_presence_state": [ - 1352, + 1531, { "path": [ 78 @@ -77162,7 +79801,7 @@ export default { } ], "player": [ - 3439 + 3618 ], "status": [ 78 @@ -77171,7 +79810,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77179,10 +79818,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3267 + 3446 ], "nodes": [ - 3265 + 3444 ], "__typename": [ 78 @@ -77190,13 +79829,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3269 + 3448 ], "count": [ 38, { "columns": [ - 3284, + 3463, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -77205,31 +79844,31 @@ export default { } ], "max": [ - 3277 + 3456 ], "min": [ - 3278 + 3457 ], "stddev": [ - 3286 + 3465 ], "stddev_pop": [ - 3287 + 3466 ], "stddev_samp": [ - 3288 + 3467 ], "sum": [ - 3291 + 3470 ], "var_pop": [ - 3294 + 3473 ], "var_samp": [ - 3295 + 3474 ], "variance": [ - 3296 + 3475 ], "__typename": [ 78 @@ -77237,7 +79876,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1352 + 1531 ], "__typename": [ 78 @@ -77256,31 +79895,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3270 + 3449 ], "_not": [ - 3270 + 3449 ], "_or": [ - 3270 + 3449 ], "bot_steam_account_id": [ - 4464 + 4643 ], "bot_steamid64": [ 182 ], "created_at": [ - 4025 + 4204 ], "friended_at": [ - 4025 + 4204 ], "last_presence_state": [ - 1354 + 1533 ], "player": [ - 3443 + 3622 ], "status": [ 80 @@ -77289,7 +79928,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -77333,22 +79972,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "last_presence_state": [ - 1352 + 1531 ], "player": [ - 3450 + 3629 ], "status": [ 78 @@ -77357,7 +79996,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77365,16 +80004,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "status": [ 78 @@ -77383,7 +80022,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77391,16 +80030,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "status": [ 78 @@ -77409,7 +80048,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77420,7 +80059,7 @@ export default { 38 ], "returning": [ - 3265 + 3444 ], "__typename": [ 78 @@ -77428,13 +80067,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3271 + 3450 ], "update_columns": [ - 3292 + 3471 ], "where": [ - 3270 + 3449 ], "__typename": [ 78 @@ -77442,31 +80081,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2481 + 2660 ], "bot_steamid64": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "friended_at": [ - 2481 + 2660 ], "last_presence_state": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "status": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -77482,7 +80121,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1352 + 1531 ], "__typename": [ 78 @@ -77491,19 +80130,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "last_presence_state": [ - 1352 + 1531 ], "status": [ 78 @@ -77512,7 +80151,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77553,7 +80192,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3290 + 3469 ], "ordering": [ 236 @@ -77564,19 +80203,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4462 + 4641 ], "bot_steamid64": [ 180 ], "created_at": [ - 4024 + 4203 ], "friended_at": [ - 4024 + 4203 ], "last_presence_state": [ - 1352 + 1531 ], "status": [ 78 @@ -77585,7 +80224,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77605,28 +80244,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3268 + 3447 ], "_delete_at_path": [ - 3272 + 3451 ], "_delete_elem": [ - 3273 + 3452 ], "_delete_key": [ - 3274 + 3453 ], "_inc": [ - 3275 + 3454 ], "_prepend": [ - 3283 + 3462 ], "_set": [ - 3285 + 3464 ], "where": [ - 3270 + 3449 ], "__typename": [ 78 @@ -77670,7 +80309,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -77679,16 +80318,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77696,10 +80335,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3299 + 3478 ], "nodes": [ - 3297 + 3476 ], "__typename": [ 78 @@ -77707,13 +80346,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3300 + 3479 ], "count": [ 38, { "columns": [ - 3311, + 3490, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -77722,31 +80361,31 @@ export default { } ], "max": [ - 3305 + 3484 ], "min": [ - 3306 + 3485 ], "stddev": [ - 3313 + 3492 ], "stddev_pop": [ - 3314 + 3493 ], "stddev_samp": [ - 3315 + 3494 ], "sum": [ - 3318 + 3497 ], "var_pop": [ - 3321 + 3500 ], "var_samp": [ - 3322 + 3501 ], "variance": [ - 3323 + 3502 ], "__typename": [ 78 @@ -77762,19 +80401,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3301 + 3480 ], "_not": [ - 3301 + 3480 ], "_or": [ - 3301 + 3480 ], "auth_code": [ 80 ], "created_at": [ - 4025 + 4204 ], "last_error": [ 80 @@ -77783,16 +80422,16 @@ export default { 80 ], "last_polled_at": [ - 4025 + 4204 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -77812,7 +80451,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -77821,16 +80460,16 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77841,7 +80480,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -77850,13 +80489,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77867,7 +80506,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -77876,13 +80515,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -77893,7 +80532,7 @@ export default { 38 ], "returning": [ - 3297 + 3476 ], "__typename": [ 78 @@ -77901,13 +80540,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3302 + 3481 ], "update_columns": [ - 3319 + 3498 ], "where": [ - 3301 + 3480 ], "__typename": [ 78 @@ -77915,28 +80554,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "last_error": [ - 2481 + 2660 ], "last_known_share_code": [ - 2481 + 2660 ], "last_polled_at": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -77956,7 +80595,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -77965,13 +80604,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -78003,7 +80642,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3317 + 3496 ], "ordering": [ 236 @@ -78017,7 +80656,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "last_error": [ 78 @@ -78026,13 +80665,13 @@ export default { 78 ], "last_polled_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -78049,13 +80688,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3303 + 3482 ], "_set": [ - 3312 + 3491 ], "where": [ - 3301 + 3480 ], "__typename": [ 78 @@ -78087,22 +80726,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4024 + 4203 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -78119,10 +80758,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3328 + 3507 ], "nodes": [ - 3324 + 3503 ], "__typename": [ 78 @@ -78130,7 +80769,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3327 + 3506 ], "__typename": [ 78 @@ -78138,13 +80777,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3345 + 3524 ], "distinct": [ 3 ], "filter": [ - 3333 + 3512 ], "predicate": [ 39 @@ -78155,13 +80794,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3331 + 3510 ], "count": [ 38, { "columns": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -78170,31 +80809,31 @@ export default { } ], "max": [ - 3337 + 3516 ], "min": [ - 3339 + 3518 ], "stddev": [ - 3347 + 3526 ], "stddev_pop": [ - 3349 + 3528 ], "stddev_samp": [ - 3351 + 3530 ], "sum": [ - 3355 + 3534 ], "var_pop": [ - 3359 + 3538 ], "var_samp": [ - 3361 + 3540 ], "variance": [ - 3363 + 3542 ], "__typename": [ 78 @@ -78202,37 +80841,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3332 + 3511 ], "count": [ - 2481 + 2660 ], "max": [ - 3338 + 3517 ], "min": [ - 3340 + 3519 ], "stddev": [ - 3348 + 3527 ], "stddev_pop": [ - 3350 + 3529 ], "stddev_samp": [ - 3352 + 3531 ], "sum": [ - 3356 + 3535 ], "var_pop": [ - 3360 + 3539 ], "var_samp": [ - 3362 + 3541 ], "variance": [ - 3364 + 3543 ], "__typename": [ 78 @@ -78240,10 +80879,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3336 + 3515 ], "on_conflict": [ - 3342 + 3521 ], "__typename": [ 78 @@ -78265,13 +80904,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78279,31 +80918,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3333 + 3512 ], "_not": [ - 3333 + 3512 ], "_or": [ - 3333 + 3512 ], "deleted_at": [ - 4025 + 4204 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -78335,22 +80974,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4024 + 4203 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -78367,13 +81006,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -78390,22 +81029,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78413,13 +81052,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -78436,22 +81075,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78462,7 +81101,7 @@ export default { 38 ], "returning": [ - 3324 + 3503 ], "__typename": [ 78 @@ -78470,13 +81109,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3334 + 3513 ], "update_columns": [ - 3357 + 3536 ], "where": [ - 3333 + 3512 ], "__typename": [ 78 @@ -78484,31 +81123,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78516,7 +81155,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -78528,13 +81167,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -78565,13 +81204,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78593,13 +81232,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78621,13 +81260,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78635,7 +81274,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3354 + 3533 ], "ordering": [ 236 @@ -78646,13 +81285,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "player_steam_id": [ 180 @@ -78683,13 +81322,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78698,13 +81337,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3335 + 3514 ], "_set": [ - 3346 + 3525 ], "where": [ - 3333 + 3512 ], "__typename": [ 78 @@ -78726,13 +81365,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78754,13 +81393,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78782,13 +81421,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "unused": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78802,31 +81441,31 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -78834,10 +81473,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3369 + 3548 ], "nodes": [ - 3365 + 3544 ], "__typename": [ 78 @@ -78845,7 +81484,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3368 + 3547 ], "__typename": [ 78 @@ -78853,13 +81492,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3386 + 3565 ], "distinct": [ 3 ], "filter": [ - 3374 + 3553 ], "predicate": [ 39 @@ -78870,13 +81509,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3372 + 3551 ], "count": [ 38, { "columns": [ - 3386, + 3565, "[player_utility_select_column!]" ], "distinct": [ @@ -78885,31 +81524,31 @@ export default { } ], "max": [ - 3378 + 3557 ], "min": [ - 3380 + 3559 ], "stddev": [ - 3388 + 3567 ], "stddev_pop": [ - 3390 + 3569 ], "stddev_samp": [ - 3392 + 3571 ], "sum": [ - 3396 + 3575 ], "var_pop": [ - 3400 + 3579 ], "var_samp": [ - 3402 + 3581 ], "variance": [ - 3404 + 3583 ], "__typename": [ 78 @@ -78917,37 +81556,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3373 + 3552 ], "count": [ - 2481 + 2660 ], "max": [ - 3379 + 3558 ], "min": [ - 3381 + 3560 ], "stddev": [ - 3389 + 3568 ], "stddev_pop": [ - 3391 + 3570 ], "stddev_samp": [ - 3393 + 3572 ], "sum": [ - 3397 + 3576 ], "var_pop": [ - 3401 + 3580 ], "var_samp": [ - 3403 + 3582 ], "variance": [ - 3405 + 3584 ], "__typename": [ 78 @@ -78955,10 +81594,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3377 + 3556 ], "on_conflict": [ - 3383 + 3562 ], "__typename": [ 78 @@ -78977,10 +81616,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -78988,13 +81627,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3374 + 3553 ], "_not": [ - 3374 + 3553 ], "_or": [ - 3374 + 3553 ], "attacker_location_coordinates": [ 80 @@ -79003,31 +81642,31 @@ export default { 182 ], "deleted_at": [ - 4025 + 4204 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "round": [ 39 ], "time": [ - 4025 + 4204 ], "type": [ - 1146 + 1166 ], "__typename": [ 78 @@ -79053,31 +81692,31 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -79091,19 +81730,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -79111,25 +81750,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79143,19 +81782,19 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -79163,25 +81802,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79192,7 +81831,7 @@ export default { 38 ], "returning": [ - 3365 + 3544 ], "__typename": [ 78 @@ -79200,13 +81839,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3375 + 3554 ], "update_columns": [ - 3398 + 3577 ], "where": [ - 3374 + 3553 ], "__typename": [ 78 @@ -79214,37 +81853,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2481 + 2660 ], "attacker_steam_id": [ - 2481 + 2660 ], "deleted_at": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "round": [ - 2481 + 2660 ], "time": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79255,10 +81894,10 @@ export default { 180 ], "match_map_id": [ - 4462 + 4641 ], "time": [ - 4024 + 4203 ], "__typename": [ 78 @@ -79273,22 +81912,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -79307,10 +81946,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79329,10 +81968,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79351,10 +81990,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79362,7 +82001,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3395 + 3574 ], "ordering": [ 236 @@ -79379,22 +82018,22 @@ export default { 180 ], "deleted_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 ], "time": [ - 4024 + 4203 ], "type": [ - 1145 + 1165 ], "__typename": [ 78 @@ -79413,10 +82052,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79425,13 +82064,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3376 + 3555 ], "_set": [ - 3387 + 3566 ], "where": [ - 3374 + 3553 ], "__typename": [ 78 @@ -79450,10 +82089,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79472,10 +82111,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79494,10 +82133,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79517,7 +82156,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -79537,10 +82176,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3410 + 3589 ], "nodes": [ - 3406 + 3585 ], "__typename": [ 78 @@ -79548,7 +82187,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3409 + 3588 ], "__typename": [ 78 @@ -79556,13 +82195,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3422 + 3601 ], "distinct": [ 3 ], "filter": [ - 3415 + 3594 ], "predicate": [ 39 @@ -79573,13 +82212,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3413 + 3592 ], "count": [ 38, { "columns": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -79588,31 +82227,31 @@ export default { } ], "max": [ - 3417 + 3596 ], "min": [ - 3419 + 3598 ], "stddev": [ - 3423 + 3602 ], "stddev_pop": [ - 3425 + 3604 ], "stddev_samp": [ - 3427 + 3606 ], "sum": [ - 3431 + 3610 ], "var_pop": [ - 3433 + 3612 ], "var_samp": [ - 3435 + 3614 ], "variance": [ - 3437 + 3616 ], "__typename": [ 78 @@ -79620,37 +82259,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3414 + 3593 ], "count": [ - 2481 + 2660 ], "max": [ - 3418 + 3597 ], "min": [ - 3420 + 3599 ], "stddev": [ - 3424 + 3603 ], "stddev_pop": [ - 3426 + 3605 ], "stddev_samp": [ - 3428 + 3607 ], "sum": [ - 3432 + 3611 ], "var_pop": [ - 3434 + 3613 ], "var_samp": [ - 3436 + 3615 ], "variance": [ - 3438 + 3617 ], "__typename": [ 78 @@ -79658,7 +82297,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3416 + 3595 ], "__typename": [ 78 @@ -79692,25 +82331,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79718,13 +82357,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3415 + 3594 ], "_not": [ - 3415 + 3594 ], "_or": [ - 3415 + 3594 ], "first_bullet_hits": [ 39 @@ -79739,7 +82378,7 @@ export default { 39 ], "match_id": [ - 4464 + 4643 ], "shots": [ 39 @@ -79771,7 +82410,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -79803,7 +82442,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -79823,31 +82462,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79867,7 +82506,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -79887,31 +82526,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79919,31 +82558,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "weapon_class": [ - 2481 + 2660 ], "__typename": [ 78 @@ -79978,25 +82617,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80030,25 +82669,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80082,25 +82721,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80108,7 +82747,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3430 + 3609 ], "ordering": [ 236 @@ -80131,7 +82770,7 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "shots": [ 38 @@ -80177,25 +82816,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80229,25 +82868,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80281,25 +82920,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80333,25 +82972,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2481 + 2660 ], "first_bullet_shots": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "hits_spotted": [ - 2481 + 2660 ], "shots": [ - 2481 + 2660 ], "shots_spotted": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -80403,10 +83042,10 @@ export default { } ], "aim_weapon_stats": [ - 2578, + 2757, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80416,19 +83055,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "aim_weapon_stats_aggregate": [ - 2579, + 2758, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -80438,19 +83077,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -80460,19 +83099,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -80482,19 +83121,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "assited_by_players": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -80504,19 +83143,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "assited_by_players_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -80526,11 +83165,11 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], @@ -80538,10 +83177,10 @@ export default { 78 ], "coach_lineups": [ - 1976, + 2155, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -80551,19 +83190,19 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "coach_lineups_aggregate": [ - 1977, + 2156, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -80573,11 +83212,11 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], @@ -80585,19 +83224,19 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_lobby_id": [ - 4462 + 4641 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -80607,19 +83246,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "damage_dealt_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -80629,19 +83268,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "damage_taken": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -80651,19 +83290,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "damage_taken_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -80673,11 +83312,11 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], @@ -80685,10 +83324,10 @@ export default { 38 ], "deaths": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -80698,19 +83337,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "deaths_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -80720,11 +83359,11 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], @@ -80776,7 +83415,7 @@ export default { } ], "elo": [ - 1352, + 1531, { "path": [ 78 @@ -80784,10 +83423,10 @@ export default { } ], "elo_history": [ - 4788, + 5018, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -80797,19 +83436,19 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "elo_history_aggregate": [ - 4789, + 5019, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -80819,11 +83458,11 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], @@ -80837,10 +83476,10 @@ export default { 78 ], "faceit_rank_history": [ - 2750, + 2929, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80850,19 +83489,19 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], "faceit_rank_history_aggregate": [ - 2751, + 2930, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -80872,11 +83511,11 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], @@ -80884,16 +83523,16 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -80903,19 +83542,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "flashed_by_players_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -80925,19 +83564,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "flashed_players": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -80947,19 +83586,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "flashed_players_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -80969,19 +83608,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "friends": [ - 2356, + 2535, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -80991,19 +83630,19 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], "friends_aggregate": [ - 2357, + 2536, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -81013,11 +83652,11 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], @@ -81025,10 +83664,10 @@ export default { 38 ], "invited_players": [ - 3698, + 3877, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -81038,19 +83677,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "invited_players_aggregate": [ - 3699, + 3878, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -81060,11 +83699,11 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], @@ -81087,10 +83726,10 @@ export default { 3 ], "kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -81100,19 +83739,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -81122,19 +83761,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "kills_by_weapons": [ - 2848, + 3027, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81144,19 +83783,19 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], "kills_by_weapons_aggregate": [ - 2849, + 3028, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -81166,11 +83805,11 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], @@ -81178,16 +83817,16 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "lobby_players": [ - 1750, + 1929, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -81197,19 +83836,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "lobby_players_aggregate": [ - 1751, + 1930, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -81219,11 +83858,11 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], @@ -81240,10 +83879,10 @@ export default { 38 ], "match_map_hltv": [ - 4893, + 5123, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81253,19 +83892,19 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "match_map_hltv_aggregate": [ - 4894, + 5124, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -81275,19 +83914,19 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "match_map_stats": [ - 2945, + 3124, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81297,19 +83936,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "match_map_stats_aggregate": [ - 2946, + 3125, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -81319,19 +83958,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "match_stats": [ - 3004, + 3183, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81341,19 +83980,19 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "match_stats_aggregate": [ - 3005, + 3184, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -81363,19 +84002,19 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -81385,22 +84024,22 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matchmaking_cooldown": [ - 4024 + 4203 ], "multi_kills": [ - 4984, + 5214, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81410,19 +84049,19 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], "multi_kills_aggregate": [ - 4985, + 5215, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -81432,11 +84071,11 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], @@ -81447,10 +84086,10 @@ export default { 3 ], "notifications": [ - 2429, + 2608, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -81460,19 +84099,19 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "notifications_aggregate": [ - 2430, + 2609, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -81482,19 +84121,19 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -81504,19 +84143,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -81526,19 +84165,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "owned_teams": [ - 3981, + 4160, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -81548,19 +84187,19 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "owned_teams_aggregate": [ - 3982, + 4161, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -81570,16 +84209,16 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "peak_elo": [ - 1352, + 1531, { "path": [ 78 @@ -81587,10 +84226,10 @@ export default { } ], "pending_match_imports": [ - 2482, + 2661, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81600,19 +84239,19 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "pending_match_imports_aggregate": [ - 2483, + 2662, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -81622,19 +84261,19 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "player_lineup": [ - 1931, + 2110, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81644,19 +84283,19 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "player_lineup_aggregate": [ - 1932, + 2111, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -81666,19 +84305,19 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "player_unused_utilities": [ - 3324, + 3503, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81688,19 +84327,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utilities_aggregate": [ - 3325, + 3504, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -81710,11 +84349,11 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], @@ -81722,10 +84361,10 @@ export default { 38 ], "premier_rank_history": [ - 3096, + 3275, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81735,19 +84374,19 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "premier_rank_history_aggregate": [ - 3097, + 3276, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -81757,31 +84396,31 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 ], "role": [ - 881 + 901 ], "roster_image_url": [ 78 ], "sanctions": [ - 3137, + 3316, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -81791,19 +84430,19 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "sanctions_aggregate": [ - 3138, + 3317, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -81813,19 +84452,19 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "season_stats": [ - 3178, + 3357, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -81835,19 +84474,19 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "season_stats_aggregate": [ - 3179, + 3358, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -81857,11 +84496,11 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], @@ -81869,19 +84508,19 @@ export default { 3 ], "stats": [ - 3237 + 3416 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "team_invites": [ - 3698, + 3877, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -81891,19 +84530,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_invites_aggregate": [ - 3699, + 3878, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -81913,19 +84552,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_members": [ - 3739, + 3918, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -81935,19 +84574,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_members_aggregate": [ - 3740, + 3919, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -81957,19 +84596,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "teams": [ - 3981, + 4160, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -81979,11 +84618,11 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], @@ -81991,10 +84630,10 @@ export default { 38 ], "tournament_organizers": [ - 4072, + 4251, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82004,19 +84643,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4252, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -82026,19 +84665,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_rosters": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82048,19 +84687,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_rosters_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -82070,19 +84709,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_trophies": [ - 4329, + 4508, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82092,19 +84731,19 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4509, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -82114,19 +84753,19 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournaments": [ - 4416, + 4595, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -82136,19 +84775,19 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_aggregate": [ - 4417, + 4596, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -82158,19 +84797,19 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "utility_thrown": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -82180,19 +84819,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "utility_thrown_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -82202,11 +84841,11 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], @@ -82217,10 +84856,10 @@ export default { 3 ], "weapon_stats": [ - 3406, + 3585, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82230,19 +84869,19 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], "weapon_stats_aggregate": [ - 3407, + 3586, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -82252,11 +84891,11 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], @@ -82278,10 +84917,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3441 + 3620 ], "nodes": [ - 3439 + 3618 ], "__typename": [ 78 @@ -82289,13 +84928,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3442 + 3621 ], "count": [ 38, { "columns": [ - 3454, + 3633, "[players_select_column!]" ], "distinct": [ @@ -82304,31 +84943,31 @@ export default { } ], "max": [ - 3447 + 3626 ], "min": [ - 3448 + 3627 ], "stddev": [ - 3456 + 3635 ], "stddev_pop": [ - 3457 + 3636 ], "stddev_samp": [ - 3458 + 3637 ], "sum": [ - 3461 + 3640 ], "var_pop": [ - 3464 + 3643 ], "var_samp": [ - 3465 + 3644 ], "variance": [ - 3466 + 3645 ], "__typename": [ 78 @@ -82389,13 +85028,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3443 + 3622 ], "_not": [ - 3443 + 3622 ], "_or": [ - 3443 + 3622 ], "abandoned_matches": [ 120 @@ -82404,64 +85043,64 @@ export default { 113 ], "aim_weapon_stats": [ - 2587 + 2766 ], "aim_weapon_stats_aggregate": [ - 2580 + 2759 ], "assists": [ - 2630 + 2809 ], "assists_aggregate": [ - 2621 + 2800 ], "assited_by_players": [ - 2630 + 2809 ], "assited_by_players_aggregate": [ - 2621 + 2800 ], "avatar_url": [ 80 ], "coach_lineups": [ - 1985 + 2164 ], "coach_lineups_aggregate": [ - 1978 + 2157 ], "country": [ 80 ], "created_at": [ - 4025 + 4204 ], "current_lobby_id": [ - 4464 + 4643 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2691 + 2870 ], "damage_dealt_aggregate": [ - 2684 + 2863 ], "damage_taken": [ - 2691 + 2870 ], "damage_taken_aggregate": [ - 2684 + 2863 ], "days_since_last_ban": [ 39 ], "deaths": [ - 2847 + 3026 ], "deaths_aggregate": [ - 2838 + 3017 ], "discord_id": [ 80 @@ -82473,13 +85112,13 @@ export default { 311 ], "elo": [ - 1354 + 1533 ], "elo_history": [ - 4807 + 5037 ], "elo_history_aggregate": [ - 4790 + 5020 ], "faceit_elo": [ 39 @@ -82491,46 +85130,46 @@ export default { 80 ], "faceit_rank_history": [ - 2759 + 2938 ], "faceit_rank_history_aggregate": [ - 2752 + 2931 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4025 + 4204 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 2802 + 2981 ], "flashed_by_players_aggregate": [ - 2793 + 2972 ], "flashed_players": [ - 2802 + 2981 ], "flashed_players_aggregate": [ - 2793 + 2972 ], "friends": [ - 2368 + 2547 ], "friends_aggregate": [ - 2358 + 2537 ], "game_ban_count": [ 39 ], "invited_players": [ - 3707 + 3886 ], "invited_players_aggregate": [ - 3700 + 3879 ], "is_banned": [ 4 @@ -82551,31 +85190,31 @@ export default { 4 ], "kills": [ - 2847 + 3026 ], "kills_aggregate": [ - 2838 + 3017 ], "kills_by_weapons": [ - 2857 + 3036 ], "kills_by_weapons_aggregate": [ - 2850 + 3029 ], "language": [ 80 ], "last_read_news_at": [ - 4025 + 4204 ], "last_sign_in_at": [ - 4025 + 4204 ], "lobby_players": [ - 1761 + 1940 ], "lobby_players_aggregate": [ - 1752 + 1931 ], "losses": [ 39 @@ -82590,34 +85229,34 @@ export default { 39 ], "match_map_hltv": [ - 4902 + 5132 ], "match_map_hltv_aggregate": [ - 4895 + 5125 ], "match_map_stats": [ - 2954 + 3133 ], "match_map_stats_aggregate": [ - 2947 + 3126 ], "match_stats": [ - 3013 + 3192 ], "match_stats_aggregate": [ - 3006 + 3185 ], "matches": [ - 2305 + 2484 ], "matchmaking_cooldown": [ - 4025 + 4204 ], "multi_kills": [ - 4993 + 5223 ], "multi_kills_aggregate": [ - 4986 + 5216 ], "name": [ 80 @@ -82626,136 +85265,136 @@ export default { 4 ], "notifications": [ - 2441 + 2620 ], "notifications_aggregate": [ - 2431 + 2610 ], "objectives": [ - 3046 + 3225 ], "objectives_aggregate": [ - 3039 + 3218 ], "owned_teams": [ - 3990 + 4169 ], "owned_teams_aggregate": [ - 3983 + 4162 ], "peak_elo": [ - 1354 + 1533 ], "pending_match_imports": [ - 2491 + 2670 ], "pending_match_imports_aggregate": [ - 2484 + 2663 ], "player_lineup": [ - 1942 + 2121 ], "player_lineup_aggregate": [ - 1933 + 2112 ], "player_unused_utilities": [ - 3333 + 3512 ], "player_unused_utilities_aggregate": [ - 3326 + 3505 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3105 + 3284 ], "premier_rank_history_aggregate": [ - 3098 + 3277 ], "premier_rank_updated_at": [ - 4025 + 4204 ], "profile_url": [ 80 ], "role": [ - 882 + 902 ], "roster_image_url": [ 80 ], "sanctions": [ - 3146 + 3325 ], "sanctions_aggregate": [ - 3139 + 3318 ], "season_stats": [ - 3197 + 3376 ], "season_stats_aggregate": [ - 3180 + 3359 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3241 + 3420 ], "steam_bans_checked_at": [ - 4025 + 4204 ], "steam_id": [ 182 ], "team_invites": [ - 3707 + 3886 ], "team_invites_aggregate": [ - 3700 + 3879 ], "team_members": [ - 3750 + 3929 ], "team_members_aggregate": [ - 3741 + 3920 ], "teams": [ - 3990 + 4169 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4081 + 4260 ], "tournament_organizers_aggregate": [ - 4074 + 4253 ], "tournament_rosters": [ - 4255 + 4434 ], "tournament_rosters_aggregate": [ - 4248 + 4427 ], "tournament_trophies": [ - 4340 + 4519 ], "tournament_trophies_aggregate": [ - 4331 + 4510 ], "tournaments": [ - 4427 + 4606 ], "tournaments_aggregate": [ - 4418 + 4597 ], "utility_thrown": [ - 3374 + 3553 ], "utility_thrown_aggregate": [ - 3367 + 3546 ], "vac_ban_count": [ 39 @@ -82764,10 +85403,10 @@ export default { 4 ], "weapon_stats": [ - 3415 + 3594 ], "weapon_stats_aggregate": [ - 3408 + 3587 ], "wins": [ 39 @@ -82817,40 +85456,40 @@ export default { 117 ], "aim_weapon_stats": [ - 2584 + 2763 ], "assists": [ - 2627 + 2806 ], "assited_by_players": [ - 2627 + 2806 ], "avatar_url": [ 78 ], "coach_lineups": [ - 1982 + 2161 ], "country": [ 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2688 + 2867 ], "damage_taken": [ - 2688 + 2867 ], "days_since_last_ban": [ 38 ], "deaths": [ - 2844 + 3023 ], "discord_id": [ 78 @@ -82859,7 +85498,7 @@ export default { 317 ], "elo_history": [ - 4804 + 5034 ], "faceit_elo": [ 38 @@ -82871,61 +85510,61 @@ export default { 78 ], "faceit_rank_history": [ - 2756 + 2935 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2799 + 2978 ], "flashed_players": [ - 2799 + 2978 ], "friends": [ - 2365 + 2544 ], "game_ban_count": [ 38 ], "invited_players": [ - 3704 + 3883 ], "kills": [ - 2844 + 3023 ], "kills_by_weapons": [ - 2854 + 3033 ], "language": [ 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "lobby_players": [ - 1758 + 1937 ], "match_map_hltv": [ - 4899 + 5129 ], "match_map_stats": [ - 2951 + 3130 ], "match_stats": [ - 3010 + 3189 ], "multi_kills": [ - 4990 + 5220 ], "name": [ 78 @@ -82934,79 +85573,79 @@ export default { 3 ], "notifications": [ - 2438 + 2617 ], "objectives": [ - 3043 + 3222 ], "owned_teams": [ - 3987 + 4166 ], "pending_match_imports": [ - 2488 + 2667 ], "player_lineup": [ - 1939 + 2118 ], "player_unused_utilities": [ - 3330 + 3509 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3102 + 3281 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 ], "role": [ - 881 + 901 ], "roster_image_url": [ 78 ], "sanctions": [ - 3143 + 3322 ], "season_stats": [ - 3194 + 3373 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3248 + 3427 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 ], "team_invites": [ - 3704 + 3883 ], "team_members": [ - 3747 + 3926 ], "tournament_organizers": [ - 4078 + 4257 ], "tournament_rosters": [ - 4252 + 4431 ], "tournament_trophies": [ - 4337 + 4516 ], "tournaments": [ - 4424 + 4603 ], "utility_thrown": [ - 3371 + 3550 ], "vac_ban_count": [ 38 @@ -83015,7 +85654,7 @@ export default { 3 ], "weapon_stats": [ - 3412 + 3591 ], "__typename": [ 78 @@ -83029,10 +85668,10 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_lobby_id": [ - 4462 + 4641 ], "custom_avatar_url": [ 78 @@ -83056,7 +85695,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -83068,10 +85707,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "losses": [ 38 @@ -83086,7 +85725,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4203 ], "name": [ 78 @@ -83095,7 +85734,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -83104,7 +85743,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -83139,10 +85778,10 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "current_lobby_id": [ - 4462 + 4641 ], "custom_avatar_url": [ 78 @@ -83166,7 +85805,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -83178,10 +85817,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "losses": [ 38 @@ -83196,7 +85835,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4024 + 4203 ], "name": [ 78 @@ -83205,7 +85844,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 @@ -83214,7 +85853,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -83246,7 +85885,7 @@ export default { 38 ], "returning": [ - 3439 + 3618 ], "__typename": [ 78 @@ -83254,10 +85893,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3446 + 3625 ], "on_conflict": [ - 3451 + 3630 ], "__typename": [ 78 @@ -83265,13 +85904,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3444 + 3623 ], "update_columns": [ - 3462 + 3641 ], "where": [ - 3443 + 3622 ], "__typename": [ 78 @@ -83282,268 +85921,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2583 + 2762 ], "assists_aggregate": [ - 2626 + 2805 ], "assited_by_players_aggregate": [ - 2626 + 2805 ], "avatar_url": [ - 2481 + 2660 ], "coach_lineups_aggregate": [ - 1981 + 2160 ], "country": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "current_lobby_id": [ - 2481 + 2660 ], "custom_avatar_url": [ - 2481 + 2660 ], "damage_dealt_aggregate": [ - 2687 + 2866 ], "damage_taken_aggregate": [ - 2687 + 2866 ], "days_since_last_ban": [ - 2481 + 2660 ], "deaths_aggregate": [ - 2843 + 3022 ], "discord_id": [ - 2481 + 2660 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2481 + 2660 ], "elo_history_aggregate": [ - 4803 + 5033 ], "faceit_elo": [ - 2481 + 2660 ], "faceit_nickname": [ - 2481 + 2660 ], "faceit_player_id": [ - 2481 + 2660 ], "faceit_rank_history_aggregate": [ - 2755 + 2934 ], "faceit_skill_level": [ - 2481 + 2660 ], "faceit_updated_at": [ - 2481 + 2660 ], "faceit_url": [ - 2481 + 2660 ], "flashed_by_players_aggregate": [ - 2798 + 2977 ], "flashed_players_aggregate": [ - 2798 + 2977 ], "friends_aggregate": [ - 2363 + 2542 ], "game_ban_count": [ - 2481 + 2660 ], "invited_players_aggregate": [ - 3703 + 3882 ], "is_banned": [ - 2481 + 2660 ], "is_gagged": [ - 2481 + 2660 ], "is_in_another_match": [ - 2481 + 2660 ], "is_in_draft": [ - 2481 + 2660 ], "is_in_lobby": [ - 2481 + 2660 ], "is_muted": [ - 2481 + 2660 ], "kills_aggregate": [ - 2843 + 3022 ], "kills_by_weapons_aggregate": [ - 2853 + 3032 ], "language": [ - 2481 + 2660 ], "last_read_news_at": [ - 2481 + 2660 ], "last_sign_in_at": [ - 2481 + 2660 ], "lobby_players_aggregate": [ - 1757 + 1936 ], "losses": [ - 2481 + 2660 ], "losses_competitive": [ - 2481 + 2660 ], "losses_duel": [ - 2481 + 2660 ], "losses_wingman": [ - 2481 + 2660 ], "match_map_hltv_aggregate": [ - 4898 + 5128 ], "match_map_stats_aggregate": [ - 2950 + 3129 ], "match_stats_aggregate": [ - 3009 + 3188 ], "matches_aggregate": [ - 2301 + 2480 ], "matchmaking_cooldown": [ - 2481 + 2660 ], "multi_kills_aggregate": [ - 4989 + 5219 ], "name": [ - 2481 + 2660 ], "name_registered": [ - 2481 + 2660 ], "notifications_aggregate": [ - 2436 + 2615 ], "objectives_aggregate": [ - 3042 + 3221 ], "owned_teams_aggregate": [ - 3986 + 4165 ], "peak_elo": [ - 2481 + 2660 ], "pending_match_imports_aggregate": [ - 2487 + 2666 ], "player_lineup_aggregate": [ - 1938 + 2117 ], "player_unused_utilities_aggregate": [ - 3329 + 3508 ], "premier_rank": [ - 2481 + 2660 ], "premier_rank_history_aggregate": [ - 3101 + 3280 ], "premier_rank_updated_at": [ - 2481 + 2660 ], "profile_url": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "sanctions_aggregate": [ - 3142 + 3321 ], "season_stats_aggregate": [ - 3193 + 3372 ], "show_match_ready_modal": [ - 2481 + 2660 ], "stats": [ - 3250 + 3429 ], "steam_bans_checked_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_invites_aggregate": [ - 3703 + 3882 ], "team_members_aggregate": [ - 3746 + 3925 ], "teams_aggregate": [ - 3986 + 4165 ], "total_matches": [ - 2481 + 2660 ], "tournament_organizers_aggregate": [ - 4077 + 4256 ], "tournament_rosters_aggregate": [ - 4251 + 4430 ], "tournament_trophies_aggregate": [ - 4336 + 4515 ], "tournaments_aggregate": [ - 4423 + 4602 ], "utility_thrown_aggregate": [ - 3370 + 3549 ], "vac_ban_count": [ - 2481 + 2660 ], "vac_banned": [ - 2481 + 2660 ], "weapon_stats_aggregate": [ - 3411 + 3590 ], "wins": [ - 2481 + 2660 ], "wins_competitive": [ - 2481 + 2660 ], "wins_duel": [ - 2481 + 2660 ], "wins_wingman": [ - 2481 + 2660 ], "__typename": [ 78 @@ -83566,7 +86205,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -83590,7 +86229,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -83602,10 +86241,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -83617,13 +86256,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 ], "role": [ - 881 + 901 ], "roster_image_url": [ 78 @@ -83632,7 +86271,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -83808,7 +86447,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3460 + 3639 ], "ordering": [ 236 @@ -83825,7 +86464,7 @@ export default { 78 ], "created_at": [ - 4024 + 4203 ], "custom_avatar_url": [ 78 @@ -83849,7 +86488,7 @@ export default { 38 ], "faceit_updated_at": [ - 4024 + 4203 ], "faceit_url": [ 78 @@ -83861,10 +86500,10 @@ export default { 78 ], "last_read_news_at": [ - 4024 + 4203 ], "last_sign_in_at": [ - 4024 + 4203 ], "name": [ 78 @@ -83876,13 +86515,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4024 + 4203 ], "profile_url": [ 78 ], "role": [ - 881 + 901 ], "roster_image_url": [ 78 @@ -83891,7 +86530,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -83962,13 +86601,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3445 + 3624 ], "_set": [ - 3455 + 3634 ], "where": [ - 3443 + 3622 ], "__typename": [ 78 @@ -84138,10 +86777,10 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "runtime": [ - 901 + 921 ], "version": [ 78 @@ -84152,10 +86791,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3469 + 3648 ], "nodes": [ - 3467 + 3646 ], "__typename": [ 78 @@ -84163,13 +86802,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3470 + 3649 ], "count": [ 38, { "columns": [ - 3481, + 3660, "[plugin_versions_select_column!]" ], "distinct": [ @@ -84178,31 +86817,31 @@ export default { } ], "max": [ - 3475 + 3654 ], "min": [ - 3476 + 3655 ], "stddev": [ - 3483 + 3662 ], "stddev_pop": [ - 3484 + 3663 ], "stddev_samp": [ - 3485 + 3664 ], "sum": [ - 3488 + 3667 ], "var_pop": [ - 3491 + 3670 ], "var_samp": [ - 3492 + 3671 ], "variance": [ - 3493 + 3672 ], "__typename": [ 78 @@ -84218,22 +86857,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3471 + 3650 ], "_not": [ - 3471 + 3650 ], "_or": [ - 3471 + 3650 ], "min_game_build_id": [ 39 ], "published_at": [ - 4025 + 4204 ], "runtime": [ - 902 + 922 ], "version": [ 80 @@ -84256,10 +86895,10 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "runtime": [ - 901 + 921 ], "version": [ 78 @@ -84273,7 +86912,7 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "version": [ 78 @@ -84287,7 +86926,7 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "version": [ 78 @@ -84301,7 +86940,7 @@ export default { 38 ], "returning": [ - 3467 + 3646 ], "__typename": [ 78 @@ -84309,13 +86948,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3472 + 3651 ], "update_columns": [ - 3489 + 3668 ], "where": [ - 3471 + 3650 ], "__typename": [ 78 @@ -84323,16 +86962,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2481 + 2660 ], "published_at": [ - 2481 + 2660 ], "runtime": [ - 2481 + 2660 ], "version": [ - 2481 + 2660 ], "__typename": [ 78 @@ -84340,7 +86979,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 901 + 921 ], "version": [ 78 @@ -84355,10 +86994,10 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "runtime": [ - 901 + 921 ], "version": [ 78 @@ -84393,7 +87032,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3487 + 3666 ], "ordering": [ 236 @@ -84407,10 +87046,10 @@ export default { 38 ], "published_at": [ - 4024 + 4203 ], "runtime": [ - 901 + 921 ], "version": [ 78 @@ -84430,13 +87069,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3473 + 3652 ], "_set": [ - 3482 + 3661 ], "where": [ - 3471 + 3650 ], "__typename": [ 78 @@ -84468,7 +87107,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -84476,7 +87115,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -84492,7 +87131,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -84500,16 +87139,16 @@ export default { }, "seasons": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "needs_rebuild": [ 3 @@ -84518,10 +87157,10 @@ export default { 38 ], "player_season_stats": [ - 3178, + 3357, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -84531,19 +87170,19 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "player_season_stats_aggregate": [ - 3179, + 3358, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -84553,16 +87192,16 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84570,10 +87209,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3500 + 3679 ], "nodes": [ - 3498 + 3677 ], "__typename": [ 78 @@ -84581,13 +87220,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3501 + 3680 ], "count": [ 38, { "columns": [ - 3513, + 3692, "[seasons_select_column!]" ], "distinct": [ @@ -84596,31 +87235,31 @@ export default { } ], "max": [ - 3506 + 3685 ], "min": [ - 3507 + 3686 ], "stddev": [ - 3515 + 3694 ], "stddev_pop": [ - 3516 + 3695 ], "stddev_samp": [ - 3517 + 3696 ], "sum": [ - 3520 + 3699 ], "var_pop": [ - 3523 + 3702 ], "var_samp": [ - 3524 + 3703 ], "variance": [ - 3525 + 3704 ], "__typename": [ 78 @@ -84636,25 +87275,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3502 + 3681 ], "_not": [ - 3502 + 3681 ], "_or": [ - 3502 + 3681 ], "created_at": [ - 4025 + 4204 ], "description": [ 80 ], "ends_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "needs_rebuild": [ 4 @@ -84663,13 +87302,13 @@ export default { 39 ], "player_season_stats": [ - 3197 + 3376 ], "player_season_stats_aggregate": [ - 3180 + 3359 ], "starts_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -84686,16 +87325,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "needs_rebuild": [ 3 @@ -84704,10 +87343,10 @@ export default { 38 ], "player_season_stats": [ - 3194 + 3373 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84715,22 +87354,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "number": [ 38 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84738,22 +87377,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "number": [ 38 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84764,7 +87403,7 @@ export default { 38 ], "returning": [ - 3498 + 3677 ], "__typename": [ 78 @@ -84772,10 +87411,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3505 + 3684 ], "on_conflict": [ - 3510 + 3689 ], "__typename": [ 78 @@ -84783,13 +87422,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3503 + 3682 ], "update_columns": [ - 3521 + 3700 ], "where": [ - 3502 + 3681 ], "__typename": [ 78 @@ -84797,28 +87436,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2481 + 2660 ], "description": [ - 2481 + 2660 ], "ends_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "needs_rebuild": [ - 2481 + 2660 ], "number": [ - 2481 + 2660 ], "player_season_stats_aggregate": [ - 3193 + 3372 ], "starts_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -84826,7 +87465,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -84835,16 +87474,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "needs_rebuild": [ 3 @@ -84853,7 +87492,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84885,7 +87524,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3519 + 3698 ], "ordering": [ 236 @@ -84896,16 +87535,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "description": [ 78 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "needs_rebuild": [ 3 @@ -84914,7 +87553,7 @@ export default { 38 ], "starts_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -84931,13 +87570,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3504 + 3683 ], "_set": [ - 3514 + 3693 ], "where": [ - 3502 + 3681 ], "__typename": [ 78 @@ -84975,10 +87614,10 @@ export default { 78 ], "game_server_nodes": [ - 1229, + 1407, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -84988,19 +87627,19 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1408, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -85010,11 +87649,11 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], @@ -85042,10 +87681,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3528 + 3707 ], "nodes": [ - 3526 + 3705 ], "__typename": [ 78 @@ -85053,13 +87692,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3529 + 3708 ], "count": [ 38, { "columns": [ - 3540, + 3719, "[server_regions_select_column!]" ], "distinct": [ @@ -85068,31 +87707,31 @@ export default { } ], "max": [ - 3533 + 3712 ], "min": [ - 3534 + 3713 ], "stddev": [ - 3542 + 3721 ], "stddev_pop": [ - 3543 + 3722 ], "stddev_samp": [ - 3544 + 3723 ], "sum": [ - 3547 + 3726 ], "var_pop": [ - 3550 + 3729 ], "var_samp": [ - 3551 + 3730 ], "variance": [ - 3552 + 3731 ], "__typename": [ 78 @@ -85111,13 +87750,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3530 + 3709 ], "_not": [ - 3530 + 3709 ], "_or": [ - 3530 + 3709 ], "available_server_count": [ 39 @@ -85126,10 +87765,10 @@ export default { 80 ], "game_server_nodes": [ - 1241 + 1419 ], "game_server_nodes_aggregate": [ - 1231 + 1409 ], "has_node": [ 4 @@ -85159,7 +87798,7 @@ export default { 78 ], "game_server_nodes": [ - 1238 + 1416 ], "is_lan": [ 3 @@ -85219,7 +87858,7 @@ export default { 38 ], "returning": [ - 3526 + 3705 ], "__typename": [ 78 @@ -85227,10 +87866,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3532 + 3711 ], "on_conflict": [ - 3537 + 3716 ], "__typename": [ 78 @@ -85238,13 +87877,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3531 + 3710 ], "update_columns": [ - 3548 + 3727 ], "where": [ - 3530 + 3709 ], "__typename": [ 78 @@ -85252,31 +87891,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2481 + 2660 ], "description": [ - 2481 + 2660 ], "game_server_nodes_aggregate": [ - 1236 + 1414 ], "has_node": [ - 2481 + 2660 ], "is_lan": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "steam_relay": [ - 2481 + 2660 ], "total_server_count": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -85343,7 +87982,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3546 + 3725 ], "ordering": [ 236 @@ -85383,10 +88022,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3541 + 3720 ], "where": [ - 3530 + 3709 ], "__typename": [ 78 @@ -85427,7 +88066,7 @@ export default { }, "servers": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -85448,7 +88087,7 @@ export default { 78 ], "current_match": [ - 2296 + 2475 ], "enabled": [ 3 @@ -85457,7 +88096,7 @@ export default { 78 ], "game_server_node": [ - 1229 + 1407 ], "game_server_node_id": [ 78 @@ -85466,7 +88105,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_dedicated": [ 3 @@ -85475,10 +88114,10 @@ export default { 78 ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -85488,19 +88127,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_aggregate": [ - 2297, + 2476, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -85510,11 +88149,11 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], @@ -85522,10 +88161,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_runtime": [ - 901 + 921 ], "plugin_version": [ 78 @@ -85543,10 +88182,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "server_region": [ - 3526 + 3705 ], "steam_relay": [ 78 @@ -85555,10 +88194,10 @@ export default { 38 ], "type": [ - 982 + 1002 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -85566,10 +88205,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3559 + 3738 ], "nodes": [ - 3553 + 3732 ], "__typename": [ 78 @@ -85577,13 +88216,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3556 + 3735 ], "bool_or": [ - 3557 + 3736 ], "count": [ - 3558 + 3737 ], "__typename": [ 78 @@ -85591,13 +88230,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3578 + 3757 ], "distinct": [ 3 ], "filter": [ - 3564 + 3743 ], "predicate": [ 4 @@ -85608,13 +88247,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3579 + 3758 ], "distinct": [ 3 ], "filter": [ - 3564 + 3743 ], "predicate": [ 4 @@ -85625,13 +88264,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3577 + 3756 ], "distinct": [ 3 ], "filter": [ - 3564 + 3743 ], "predicate": [ 39 @@ -85642,13 +88281,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3562 + 3741 ], "count": [ 38, { "columns": [ - 3577, + 3756, "[servers_select_column!]" ], "distinct": [ @@ -85657,31 +88296,31 @@ export default { } ], "max": [ - 3568 + 3747 ], "min": [ - 3570 + 3749 ], "stddev": [ - 3581 + 3760 ], "stddev_pop": [ - 3583 + 3762 ], "stddev_samp": [ - 3585 + 3764 ], "sum": [ - 3589 + 3768 ], "var_pop": [ - 3593 + 3772 ], "var_samp": [ - 3595 + 3774 ], "variance": [ - 3597 + 3776 ], "__typename": [ 78 @@ -85689,37 +88328,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3563 + 3742 ], "count": [ - 2481 + 2660 ], "max": [ - 3569 + 3748 ], "min": [ - 3571 + 3750 ], "stddev": [ - 3582 + 3761 ], "stddev_pop": [ - 3584 + 3763 ], "stddev_samp": [ - 3586 + 3765 ], "sum": [ - 3590 + 3769 ], "var_pop": [ - 3594 + 3773 ], "var_samp": [ - 3596 + 3775 ], "variance": [ - 3598 + 3777 ], "__typename": [ 78 @@ -85727,10 +88366,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3567 + 3746 ], "on_conflict": [ - 3574 + 3753 ], "__typename": [ 78 @@ -85752,13 +88391,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -85766,16 +88405,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3564 + 3743 ], "_not": [ - 3564 + 3743 ], "_or": [ - 3564 + 3743 ], "api_password": [ - 4464 + 4643 ], "boot_status": [ 80 @@ -85796,7 +88435,7 @@ export default { 80 ], "current_match": [ - 2305 + 2484 ], "enabled": [ 4 @@ -85805,7 +88444,7 @@ export default { 80 ], "game_server_node": [ - 1241 + 1419 ], "game_server_node_id": [ 80 @@ -85814,7 +88453,7 @@ export default { 80 ], "id": [ - 4464 + 4643 ], "is_dedicated": [ 4 @@ -85823,19 +88462,19 @@ export default { 80 ], "matches": [ - 2305 + 2484 ], "matches_aggregate": [ - 2298 + 2477 ], "max_players": [ 39 ], "offline_at": [ - 4025 + 4204 ], "plugin_runtime": [ - 902 + 922 ], "plugin_version": [ 80 @@ -85853,10 +88492,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4464 + 4643 ], "server_region": [ - 3530 + 3709 ], "steam_relay": [ 80 @@ -85865,10 +88504,10 @@ export default { 39 ], "type": [ - 983 + 1003 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -85891,7 +88530,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -85906,7 +88545,7 @@ export default { 3 ], "current_match": [ - 2314 + 2493 ], "enabled": [ 3 @@ -85915,7 +88554,7 @@ export default { 78 ], "game_server_node": [ - 1253 + 1431 ], "game_server_node_id": [ 78 @@ -85924,7 +88563,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_dedicated": [ 3 @@ -85933,16 +88572,16 @@ export default { 78 ], "matches": [ - 2302 + 2481 ], "max_players": [ 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_runtime": [ - 901 + 921 ], "plugin_version": [ 78 @@ -85960,10 +88599,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "server_region": [ - 3536 + 3715 ], "steam_relay": [ 78 @@ -85972,10 +88611,10 @@ export default { 38 ], "type": [ - 982 + 1002 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -85983,7 +88622,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -86010,7 +88649,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "label": [ 78 @@ -86019,7 +88658,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_version": [ 78 @@ -86031,7 +88670,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "steam_relay": [ 78 @@ -86040,7 +88679,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -86048,58 +88687,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2481 + 2660 ], "boot_status": [ - 2481 + 2660 ], "boot_status_detail": [ - 2481 + 2660 ], "connect_password": [ - 2481 + 2660 ], "game": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "host": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "max_players": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "plugin_version": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "reserved_by_match_id": [ - 2481 + 2660 ], "steam_relay": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86107,7 +88746,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -86134,7 +88773,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "label": [ 78 @@ -86143,7 +88782,7 @@ export default { 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_version": [ 78 @@ -86155,7 +88794,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "steam_relay": [ 78 @@ -86164,7 +88803,7 @@ export default { 38 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -86172,58 +88811,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2481 + 2660 ], "boot_status": [ - 2481 + 2660 ], "boot_status_detail": [ - 2481 + 2660 ], "connect_password": [ - 2481 + 2660 ], "game": [ - 2481 + 2660 ], "game_server_node_id": [ - 2481 + 2660 ], "host": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "max_players": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "plugin_version": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "reserved_by_match_id": [ - 2481 + 2660 ], "steam_relay": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86234,7 +88873,7 @@ export default { 38 ], "returning": [ - 3553 + 3732 ], "__typename": [ 78 @@ -86242,10 +88881,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3567 + 3746 ], "on_conflict": [ - 3574 + 3753 ], "__typename": [ 78 @@ -86253,13 +88892,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3565 + 3744 ], "update_columns": [ - 3591 + 3770 ], "where": [ - 3564 + 3743 ], "__typename": [ 78 @@ -86267,97 +88906,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2481 + 2660 ], "boot_status": [ - 2481 + 2660 ], "boot_status_detail": [ - 2481 + 2660 ], "connect_password": [ - 2481 + 2660 ], "connected": [ - 2481 + 2660 ], "connection_link": [ - 2481 + 2660 ], "connection_string": [ - 2481 + 2660 ], "current_match": [ - 2316 + 2495 ], "enabled": [ - 2481 + 2660 ], "game": [ - 2481 + 2660 ], "game_server_node": [ - 1255 + 1433 ], "game_server_node_id": [ - 2481 + 2660 ], "host": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_dedicated": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "matches_aggregate": [ - 2301 + 2480 ], "max_players": [ - 2481 + 2660 ], "offline_at": [ - 2481 + 2660 ], "plugin_runtime": [ - 2481 + 2660 ], "plugin_version": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "rcon_password": [ - 2481 + 2660 ], "rcon_status": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "reserved_by_match_id": [ - 2481 + 2660 ], "server_region": [ - 3538 + 3717 ], "steam_relay": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86365,7 +89004,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -86376,7 +89015,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -86403,7 +89042,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_dedicated": [ 3 @@ -86415,10 +89054,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_runtime": [ - 901 + 921 ], "plugin_version": [ 78 @@ -86436,7 +89075,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "steam_relay": [ 78 @@ -86445,10 +89084,10 @@ export default { 38 ], "type": [ - 982 + 1002 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -86470,13 +89109,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86498,13 +89137,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86526,13 +89165,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86540,7 +89179,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3588 + 3767 ], "ordering": [ 236 @@ -86551,7 +89190,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4462 + 4641 ], "boot_status": [ 78 @@ -86578,7 +89217,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "is_dedicated": [ 3 @@ -86590,10 +89229,10 @@ export default { 38 ], "offline_at": [ - 4024 + 4203 ], "plugin_runtime": [ - 901 + 921 ], "plugin_version": [ 78 @@ -86611,7 +89250,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4462 + 4641 ], "steam_relay": [ 78 @@ -86620,10 +89259,10 @@ export default { 38 ], "type": [ - 982 + 1002 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -86645,13 +89284,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86660,13 +89299,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3566 + 3745 ], "_set": [ - 3580 + 3759 ], "where": [ - 3564 + 3743 ], "__typename": [ 78 @@ -86688,13 +89327,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86716,13 +89355,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86744,13 +89383,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2481 + 2660 ], "port": [ - 2481 + 2660 ], "tv_port": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86769,10 +89408,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3601 + 3780 ], "nodes": [ - 3599 + 3778 ], "__typename": [ 78 @@ -86783,7 +89422,7 @@ export default { 38, { "columns": [ - 3611, + 3790, "[settings_select_column!]" ], "distinct": [ @@ -86792,10 +89431,10 @@ export default { } ], "max": [ - 3605 + 3784 ], "min": [ - 3606 + 3785 ], "__typename": [ 78 @@ -86803,13 +89442,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3602 + 3781 ], "_not": [ - 3602 + 3781 ], "_or": [ - 3602 + 3781 ], "name": [ 80 @@ -86860,7 +89499,7 @@ export default { 38 ], "returning": [ - 3599 + 3778 ], "__typename": [ 78 @@ -86868,13 +89507,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3603 + 3782 ], "update_columns": [ - 3615 + 3794 ], "where": [ - 3602 + 3781 ], "__typename": [ 78 @@ -86882,10 +89521,10 @@ export default { }, "settings_order_by": { "name": [ - 2481 + 2660 ], "value": [ - 2481 + 2660 ], "__typename": [ 78 @@ -86913,7 +89552,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3614 + 3793 ], "ordering": [ 236 @@ -86936,10 +89575,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3612 + 3791 ], "where": [ - 3602 + 3781 ], "__typename": [ 78 @@ -86948,31 +89587,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3617 + 3796 ], "_gt": [ - 3617 + 3796 ], "_gte": [ - 3617 + 3796 ], "_in": [ - 3617 + 3796 ], "_is_null": [ 3 ], "_lt": [ - 3617 + 3796 ], "_lte": [ - 3617 + 3796 ], "_neq": [ - 3617 + 3796 ], "_nin": [ - 3617 + 3796 ], "__typename": [ 78 @@ -86980,16 +89619,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "node": [ - 1229 + 1407 ], "node_id": [ 78 @@ -86998,10 +89637,10 @@ export default { 78 ], "steam_account": [ - 3643 + 3822 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87009,10 +89648,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3623 + 3802 ], "nodes": [ - 3619 + 3798 ], "__typename": [ 78 @@ -87020,7 +89659,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3622 + 3801 ], "__typename": [ 78 @@ -87028,13 +89667,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3637 + 3816 ], "distinct": [ 3 ], "filter": [ - 3626 + 3805 ], "predicate": [ 39 @@ -87048,7 +89687,7 @@ export default { 38, { "columns": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -87057,10 +89696,10 @@ export default { } ], "max": [ - 3629 + 3808 ], "min": [ - 3631 + 3810 ], "__typename": [ 78 @@ -87068,13 +89707,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 3630 + 3809 ], "min": [ - 3632 + 3811 ], "__typename": [ 78 @@ -87082,10 +89721,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3628 + 3807 ], "on_conflict": [ - 3634 + 3813 ], "__typename": [ 78 @@ -87093,25 +89732,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3626 + 3805 ], "_not": [ - 3626 + 3805 ], "_or": [ - 3626 + 3805 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "k8s_job_name": [ 80 ], "node": [ - 1241 + 1419 ], "node_id": [ 80 @@ -87120,10 +89759,10 @@ export default { 80 ], "steam_account": [ - 3647 + 3826 ], "steam_account_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -87132,16 +89771,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 ], "node": [ - 1253 + 1431 ], "node_id": [ 78 @@ -87150,10 +89789,10 @@ export default { 78 ], "steam_account": [ - 3654 + 3833 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87161,10 +89800,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 @@ -87176,7 +89815,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87184,22 +89823,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "node_id": [ - 2481 + 2660 ], "purpose": [ - 2481 + 2660 ], "steam_account_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -87207,10 +89846,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 @@ -87222,7 +89861,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87230,22 +89869,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "node_id": [ - 2481 + 2660 ], "purpose": [ - 2481 + 2660 ], "steam_account_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -87256,7 +89895,7 @@ export default { 38 ], "returning": [ - 3619 + 3798 ], "__typename": [ 78 @@ -87264,13 +89903,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3627 + 3806 ], "update_columns": [ - 3641 + 3820 ], "where": [ - 3626 + 3805 ], "__typename": [ 78 @@ -87278,28 +89917,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "k8s_job_name": [ - 2481 + 2660 ], "node": [ - 1255 + 1433 ], "node_id": [ - 2481 + 2660 ], "purpose": [ - 2481 + 2660 ], "steam_account": [ - 3656 + 3835 ], "steam_account_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -87307,7 +89946,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87316,10 +89955,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 @@ -87331,7 +89970,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87339,7 +89978,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3640 + 3819 ], "ordering": [ 236 @@ -87350,10 +89989,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "k8s_job_name": [ 78 @@ -87365,7 +90004,7 @@ export default { 78 ], "steam_account_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87374,10 +90013,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3638 + 3817 ], "where": [ - 3626 + 3805 ], "__typename": [ 78 @@ -87385,10 +90024,10 @@ export default { }, "steam_accounts": { "claims": [ - 3619, + 3798, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87398,19 +90037,19 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "claims_aggregate": [ - 3620, + 3799, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -87420,25 +90059,25 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node": [ - 1229 + 1407 ], "last_node_id": [ 78 @@ -87456,7 +90095,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87467,10 +90106,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3645 + 3824 ], "nodes": [ - 3643 + 3822 ], "__typename": [ 78 @@ -87478,13 +90117,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3646 + 3825 ], "count": [ 38, { "columns": [ - 3658, + 3837, "[steam_accounts_select_column!]" ], "distinct": [ @@ -87493,31 +90132,31 @@ export default { } ], "max": [ - 3651 + 3830 ], "min": [ - 3652 + 3831 ], "stddev": [ - 3660 + 3839 ], "stddev_pop": [ - 3661 + 3840 ], "stddev_samp": [ - 3662 + 3841 ], "sum": [ - 3665 + 3844 ], "var_pop": [ - 3668 + 3847 ], "var_samp": [ - 3669 + 3848 ], "variance": [ - 3670 + 3849 ], "__typename": [ 78 @@ -87539,31 +90178,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3647 + 3826 ], "_not": [ - 3647 + 3826 ], "_or": [ - 3647 + 3826 ], "claims": [ - 3626 + 3805 ], "claims_aggregate": [ - 3621 + 3800 ], "created_at": [ - 4025 + 4204 ], "friend_capacity": [ 39 ], "id": [ - 4464 + 4643 ], "last_node": [ - 1241 + 1419 ], "last_node_id": [ 80 @@ -87581,7 +90220,7 @@ export default { 182 ], "updated_at": [ - 4025 + 4204 ], "username": [ 80 @@ -87607,19 +90246,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3625 + 3804 ], "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node": [ - 1253 + 1431 ], "last_node_id": [ 78 @@ -87637,7 +90276,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87648,13 +90287,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node_id": [ 78 @@ -87672,7 +90311,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87683,13 +90322,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node_id": [ 78 @@ -87707,7 +90346,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87721,7 +90360,7 @@ export default { 38 ], "returning": [ - 3643 + 3822 ], "__typename": [ 78 @@ -87729,10 +90368,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3650 + 3829 ], "on_conflict": [ - 3655 + 3834 ], "__typename": [ 78 @@ -87740,13 +90379,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3648 + 3827 ], "update_columns": [ - 3666 + 3845 ], "where": [ - 3647 + 3826 ], "__typename": [ 78 @@ -87754,40 +90393,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3624 + 3803 ], "created_at": [ - 2481 + 2660 ], "friend_capacity": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "last_node": [ - 1255 + 1433 ], "last_node_id": [ - 2481 + 2660 ], "password": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "steam_level": [ - 2481 + 2660 ], "steamid64": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "username": [ - 2481 + 2660 ], "__typename": [ 78 @@ -87795,7 +90434,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -87804,13 +90443,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node_id": [ 78 @@ -87828,7 +90467,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87881,7 +90520,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3664 + 3843 ], "ordering": [ 236 @@ -87892,13 +90531,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "friend_capacity": [ 38 ], "id": [ - 4462 + 4641 ], "last_node_id": [ 78 @@ -87916,7 +90555,7 @@ export default { 180 ], "updated_at": [ - 4024 + 4203 ], "username": [ 78 @@ -87942,13 +90581,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3649 + 3828 ], "_set": [ - 3659 + 3838 ], "where": [ - 3647 + 3826 ], "__typename": [ 78 @@ -87998,7 +90637,7 @@ export default { }, "system_alerts": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 @@ -88007,10 +90646,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "is_active": [ 3 @@ -88022,10 +90661,10 @@ export default { 78 ], "type": [ - 1022 + 1042 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88033,10 +90672,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3673 + 3852 ], "nodes": [ - 3671 + 3850 ], "__typename": [ 78 @@ -88044,13 +90683,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3674 + 3853 ], "count": [ 38, { "columns": [ - 3685, + 3864, "[system_alerts_select_column!]" ], "distinct": [ @@ -88059,31 +90698,31 @@ export default { } ], "max": [ - 3679 + 3858 ], "min": [ - 3680 + 3859 ], "stddev": [ - 3687 + 3866 ], "stddev_pop": [ - 3688 + 3867 ], "stddev_samp": [ - 3689 + 3868 ], "sum": [ - 3692 + 3871 ], "var_pop": [ - 3695 + 3874 ], "var_samp": [ - 3696 + 3875 ], "variance": [ - 3697 + 3876 ], "__typename": [ 78 @@ -88099,16 +90738,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3675 + 3854 ], "_not": [ - 3675 + 3854 ], "_or": [ - 3675 + 3854 ], "created_at": [ - 4025 + 4204 ], "created_by": [ 182 @@ -88117,10 +90756,10 @@ export default { 4 ], "expires_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "is_active": [ 4 @@ -88132,10 +90771,10 @@ export default { 80 ], "type": [ - 1023 + 1043 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -88152,7 +90791,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 @@ -88161,10 +90800,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "is_active": [ 3 @@ -88176,10 +90815,10 @@ export default { 78 ], "type": [ - 1022 + 1042 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88187,16 +90826,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 @@ -88205,7 +90844,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88213,16 +90852,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "message": [ 78 @@ -88231,7 +90870,7 @@ export default { 78 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88242,7 +90881,7 @@ export default { 38 ], "returning": [ - 3671 + 3850 ], "__typename": [ 78 @@ -88250,13 +90889,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3676 + 3855 ], "update_columns": [ - 3693 + 3872 ], "where": [ - 3675 + 3854 ], "__typename": [ 78 @@ -88264,34 +90903,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2481 + 2660 ], "created_by": [ - 2481 + 2660 ], "dismissible": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "is_active": [ - 2481 + 2660 ], "message": [ - 2481 + 2660 ], "title": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88299,7 +90938,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88308,7 +90947,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 @@ -88317,10 +90956,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "is_active": [ 3 @@ -88332,10 +90971,10 @@ export default { 78 ], "type": [ - 1022 + 1042 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88367,7 +91006,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3691 + 3870 ], "ordering": [ 236 @@ -88378,7 +91017,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "created_by": [ 180 @@ -88387,10 +91026,10 @@ export default { 3 ], "expires_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "is_active": [ 3 @@ -88402,10 +91041,10 @@ export default { 78 ], "type": [ - 1022 + 1042 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -88422,13 +91061,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3677 + 3856 ], "_set": [ - 3686 + 3865 ], "where": [ - 3675 + 3854 ], "__typename": [ 78 @@ -88460,28 +91099,28 @@ export default { }, "team_invites": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by": [ - 3439 + 3618 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88489,10 +91128,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3702 + 3881 ], "nodes": [ - 3698 + 3877 ], "__typename": [ 78 @@ -88500,7 +91139,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3701 + 3880 ], "__typename": [ 78 @@ -88508,13 +91147,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3719 + 3898 ], "distinct": [ 3 ], "filter": [ - 3707 + 3886 ], "predicate": [ 39 @@ -88525,13 +91164,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3705 + 3884 ], "count": [ 38, { "columns": [ - 3719, + 3898, "[team_invites_select_column!]" ], "distinct": [ @@ -88540,31 +91179,31 @@ export default { } ], "max": [ - 3711 + 3890 ], "min": [ - 3713 + 3892 ], "stddev": [ - 3721 + 3900 ], "stddev_pop": [ - 3723 + 3902 ], "stddev_samp": [ - 3725 + 3904 ], "sum": [ - 3729 + 3908 ], "var_pop": [ - 3733 + 3912 ], "var_samp": [ - 3735 + 3914 ], "variance": [ - 3737 + 3916 ], "__typename": [ 78 @@ -88572,37 +91211,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3706 + 3885 ], "count": [ - 2481 + 2660 ], "max": [ - 3712 + 3891 ], "min": [ - 3714 + 3893 ], "stddev": [ - 3722 + 3901 ], "stddev_pop": [ - 3724 + 3903 ], "stddev_samp": [ - 3726 + 3905 ], "sum": [ - 3730 + 3909 ], "var_pop": [ - 3734 + 3913 ], "var_samp": [ - 3736 + 3915 ], "variance": [ - 3738 + 3917 ], "__typename": [ 78 @@ -88610,10 +91249,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3710 + 3889 ], "on_conflict": [ - 3716 + 3895 ], "__typename": [ 78 @@ -88632,10 +91271,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88643,37 +91282,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3707 + 3886 ], "_not": [ - 3707 + 3886 ], "_or": [ - 3707 + 3886 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "invited_by": [ - 3443 + 3622 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -88693,28 +91332,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by": [ - 3450 + 3629 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88722,10 +91361,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -88734,7 +91373,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88742,19 +91381,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88762,10 +91401,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -88774,7 +91413,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88782,19 +91421,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88805,7 +91444,7 @@ export default { 38 ], "returning": [ - 3698 + 3877 ], "__typename": [ 78 @@ -88813,13 +91452,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3708 + 3887 ], "update_columns": [ - 3731 + 3910 ], "where": [ - 3707 + 3886 ], "__typename": [ 78 @@ -88827,28 +91466,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by": [ - 3452 + 3631 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88856,7 +91495,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88865,10 +91504,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -88877,7 +91516,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88896,10 +91535,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88918,10 +91557,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88940,10 +91579,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -88951,7 +91590,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 3728 + 3907 ], "ordering": [ 236 @@ -88962,10 +91601,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -88974,7 +91613,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -88993,10 +91632,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89005,13 +91644,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3709 + 3888 ], "_set": [ - 3720 + 3899 ], "where": [ - 3707 + 3886 ], "__typename": [ 78 @@ -89030,10 +91669,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89052,10 +91691,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89074,10 +91713,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89088,25 +91727,25 @@ export default { 3 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1062 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1083 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89114,10 +91753,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 3745 + 3924 ], "nodes": [ - 3739 + 3918 ], "__typename": [ 78 @@ -89125,13 +91764,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3742 + 3921 ], "bool_or": [ - 3743 + 3922 ], "count": [ - 3744 + 3923 ], "__typename": [ 78 @@ -89139,13 +91778,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3763 + 3942 ], "distinct": [ 3 ], "filter": [ - 3750 + 3929 ], "predicate": [ 4 @@ -89156,13 +91795,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3764 + 3943 ], "distinct": [ 3 ], "filter": [ - 3750 + 3929 ], "predicate": [ 4 @@ -89173,13 +91812,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3762 + 3941 ], "distinct": [ 3 ], "filter": [ - 3750 + 3929 ], "predicate": [ 39 @@ -89190,13 +91829,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 3748 + 3927 ], "count": [ 38, { "columns": [ - 3762, + 3941, "[team_roster_select_column!]" ], "distinct": [ @@ -89205,31 +91844,31 @@ export default { } ], "max": [ - 3754 + 3933 ], "min": [ - 3756 + 3935 ], "stddev": [ - 3766 + 3945 ], "stddev_pop": [ - 3768 + 3947 ], "stddev_samp": [ - 3770 + 3949 ], "sum": [ - 3774 + 3953 ], "var_pop": [ - 3778 + 3957 ], "var_samp": [ - 3780 + 3959 ], "variance": [ - 3782 + 3961 ], "__typename": [ 78 @@ -89237,37 +91876,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 3749 + 3928 ], "count": [ - 2481 + 2660 ], "max": [ - 3755 + 3934 ], "min": [ - 3757 + 3936 ], "stddev": [ - 3767 + 3946 ], "stddev_pop": [ - 3769 + 3948 ], "stddev_samp": [ - 3771 + 3950 ], "sum": [ - 3775 + 3954 ], "var_pop": [ - 3779 + 3958 ], "var_samp": [ - 3781 + 3960 ], "variance": [ - 3783 + 3962 ], "__typename": [ 78 @@ -89275,10 +91914,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 3753 + 3932 ], "on_conflict": [ - 3759 + 3938 ], "__typename": [ 78 @@ -89294,7 +91933,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89302,37 +91941,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 3750 + 3929 ], "_not": [ - 3750 + 3929 ], "_or": [ - 3750 + 3929 ], "coach": [ 4 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "role": [ - 1043 + 1063 ], "roster_image_url": [ 80 ], "status": [ - 1064 + 1084 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -89352,25 +91991,25 @@ export default { 3 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1062 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1083 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89384,7 +92023,7 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89392,13 +92031,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89412,7 +92051,7 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89420,13 +92059,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89437,7 +92076,7 @@ export default { 38 ], "returning": [ - 3739 + 3918 ], "__typename": [ 78 @@ -89445,13 +92084,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 3751 + 3930 ], "update_columns": [ - 3776 + 3955 ], "where": [ - 3750 + 3929 ], "__typename": [ 78 @@ -89459,28 +92098,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "roster_image_url": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89491,7 +92130,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89508,16 +92147,16 @@ export default { 180 ], "role": [ - 1042 + 1062 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1083 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89533,7 +92172,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89549,7 +92188,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89565,7 +92204,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89573,7 +92212,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 3773 + 3952 ], "ordering": [ 236 @@ -89590,16 +92229,16 @@ export default { 180 ], "role": [ - 1042 + 1062 ], "roster_image_url": [ 78 ], "status": [ - 1063 + 1083 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89615,7 +92254,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89624,13 +92263,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3752 + 3931 ], "_set": [ - 3765 + 3944 ], "where": [ - 3750 + 3929 ], "__typename": [ 78 @@ -89646,7 +92285,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89662,7 +92301,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89678,7 +92317,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89686,7 +92325,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -89698,19 +92337,19 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89718,10 +92357,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3786 + 3965 ], "nodes": [ - 3784 + 3963 ], "__typename": [ 78 @@ -89729,13 +92368,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3787 + 3966 ], "count": [ 38, { "columns": [ - 3798, + 3977, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -89744,31 +92383,31 @@ export default { } ], "max": [ - 3792 + 3971 ], "min": [ - 3793 + 3972 ], "stddev": [ - 3800 + 3979 ], "stddev_pop": [ - 3801 + 3980 ], "stddev_samp": [ - 3802 + 3981 ], "sum": [ - 3805 + 3984 ], "var_pop": [ - 3808 + 3987 ], "var_samp": [ - 3809 + 3988 ], "variance": [ - 3810 + 3989 ], "__typename": [ 78 @@ -89787,16 +92426,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 3788 + 3967 ], "_not": [ - 3788 + 3967 ], "_or": [ - 3788 + 3967 ], "created_at": [ - 4025 + 4204 ], "elo_max": [ 39 @@ -89808,19 +92447,19 @@ export default { 4 ], "id": [ - 4464 + 4643 ], "last_notified_at": [ - 4025 + 4204 ], "regions": [ 79 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -89840,7 +92479,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -89852,19 +92491,19 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89872,7 +92511,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -89881,16 +92520,16 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89898,7 +92537,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -89907,16 +92546,16 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89927,7 +92566,7 @@ export default { 38 ], "returning": [ - 3784 + 3963 ], "__typename": [ 78 @@ -89935,13 +92574,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3789 + 3968 ], "update_columns": [ - 3806 + 3985 ], "where": [ - 3788 + 3967 ], "__typename": [ 78 @@ -89949,31 +92588,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2481 + 2660 ], "elo_max": [ - 2481 + 2660 ], "elo_min": [ - 2481 + 2660 ], "enabled": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "last_notified_at": [ - 2481 + 2660 ], "regions": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -89981,7 +92620,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -89990,7 +92629,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -90002,16 +92641,16 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90052,7 +92691,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3804 + 3983 ], "ordering": [ 236 @@ -90063,7 +92702,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -90075,16 +92714,16 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "regions": [ 78 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90104,13 +92743,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3790 + 3969 ], "_set": [ - 3799 + 3978 ], "where": [ - 3788 + 3967 ], "__typename": [ 78 @@ -90151,25 +92790,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4203 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90177,10 +92816,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 3817 + 3996 ], "nodes": [ - 3811 + 3990 ], "__typename": [ 78 @@ -90188,13 +92827,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3814 + 3993 ], "bool_or": [ - 3815 + 3994 ], "count": [ - 3816 + 3995 ], "__typename": [ 78 @@ -90202,13 +92841,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 3832 + 4011 ], "distinct": [ 3 ], "filter": [ - 3820 + 3999 ], "predicate": [ 4 @@ -90219,13 +92858,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 3833 + 4012 ], "distinct": [ 3 ], "filter": [ - 3820 + 3999 ], "predicate": [ 4 @@ -90236,13 +92875,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 3831 + 4010 ], "distinct": [ 3 ], "filter": [ - 3820 + 3999 ], "predicate": [ 39 @@ -90256,7 +92895,7 @@ export default { 38, { "columns": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -90265,10 +92904,10 @@ export default { } ], "max": [ - 3823 + 4002 ], "min": [ - 3825 + 4004 ], "__typename": [ 78 @@ -90276,13 +92915,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 3824 + 4003 ], "min": [ - 3826 + 4005 ], "__typename": [ 78 @@ -90290,10 +92929,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 3822 + 4001 ], "on_conflict": [ - 3828 + 4007 ], "__typename": [ 78 @@ -90301,34 +92940,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 3820 + 3999 ], "_not": [ - 3820 + 3999 ], "_or": [ - 3820 + 3999 ], "created_at": [ - 4025 + 4204 ], "ends_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4025 + 4204 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -90337,25 +92976,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4203 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90363,19 +93002,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "starts_at": [ - 4024 + 4203 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90383,19 +93022,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2481 + 2660 ], "ends_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "starts_at": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90403,19 +93042,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "starts_at": [ - 4024 + 4203 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90423,19 +93062,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2481 + 2660 ], "ends_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "starts_at": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90446,7 +93085,7 @@ export default { 38 ], "returning": [ - 3811 + 3990 ], "__typename": [ 78 @@ -90454,13 +93093,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 3821 + 4000 ], "update_columns": [ - 3837 + 4016 ], "where": [ - 3820 + 3999 ], "__typename": [ 78 @@ -90468,25 +93107,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2481 + 2660 ], "ends_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "recurring_weekly": [ - 2481 + 2660 ], "starts_at": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90494,7 +93133,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90505,22 +93144,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4203 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90528,7 +93167,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 3836 + 4015 ], "ordering": [ 236 @@ -90539,22 +93178,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "ends_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4024 + 4203 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90563,10 +93202,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 3834 + 4013 ], "where": [ - 3820 + 3999 ], "__typename": [ 78 @@ -90574,31 +93213,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by": [ - 3439 + 3618 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3981 + 4160 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request": [ - 3880 + 4059 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90606,10 +93245,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 3843 + 4022 ], "nodes": [ - 3839 + 4018 ], "__typename": [ 78 @@ -90617,7 +93256,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 3842 + 4021 ], "__typename": [ 78 @@ -90625,13 +93264,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 3860 + 4039 ], "distinct": [ 3 ], "filter": [ - 3848 + 4027 ], "predicate": [ 39 @@ -90642,13 +93281,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 3846 + 4025 ], "count": [ 38, { "columns": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -90657,31 +93296,31 @@ export default { } ], "max": [ - 3852 + 4031 ], "min": [ - 3854 + 4033 ], "stddev": [ - 3862 + 4041 ], "stddev_pop": [ - 3864 + 4043 ], "stddev_samp": [ - 3866 + 4045 ], "sum": [ - 3870 + 4049 ], "var_pop": [ - 3874 + 4053 ], "var_samp": [ - 3876 + 4055 ], "variance": [ - 3878 + 4057 ], "__typename": [ 78 @@ -90689,37 +93328,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 3847 + 4026 ], "count": [ - 2481 + 2660 ], "max": [ - 3853 + 4032 ], "min": [ - 3855 + 4034 ], "stddev": [ - 3863 + 4042 ], "stddev_pop": [ - 3865 + 4044 ], "stddev_samp": [ - 3867 + 4046 ], "sum": [ - 3871 + 4050 ], "var_pop": [ - 3875 + 4054 ], "var_samp": [ - 3877 + 4056 ], "variance": [ - 3879 + 4058 ], "__typename": [ 78 @@ -90727,10 +93366,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 3851 + 4030 ], "on_conflict": [ - 3857 + 4036 ], "__typename": [ 78 @@ -90746,7 +93385,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90754,40 +93393,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 3848 + 4027 ], "_not": [ - 3848 + 4027 ], "_or": [ - 3848 + 4027 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "proposed_by": [ - 3443 + 3622 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 3990 + 4169 ], "proposed_by_team_id": [ - 4464 + 4643 ], "proposed_scheduled_at": [ - 4025 + 4204 ], "request": [ - 3891 + 4070 ], "request_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -90804,31 +93443,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by": [ - 3450 + 3629 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 3999 + 4178 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request": [ - 3900 + 4079 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90836,22 +93475,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90859,22 +93498,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_by_team_id": [ - 2481 + 2660 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "request_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90882,22 +93521,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90905,22 +93544,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_by_team_id": [ - 2481 + 2660 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "request_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90931,7 +93570,7 @@ export default { 38 ], "returning": [ - 3839 + 4018 ], "__typename": [ 78 @@ -90939,13 +93578,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 3849 + 4028 ], "update_columns": [ - 3872 + 4051 ], "where": [ - 3848 + 4027 ], "__typename": [ 78 @@ -90953,31 +93592,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "proposed_by": [ - 3452 + 3631 ], "proposed_by_steam_id": [ - 2481 + 2660 ], "proposed_by_team": [ - 4001 + 4180 ], "proposed_by_team_id": [ - 2481 + 2660 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "request": [ - 3902 + 4081 ], "request_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -90985,7 +93624,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -90994,22 +93633,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91025,7 +93664,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91041,7 +93680,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91057,7 +93696,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91065,7 +93704,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 3869 + 4048 ], "ordering": [ 236 @@ -91076,22 +93715,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4462 + 4641 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "request_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91107,7 +93746,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91116,13 +93755,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 3850 + 4029 ], "_set": [ - 3861 + 4040 ], "where": [ - 3848 + 4027 ], "__typename": [ 78 @@ -91138,7 +93777,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91154,7 +93793,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91170,7 +93809,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91181,55 +93820,55 @@ export default { 3 ], "awaiting_team": [ - 3981 + 4160 ], "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team": [ - 3981 + 4160 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_options": [ - 2176 + 2355 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposals": [ - 3839, + 4018, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91239,19 +93878,19 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "proposals_aggregate": [ - 3840, + 4019, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -91261,40 +93900,40 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 ], "requested_by": [ - 3439 + 3618 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4203 ], "status": [ - 962 + 982 ], "to_team": [ - 3981 + 4160 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91302,10 +93941,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 3886 + 4065 ], "nodes": [ - 3880 + 4059 ], "__typename": [ 78 @@ -91313,13 +93952,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 3883 + 4062 ], "bool_or": [ - 3884 + 4063 ], "count": [ - 3885 + 4064 ], "__typename": [ 78 @@ -91327,13 +93966,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 3905 + 4084 ], "distinct": [ 3 ], "filter": [ - 3891 + 4070 ], "predicate": [ 4 @@ -91344,13 +93983,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 3906 + 4085 ], "distinct": [ 3 ], "filter": [ - 3891 + 4070 ], "predicate": [ 4 @@ -91361,13 +94000,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 3904 + 4083 ], "distinct": [ 3 ], "filter": [ - 3891 + 4070 ], "predicate": [ 39 @@ -91378,13 +94017,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 3889 + 4068 ], "count": [ 38, { "columns": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -91393,31 +94032,31 @@ export default { } ], "max": [ - 3895 + 4074 ], "min": [ - 3897 + 4076 ], "stddev": [ - 3908 + 4087 ], "stddev_pop": [ - 3910 + 4089 ], "stddev_samp": [ - 3912 + 4091 ], "sum": [ - 3916 + 4095 ], "var_pop": [ - 3920 + 4099 ], "var_samp": [ - 3922 + 4101 ], "variance": [ - 3924 + 4103 ], "__typename": [ 78 @@ -91425,37 +94064,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 3890 + 4069 ], "count": [ - 2481 + 2660 ], "max": [ - 3896 + 4075 ], "min": [ - 3898 + 4077 ], "stddev": [ - 3909 + 4088 ], "stddev_pop": [ - 3911 + 4090 ], "stddev_samp": [ - 3913 + 4092 ], "sum": [ - 3917 + 4096 ], "var_pop": [ - 3921 + 4100 ], "var_samp": [ - 3923 + 4102 ], "variance": [ - 3925 + 4104 ], "__typename": [ 78 @@ -91463,10 +94102,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 3894 + 4073 ], "on_conflict": [ - 3901 + 4080 ], "__typename": [ 78 @@ -91482,7 +94121,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91490,94 +94129,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 3891 + 4070 ], "_not": [ - 3891 + 4070 ], "_or": [ - 3891 + 4070 ], "auto_generated": [ 4 ], "awaiting_team": [ - 3990 + 4169 ], "awaiting_team_id": [ - 4464 + 4643 ], "canceled_by_team_id": [ - 4464 + 4643 ], "canceled_late": [ 4 ], "created_at": [ - 4025 + 4204 ], "expires_at": [ - 4025 + 4204 ], "from_team": [ - 3990 + 4169 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4464 + 4643 ], "id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_options": [ - 2180 + 2359 ], "match_options_id": [ - 4464 + 4643 ], "match_outcome": [ 80 ], "proposals": [ - 3848 + 4027 ], "proposals_aggregate": [ - 3841 + 4020 ], "proposed_scheduled_at": [ - 4025 + 4204 ], "region": [ 80 ], "requested_by": [ - 3443 + 3622 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4025 + 4204 ], "status": [ - 963 + 983 ], "to_team": [ - 3990 + 4169 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -91597,79 +94236,79 @@ export default { 3 ], "awaiting_team": [ - 3999 + 4178 ], "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team": [ - 3999 + 4178 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_options": [ - 2187 + 2366 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposals": [ - 3845 + 4024 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 ], "requested_by": [ - 3450 + 3629 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4024 + 4203 ], "status": [ - 962 + 982 ], "to_team": [ - 3999 + 4178 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91677,34 +94316,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 @@ -91713,10 +94352,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4203 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91724,46 +94363,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2481 + 2660 ], "canceled_by_team_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "from_team_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "match_outcome": [ - 2481 + 2660 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "requested_by_steam_id": [ - 2481 + 2660 ], "responded_at": [ - 2481 + 2660 ], "to_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91771,34 +94410,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 @@ -91807,10 +94446,10 @@ export default { 180 ], "responded_at": [ - 4024 + 4203 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91818,46 +94457,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2481 + 2660 ], "canceled_by_team_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "from_team_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "match_outcome": [ - 2481 + 2660 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "requested_by_steam_id": [ - 2481 + 2660 ], "responded_at": [ - 2481 + 2660 ], "to_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91868,7 +94507,7 @@ export default { 38 ], "returning": [ - 3880 + 4059 ], "__typename": [ 78 @@ -91876,10 +94515,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 3894 + 4073 ], "on_conflict": [ - 3901 + 4080 ], "__typename": [ 78 @@ -91887,13 +94526,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 3892 + 4071 ], "update_columns": [ - 3918 + 4097 ], "where": [ - 3891 + 4070 ], "__typename": [ 78 @@ -91901,82 +94540,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2481 + 2660 ], "awaiting_team": [ - 4001 + 4180 ], "awaiting_team_id": [ - 2481 + 2660 ], "canceled_by_team_id": [ - 2481 + 2660 ], "canceled_late": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "expires_at": [ - 2481 + 2660 ], "from_team": [ - 4001 + 4180 ], "from_team_checked_in": [ - 2481 + 2660 ], "from_team_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_options": [ - 2189 + 2368 ], "match_options_id": [ - 2481 + 2660 ], "match_outcome": [ - 2481 + 2660 ], "proposals_aggregate": [ - 3844 + 4023 ], "proposed_scheduled_at": [ - 2481 + 2660 ], "region": [ - 2481 + 2660 ], "requested_by": [ - 3452 + 3631 ], "requested_by_steam_id": [ - 2481 + 2660 ], "responded_at": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "to_team": [ - 4001 + 4180 ], "to_team_checked_in": [ - 2481 + 2660 ], "to_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -91984,7 +94623,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -91998,40 +94637,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 @@ -92040,16 +94679,16 @@ export default { 180 ], "responded_at": [ - 4024 + 4203 ], "status": [ - 962 + 982 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -92065,7 +94704,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92081,7 +94720,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92097,7 +94736,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92105,7 +94744,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 3915 + 4094 ], "ordering": [ 236 @@ -92119,40 +94758,40 @@ export default { 3 ], "awaiting_team_id": [ - 4462 + 4641 ], "canceled_by_team_id": [ - 4462 + 4641 ], "canceled_late": [ 3 ], "created_at": [ - 4024 + 4203 ], "expires_at": [ - 4024 + 4203 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4462 + 4641 ], "id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4024 + 4203 ], "region": [ 78 @@ -92161,16 +94800,16 @@ export default { 180 ], "responded_at": [ - 4024 + 4203 ], "status": [ - 962 + 982 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -92186,7 +94825,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92195,13 +94834,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 3893 + 4072 ], "_set": [ - 3907 + 4086 ], "where": [ - 3891 + 4070 ], "__typename": [ 78 @@ -92217,7 +94856,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92233,7 +94872,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92249,7 +94888,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92260,7 +94899,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92272,10 +94911,10 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92284,13 +94923,13 @@ export default { 78 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92298,10 +94937,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 3928 + 4107 ], "nodes": [ - 3926 + 4105 ], "__typename": [ 78 @@ -92309,13 +94948,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 3929 + 4108 ], "count": [ 38, { "columns": [ - 3941, + 4120, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -92324,31 +94963,31 @@ export default { } ], "max": [ - 3934 + 4113 ], "min": [ - 3935 + 4114 ], "stddev": [ - 3943 + 4122 ], "stddev_pop": [ - 3944 + 4123 ], "stddev_samp": [ - 3945 + 4124 ], "sum": [ - 3948 + 4127 ], "var_pop": [ - 3951 + 4130 ], "var_samp": [ - 3952 + 4131 ], "variance": [ - 3953 + 4132 ], "__typename": [ 78 @@ -92367,19 +95006,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 3930 + 4109 ], "_not": [ - 3930 + 4109 ], "_or": [ - 3930 + 4109 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4025 + 4204 ], "elo_max": [ 39 @@ -92391,10 +95030,10 @@ export default { 4 ], "id": [ - 4464 + 4643 ], "map_ids": [ - 4463 + 4642 ], "notes": [ 80 @@ -92403,13 +95042,13 @@ export default { 79 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -92432,7 +95071,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92444,10 +95083,10 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92456,13 +95095,13 @@ export default { 78 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92470,7 +95109,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92479,10 +95118,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92491,10 +95130,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92502,7 +95141,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92511,10 +95150,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92523,10 +95162,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92537,7 +95176,7 @@ export default { 38 ], "returning": [ - 3926 + 4105 ], "__typename": [ 78 @@ -92545,10 +95184,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 3933 + 4112 ], "on_conflict": [ - 3938 + 4117 ], "__typename": [ 78 @@ -92556,13 +95195,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 3931 + 4110 ], "update_columns": [ - 3949 + 4128 ], "where": [ - 3930 + 4109 ], "__typename": [ 78 @@ -92570,40 +95209,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "elo_max": [ - 2481 + 2660 ], "elo_min": [ - 2481 + 2660 ], "enabled": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "map_ids": [ - 2481 + 2660 ], "notes": [ - 2481 + 2660 ], "regions": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -92611,7 +95250,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -92623,7 +95262,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92635,10 +95274,10 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92647,10 +95286,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92691,7 +95330,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 3947 + 4126 ], "ordering": [ 236 @@ -92705,7 +95344,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "elo_max": [ 38 @@ -92717,10 +95356,10 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "map_ids": [ - 4462 + 4641 ], "notes": [ 78 @@ -92729,10 +95368,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -92752,13 +95391,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 3932 + 4111 ], "_set": [ - 3942 + 4121 ], "where": [ - 3930 + 4109 ], "__typename": [ 78 @@ -92799,16 +95438,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -92825,10 +95464,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 3956 + 4135 ], "nodes": [ - 3954 + 4133 ], "__typename": [ 78 @@ -92836,13 +95475,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 3957 + 4136 ], "count": [ 38, { "columns": [ - 3968, + 4147, "[team_suggestions_select_column!]" ], "distinct": [ @@ -92851,31 +95490,31 @@ export default { } ], "max": [ - 3962 + 4141 ], "min": [ - 3963 + 4142 ], "stddev": [ - 3970 + 4149 ], "stddev_pop": [ - 3971 + 4150 ], "stddev_samp": [ - 3972 + 4151 ], "sum": [ - 3975 + 4154 ], "var_pop": [ - 3978 + 4157 ], "var_samp": [ - 3979 + 4158 ], "variance": [ - 3980 + 4159 ], "__typename": [ 78 @@ -92891,25 +95530,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 3958 + 4137 ], "_not": [ - 3958 + 4137 ], "_or": [ - 3958 + 4137 ], "created_at": [ - 4025 + 4204 ], "group_hash": [ 80 ], "id": [ - 4464 + 4643 ], "last_notified_at": [ - 4025 + 4204 ], "member_steam_ids": [ 181 @@ -92935,16 +95574,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -92961,16 +95600,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -92987,16 +95626,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -93016,7 +95655,7 @@ export default { 38 ], "returning": [ - 3954 + 4133 ], "__typename": [ 78 @@ -93024,13 +95663,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 3959 + 4138 ], "update_columns": [ - 3976 + 4155 ], "where": [ - 3958 + 4137 ], "__typename": [ 78 @@ -93038,25 +95677,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2481 + 2660 ], "group_hash": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "last_notified_at": [ - 2481 + 2660 ], "member_steam_ids": [ - 2481 + 2660 ], "status": [ - 2481 + 2660 ], "together_count": [ - 2481 + 2660 ], "__typename": [ 78 @@ -93064,7 +95703,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -93073,16 +95712,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -93123,7 +95762,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 3974 + 4153 ], "ordering": [ 236 @@ -93134,16 +95773,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "group_hash": [ 78 ], "id": [ - 4462 + 4641 ], "last_notified_at": [ - 4024 + 4203 ], "member_steam_ids": [ 180 @@ -93169,13 +95808,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 3960 + 4139 ], "_set": [ - 3969 + 4148 ], "where": [ - 3958 + 4137 ], "__typename": [ 78 @@ -93222,19 +95861,19 @@ export default { 3 ], "captain": [ - 3439 + 3618 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "invites": [ - 3698, + 3877, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -93244,19 +95883,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "invites_aggregate": [ - 3699, + 3878, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -93266,19 +95905,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "match_lineups": [ - 1976, + 2155, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -93288,19 +95927,19 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "match_lineups_aggregate": [ - 1977, + 2156, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -93310,19 +95949,19 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -93332,11 +95971,11 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], @@ -93344,25 +95983,25 @@ export default { 78 ], "owner": [ - 3439 + 3618 ], "owner_steam_id": [ 180 ], "ranks": [ - 5095 + 5325 ], "reputation": [ - 5115 + 5345 ], "role": [ 78 ], "roster": [ - 3739, + 3918, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -93372,19 +96011,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "roster_aggregate": [ - 3740, + 3919, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -93394,19 +96033,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "scrim_availability": [ - 3811, + 3990, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93416,19 +96055,19 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "scrim_availability_aggregate": [ - 3812, + 3991, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -93438,25 +96077,25 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "scrim_settings": [ - 3926 + 4105 ], "short_name": [ 78 ], "tournament_teams": [ - 4287, + 4466, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -93466,19 +96105,19 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "tournament_teams_aggregate": [ - 4288, + 4467, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -93488,11 +96127,11 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], @@ -93502,10 +96141,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 3985 + 4164 ], "nodes": [ - 3981 + 4160 ], "__typename": [ 78 @@ -93513,7 +96152,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 3984 + 4163 ], "__typename": [ 78 @@ -93521,13 +96160,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4003 + 4182 ], "distinct": [ 3 ], "filter": [ - 3990 + 4169 ], "predicate": [ 39 @@ -93538,13 +96177,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 3988 + 4167 ], "count": [ 38, { "columns": [ - 4003, + 4182, "[teams_select_column!]" ], "distinct": [ @@ -93553,31 +96192,31 @@ export default { } ], "max": [ - 3994 + 4173 ], "min": [ - 3996 + 4175 ], "stddev": [ - 4005 + 4184 ], "stddev_pop": [ - 4007 + 4186 ], "stddev_samp": [ - 4009 + 4188 ], "sum": [ - 4013 + 4192 ], "var_pop": [ - 4017 + 4196 ], "var_samp": [ - 4019 + 4198 ], "variance": [ - 4021 + 4200 ], "__typename": [ 78 @@ -93585,37 +96224,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 3989 + 4168 ], "count": [ - 2481 + 2660 ], "max": [ - 3995 + 4174 ], "min": [ - 3997 + 4176 ], "stddev": [ - 4006 + 4185 ], "stddev_pop": [ - 4008 + 4187 ], "stddev_samp": [ - 4010 + 4189 ], "sum": [ - 4014 + 4193 ], "var_pop": [ - 4018 + 4197 ], "var_samp": [ - 4020 + 4199 ], "variance": [ - 4022 + 4201 ], "__typename": [ 78 @@ -93623,10 +96262,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 3993 + 4172 ], "on_conflict": [ - 4000 + 4179 ], "__typename": [ 78 @@ -93645,10 +96284,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -93656,13 +96295,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 3990 + 4169 ], "_not": [ - 3990 + 4169 ], "_or": [ - 3990 + 4169 ], "avatar_url": [ 80 @@ -93680,70 +96319,70 @@ export default { 4 ], "captain": [ - 3443 + 3622 ], "captain_steam_id": [ 182 ], "id": [ - 4464 + 4643 ], "invites": [ - 3707 + 3886 ], "invites_aggregate": [ - 3700 + 3879 ], "match_lineups": [ - 1985 + 2164 ], "match_lineups_aggregate": [ - 1978 + 2157 ], "matches": [ - 2305 + 2484 ], "name": [ 80 ], "owner": [ - 3443 + 3622 ], "owner_steam_id": [ 182 ], "ranks": [ - 5099 + 5329 ], "reputation": [ - 5119 + 5349 ], "role": [ 80 ], "roster": [ - 3750 + 3929 ], "roster_aggregate": [ - 3741 + 3920 ], "scrim_availability": [ - 3820 + 3999 ], "scrim_availability_aggregate": [ - 3813 + 3992 ], "scrim_settings": [ - 3930 + 4109 ], "short_name": [ 80 ], "tournament_teams": [ - 4296 + 4475 ], "tournament_teams_aggregate": [ - 4289 + 4468 ], "__typename": [ 78 @@ -93766,49 +96405,49 @@ export default { 78 ], "captain": [ - 3450 + 3629 ], "captain_steam_id": [ 180 ], "id": [ - 4462 + 4641 ], "invites": [ - 3704 + 3883 ], "match_lineups": [ - 1982 + 2161 ], "name": [ 78 ], "owner": [ - 3450 + 3629 ], "owner_steam_id": [ 180 ], "ranks": [ - 5103 + 5333 ], "reputation": [ - 5123 + 5353 ], "roster": [ - 3747 + 3926 ], "scrim_availability": [ - 3819 + 3998 ], "scrim_settings": [ - 3937 + 4116 ], "short_name": [ 78 ], "tournament_teams": [ - 4293 + 4472 ], "__typename": [ 78 @@ -93822,7 +96461,7 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -93842,22 +96481,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2481 + 2660 ], "captain_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "short_name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -93871,7 +96510,7 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -93891,22 +96530,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2481 + 2660 ], "captain_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "short_name": [ - 2481 + 2660 ], "__typename": [ 78 @@ -93917,7 +96556,7 @@ export default { 38 ], "returning": [ - 3981 + 4160 ], "__typename": [ 78 @@ -93925,10 +96564,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 3993 + 4172 ], "on_conflict": [ - 4000 + 4179 ], "__typename": [ 78 @@ -93936,13 +96575,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 3991 + 4170 ], "update_columns": [ - 4015 + 4194 ], "where": [ - 3990 + 4169 ], "__typename": [ 78 @@ -93950,70 +96589,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2481 + 2660 ], "can_change_role": [ - 2481 + 2660 ], "can_invite": [ - 2481 + 2660 ], "can_manage_scrims": [ - 2481 + 2660 ], "can_remove": [ - 2481 + 2660 ], "captain": [ - 3452 + 3631 ], "captain_steam_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invites_aggregate": [ - 3703 + 3882 ], "match_lineups_aggregate": [ - 1981 + 2160 ], "matches_aggregate": [ - 2301 + 2480 ], "name": [ - 2481 + 2660 ], "owner": [ - 3452 + 3631 ], "owner_steam_id": [ - 2481 + 2660 ], "ranks": [ - 5104 + 5334 ], "reputation": [ - 5124 + 5354 ], "role": [ - 2481 + 2660 ], "roster_aggregate": [ - 3746 + 3925 ], "scrim_availability_aggregate": [ - 3818 + 3997 ], "scrim_settings": [ - 3939 + 4118 ], "short_name": [ - 2481 + 2660 ], "tournament_teams_aggregate": [ - 4292 + 4471 ], "__typename": [ 78 @@ -94021,7 +96660,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -94036,7 +96675,7 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -94064,10 +96703,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94086,10 +96725,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94108,10 +96747,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94119,7 +96758,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4012 + 4191 ], "ordering": [ 236 @@ -94136,7 +96775,7 @@ export default { 180 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -94164,10 +96803,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94176,13 +96815,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 3992 + 4171 ], "_set": [ - 4004 + 4183 ], "where": [ - 3990 + 4169 ], "__typename": [ 78 @@ -94201,10 +96840,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94223,10 +96862,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94245,10 +96884,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94258,31 +96897,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4024 + 4203 ], "_gt": [ - 4024 + 4203 ], "_gte": [ - 4024 + 4203 ], "_in": [ - 4024 + 4203 ], "_is_null": [ 3 ], "_lt": [ - 4024 + 4203 ], "_lte": [ - 4024 + 4203 ], "_neq": [ - 4024 + 4203 ], "_nin": [ - 4024 + 4203 ], "__typename": [ 78 @@ -94293,13 +96932,13 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "feeding_brackets": [ - 4026, + 4205, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -94309,11 +96948,11 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], @@ -94321,37 +96960,37 @@ export default { 3 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_bracket": [ - 4026 + 4205 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "options": [ - 2176 + 2355 ], "parent_bracket": [ - 4026 + 4205 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -94360,16 +96999,16 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "scheduling_proposals": [ - 1489, + 1668, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94379,19 +97018,19 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "scheduling_proposals_aggregate": [ - 1490, + 1669, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -94401,37 +97040,37 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "stage": [ - 4154 + 4333 ], "team_1": [ - 4287 + 4466 ], "team_1_seed": [ 38 ], "team_2": [ - 4287 + 4466 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -94439,10 +97078,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4032 + 4211 ], "nodes": [ - 4026 + 4205 ], "__typename": [ 78 @@ -94450,13 +97089,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4029 + 4208 ], "bool_or": [ - 4030 + 4209 ], "count": [ - 4031 + 4210 ], "__typename": [ 78 @@ -94464,13 +97103,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4051 + 4230 ], "distinct": [ 3 ], "filter": [ - 4037 + 4216 ], "predicate": [ 4 @@ -94481,13 +97120,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4052 + 4231 ], "distinct": [ 3 ], "filter": [ - 4037 + 4216 ], "predicate": [ 4 @@ -94498,13 +97137,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4050 + 4229 ], "distinct": [ 3 ], "filter": [ - 4037 + 4216 ], "predicate": [ 39 @@ -94515,13 +97154,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4035 + 4214 ], "count": [ 38, { "columns": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -94530,31 +97169,31 @@ export default { } ], "max": [ - 4041 + 4220 ], "min": [ - 4043 + 4222 ], "stddev": [ - 4054 + 4233 ], "stddev_pop": [ - 4056 + 4235 ], "stddev_samp": [ - 4058 + 4237 ], "sum": [ - 4062 + 4241 ], "var_pop": [ - 4066 + 4245 ], "var_samp": [ - 4068 + 4247 ], "variance": [ - 4070 + 4249 ], "__typename": [ 78 @@ -94562,37 +97201,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4036 + 4215 ], "count": [ - 2481 + 2660 ], "max": [ - 4042 + 4221 ], "min": [ - 4044 + 4223 ], "stddev": [ - 4055 + 4234 ], "stddev_pop": [ - 4057 + 4236 ], "stddev_samp": [ - 4059 + 4238 ], "sum": [ - 4063 + 4242 ], "var_pop": [ - 4067 + 4246 ], "var_samp": [ - 4069 + 4248 ], "variance": [ - 4071 + 4250 ], "__typename": [ 78 @@ -94600,10 +97239,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4040 + 4219 ], "on_conflict": [ - 4047 + 4226 ], "__typename": [ 78 @@ -94631,19 +97270,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94651,58 +97290,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4037 + 4216 ], "_not": [ - 4037 + 4216 ], "_or": [ - 4037 + 4216 ], "bye": [ 4 ], "created_at": [ - 4025 + 4204 ], "feeding_brackets": [ - 4037 + 4216 ], "finished": [ 4 ], "group": [ - 2480 + 2659 ], "id": [ - 4464 + 4643 ], "loser_bracket": [ - 4037 + 4216 ], "loser_parent_bracket_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_number": [ 39 ], "match_options_id": [ - 4464 + 4643 ], "options": [ - 2180 + 2359 ], "parent_bracket": [ - 4037 + 4216 ], "parent_bracket_id": [ - 4464 + 4643 ], "path": [ 80 @@ -94711,40 +97350,40 @@ export default { 39 ], "scheduled_at": [ - 4025 + 4204 ], "scheduled_eta": [ - 4025 + 4204 ], "scheduling_proposals": [ - 1498 + 1677 ], "scheduling_proposals_aggregate": [ - 1491 + 1670 ], "stage": [ - 4166 + 4345 ], "team_1": [ - 4296 + 4475 ], "team_1_seed": [ 39 ], "team_2": [ - 4296 + 4475 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4464 + 4643 ], "tournament_team_id_1": [ - 4464 + 4643 ], "tournament_team_id_2": [ - 4464 + 4643 ], "__typename": [ 78 @@ -94753,7 +97392,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2479 + 2658 ], "match_number": [ 38 @@ -94776,43 +97415,43 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "finished": [ 3 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_bracket": [ - 4046 + 4225 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "options": [ - 2187 + 2366 ], "parent_bracket": [ - 4046 + 4225 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -94821,37 +97460,37 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "scheduling_proposals": [ - 1495 + 1674 ], "stage": [ - 4178 + 4357 ], "team_1": [ - 4305 + 4484 ], "team_1_seed": [ 38 ], "team_2": [ - 4305 + 4484 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -94859,28 +97498,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4024 + 4203 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -94889,10 +97528,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "team_1_seed": [ 38 @@ -94901,13 +97540,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -94915,55 +97554,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2481 + 2660 ], "group": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "loser_parent_bracket_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "parent_bracket_id": [ - 2481 + 2660 ], "path": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "scheduled_eta": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id_1": [ - 2481 + 2660 ], "tournament_team_id_2": [ - 2481 + 2660 ], "__typename": [ 78 @@ -94971,28 +97610,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4024 + 4203 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -95001,10 +97640,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "team_1_seed": [ 38 @@ -95013,13 +97652,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95027,55 +97666,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2481 + 2660 ], "group": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "loser_parent_bracket_id": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "parent_bracket_id": [ - 2481 + 2660 ], "path": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "scheduled_eta": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id_1": [ - 2481 + 2660 ], "tournament_team_id_2": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95086,7 +97725,7 @@ export default { 38 ], "returning": [ - 4026 + 4205 ], "__typename": [ 78 @@ -95094,10 +97733,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4040 + 4219 ], "on_conflict": [ - 4047 + 4226 ], "__typename": [ 78 @@ -95105,13 +97744,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4038 + 4217 ], "update_columns": [ - 4064 + 4243 ], "where": [ - 4037 + 4216 ], "__typename": [ 78 @@ -95119,88 +97758,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "feeding_brackets_aggregate": [ - 4033 + 4212 ], "finished": [ - 2481 + 2660 ], "group": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "loser_bracket": [ - 4048 + 4227 ], "loser_parent_bracket_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "options": [ - 2189 + 2368 ], "parent_bracket": [ - 4048 + 4227 ], "parent_bracket_id": [ - 2481 + 2660 ], "path": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "scheduled_at": [ - 2481 + 2660 ], "scheduled_eta": [ - 2481 + 2660 ], "scheduling_proposals_aggregate": [ - 1494 + 1673 ], "stage": [ - 4180 + 4359 ], "team_1": [ - 4307 + 4486 ], "team_1_seed": [ - 2481 + 2660 ], "team_2": [ - 4307 + 4486 ], "team_2_seed": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id_1": [ - 2481 + 2660 ], "tournament_team_id_2": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95208,7 +97847,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95222,31 +97861,31 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "finished": [ 3 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -95255,10 +97894,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "team_1_seed": [ 38 @@ -95267,13 +97906,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95301,19 +97940,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95341,19 +97980,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95381,19 +98020,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95401,7 +98040,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4061 + 4240 ], "ordering": [ 236 @@ -95415,31 +98054,31 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "finished": [ 3 ], "group": [ - 2479 + 2658 ], "id": [ - 4462 + 4641 ], "loser_parent_bracket_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_number": [ 38 ], "match_options_id": [ - 4462 + 4641 ], "parent_bracket_id": [ - 4462 + 4641 ], "path": [ 78 @@ -95448,10 +98087,10 @@ export default { 38 ], "scheduled_at": [ - 4024 + 4203 ], "scheduled_eta": [ - 4024 + 4203 ], "team_1_seed": [ 38 @@ -95460,13 +98099,13 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id_1": [ - 4462 + 4641 ], "tournament_team_id_2": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95474,7 +98113,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2479 + 2658 ], "match_number": [ 38 @@ -95494,19 +98133,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95515,13 +98154,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4039 + 4218 ], "_set": [ - 4053 + 4232 ], "where": [ - 4037 + 4216 ], "__typename": [ 78 @@ -95549,19 +98188,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95589,19 +98228,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95629,19 +98268,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2481 + 2660 ], "match_number": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "team_1_seed": [ - 2481 + 2660 ], "team_2_seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95649,16 +98288,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3439 + 3618 ], "steam_id": [ 180 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95666,10 +98305,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4076 + 4255 ], "nodes": [ - 4072 + 4251 ], "__typename": [ 78 @@ -95677,7 +98316,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4075 + 4254 ], "__typename": [ 78 @@ -95685,13 +98324,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4093 + 4272 ], "distinct": [ 3 ], "filter": [ - 4081 + 4260 ], "predicate": [ 39 @@ -95702,13 +98341,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4079 + 4258 ], "count": [ 38, { "columns": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -95717,31 +98356,31 @@ export default { } ], "max": [ - 4085 + 4264 ], "min": [ - 4087 + 4266 ], "stddev": [ - 4095 + 4274 ], "stddev_pop": [ - 4097 + 4276 ], "stddev_samp": [ - 4099 + 4278 ], "sum": [ - 4103 + 4282 ], "var_pop": [ - 4107 + 4286 ], "var_samp": [ - 4109 + 4288 ], "variance": [ - 4111 + 4290 ], "__typename": [ 78 @@ -95749,37 +98388,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4080 + 4259 ], "count": [ - 2481 + 2660 ], "max": [ - 4086 + 4265 ], "min": [ - 4088 + 4267 ], "stddev": [ - 4096 + 4275 ], "stddev_pop": [ - 4098 + 4277 ], "stddev_samp": [ - 4100 + 4279 ], "sum": [ - 4104 + 4283 ], "var_pop": [ - 4108 + 4287 ], "var_samp": [ - 4110 + 4289 ], "variance": [ - 4112 + 4291 ], "__typename": [ 78 @@ -95787,10 +98426,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4084 + 4263 ], "on_conflict": [ - 4090 + 4269 ], "__typename": [ 78 @@ -95806,7 +98445,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95814,25 +98453,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4081 + 4260 ], "_not": [ - 4081 + 4260 ], "_or": [ - 4081 + 4260 ], "organizer": [ - 3443 + 3622 ], "steam_id": [ 182 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -95849,16 +98488,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3450 + 3629 ], "steam_id": [ 180 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95869,7 +98508,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95877,10 +98516,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95891,7 +98530,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95899,10 +98538,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95913,7 +98552,7 @@ export default { 38 ], "returning": [ - 4072 + 4251 ], "__typename": [ 78 @@ -95921,13 +98560,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4082 + 4261 ], "update_columns": [ - 4105 + 4284 ], "where": [ - 4081 + 4260 ], "__typename": [ 78 @@ -95935,16 +98574,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95955,7 +98594,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95967,7 +98606,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -95983,7 +98622,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -95999,7 +98638,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96015,7 +98654,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96023,7 +98662,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4102 + 4281 ], "ordering": [ 236 @@ -96037,7 +98676,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96053,7 +98692,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96062,13 +98701,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4083 + 4262 ], "_set": [ - 4094 + 4273 ], "where": [ - 4081 + 4260 ], "__typename": [ 78 @@ -96084,7 +98723,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96100,7 +98739,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96116,7 +98755,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96124,28 +98763,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "stage": [ - 4154 + 4333 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96153,10 +98792,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4117 + 4296 ], "nodes": [ - 4113 + 4292 ], "__typename": [ 78 @@ -96164,7 +98803,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4116 + 4295 ], "__typename": [ 78 @@ -96172,13 +98811,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4134 + 4313 ], "distinct": [ 3 ], "filter": [ - 4122 + 4301 ], "predicate": [ 39 @@ -96189,13 +98828,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4120 + 4299 ], "count": [ 38, { "columns": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -96204,31 +98843,31 @@ export default { } ], "max": [ - 4126 + 4305 ], "min": [ - 4128 + 4307 ], "stddev": [ - 4136 + 4315 ], "stddev_pop": [ - 4138 + 4317 ], "stddev_samp": [ - 4140 + 4319 ], "sum": [ - 4144 + 4323 ], "var_pop": [ - 4148 + 4327 ], "var_samp": [ - 4150 + 4329 ], "variance": [ - 4152 + 4331 ], "__typename": [ 78 @@ -96236,37 +98875,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4121 + 4300 ], "count": [ - 2481 + 2660 ], "max": [ - 4127 + 4306 ], "min": [ - 4129 + 4308 ], "stddev": [ - 4137 + 4316 ], "stddev_pop": [ - 4139 + 4318 ], "stddev_samp": [ - 4141 + 4320 ], "sum": [ - 4145 + 4324 ], "var_pop": [ - 4149 + 4328 ], "var_samp": [ - 4151 + 4330 ], "variance": [ - 4153 + 4332 ], "__typename": [ 78 @@ -96274,10 +98913,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4125 + 4304 ], "on_conflict": [ - 4131 + 4310 ], "__typename": [ 78 @@ -96293,7 +98932,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96301,37 +98940,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4122 + 4301 ], "_not": [ - 4122 + 4301 ], "_or": [ - 4122 + 4301 ], "closes_at": [ - 4025 + 4204 ], "created_at": [ - 4025 + 4204 ], "default_match_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "opens_at": [ - 4025 + 4204 ], "round": [ 39 ], "stage": [ - 4166 + 4345 ], "tournament_stage_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -96348,28 +98987,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "stage": [ - 4178 + 4357 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96377,25 +99016,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96403,25 +99042,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96429,25 +99068,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96455,25 +99094,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96484,7 +99123,7 @@ export default { 38 ], "returning": [ - 4113 + 4292 ], "__typename": [ 78 @@ -96492,13 +99131,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4123 + 4302 ], "update_columns": [ - 4146 + 4325 ], "where": [ - 4122 + 4301 ], "__typename": [ 78 @@ -96506,28 +99145,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "default_match_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "opens_at": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "stage": [ - 4180 + 4359 ], "tournament_stage_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96535,7 +99174,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96544,25 +99183,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96578,7 +99217,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96594,7 +99233,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96610,7 +99249,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96618,7 +99257,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4143 + 4322 ], "ordering": [ 236 @@ -96629,25 +99268,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4024 + 4203 ], "created_at": [ - 4024 + 4203 ], "default_match_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "opens_at": [ - 4024 + 4203 ], "round": [ 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -96663,7 +99302,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96672,13 +99311,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4124 + 4303 ], "_set": [ - 4135 + 4314 ], "where": [ - 4122 + 4301 ], "__typename": [ 78 @@ -96694,7 +99333,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96710,7 +99349,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96726,7 +99365,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -96734,10 +99373,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4026, + 4205, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96747,19 +99386,19 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "brackets_aggregate": [ - 4027, + 4206, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96769,11 +99408,11 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], @@ -96784,16 +99423,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1098 + 1118 ], "groups": [ 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -96805,16 +99444,16 @@ export default { 38 ], "options": [ - 2176 + 2355 ], "order": [ 38 ], "results": [ - 5135, + 5365, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96824,19 +99463,19 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "results_aggregate": [ - 5136, + 5366, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -96846,16 +99485,16 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "settings": [ - 1352, + 1531, { "path": [ 78 @@ -96869,19 +99508,19 @@ export default { 3 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "type": [ - 1103 + 1123 ], "windows": [ - 4113, + 4292, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96891,19 +99530,19 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], "windows_aggregate": [ - 4114, + 4293, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -96913,11 +99552,11 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], @@ -96927,10 +99566,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4160 + 4339 ], "nodes": [ - 4154 + 4333 ], "__typename": [ 78 @@ -96938,13 +99577,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4157 + 4336 ], "bool_or": [ - 4158 + 4337 ], "count": [ - 4159 + 4338 ], "__typename": [ 78 @@ -96952,13 +99591,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4184 + 4363 ], "distinct": [ 3 ], "filter": [ - 4166 + 4345 ], "predicate": [ 4 @@ -96969,13 +99608,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4185 + 4364 ], "distinct": [ 3 ], "filter": [ - 4166 + 4345 ], "predicate": [ 4 @@ -96986,13 +99625,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4183 + 4362 ], "distinct": [ 3 ], "filter": [ - 4166 + 4345 ], "predicate": [ 39 @@ -97003,13 +99642,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4164 + 4343 ], "count": [ 38, { "columns": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "distinct": [ @@ -97018,31 +99657,31 @@ export default { } ], "max": [ - 4173 + 4352 ], "min": [ - 4175 + 4354 ], "stddev": [ - 4187 + 4366 ], "stddev_pop": [ - 4189 + 4368 ], "stddev_samp": [ - 4191 + 4370 ], "sum": [ - 4195 + 4374 ], "var_pop": [ - 4199 + 4378 ], "var_samp": [ - 4201 + 4380 ], "variance": [ - 4203 + 4382 ], "__typename": [ 78 @@ -97050,37 +99689,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4165 + 4344 ], "count": [ - 2481 + 2660 ], "max": [ - 4174 + 4353 ], "min": [ - 4176 + 4355 ], "stddev": [ - 4188 + 4367 ], "stddev_pop": [ - 4190 + 4369 ], "stddev_samp": [ - 4192 + 4371 ], "sum": [ - 4196 + 4375 ], "var_pop": [ - 4200 + 4379 ], "var_samp": [ - 4202 + 4381 ], "variance": [ - 4204 + 4383 ], "__typename": [ 78 @@ -97088,7 +99727,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1352 + 1531 ], "__typename": [ 78 @@ -97096,10 +99735,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4172 + 4351 ], "on_conflict": [ - 4179 + 4358 ], "__typename": [ 78 @@ -97133,25 +99772,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97159,19 +99798,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4166 + 4345 ], "_not": [ - 4166 + 4345 ], "_or": [ - 4166 + 4345 ], "brackets": [ - 4037 + 4216 ], "brackets_aggregate": [ - 4028 + 4207 ], "decider_best_of": [ 39 @@ -97180,16 +99819,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 1101 + 1121 ], "groups": [ 39 ], "id": [ - 4464 + 4643 ], "match_options_id": [ - 4464 + 4643 ], "max_rounds": [ 39 @@ -97201,19 +99840,19 @@ export default { 39 ], "options": [ - 2180 + 2359 ], "order": [ 39 ], "results": [ - 5154 + 5384 ], "results_aggregate": [ - 5137 + 5367 ], "settings": [ - 1354 + 1533 ], "swiss_no_elimination": [ 4 @@ -97222,19 +99861,19 @@ export default { 4 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "type": [ - 1104 + 1124 ], "windows": [ - 4122 + 4301 ], "windows_aggregate": [ - 4115 + 4294 ], "__typename": [ 78 @@ -97293,7 +99932,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4034 + 4213 ], "decider_best_of": [ 38 @@ -97302,16 +99941,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1109 + 1129 ], "groups": [ 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -97323,16 +99962,16 @@ export default { 38 ], "options": [ - 2187 + 2366 ], "order": [ 38 ], "results": [ - 5151 + 5381 ], "settings": [ - 1352 + 1531 ], "swiss_no_elimination": [ 3 @@ -97341,16 +99980,16 @@ export default { 3 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "type": [ - 1103 + 1123 ], "windows": [ - 4119 + 4298 ], "__typename": [ 78 @@ -97367,10 +100006,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -97385,7 +100024,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -97393,34 +100032,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97437,10 +100076,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -97455,7 +100094,7 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -97463,34 +100102,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97501,7 +100140,7 @@ export default { 38 ], "returning": [ - 4154 + 4333 ], "__typename": [ 78 @@ -97509,10 +100148,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4172 + 4351 ], "on_conflict": [ - 4179 + 4358 ], "__typename": [ 78 @@ -97520,13 +100159,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4167 + 4346 ], "update_columns": [ - 4197 + 4376 ], "where": [ - 4166 + 4345 ], "__typename": [ 78 @@ -97534,64 +100173,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4033 + 4212 ], "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "e_tournament_stage_type": [ - 1111 + 1131 ], "groups": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "match_options_id": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "options": [ - 2189 + 2368 ], "order": [ - 2481 + 2660 ], "results_aggregate": [ - 5150 + 5380 ], "settings": [ - 2481 + 2660 ], "swiss_no_elimination": [ - 2481 + 2660 ], "third_place_match": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "windows_aggregate": [ - 4118 + 4297 ], "__typename": [ 78 @@ -97599,7 +100238,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -97607,7 +100246,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1352 + 1531 ], "__typename": [ 78 @@ -97627,10 +100266,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -97645,7 +100284,7 @@ export default { 38 ], "settings": [ - 1352 + 1531 ], "swiss_no_elimination": [ 3 @@ -97654,10 +100293,10 @@ export default { 3 ], "tournament_id": [ - 4462 + 4641 ], "type": [ - 1103 + 1123 ], "__typename": [ 78 @@ -97691,25 +100330,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97743,25 +100382,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97795,25 +100434,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97821,7 +100460,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4194 + 4373 ], "ordering": [ 236 @@ -97841,10 +100480,10 @@ export default { 38 ], "id": [ - 4462 + 4641 ], "match_options_id": [ - 4462 + 4641 ], "max_rounds": [ 38 @@ -97859,7 +100498,7 @@ export default { 38 ], "settings": [ - 1352 + 1531 ], "swiss_no_elimination": [ 3 @@ -97868,10 +100507,10 @@ export default { 3 ], "tournament_id": [ - 4462 + 4641 ], "type": [ - 1103 + 1123 ], "__typename": [ 78 @@ -97905,25 +100544,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -97932,28 +100571,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4162 + 4341 ], "_delete_at_path": [ - 4168 + 4347 ], "_delete_elem": [ - 4169 + 4348 ], "_delete_key": [ - 4170 + 4349 ], "_inc": [ - 4171 + 4350 ], "_prepend": [ - 4182 + 4361 ], "_set": [ - 4186 + 4365 ], "where": [ - 4166 + 4345 ], "__typename": [ 78 @@ -97987,25 +100626,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98039,25 +100678,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98091,25 +100730,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2481 + 2660 ], "default_best_of": [ - 2481 + 2660 ], "groups": [ - 2481 + 2660 ], "max_rounds": [ - 2481 + 2660 ], "max_teams": [ - 2481 + 2660 ], "min_teams": [ - 2481 + 2660 ], "order": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98117,28 +100756,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by": [ - 3439 + 3618 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 ], "team": [ - 4287 + 4466 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98146,10 +100785,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4209 + 4388 ], "nodes": [ - 4205 + 4384 ], "__typename": [ 78 @@ -98157,7 +100796,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4208 + 4387 ], "__typename": [ 78 @@ -98165,13 +100804,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4226 + 4405 ], "distinct": [ 3 ], "filter": [ - 4214 + 4393 ], "predicate": [ 39 @@ -98182,13 +100821,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4212 + 4391 ], "count": [ 38, { "columns": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -98197,31 +100836,31 @@ export default { } ], "max": [ - 4218 + 4397 ], "min": [ - 4220 + 4399 ], "stddev": [ - 4228 + 4407 ], "stddev_pop": [ - 4230 + 4409 ], "stddev_samp": [ - 4232 + 4411 ], "sum": [ - 4236 + 4415 ], "var_pop": [ - 4240 + 4419 ], "var_samp": [ - 4242 + 4421 ], "variance": [ - 4244 + 4423 ], "__typename": [ 78 @@ -98229,37 +100868,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4213 + 4392 ], "count": [ - 2481 + 2660 ], "max": [ - 4219 + 4398 ], "min": [ - 4221 + 4400 ], "stddev": [ - 4229 + 4408 ], "stddev_pop": [ - 4231 + 4410 ], "stddev_samp": [ - 4233 + 4412 ], "sum": [ - 4237 + 4416 ], "var_pop": [ - 4241 + 4420 ], "var_samp": [ - 4243 + 4422 ], "variance": [ - 4245 + 4424 ], "__typename": [ 78 @@ -98267,10 +100906,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4217 + 4396 ], "on_conflict": [ - 4223 + 4402 ], "__typename": [ 78 @@ -98289,10 +100928,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98300,37 +100939,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4214 + 4393 ], "_not": [ - 4214 + 4393 ], "_or": [ - 4214 + 4393 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "invited_by": [ - 3443 + 3622 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 ], "team": [ - 4296 + 4475 ], "tournament_team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -98350,28 +100989,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by": [ - 3450 + 3629 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 ], "team": [ - 4305 + 4484 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98379,10 +101018,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -98391,7 +101030,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98399,19 +101038,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98419,10 +101058,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -98431,7 +101070,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98439,19 +101078,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98462,7 +101101,7 @@ export default { 38 ], "returning": [ - 4205 + 4384 ], "__typename": [ 78 @@ -98470,13 +101109,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4215 + 4394 ], "update_columns": [ - 4238 + 4417 ], "where": [ - 4214 + 4393 ], "__typename": [ 78 @@ -98484,28 +101123,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invited_by": [ - 3452 + 3631 ], "invited_by_player_steam_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "team": [ - 4307 + 4486 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98513,7 +101152,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98522,10 +101161,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -98534,7 +101173,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98553,10 +101192,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98575,10 +101214,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98597,10 +101236,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98608,7 +101247,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4235 + 4414 ], "ordering": [ 236 @@ -98619,10 +101258,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invited_by_player_steam_id": [ 180 @@ -98631,7 +101270,7 @@ export default { 180 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98650,10 +101289,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98662,13 +101301,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4216 + 4395 ], "_set": [ - 4227 + 4406 ], "where": [ - 4214 + 4393 ], "__typename": [ 78 @@ -98687,10 +101326,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98709,10 +101348,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98731,10 +101370,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98742,28 +101381,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1037 + 1057 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1062 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team": [ - 4287 + 4466 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98771,10 +101410,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4250 + 4429 ], "nodes": [ - 4246 + 4425 ], "__typename": [ 78 @@ -98782,7 +101421,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4249 + 4428 ], "__typename": [ 78 @@ -98790,13 +101429,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4267 + 4446 ], "distinct": [ 3 ], "filter": [ - 4255 + 4434 ], "predicate": [ 39 @@ -98807,13 +101446,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4253 + 4432 ], "count": [ 38, { "columns": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -98822,31 +101461,31 @@ export default { } ], "max": [ - 4259 + 4438 ], "min": [ - 4261 + 4440 ], "stddev": [ - 4269 + 4448 ], "stddev_pop": [ - 4271 + 4450 ], "stddev_samp": [ - 4273 + 4452 ], "sum": [ - 4277 + 4456 ], "var_pop": [ - 4281 + 4460 ], "var_samp": [ - 4283 + 4462 ], "variance": [ - 4285 + 4464 ], "__typename": [ 78 @@ -98854,37 +101493,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4254 + 4433 ], "count": [ - 2481 + 2660 ], "max": [ - 4260 + 4439 ], "min": [ - 4262 + 4441 ], "stddev": [ - 4270 + 4449 ], "stddev_pop": [ - 4272 + 4451 ], "stddev_samp": [ - 4274 + 4453 ], "sum": [ - 4278 + 4457 ], "var_pop": [ - 4282 + 4461 ], "var_samp": [ - 4284 + 4463 ], "variance": [ - 4286 + 4465 ], "__typename": [ 78 @@ -98892,10 +101531,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4258 + 4437 ], "on_conflict": [ - 4264 + 4443 ], "__typename": [ 78 @@ -98911,7 +101550,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -98919,37 +101558,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4255 + 4434 ], "_not": [ - 4255 + 4434 ], "_or": [ - 4255 + 4434 ], "e_team_role": [ - 1040 + 1060 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "role": [ - 1043 + 1063 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "tournament_team": [ - 4296 + 4475 ], "tournament_team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -98966,28 +101605,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1048 + 1068 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "role": [ - 1042 + 1062 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team": [ - 4305 + 4484 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -98998,10 +101637,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99009,13 +101648,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99026,10 +101665,10 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99037,13 +101676,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99054,7 +101693,7 @@ export default { 38 ], "returning": [ - 4246 + 4425 ], "__typename": [ 78 @@ -99062,13 +101701,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4256 + 4435 ], "update_columns": [ - 4279 + 4458 ], "where": [ - 4255 + 4434 ], "__typename": [ 78 @@ -99076,28 +101715,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1050 + 1070 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "role": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team": [ - 4307 + 4486 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99108,7 +101747,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99120,13 +101759,13 @@ export default { 180 ], "role": [ - 1042 + 1062 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99142,7 +101781,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99158,7 +101797,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99174,7 +101813,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99182,7 +101821,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4276 + 4455 ], "ordering": [ 236 @@ -99196,13 +101835,13 @@ export default { 180 ], "role": [ - 1042 + 1062 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99218,7 +101857,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99227,13 +101866,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4257 + 4436 ], "_set": [ - 4268 + 4447 ], "where": [ - 4255 + 4434 ], "__typename": [ 78 @@ -99249,7 +101888,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99265,7 +101904,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99281,7 +101920,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99292,28 +101931,28 @@ export default { 3 ], "captain": [ - 3439 + 3618 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "creator": [ - 3439 + 3618 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invites": [ - 4205, + 4384, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99323,19 +101962,19 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], "invites_aggregate": [ - 4206, + 4385, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -99345,11 +101984,11 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], @@ -99360,13 +101999,13 @@ export default { 180 ], "results": [ - 5135 + 5365 ], "roster": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99376,19 +102015,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "roster_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -99398,11 +102037,11 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], @@ -99413,16 +102052,16 @@ export default { 78 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99430,10 +102069,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4291 + 4470 ], "nodes": [ - 4287 + 4466 ], "__typename": [ 78 @@ -99441,7 +102080,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4290 + 4469 ], "__typename": [ 78 @@ -99449,13 +102088,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4309 + 4488 ], "distinct": [ 3 ], "filter": [ - 4296 + 4475 ], "predicate": [ 39 @@ -99466,13 +102105,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4294 + 4473 ], "count": [ 38, { "columns": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "distinct": [ @@ -99481,31 +102120,31 @@ export default { } ], "max": [ - 4300 + 4479 ], "min": [ - 4302 + 4481 ], "stddev": [ - 4311 + 4490 ], "stddev_pop": [ - 4313 + 4492 ], "stddev_samp": [ - 4315 + 4494 ], "sum": [ - 4319 + 4498 ], "var_pop": [ - 4323 + 4502 ], "var_samp": [ - 4325 + 4504 ], "variance": [ - 4327 + 4506 ], "__typename": [ 78 @@ -99513,37 +102152,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4295 + 4474 ], "count": [ - 2481 + 2660 ], "max": [ - 4301 + 4480 ], "min": [ - 4303 + 4482 ], "stddev": [ - 4312 + 4491 ], "stddev_pop": [ - 4314 + 4493 ], "stddev_samp": [ - 4316 + 4495 ], "sum": [ - 4320 + 4499 ], "var_pop": [ - 4324 + 4503 ], "var_samp": [ - 4326 + 4505 ], "variance": [ - 4328 + 4507 ], "__typename": [ 78 @@ -99551,10 +102190,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4299 + 4478 ], "on_conflict": [ - 4306 + 4485 ], "__typename": [ 78 @@ -99576,13 +102215,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99590,40 +102229,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4296 + 4475 ], "_not": [ - 4296 + 4475 ], "_or": [ - 4296 + 4475 ], "can_manage": [ 4 ], "captain": [ - 3443 + 3622 ], "captain_steam_id": [ 182 ], "created_at": [ - 4025 + 4204 ], "creator": [ - 3443 + 3622 ], "eligible_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "invites": [ - 4214 + 4393 ], "invites_aggregate": [ - 4207 + 4386 ], "name": [ 80 @@ -99632,13 +102271,13 @@ export default { 182 ], "results": [ - 5154 + 5384 ], "roster": [ - 4255 + 4434 ], "roster_aggregate": [ - 4248 + 4427 ], "seed": [ 39 @@ -99647,16 +102286,16 @@ export default { 80 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -99679,25 +102318,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3450 + 3629 ], "captain_steam_id": [ 180 ], "created_at": [ - 4024 + 4203 ], "creator": [ - 3450 + 3629 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "invites": [ - 4211 + 4390 ], "name": [ 78 @@ -99706,10 +102345,10 @@ export default { 180 ], "results": [ - 5163 + 5393 ], "roster": [ - 4252 + 4431 ], "seed": [ 38 @@ -99718,16 +102357,16 @@ export default { 78 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99738,13 +102377,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -99759,10 +102398,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99770,34 +102409,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "eligible_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "short_name": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99808,13 +102447,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -99829,10 +102468,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99840,34 +102479,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "eligible_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "short_name": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99878,7 +102517,7 @@ export default { 38 ], "returning": [ - 4287 + 4466 ], "__typename": [ 78 @@ -99886,10 +102525,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4299 + 4478 ], "on_conflict": [ - 4306 + 4485 ], "__typename": [ 78 @@ -99897,13 +102536,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4297 + 4476 ], "update_columns": [ - 4321 + 4500 ], "where": [ - 4296 + 4475 ], "__typename": [ 78 @@ -99911,58 +102550,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2481 + 2660 ], "captain": [ - 3452 + 3631 ], "captain_steam_id": [ - 2481 + 2660 ], "created_at": [ - 2481 + 2660 ], "creator": [ - 3452 + 3631 ], "eligible_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "invites_aggregate": [ - 4210 + 4389 ], "name": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "results": [ - 5165 + 5395 ], "roster_aggregate": [ - 4251 + 4430 ], "seed": [ - 2481 + 2660 ], "short_name": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -99970,7 +102609,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -99982,13 +102621,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -100003,10 +102642,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100028,13 +102667,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100056,13 +102695,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100084,13 +102723,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100098,7 +102737,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4318 + 4497 ], "ordering": [ 236 @@ -100112,13 +102751,13 @@ export default { 180 ], "created_at": [ - 4024 + 4203 ], "eligible_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "name": [ 78 @@ -100133,10 +102772,10 @@ export default { 78 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100158,13 +102797,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100173,13 +102812,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4298 + 4477 ], "_set": [ - 4310 + 4489 ], "where": [ - 4296 + 4475 ], "__typename": [ 78 @@ -100201,13 +102840,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100229,13 +102868,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100257,13 +102896,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2481 + 2660 ], "owner_steam_id": [ - 2481 + 2660 ], "seed": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100271,10 +102910,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "manual": [ 3 @@ -100286,31 +102925,31 @@ export default { 78 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team": [ - 4287 + 4466 ], "tournament_team_id": [ - 4462 + 4641 ], "trophy_config": [ - 4374 + 4553 ], "__typename": [ 78 @@ -100318,10 +102957,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4335 + 4514 ], "nodes": [ - 4329 + 4508 ], "__typename": [ 78 @@ -100329,13 +102968,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4332 + 4511 ], "bool_or": [ - 4333 + 4512 ], "count": [ - 4334 + 4513 ], "__typename": [ 78 @@ -100343,13 +102982,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4353 + 4532 ], "distinct": [ 3 ], "filter": [ - 4340 + 4519 ], "predicate": [ 4 @@ -100360,13 +102999,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4354 + 4533 ], "distinct": [ 3 ], "filter": [ - 4340 + 4519 ], "predicate": [ 4 @@ -100377,13 +103016,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4352 + 4531 ], "distinct": [ 3 ], "filter": [ - 4340 + 4519 ], "predicate": [ 39 @@ -100394,13 +103033,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4338 + 4517 ], "count": [ 38, { "columns": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -100409,31 +103048,31 @@ export default { } ], "max": [ - 4344 + 4523 ], "min": [ - 4346 + 4525 ], "stddev": [ - 4356 + 4535 ], "stddev_pop": [ - 4358 + 4537 ], "stddev_samp": [ - 4360 + 4539 ], "sum": [ - 4364 + 4543 ], "var_pop": [ - 4368 + 4547 ], "var_samp": [ - 4370 + 4549 ], "variance": [ - 4372 + 4551 ], "__typename": [ 78 @@ -100441,37 +103080,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4339 + 4518 ], "count": [ - 2481 + 2660 ], "max": [ - 4345 + 4524 ], "min": [ - 4347 + 4526 ], "stddev": [ - 4357 + 4536 ], "stddev_pop": [ - 4359 + 4538 ], "stddev_samp": [ - 4361 + 4540 ], "sum": [ - 4365 + 4544 ], "var_pop": [ - 4369 + 4548 ], "var_samp": [ - 4371 + 4550 ], "variance": [ - 4373 + 4552 ], "__typename": [ 78 @@ -100479,10 +103118,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4343 + 4522 ], "on_conflict": [ - 4349 + 4528 ], "__typename": [ 78 @@ -100501,10 +103140,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100512,19 +103151,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4340 + 4519 ], "_not": [ - 4340 + 4519 ], "_or": [ - 4340 + 4519 ], "created_at": [ - 4025 + 4204 ], "id": [ - 4464 + 4643 ], "manual": [ 4 @@ -100536,31 +103175,31 @@ export default { 80 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "tournament_team": [ - 4296 + 4475 ], "tournament_team_id": [ - 4464 + 4643 ], "trophy_config": [ - 4383 + 4562 ], "__typename": [ 78 @@ -100580,10 +103219,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "manual": [ 3 @@ -100592,31 +103231,31 @@ export default { 38 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team": [ - 4305 + 4484 ], "tournament_team_id": [ - 4462 + 4641 ], "trophy_config": [ - 4392 + 4571 ], "__typename": [ 78 @@ -100624,10 +103263,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "placement": [ 38 @@ -100639,13 +103278,13 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100653,28 +103292,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "placement_tier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100682,10 +103321,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "placement": [ 38 @@ -100697,13 +103336,13 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100711,28 +103350,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "placement_tier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "team_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100743,7 +103382,7 @@ export default { 38 ], "returning": [ - 4329 + 4508 ], "__typename": [ 78 @@ -100751,13 +103390,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4341 + 4520 ], "update_columns": [ - 4366 + 4545 ], "where": [ - 4340 + 4519 ], "__typename": [ 78 @@ -100765,46 +103404,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "manual": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "placement_tier": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team": [ - 4307 + 4486 ], "tournament_team_id": [ - 2481 + 2660 ], "trophy_config": [ - 4394 + 4573 ], "__typename": [ 78 @@ -100812,7 +103451,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100823,10 +103462,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "manual": [ 3 @@ -100838,13 +103477,13 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100863,10 +103502,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100885,10 +103524,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100907,10 +103546,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100918,7 +103557,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4363 + 4542 ], "ordering": [ 236 @@ -100929,10 +103568,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "id": [ - 4462 + 4641 ], "manual": [ 3 @@ -100947,13 +103586,13 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -100972,10 +103611,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -100984,13 +103623,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4342 + 4521 ], "_set": [ - 4355 + 4534 ], "where": [ - 4340 + 4519 ], "__typename": [ 78 @@ -101009,10 +103648,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101031,10 +103670,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101053,10 +103692,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101064,13 +103703,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101082,13 +103721,13 @@ export default { 38 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101096,10 +103735,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4378 + 4557 ], "nodes": [ - 4374 + 4553 ], "__typename": [ 78 @@ -101107,7 +103746,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4377 + 4556 ], "__typename": [ 78 @@ -101115,13 +103754,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4396 + 4575 ], "distinct": [ 3 ], "filter": [ - 4383 + 4562 ], "predicate": [ 39 @@ -101132,13 +103771,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4381 + 4560 ], "count": [ 38, { "columns": [ - 4396, + 4575, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -101147,31 +103786,31 @@ export default { } ], "max": [ - 4387 + 4566 ], "min": [ - 4389 + 4568 ], "stddev": [ - 4398 + 4577 ], "stddev_pop": [ - 4400 + 4579 ], "stddev_samp": [ - 4402 + 4581 ], "sum": [ - 4406 + 4585 ], "var_pop": [ - 4410 + 4589 ], "var_samp": [ - 4412 + 4591 ], "variance": [ - 4414 + 4593 ], "__typename": [ 78 @@ -101179,37 +103818,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4382 + 4561 ], "count": [ - 2481 + 2660 ], "max": [ - 4388 + 4567 ], "min": [ - 4390 + 4569 ], "stddev": [ - 4399 + 4578 ], "stddev_pop": [ - 4401 + 4580 ], "stddev_samp": [ - 4403 + 4582 ], "sum": [ - 4407 + 4586 ], "var_pop": [ - 4411 + 4590 ], "var_samp": [ - 4413 + 4592 ], "variance": [ - 4415 + 4594 ], "__typename": [ 78 @@ -101217,10 +103856,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4386 + 4565 ], "on_conflict": [ - 4393 + 4572 ], "__typename": [ 78 @@ -101239,10 +103878,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101250,22 +103889,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4383 + 4562 ], "_not": [ - 4383 + 4562 ], "_or": [ - 4383 + 4562 ], "created_at": [ - 4025 + 4204 ], "custom_name": [ 80 ], "id": [ - 4464 + 4643 ], "image_url": [ 80 @@ -101277,13 +103916,13 @@ export default { 39 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "updated_at": [ - 4025 + 4204 ], "__typename": [ 78 @@ -101303,13 +103942,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101321,13 +103960,13 @@ export default { 38 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101335,13 +103974,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101353,10 +103992,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101364,28 +104003,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2481 + 2660 ], "custom_name": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "image_url": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101393,13 +104032,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101411,10 +104050,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101422,28 +104061,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2481 + 2660 ], "custom_name": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "image_url": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101454,7 +104093,7 @@ export default { 38 ], "returning": [ - 4374 + 4553 ], "__typename": [ 78 @@ -101462,10 +104101,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4386 + 4565 ], "on_conflict": [ - 4393 + 4572 ], "__typename": [ 78 @@ -101473,13 +104112,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4384 + 4563 ], "update_columns": [ - 4408 + 4587 ], "where": [ - 4383 + 4562 ], "__typename": [ 78 @@ -101487,31 +104126,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2481 + 2660 ], "custom_name": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "image_url": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "updated_at": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101519,7 +104158,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -101528,13 +104167,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101546,10 +104185,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101568,10 +104207,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101590,10 +104229,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101612,10 +104251,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101623,7 +104262,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4405 + 4584 ], "ordering": [ 236 @@ -101634,13 +104273,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4024 + 4203 ], "custom_name": [ 78 ], "id": [ - 4462 + 4641 ], "image_url": [ 78 @@ -101652,10 +104291,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "updated_at": [ - 4024 + 4203 ], "__typename": [ 78 @@ -101674,10 +104313,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101686,13 +104325,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4385 + 4564 ], "_set": [ - 4397 + 4576 ], "where": [ - 4383 + 4562 ], "__typename": [ 78 @@ -101711,10 +104350,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101733,10 +104372,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101755,10 +104394,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2481 + 2660 ], "silhouette": [ - 2481 + 2660 ], "__typename": [ 78 @@ -101766,7 +104405,7 @@ export default { }, "tournaments": { "admin": [ - 3439 + 3618 ], "auto_start": [ 3 @@ -101796,7 +104435,7 @@ export default { 3 ], "created_at": [ - 4024 + 4203 ], "description": [ 78 @@ -101853,13 +104492,13 @@ export default { 78 ], "e_tournament_status": [ - 1119 + 1139 ], "has_min_teams": [ 3 ], "id": [ - 4462 + 4641 ], "is_league": [ 3 @@ -101871,10 +104510,10 @@ export default { 3 ], "league_season_division": [ - 1530 + 1709 ], "match_options_id": [ - 4462 + 4641 ], "max_players_per_lineup": [ 38 @@ -101886,16 +104525,16 @@ export default { 78 ], "options": [ - 2176 + 2355 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4072, + 4251, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101905,19 +104544,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "organizers_aggregate": [ - 4073, + 4252, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -101927,19 +104566,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "player_stats": [ - 5246, + 5476, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101949,19 +104588,19 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], "player_stats_aggregate": [ - 5247, + 5477, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -101971,19 +104610,19 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], "results": [ - 5195, + 5425, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -101993,19 +104632,19 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "results_aggregate": [ - 5196, + 5426, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -102015,19 +104654,19 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "rosters": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102037,19 +104676,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "rosters_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102059,11 +104698,11 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], @@ -102071,10 +104710,10 @@ export default { 78 ], "stages": [ - 4154, + 4333, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -102084,19 +104723,19 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "stages_aggregate": [ - 4155, + 4334, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -102106,25 +104745,25 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "start": [ - 4024 + 4203 ], "status": [ - 1124 + 1144 ], "teams": [ - 4287, + 4466, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -102134,19 +104773,19 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "teams_aggregate": [ - 4288, + 4467, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -102156,19 +104795,19 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "trophies": [ - 4329, + 4508, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102178,19 +104817,19 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "trophies_aggregate": [ - 4330, + 4509, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -102200,477 +104839,980 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 + ] + } + ], + "trophies_enabled": [ + 3 + ], + "trophy_configs": [ + 4553, + { + "distinct_on": [ + 4575, + "[tournament_trophy_configs_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4573, + "[tournament_trophy_configs_order_by!]" + ], + "where": [ + 4562 + ] + } + ], + "trophy_configs_aggregate": [ + 4554, + { + "distinct_on": [ + 4575, + "[tournament_trophy_configs_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4573, + "[tournament_trophy_configs_order_by!]" + ], + "where": [ + 4562 + ] + } + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate": { + "aggregate": [ + 4601 + ], + "nodes": [ + 4595 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp": { + "bool_and": [ + 4598 + ], + "bool_or": [ + 4599 + ], + "count": [ + 4600 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_and": { + "arguments": [ + 4620 + ], + "distinct": [ + 3 + ], + "filter": [ + 4606 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_bool_or": { + "arguments": [ + 4621 + ], + "distinct": [ + 3 + ], + "filter": [ + 4606 + ], + "predicate": [ + 4 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_bool_exp_count": { + "arguments": [ + 4619 + ], + "distinct": [ + 3 + ], + "filter": [ + 4606 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_fields": { + "avg": [ + 4604 + ], + "count": [ + 38, + { + "columns": [ + 4619, + "[tournaments_select_column!]" + ], + "distinct": [ + 3 ] } ], + "max": [ + 4610 + ], + "min": [ + 4612 + ], + "stddev": [ + 4623 + ], + "stddev_pop": [ + 4625 + ], + "stddev_samp": [ + 4627 + ], + "sum": [ + 4631 + ], + "var_pop": [ + 4635 + ], + "var_samp": [ + 4637 + ], + "variance": [ + 4639 + ], + "__typename": [ + 78 + ] + }, + "tournaments_aggregate_order_by": { + "avg": [ + 4605 + ], + "count": [ + 2660 + ], + "max": [ + 4611 + ], + "min": [ + 4613 + ], + "stddev": [ + 4624 + ], + "stddev_pop": [ + 4626 + ], + "stddev_samp": [ + 4628 + ], + "sum": [ + 4632 + ], + "var_pop": [ + 4636 + ], + "var_samp": [ + 4638 + ], + "variance": [ + 4640 + ], + "__typename": [ + 78 + ] + }, + "tournaments_arr_rel_insert_input": { + "data": [ + 4609 + ], + "on_conflict": [ + 4616 + ], + "__typename": [ + 78 + ] + }, + "tournaments_avg_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_avg_order_by": { + "organizer_steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "tournaments_bool_exp": { + "_and": [ + 4606 + ], + "_not": [ + 4606 + ], + "_or": [ + 4606 + ], + "admin": [ + 3622 + ], + "auto_start": [ + 4 + ], + "can_cancel": [ + 4 + ], + "can_close_registration": [ + 4 + ], + "can_join": [ + 4 + ], + "can_open_registration": [ + 4 + ], + "can_pause": [ + 4 + ], + "can_resume": [ + 4 + ], + "can_setup": [ + 4 + ], + "can_start": [ + 4 + ], + "created_at": [ + 4204 + ], + "description": [ + 80 + ], + "discord_guild_id": [ + 80 + ], + "discord_notifications_enabled": [ + 4 + ], + "discord_notify_Canceled": [ + 4 + ], + "discord_notify_Finished": [ + 4 + ], + "discord_notify_Forfeit": [ + 4 + ], + "discord_notify_Live": [ + 4 + ], + "discord_notify_MapPaused": [ + 4 + ], + "discord_notify_PickingPlayers": [ + 4 + ], + "discord_notify_Scheduled": [ + 4 + ], + "discord_notify_Surrendered": [ + 4 + ], + "discord_notify_Tie": [ + 4 + ], + "discord_notify_Veto": [ + 4 + ], + "discord_notify_WaitingForCheckIn": [ + 4 + ], + "discord_notify_WaitingForServer": [ + 4 + ], + "discord_role_id": [ + 80 + ], + "discord_voice_enabled": [ + 4 + ], + "discord_webhook": [ + 80 + ], + "e_tournament_status": [ + 1142 + ], + "has_min_teams": [ + 4 + ], + "id": [ + 4643 + ], + "is_league": [ + 4 + ], + "is_organizer": [ + 4 + ], + "joined_tournament": [ + 4 + ], + "league_season_division": [ + 1716 + ], + "match_options_id": [ + 4643 + ], + "max_players_per_lineup": [ + 39 + ], + "min_players_per_lineup": [ + 39 + ], + "name": [ + 80 + ], + "options": [ + 2359 + ], + "organizer_steam_id": [ + 182 + ], + "organizers": [ + 4260 + ], + "organizers_aggregate": [ + 4253 + ], + "player_stats": [ + 5495 + ], + "player_stats_aggregate": [ + 5478 + ], + "results": [ + 5444 + ], + "results_aggregate": [ + 5427 + ], + "rosters": [ + 4434 + ], + "rosters_aggregate": [ + 4427 + ], + "scheduling_mode": [ + 80 + ], + "stages": [ + 4345 + ], + "stages_aggregate": [ + 4335 + ], + "start": [ + 4204 + ], + "status": [ + 1145 + ], + "teams": [ + 4475 + ], + "teams_aggregate": [ + 4468 + ], + "trophies": [ + 4519 + ], + "trophies_aggregate": [ + 4510 + ], + "trophies_enabled": [ + 4 + ], + "trophy_configs": [ + 4562 + ], + "trophy_configs_aggregate": [ + 4555 + ], + "__typename": [ + 78 + ] + }, + "tournaments_constraint": {}, + "tournaments_inc_input": { + "organizer_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "tournaments_insert_input": { + "admin": [ + 3629 + ], + "auto_start": [ + 3 + ], + "created_at": [ + 4203 + ], + "description": [ + 78 + ], + "discord_guild_id": [ + 78 + ], + "discord_notifications_enabled": [ + 3 + ], + "discord_notify_Canceled": [ + 3 + ], + "discord_notify_Finished": [ + 3 + ], + "discord_notify_Forfeit": [ + 3 + ], + "discord_notify_Live": [ + 3 + ], + "discord_notify_MapPaused": [ + 3 + ], + "discord_notify_PickingPlayers": [ + 3 + ], + "discord_notify_Scheduled": [ + 3 + ], + "discord_notify_Surrendered": [ + 3 + ], + "discord_notify_Tie": [ + 3 + ], + "discord_notify_Veto": [ + 3 + ], + "discord_notify_WaitingForCheckIn": [ + 3 + ], + "discord_notify_WaitingForServer": [ + 3 + ], + "discord_role_id": [ + 78 + ], + "discord_voice_enabled": [ + 3 + ], + "discord_webhook": [ + 78 + ], + "e_tournament_status": [ + 1150 + ], + "id": [ + 4641 + ], + "is_league": [ + 3 + ], + "league_season_division": [ + 1724 + ], + "match_options_id": [ + 4641 + ], + "name": [ + 78 + ], + "options": [ + 2366 + ], + "organizer_steam_id": [ + 180 + ], + "organizers": [ + 4257 + ], + "player_stats": [ + 5492 + ], + "results": [ + 5441 + ], + "rosters": [ + 4431 + ], + "scheduling_mode": [ + 78 + ], + "stages": [ + 4342 + ], + "start": [ + 4203 + ], + "status": [ + 1144 + ], + "teams": [ + 4472 + ], + "trophies": [ + 4516 + ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4374, - { - "distinct_on": [ - 4396, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4394, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4383 - ] - } - ], - "trophy_configs_aggregate": [ - 4375, - { - "distinct_on": [ - 4396, - "[tournament_trophy_configs_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4394, - "[tournament_trophy_configs_order_by!]" - ], - "where": [ - 4383 - ] - } + 4559 ], "__typename": [ 78 ] }, - "tournaments_aggregate": { - "aggregate": [ - 4422 - ], - "nodes": [ - 4416 + "tournaments_max_fields": { + "created_at": [ + 4203 ], - "__typename": [ + "description": [ 78 - ] - }, - "tournaments_aggregate_bool_exp": { - "bool_and": [ - 4419 ], - "bool_or": [ - 4420 + "discord_guild_id": [ + 78 ], - "count": [ - 4421 + "discord_role_id": [ + 78 ], - "__typename": [ + "discord_webhook": [ 78 - ] - }, - "tournaments_aggregate_bool_exp_bool_and": { - "arguments": [ - 4441 ], - "distinct": [ - 3 + "id": [ + 4641 ], - "filter": [ - 4427 + "match_options_id": [ + 4641 ], - "predicate": [ - 4 + "max_players_per_lineup": [ + 38 ], - "__typename": [ + "min_players_per_lineup": [ + 38 + ], + "name": [ 78 - ] - }, - "tournaments_aggregate_bool_exp_bool_or": { - "arguments": [ - 4442 ], - "distinct": [ - 3 + "organizer_steam_id": [ + 180 ], - "filter": [ - 4427 + "scheduling_mode": [ + 78 ], - "predicate": [ - 4 + "start": [ + 4203 ], "__typename": [ 78 ] }, - "tournaments_aggregate_bool_exp_count": { - "arguments": [ - 4440 + "tournaments_max_order_by": { + "created_at": [ + 2660 ], - "distinct": [ - 3 + "description": [ + 2660 ], - "filter": [ - 4427 + "discord_guild_id": [ + 2660 ], - "predicate": [ - 39 + "discord_role_id": [ + 2660 + ], + "discord_webhook": [ + 2660 + ], + "id": [ + 2660 + ], + "match_options_id": [ + 2660 + ], + "name": [ + 2660 + ], + "organizer_steam_id": [ + 2660 + ], + "scheduling_mode": [ + 2660 + ], + "start": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_aggregate_fields": { - "avg": [ - 4425 + "tournaments_min_fields": { + "created_at": [ + 4203 ], - "count": [ - 38, - { - "columns": [ - 4440, - "[tournaments_select_column!]" - ], - "distinct": [ - 3 - ] - } + "description": [ + 78 ], - "max": [ - 4431 + "discord_guild_id": [ + 78 ], - "min": [ - 4433 + "discord_role_id": [ + 78 ], - "stddev": [ - 4444 + "discord_webhook": [ + 78 ], - "stddev_pop": [ - 4446 + "id": [ + 4641 ], - "stddev_samp": [ - 4448 + "match_options_id": [ + 4641 ], - "sum": [ - 4452 + "max_players_per_lineup": [ + 38 ], - "var_pop": [ - 4456 + "min_players_per_lineup": [ + 38 ], - "var_samp": [ - 4458 + "name": [ + 78 ], - "variance": [ - 4460 + "organizer_steam_id": [ + 180 + ], + "scheduling_mode": [ + 78 + ], + "start": [ + 4203 ], "__typename": [ 78 ] }, - "tournaments_aggregate_order_by": { - "avg": [ - 4426 + "tournaments_min_order_by": { + "created_at": [ + 2660 ], - "count": [ - 2481 + "description": [ + 2660 ], - "max": [ - 4432 + "discord_guild_id": [ + 2660 ], - "min": [ - 4434 + "discord_role_id": [ + 2660 ], - "stddev": [ - 4445 + "discord_webhook": [ + 2660 ], - "stddev_pop": [ - 4447 + "id": [ + 2660 ], - "stddev_samp": [ - 4449 + "match_options_id": [ + 2660 ], - "sum": [ - 4453 + "name": [ + 2660 ], - "var_pop": [ - 4457 + "organizer_steam_id": [ + 2660 ], - "var_samp": [ - 4459 + "scheduling_mode": [ + 2660 ], - "variance": [ - 4461 + "start": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_arr_rel_insert_input": { - "data": [ - 4430 + "tournaments_mutation_response": { + "affected_rows": [ + 38 ], - "on_conflict": [ - 4437 + "returning": [ + 4595 ], "__typename": [ 78 ] }, - "tournaments_avg_fields": { - "max_players_per_lineup": [ - 38 - ], - "min_players_per_lineup": [ - 38 + "tournaments_obj_rel_insert_input": { + "data": [ + 4609 ], - "organizer_steam_id": [ - 29 + "on_conflict": [ + 4616 ], "__typename": [ 78 ] }, - "tournaments_avg_order_by": { - "organizer_steam_id": [ - 2481 + "tournaments_on_conflict": { + "constraint": [ + 4607 + ], + "update_columns": [ + 4633 + ], + "where": [ + 4606 ], "__typename": [ 78 ] }, - "tournaments_bool_exp": { - "_and": [ - 4427 - ], - "_not": [ - 4427 - ], - "_or": [ - 4427 - ], + "tournaments_order_by": { "admin": [ - 3443 + 3631 ], "auto_start": [ - 4 + 2660 ], "can_cancel": [ - 4 + 2660 ], "can_close_registration": [ - 4 + 2660 ], "can_join": [ - 4 + 2660 ], "can_open_registration": [ - 4 + 2660 ], "can_pause": [ - 4 + 2660 ], "can_resume": [ - 4 + 2660 ], "can_setup": [ - 4 + 2660 ], "can_start": [ - 4 + 2660 ], "created_at": [ - 4025 + 2660 ], "description": [ - 80 + 2660 ], "discord_guild_id": [ - 80 + 2660 ], "discord_notifications_enabled": [ - 4 + 2660 ], "discord_notify_Canceled": [ - 4 + 2660 ], "discord_notify_Finished": [ - 4 + 2660 ], "discord_notify_Forfeit": [ - 4 + 2660 ], "discord_notify_Live": [ - 4 + 2660 ], "discord_notify_MapPaused": [ - 4 + 2660 ], "discord_notify_PickingPlayers": [ - 4 + 2660 ], "discord_notify_Scheduled": [ - 4 + 2660 ], "discord_notify_Surrendered": [ - 4 + 2660 ], "discord_notify_Tie": [ - 4 + 2660 ], "discord_notify_Veto": [ - 4 + 2660 ], "discord_notify_WaitingForCheckIn": [ - 4 + 2660 ], "discord_notify_WaitingForServer": [ - 4 + 2660 ], "discord_role_id": [ - 80 + 2660 ], "discord_voice_enabled": [ - 4 + 2660 ], "discord_webhook": [ - 80 + 2660 ], "e_tournament_status": [ - 1122 + 1152 ], "has_min_teams": [ - 4 + 2660 ], "id": [ - 4464 + 2660 ], "is_league": [ - 4 + 2660 ], "is_organizer": [ - 4 + 2660 ], "joined_tournament": [ - 4 + 2660 ], "league_season_division": [ - 1537 + 1726 ], "match_options_id": [ - 4464 + 2660 ], "max_players_per_lineup": [ - 39 + 2660 ], "min_players_per_lineup": [ - 39 + 2660 ], "name": [ - 80 + 2660 ], "options": [ - 2180 + 2368 ], "organizer_steam_id": [ - 182 - ], - "organizers": [ - 4081 + 2660 ], "organizers_aggregate": [ - 4074 - ], - "player_stats": [ - 5265 + 4256 ], "player_stats_aggregate": [ - 5248 - ], - "results": [ - 5214 + 5491 ], "results_aggregate": [ - 5197 - ], - "rosters": [ - 4255 + 5440 ], "rosters_aggregate": [ - 4248 + 4430 ], "scheduling_mode": [ - 80 - ], - "stages": [ - 4166 + 2660 ], "stages_aggregate": [ - 4156 + 4340 ], "start": [ - 4025 + 2660 ], "status": [ - 1125 - ], - "teams": [ - 4296 + 2660 ], "teams_aggregate": [ - 4289 - ], - "trophies": [ - 4340 + 4471 ], "trophies_aggregate": [ - 4331 + 4515 ], "trophies_enabled": [ - 4 - ], - "trophy_configs": [ - 4383 + 2660 ], "trophy_configs_aggregate": [ - 4376 + 4558 ], "__typename": [ 78 ] }, - "tournaments_constraint": {}, - "tournaments_inc_input": { - "organizer_steam_id": [ - 180 + "tournaments_pk_columns_input": { + "id": [ + 4641 ], "__typename": [ 78 ] }, - "tournaments_insert_input": { - "admin": [ - 3450 - ], + "tournaments_select_column": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, + "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, + "tournaments_set_input": { "auto_start": [ 3 ], "created_at": [ - 4024 + 4203 ], "description": [ 78 @@ -102726,73 +105868,120 @@ export default { "discord_webhook": [ 78 ], - "e_tournament_status": [ - 1130 - ], "id": [ - 4462 + 4641 ], "is_league": [ 3 ], - "league_season_division": [ - 1545 - ], "match_options_id": [ - 4462 + 4641 ], "name": [ 78 ], - "options": [ - 2187 - ], "organizer_steam_id": [ 180 ], - "organizers": [ - 4078 + "scheduling_mode": [ + 78 ], - "player_stats": [ - 5262 + "start": [ + 4203 ], - "results": [ - 5211 + "status": [ + 1144 ], - "rosters": [ - 4252 + "trophies_enabled": [ + 3 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "tournaments_stddev_fields": { + "max_players_per_lineup": [ + 38 ], - "stages": [ - 4163 + "min_players_per_lineup": [ + 38 ], - "start": [ - 4024 + "organizer_steam_id": [ + 29 ], - "status": [ - 1124 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_order_by": { + "organizer_steam_id": [ + 2660 ], - "teams": [ - 4293 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_fields": { + "max_players_per_lineup": [ + 38 ], - "trophies": [ - 4337 + "min_players_per_lineup": [ + 38 ], - "trophies_enabled": [ - 3 + "organizer_steam_id": [ + 29 ], - "trophy_configs": [ - 4380 + "__typename": [ + 78 + ] + }, + "tournaments_stddev_pop_order_by": { + "organizer_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_max_fields": { + "tournaments_stddev_samp_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stddev_samp_order_by": { + "organizer_steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stream_cursor_input": { + "initial_value": [ + 4630 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "tournaments_stream_cursor_value_input": { + "auto_start": [ + 3 + ], "created_at": [ - 4024 + 4203 ], "description": [ 78 @@ -102800,535 +105989,1103 @@ export default { "discord_guild_id": [ 78 ], + "discord_notifications_enabled": [ + 3 + ], + "discord_notify_Canceled": [ + 3 + ], + "discord_notify_Finished": [ + 3 + ], + "discord_notify_Forfeit": [ + 3 + ], + "discord_notify_Live": [ + 3 + ], + "discord_notify_MapPaused": [ + 3 + ], + "discord_notify_PickingPlayers": [ + 3 + ], + "discord_notify_Scheduled": [ + 3 + ], + "discord_notify_Surrendered": [ + 3 + ], + "discord_notify_Tie": [ + 3 + ], + "discord_notify_Veto": [ + 3 + ], + "discord_notify_WaitingForCheckIn": [ + 3 + ], + "discord_notify_WaitingForServer": [ + 3 + ], "discord_role_id": [ 78 ], + "discord_voice_enabled": [ + 3 + ], "discord_webhook": [ 78 ], "id": [ - 4462 + 4641 + ], + "is_league": [ + 3 ], "match_options_id": [ - 4462 + 4641 + ], + "name": [ + 78 + ], + "organizer_steam_id": [ + 180 + ], + "scheduling_mode": [ + 78 + ], + "start": [ + 4203 + ], + "status": [ + 1144 ], + "trophies_enabled": [ + 3 + ], + "__typename": [ + 78 + ] + }, + "tournaments_sum_fields": { "max_players_per_lineup": [ 38 ], "min_players_per_lineup": [ 38 ], - "name": [ + "organizer_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "tournaments_sum_order_by": { + "organizer_steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "tournaments_update_column": {}, + "tournaments_updates": { + "_inc": [ + 4608 + ], + "_set": [ + 4622 + ], + "where": [ + 4606 + ], + "__typename": [ + 78 + ] + }, + "tournaments_var_pop_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_var_pop_order_by": { + "organizer_steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "tournaments_var_samp_fields": { + "max_players_per_lineup": [ + 38 + ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_var_samp_order_by": { + "organizer_steam_id": [ + 2660 + ], + "__typename": [ 78 + ] + }, + "tournaments_variance_fields": { + "max_players_per_lineup": [ + 38 ], + "min_players_per_lineup": [ + 38 + ], + "organizer_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "tournaments_variance_order_by": { "organizer_steam_id": [ + 2660 + ], + "__typename": [ + 78 + ] + }, + "uuid": {}, + "uuid_array_comparison_exp": { + "_contained_in": [ + 4641 + ], + "_contains": [ + 4641 + ], + "_eq": [ + 4641 + ], + "_gt": [ + 4641 + ], + "_gte": [ + 4641 + ], + "_in": [ + 4641 + ], + "_is_null": [ + 3 + ], + "_lt": [ + 4641 + ], + "_lte": [ + 4641 + ], + "_neq": [ + 4641 + ], + "_nin": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "uuid_comparison_exp": { + "_eq": [ + 4641 + ], + "_gt": [ + 4641 + ], + "_gte": [ + 4641 + ], + "_in": [ + 4641 + ], + "_is_null": [ + 3 + ], + "_lt": [ + 4641 + ], + "_lte": [ + 4641 + ], + "_neq": [ + 4641 + ], + "_nin": [ + 4641 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats": { + "assists": [ + 38 + ], + "deaths": [ + 38 + ], + "event": [ + 1350 + ], + "event_id": [ + 4641 + ], + "headshot_percentage": [ + 1378 + ], + "headshots": [ + 38 + ], + "kdr": [ + 1378 + ], + "kills": [ + 38 + ], + "matches_played": [ + 38 + ], + "player": [ + 3618 + ], + "player_steam_id": [ 180 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate": { + "aggregate": [ + 4658 ], - "start": [ - 4024 + "nodes": [ + 4644 ], "__typename": [ 78 ] }, - "tournaments_max_order_by": { - "created_at": [ - 2481 + "v_event_player_stats_aggregate_bool_exp": { + "avg": [ + 4647 ], - "description": [ - 2481 + "corr": [ + 4648 ], - "discord_guild_id": [ - 2481 + "count": [ + 4650 ], - "discord_role_id": [ - 2481 + "covar_samp": [ + 4651 ], - "discord_webhook": [ - 2481 + "max": [ + 4653 ], - "id": [ - 2481 + "min": [ + 4654 ], - "match_options_id": [ - 2481 + "stddev_samp": [ + 4655 ], - "name": [ - 2481 + "sum": [ + 4656 ], - "organizer_steam_id": [ - 2481 + "var_samp": [ + 4657 ], - "scheduling_mode": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_avg": { + "arguments": [ + 4671 ], - "start": [ - 2481 + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 ], "__typename": [ 78 ] }, - "tournaments_min_fields": { - "created_at": [ - 4024 + "v_event_player_stats_aggregate_bool_exp_corr": { + "arguments": [ + 4649 ], - "description": [ + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_corr_arguments": { + "X": [ + 4672 ], - "discord_guild_id": [ + "Y": [ + 4672 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_count": { + "arguments": [ + 4670 ], - "discord_role_id": [ + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp": { + "arguments": [ + 4652 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { + "X": [ + 4673 + ], + "Y": [ + 4673 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_max": { + "arguments": [ + 4674 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_min": { + "arguments": [ + 4675 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_stddev_samp": { + "arguments": [ + 4676 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_sum": { + "arguments": [ + 4677 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ + 78 + ] + }, + "v_event_player_stats_aggregate_bool_exp_var_samp": { + "arguments": [ + 4678 + ], + "distinct": [ + 3 + ], + "filter": [ + 4663 + ], + "predicate": [ + 1379 + ], + "__typename": [ 78 + ] + }, + "v_event_player_stats_aggregate_fields": { + "avg": [ + 4661 + ], + "count": [ + 38, + { + "columns": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "discord_webhook": [ - 78 + "max": [ + 4665 ], - "id": [ - 4462 + "min": [ + 4667 ], - "match_options_id": [ - 4462 + "stddev": [ + 4679 ], - "max_players_per_lineup": [ - 38 + "stddev_pop": [ + 4681 ], - "min_players_per_lineup": [ - 38 + "stddev_samp": [ + 4683 ], - "name": [ - 78 + "sum": [ + 4687 ], - "organizer_steam_id": [ - 180 + "var_pop": [ + 4689 ], - "scheduling_mode": [ - 78 + "var_samp": [ + 4691 ], - "start": [ - 4024 + "variance": [ + 4693 ], "__typename": [ 78 ] }, - "tournaments_min_order_by": { - "created_at": [ - 2481 + "v_event_player_stats_aggregate_order_by": { + "avg": [ + 4662 ], - "description": [ - 2481 + "count": [ + 2660 ], - "discord_guild_id": [ - 2481 + "max": [ + 4666 ], - "discord_role_id": [ - 2481 + "min": [ + 4668 ], - "discord_webhook": [ - 2481 + "stddev": [ + 4680 ], - "id": [ - 2481 + "stddev_pop": [ + 4682 ], - "match_options_id": [ - 2481 + "stddev_samp": [ + 4684 ], - "name": [ - 2481 + "sum": [ + 4688 ], - "organizer_steam_id": [ - 2481 + "var_pop": [ + 4690 ], - "scheduling_mode": [ - 2481 + "var_samp": [ + 4692 ], - "start": [ - 2481 + "variance": [ + 4694 ], "__typename": [ 78 ] }, - "tournaments_mutation_response": { - "affected_rows": [ - 38 - ], - "returning": [ - 4416 + "v_event_player_stats_arr_rel_insert_input": { + "data": [ + 4664 ], "__typename": [ 78 ] }, - "tournaments_obj_rel_insert_input": { - "data": [ - 4430 + "v_event_player_stats_avg_fields": { + "assists": [ + 29 ], - "on_conflict": [ - 4437 + "deaths": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_on_conflict": { - "constraint": [ - 4428 + "headshot_percentage": [ + 29 ], - "update_columns": [ - 4454 + "headshots": [ + 29 ], - "where": [ - 4427 + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "tournaments_order_by": { - "admin": [ - 3452 - ], - "auto_start": [ - 2481 - ], - "can_cancel": [ - 2481 - ], - "can_close_registration": [ - 2481 + "v_event_player_stats_avg_order_by": { + "assists": [ + 2660 ], - "can_join": [ - 2481 + "deaths": [ + 2660 ], - "can_open_registration": [ - 2481 + "headshot_percentage": [ + 2660 ], - "can_pause": [ - 2481 + "headshots": [ + 2660 ], - "can_resume": [ - 2481 + "kdr": [ + 2660 ], - "can_setup": [ - 2481 + "kills": [ + 2660 ], - "can_start": [ - 2481 + "matches_played": [ + 2660 ], - "created_at": [ - 2481 + "player_steam_id": [ + 2660 ], - "description": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_bool_exp": { + "_and": [ + 4663 ], - "discord_guild_id": [ - 2481 + "_not": [ + 4663 ], - "discord_notifications_enabled": [ - 2481 + "_or": [ + 4663 ], - "discord_notify_Canceled": [ - 2481 + "assists": [ + 39 ], - "discord_notify_Finished": [ - 2481 + "deaths": [ + 39 ], - "discord_notify_Forfeit": [ - 2481 + "event": [ + 1354 ], - "discord_notify_Live": [ - 2481 + "event_id": [ + 4643 ], - "discord_notify_MapPaused": [ - 2481 + "headshot_percentage": [ + 1379 ], - "discord_notify_PickingPlayers": [ - 2481 + "headshots": [ + 39 ], - "discord_notify_Scheduled": [ - 2481 + "kdr": [ + 1379 ], - "discord_notify_Surrendered": [ - 2481 + "kills": [ + 39 ], - "discord_notify_Tie": [ - 2481 + "matches_played": [ + 39 ], - "discord_notify_Veto": [ - 2481 + "player": [ + 3622 ], - "discord_notify_WaitingForCheckIn": [ - 2481 + "player_steam_id": [ + 182 ], - "discord_notify_WaitingForServer": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_insert_input": { + "assists": [ + 38 ], - "discord_role_id": [ - 2481 + "deaths": [ + 38 ], - "discord_voice_enabled": [ - 2481 + "event": [ + 1361 ], - "discord_webhook": [ - 2481 + "event_id": [ + 4641 ], - "e_tournament_status": [ - 1132 + "headshot_percentage": [ + 1378 ], - "has_min_teams": [ - 2481 + "headshots": [ + 38 ], - "id": [ - 2481 + "kdr": [ + 1378 ], - "is_league": [ - 2481 + "kills": [ + 38 ], - "is_organizer": [ - 2481 + "matches_played": [ + 38 ], - "joined_tournament": [ - 2481 + "player": [ + 3629 ], - "league_season_division": [ - 1547 + "player_steam_id": [ + 180 ], - "match_options_id": [ - 2481 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_max_fields": { + "assists": [ + 38 ], - "max_players_per_lineup": [ - 2481 + "deaths": [ + 38 ], - "min_players_per_lineup": [ - 2481 + "event_id": [ + 4641 ], - "name": [ - 2481 + "headshot_percentage": [ + 1378 ], - "options": [ - 2189 + "headshots": [ + 38 ], - "organizer_steam_id": [ - 2481 + "kdr": [ + 1378 ], - "organizers_aggregate": [ - 4077 + "kills": [ + 38 ], - "player_stats_aggregate": [ - 5261 + "matches_played": [ + 38 ], - "results_aggregate": [ - 5210 + "player_steam_id": [ + 180 ], - "rosters_aggregate": [ - 4251 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_max_order_by": { + "assists": [ + 2660 ], - "scheduling_mode": [ - 2481 + "deaths": [ + 2660 ], - "stages_aggregate": [ - 4161 + "event_id": [ + 2660 ], - "start": [ - 2481 + "headshot_percentage": [ + 2660 ], - "status": [ - 2481 + "headshots": [ + 2660 ], - "teams_aggregate": [ - 4292 + "kdr": [ + 2660 ], - "trophies_aggregate": [ - 4336 + "kills": [ + 2660 ], - "trophies_enabled": [ - 2481 + "matches_played": [ + 2660 ], - "trophy_configs_aggregate": [ - 4379 + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_pk_columns_input": { - "id": [ - 4462 + "v_event_player_stats_min_fields": { + "assists": [ + 38 ], - "__typename": [ - 78 - ] - }, - "tournaments_select_column": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_and_arguments_columns": {}, - "tournaments_select_column_tournaments_aggregate_bool_exp_bool_or_arguments_columns": {}, - "tournaments_set_input": { - "auto_start": [ - 3 + "deaths": [ + 38 ], - "created_at": [ - 4024 + "event_id": [ + 4641 ], - "description": [ - 78 + "headshot_percentage": [ + 1378 ], - "discord_guild_id": [ - 78 + "headshots": [ + 38 ], - "discord_notifications_enabled": [ - 3 + "kdr": [ + 1378 ], - "discord_notify_Canceled": [ - 3 + "kills": [ + 38 ], - "discord_notify_Finished": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_Forfeit": [ - 3 + "player_steam_id": [ + 180 ], - "discord_notify_Live": [ - 3 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_min_order_by": { + "assists": [ + 2660 ], - "discord_notify_MapPaused": [ - 3 + "deaths": [ + 2660 ], - "discord_notify_PickingPlayers": [ - 3 + "event_id": [ + 2660 ], - "discord_notify_Scheduled": [ - 3 + "headshot_percentage": [ + 2660 ], - "discord_notify_Surrendered": [ - 3 + "headshots": [ + 2660 ], - "discord_notify_Tie": [ - 3 + "kdr": [ + 2660 ], - "discord_notify_Veto": [ - 3 + "kills": [ + 2660 ], - "discord_notify_WaitingForCheckIn": [ - 3 + "matches_played": [ + 2660 ], - "discord_notify_WaitingForServer": [ - 3 + "player_steam_id": [ + 2660 ], - "discord_role_id": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_order_by": { + "assists": [ + 2660 ], - "discord_voice_enabled": [ - 3 - ], - "discord_webhook": [ - 78 + "deaths": [ + 2660 ], - "id": [ - 4462 + "event": [ + 1363 ], - "is_league": [ - 3 + "event_id": [ + 2660 ], - "match_options_id": [ - 4462 + "headshot_percentage": [ + 2660 ], - "name": [ - 78 + "headshots": [ + 2660 ], - "organizer_steam_id": [ - 180 + "kdr": [ + 2660 ], - "scheduling_mode": [ - 78 + "kills": [ + 2660 ], - "start": [ - 4024 + "matches_played": [ + 2660 ], - "status": [ - 1124 + "player": [ + 3631 ], - "trophies_enabled": [ - 3 + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_stddev_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_select_column": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_avg_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_corr_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_covar_samp_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_max_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_min_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_stddev_samp_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_sum_arguments_columns": {}, + "v_event_player_stats_select_column_v_event_player_stats_aggregate_bool_exp_var_samp_arguments_columns": {}, + "v_event_player_stats_stddev_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_order_by": { + "assists": [ + 2660 + ], + "deaths": [ + 2660 + ], + "headshot_percentage": [ + 2660 + ], + "headshots": [ + 2660 + ], + "kdr": [ + 2660 + ], + "kills": [ + 2660 + ], + "matches_played": [ + 2660 + ], + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_stddev_pop_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_stddev_pop_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_pop_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_pop_order_by": { + "assists": [ + 2660 + ], + "deaths": [ + 2660 + ], + "headshot_percentage": [ + 2660 + ], + "headshots": [ + 2660 + ], + "kdr": [ + 2660 + ], + "kills": [ + 2660 + ], + "matches_played": [ + 2660 + ], + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_stddev_samp_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_stddev_samp_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ + 29 + ], + "headshots": [ + 29 + ], + "kdr": [ + 29 + ], + "kills": [ + 29 + ], + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_stddev_samp_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_stddev_samp_order_by": { + "assists": [ + 2660 + ], + "deaths": [ + 2660 + ], + "headshot_percentage": [ + 2660 + ], + "headshots": [ + 2660 + ], + "kdr": [ + 2660 + ], + "kills": [ + 2660 + ], + "matches_played": [ + 2660 + ], + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_stream_cursor_input": { + "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4451 + 4686 ], "ordering": [ 236 @@ -103337,267 +107094,265 @@ export default { 78 ] }, - "tournaments_stream_cursor_value_input": { - "auto_start": [ - 3 + "v_event_player_stats_stream_cursor_value_input": { + "assists": [ + 38 ], - "created_at": [ - 4024 + "deaths": [ + 38 ], - "description": [ - 78 + "event_id": [ + 4641 ], - "discord_guild_id": [ - 78 + "headshot_percentage": [ + 1378 ], - "discord_notifications_enabled": [ - 3 + "headshots": [ + 38 ], - "discord_notify_Canceled": [ - 3 + "kdr": [ + 1378 ], - "discord_notify_Finished": [ - 3 + "kills": [ + 38 ], - "discord_notify_Forfeit": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_Live": [ - 3 + "player_steam_id": [ + 180 ], - "discord_notify_MapPaused": [ - 3 + "__typename": [ + 78 + ] + }, + "v_event_player_stats_sum_fields": { + "assists": [ + 38 ], - "discord_notify_PickingPlayers": [ - 3 + "deaths": [ + 38 ], - "discord_notify_Scheduled": [ - 3 + "headshot_percentage": [ + 1378 ], - "discord_notify_Surrendered": [ - 3 + "headshots": [ + 38 ], - "discord_notify_Tie": [ - 3 + "kdr": [ + 1378 ], - "discord_notify_Veto": [ - 3 + "kills": [ + 38 ], - "discord_notify_WaitingForCheckIn": [ - 3 + "matches_played": [ + 38 ], - "discord_notify_WaitingForServer": [ - 3 + "player_steam_id": [ + 180 ], - "discord_role_id": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_sum_order_by": { + "assists": [ + 2660 ], - "discord_voice_enabled": [ - 3 + "deaths": [ + 2660 ], - "discord_webhook": [ - 78 + "headshot_percentage": [ + 2660 ], - "id": [ - 4462 + "headshots": [ + 2660 ], - "is_league": [ - 3 + "kdr": [ + 2660 ], - "match_options_id": [ - 4462 + "kills": [ + 2660 ], - "name": [ - 78 + "matches_played": [ + 2660 ], - "organizer_steam_id": [ - 180 + "player_steam_id": [ + 2660 ], - "scheduling_mode": [ + "__typename": [ 78 + ] + }, + "v_event_player_stats_var_pop_fields": { + "assists": [ + 29 ], - "start": [ - 4024 + "deaths": [ + 29 ], - "status": [ - 1124 + "headshot_percentage": [ + 29 ], - "trophies_enabled": [ - 3 + "headshots": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_fields": { - "max_players_per_lineup": [ - 38 + "kdr": [ + 29 ], - "min_players_per_lineup": [ - 38 + "kills": [ + 29 ], - "organizer_steam_id": [ - 180 + "matches_played": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_sum_order_by": { - "organizer_steam_id": [ - 2481 + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "tournaments_update_column": {}, - "tournaments_updates": { - "_inc": [ - 4429 + "v_event_player_stats_var_pop_order_by": { + "assists": [ + 2660 ], - "_set": [ - 4443 + "deaths": [ + 2660 ], - "where": [ - 4427 + "headshot_percentage": [ + 2660 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_fields": { - "max_players_per_lineup": [ - 38 + "headshots": [ + 2660 ], - "min_players_per_lineup": [ - 38 + "kdr": [ + 2660 ], - "organizer_steam_id": [ - 29 + "kills": [ + 2660 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_pop_order_by": { - "organizer_steam_id": [ - 2481 + "matches_played": [ + 2660 + ], + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "tournaments_var_samp_fields": { - "max_players_per_lineup": [ - 38 + "v_event_player_stats_var_samp_fields": { + "assists": [ + 29 ], - "min_players_per_lineup": [ - 38 + "deaths": [ + 29 ], - "organizer_steam_id": [ + "headshot_percentage": [ 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_var_samp_order_by": { - "organizer_steam_id": [ - 2481 + "headshots": [ + 29 ], - "__typename": [ - 78 - ] - }, - "tournaments_variance_fields": { - "max_players_per_lineup": [ - 38 + "kdr": [ + 29 ], - "min_players_per_lineup": [ - 38 + "kills": [ + 29 ], - "organizer_steam_id": [ + "matches_played": [ + 29 + ], + "player_steam_id": [ 29 ], "__typename": [ 78 ] }, - "tournaments_variance_order_by": { - "organizer_steam_id": [ - 2481 + "v_event_player_stats_var_samp_order_by": { + "assists": [ + 2660 + ], + "deaths": [ + 2660 + ], + "headshot_percentage": [ + 2660 + ], + "headshots": [ + 2660 + ], + "kdr": [ + 2660 + ], + "kills": [ + 2660 + ], + "matches_played": [ + 2660 + ], + "player_steam_id": [ + 2660 ], "__typename": [ 78 ] }, - "uuid": {}, - "uuid_array_comparison_exp": { - "_contained_in": [ - 4462 - ], - "_contains": [ - 4462 - ], - "_eq": [ - 4462 - ], - "_gt": [ - 4462 + "v_event_player_stats_variance_fields": { + "assists": [ + 29 ], - "_gte": [ - 4462 + "deaths": [ + 29 ], - "_in": [ - 4462 + "headshot_percentage": [ + 29 ], - "_is_null": [ - 3 + "headshots": [ + 29 ], - "_lt": [ - 4462 + "kdr": [ + 29 ], - "_lte": [ - 4462 + "kills": [ + 29 ], - "_neq": [ - 4462 + "matches_played": [ + 29 ], - "_nin": [ - 4462 + "player_steam_id": [ + 29 ], "__typename": [ 78 ] }, - "uuid_comparison_exp": { - "_eq": [ - 4462 - ], - "_gt": [ - 4462 + "v_event_player_stats_variance_order_by": { + "assists": [ + 2660 ], - "_gte": [ - 4462 + "deaths": [ + 2660 ], - "_in": [ - 4462 + "headshot_percentage": [ + 2660 ], - "_is_null": [ - 3 + "headshots": [ + 2660 ], - "_lt": [ - 4462 + "kdr": [ + 2660 ], - "_lte": [ - 4462 + "kills": [ + 2660 ], - "_neq": [ - 4462 + "matches_played": [ + 2660 ], - "_nin": [ - 4462 + "player_steam_id": [ + 2660 ], "__typename": [ 78 @@ -103652,10 +107407,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4467 + 4697 ], "nodes": [ - 4465 + 4695 ], "__typename": [ 78 @@ -103663,13 +107418,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4468 + 4698 ], "count": [ 38, { "columns": [ - 4473, + 4703, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -103678,31 +107433,31 @@ export default { } ], "max": [ - 4470 + 4700 ], "min": [ - 4471 + 4701 ], "stddev": [ - 4474 + 4704 ], "stddev_pop": [ - 4475 + 4705 ], "stddev_samp": [ - 4476 + 4706 ], "sum": [ - 4479 + 4709 ], "var_pop": [ - 4480 + 4710 ], "var_samp": [ - 4481 + 4711 ], "variance": [ - 4482 + 4712 ], "__typename": [ 78 @@ -103745,13 +107500,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4469 + 4699 ], "_not": [ - 4469 + 4699 ], "_or": [ - 4469 + 4699 ], "demo_free_gpu_nodes": [ 39 @@ -103871,46 +107626,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2481 + 2660 ], "demo_in_progress": [ - 2481 + 2660 ], "demo_total_gpu_nodes": [ - 2481 + 2660 ], "free_gpu_nodes": [ - 2481 + 2660 ], "free_gpu_nodes_for_batch": [ - 2481 + 2660 ], "highlights_in_progress": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "live_in_progress": [ - 2481 + 2660 ], "registered_gpu_nodes": [ - 2481 + 2660 ], "rendering_total_gpu_nodes": [ - 2481 + 2660 ], "renders_paused_for_active_match": [ - 2481 + 2660 ], "streaming_free_gpu_nodes": [ - 2481 + 2660 ], "streaming_total_gpu_nodes": [ - 2481 + 2660 ], "total_gpu_nodes": [ - 2481 + 2660 ], "__typename": [ 78 @@ -104024,7 +107779,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4478 + 4708 ], "ordering": [ 236 @@ -104228,22 +107983,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1712 + 1891 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "losses": [ 38 @@ -104273,13 +108028,13 @@ export default { 38 ], "season_division": [ - 1530 + 1709 ], "team_season": [ - 1670 + 1849 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -104290,10 +108045,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4487 + 4717 ], "nodes": [ - 4483 + 4713 ], "__typename": [ 78 @@ -104301,7 +108056,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4486 + 4716 ], "__typename": [ 78 @@ -104309,13 +108064,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4499 + 4729 ], "distinct": [ 3 ], "filter": [ - 4492 + 4722 ], "predicate": [ 39 @@ -104326,13 +108081,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4490 + 4720 ], "count": [ 38, { "columns": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -104341,31 +108096,31 @@ export default { } ], "max": [ - 4494 + 4724 ], "min": [ - 4496 + 4726 ], "stddev": [ - 4500 + 4730 ], "stddev_pop": [ - 4502 + 4732 ], "stddev_samp": [ - 4504 + 4734 ], "sum": [ - 4508 + 4738 ], "var_pop": [ - 4510 + 4740 ], "var_samp": [ - 4512 + 4742 ], "variance": [ - 4514 + 4744 ], "__typename": [ 78 @@ -104373,37 +108128,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4491 + 4721 ], "count": [ - 2481 + 2660 ], "max": [ - 4495 + 4725 ], "min": [ - 4497 + 4727 ], "stddev": [ - 4501 + 4731 ], "stddev_pop": [ - 4503 + 4733 ], "stddev_samp": [ - 4505 + 4735 ], "sum": [ - 4509 + 4739 ], "var_pop": [ - 4511 + 4741 ], "var_samp": [ - 4513 + 4743 ], "variance": [ - 4515 + 4745 ], "__typename": [ 78 @@ -104411,7 +108166,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4493 + 4723 ], "__typename": [ 78 @@ -104460,40 +108215,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -104501,13 +108256,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4492 + 4722 ], "_not": [ - 4492 + 4722 ], "_or": [ - 4492 + 4722 ], "head_to_head_match_wins": [ 39 @@ -104516,22 +108271,22 @@ export default { 39 ], "league_division_id": [ - 4464 + 4643 ], "league_season_division_id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "league_team": [ - 1715 + 1894 ], "league_team_id": [ - 4464 + 4643 ], "league_team_season_id": [ - 4464 + 4643 ], "losses": [ 39 @@ -104561,13 +108316,13 @@ export default { 39 ], "season_division": [ - 1537 + 1716 ], "team_season": [ - 1679 + 1858 ], "tournament_team_id": [ - 4464 + 4643 ], "wins": [ 39 @@ -104584,22 +108339,22 @@ export default { 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1721 + 1900 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "losses": [ 38 @@ -104629,13 +108384,13 @@ export default { 38 ], "season_division": [ - 1545 + 1724 ], "team_season": [ - 1688 + 1867 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -104652,19 +108407,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "losses": [ 38 @@ -104694,7 +108449,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -104705,58 +108460,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -104770,19 +108525,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "losses": [ 38 @@ -104812,7 +108567,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -104823,58 +108578,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -104882,67 +108637,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team": [ - 1723 + 1902 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "season_division": [ - 1547 + 1726 ], "team_season": [ - 1690 + 1869 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -104992,40 +108747,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105074,40 +108829,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105156,40 +108911,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105197,7 +108952,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4507 + 4737 ], "ordering": [ 236 @@ -105214,19 +108969,19 @@ export default { 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "losses": [ 38 @@ -105256,7 +109011,7 @@ export default { 38 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -105308,40 +109063,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105390,40 +109145,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105472,40 +109227,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105554,40 +109309,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "round_diff": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -105601,40 +109356,40 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1712 + 1891 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "matches_played": [ 38 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -105645,10 +109400,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4530 + 4760 ], "nodes": [ - 4516 + 4746 ], "__typename": [ 78 @@ -105656,31 +109411,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4519 + 4749 ], "corr": [ - 4520 + 4750 ], "count": [ - 4522 + 4752 ], "covar_samp": [ - 4523 + 4753 ], "max": [ - 4525 + 4755 ], "min": [ - 4526 + 4756 ], "stddev_samp": [ - 4527 + 4757 ], "sum": [ - 4528 + 4758 ], "var_samp": [ - 4529 + 4759 ], "__typename": [ 78 @@ -105688,16 +109443,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4543 + 4773 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105705,16 +109460,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4521 + 4751 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105722,10 +109477,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4544 + 4774 ], "Y": [ - 4544 + 4774 ], "__typename": [ 78 @@ -105733,13 +109488,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4542 + 4772 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ 39 @@ -105750,16 +109505,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4524 + 4754 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105767,10 +109522,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4545 + 4775 ], "Y": [ - 4545 + 4775 ], "__typename": [ 78 @@ -105778,16 +109533,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4546 + 4776 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105795,16 +109550,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4547 + 4777 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105812,16 +109567,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4548 + 4778 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105829,16 +109584,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4549 + 4779 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105846,16 +109601,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4550 + 4780 ], "distinct": [ 3 ], "filter": [ - 4535 + 4765 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -105863,13 +109618,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4533 + 4763 ], "count": [ 38, { "columns": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -105878,31 +109633,31 @@ export default { } ], "max": [ - 4537 + 4767 ], "min": [ - 4539 + 4769 ], "stddev": [ - 4551 + 4781 ], "stddev_pop": [ - 4553 + 4783 ], "stddev_samp": [ - 4555 + 4785 ], "sum": [ - 4559 + 4789 ], "var_pop": [ - 4561 + 4791 ], "var_samp": [ - 4563 + 4793 ], "variance": [ - 4565 + 4795 ], "__typename": [ 78 @@ -105910,37 +109665,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4534 + 4764 ], "count": [ - 2481 + 2660 ], "max": [ - 4538 + 4768 ], "min": [ - 4540 + 4770 ], "stddev": [ - 4552 + 4782 ], "stddev_pop": [ - 4554 + 4784 ], "stddev_samp": [ - 4556 + 4786 ], "sum": [ - 4560 + 4790 ], "var_pop": [ - 4562 + 4792 ], "var_samp": [ - 4564 + 4794 ], "variance": [ - 4566 + 4796 ], "__typename": [ 78 @@ -105948,7 +109703,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4536 + 4766 ], "__typename": [ 78 @@ -105985,28 +109740,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106014,13 +109769,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4535 + 4765 ], "_not": [ - 4535 + 4765 ], "_or": [ - 4535 + 4765 ], "assists": [ 39 @@ -106029,40 +109784,40 @@ export default { 39 ], "headshot_percentage": [ - 1201 + 1379 ], "headshots": [ 39 ], "kdr": [ - 1201 + 1379 ], "kills": [ 39 ], "league_division_id": [ - 4464 + 4643 ], "league_season_division_id": [ - 4464 + 4643 ], "league_season_id": [ - 4464 + 4643 ], "league_team": [ - 1715 + 1894 ], "league_team_id": [ - 4464 + 4643 ], "league_team_season_id": [ - 4464 + 4643 ], "matches_played": [ 39 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -106079,40 +109834,40 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team": [ - 1721 + 1900 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "matches_played": [ 38 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 @@ -106129,31 +109884,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "matches_played": [ 38 @@ -106167,43 +109922,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106217,31 +109972,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "matches_played": [ 38 @@ -106255,43 +110010,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106299,49 +110054,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "league_division_id": [ - 2481 + 2660 ], "league_season_division_id": [ - 2481 + 2660 ], "league_season_id": [ - 2481 + 2660 ], "league_team": [ - 1723 + 1902 ], "league_team_id": [ - 2481 + 2660 ], "league_team_season_id": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106387,28 +110142,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106445,28 +110200,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106503,28 +110258,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106532,7 +110287,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4558 + 4788 ], "ordering": [ 236 @@ -106549,31 +110304,31 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 ], "league_division_id": [ - 4462 + 4641 ], "league_season_division_id": [ - 4462 + 4641 ], "league_season_id": [ - 4462 + 4641 ], "league_team_id": [ - 4462 + 4641 ], "league_team_season_id": [ - 4462 + 4641 ], "matches_played": [ 38 @@ -106593,13 +110348,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -106616,28 +110371,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106674,28 +110429,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106732,28 +110487,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106790,28 +110545,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -106825,19 +110580,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 ], "player": [ - 3439 + 3618 ], "steam_id": [ 180 @@ -106848,10 +110603,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4569 + 4799 ], "nodes": [ - 4567 + 4797 ], "__typename": [ 78 @@ -106859,13 +110614,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4570 + 4800 ], "count": [ 38, { "columns": [ - 4579, + 4809, "[v_match_captains_select_column!]" ], "distinct": [ @@ -106874,31 +110629,31 @@ export default { } ], "max": [ - 4574 + 4804 ], "min": [ - 4575 + 4805 ], "stddev": [ - 4581 + 4811 ], "stddev_pop": [ - 4582 + 4812 ], "stddev_samp": [ - 4583 + 4813 ], "sum": [ - 4586 + 4816 ], "var_pop": [ - 4588 + 4818 ], "var_samp": [ - 4589 + 4819 ], "variance": [ - 4590 + 4820 ], "__typename": [ 78 @@ -106914,13 +110669,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4571 + 4801 ], "_not": [ - 4571 + 4801 ], "_or": [ - 4571 + 4801 ], "captain": [ 4 @@ -106929,19 +110684,19 @@ export default { 80 ], "id": [ - 4464 + 4643 ], "lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "placeholder_name": [ 80 ], "player": [ - 3443 + 3622 ], "steam_id": [ 182 @@ -106966,19 +110721,19 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 ], "player": [ - 3450 + 3629 ], "steam_id": [ 180 @@ -106992,10 +110747,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -107012,10 +110767,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -107032,7 +110787,7 @@ export default { 38 ], "returning": [ - 4567 + 4797 ], "__typename": [ 78 @@ -107040,7 +110795,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4573 + 4803 ], "__typename": [ 78 @@ -107048,28 +110803,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2481 + 2660 ], "discord_id": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "placeholder_name": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107084,10 +110839,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -107125,7 +110880,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4585 + 4815 ], "ordering": [ 236 @@ -107142,10 +110897,10 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "placeholder_name": [ 78 @@ -107167,13 +110922,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4572 + 4802 ], "_set": [ - 4580 + 4810 ], "where": [ - 4571 + 4801 ], "__typename": [ 78 @@ -107208,7 +110963,7 @@ export default { 38 ], "clutcher": [ - 3439 + 3618 ], "clutcher_steam_id": [ 180 @@ -107217,22 +110972,22 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "outcome": [ 78 @@ -107249,10 +111004,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4595 + 4825 ], "nodes": [ - 4591 + 4821 ], "__typename": [ 78 @@ -107260,7 +111015,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4594 + 4824 ], "__typename": [ 78 @@ -107268,13 +111023,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4607 + 4837 ], "distinct": [ 3 ], "filter": [ - 4600 + 4830 ], "predicate": [ 39 @@ -107285,13 +111040,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4598 + 4828 ], "count": [ 38, { "columns": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -107300,31 +111055,31 @@ export default { } ], "max": [ - 4602 + 4832 ], "min": [ - 4604 + 4834 ], "stddev": [ - 4608 + 4838 ], "stddev_pop": [ - 4610 + 4840 ], "stddev_samp": [ - 4612 + 4842 ], "sum": [ - 4616 + 4846 ], "var_pop": [ - 4618 + 4848 ], "var_samp": [ - 4620 + 4850 ], "variance": [ - 4622 + 4852 ], "__typename": [ 78 @@ -107332,37 +111087,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4599 + 4829 ], "count": [ - 2481 + 2660 ], "max": [ - 4603 + 4833 ], "min": [ - 4605 + 4835 ], "stddev": [ - 4609 + 4839 ], "stddev_pop": [ - 4611 + 4841 ], "stddev_samp": [ - 4613 + 4843 ], "sum": [ - 4617 + 4847 ], "var_pop": [ - 4619 + 4849 ], "var_samp": [ - 4621 + 4851 ], "variance": [ - 4623 + 4853 ], "__typename": [ 78 @@ -107370,7 +111125,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4601 + 4831 ], "__typename": [ 78 @@ -107395,16 +111150,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107412,19 +111167,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4600 + 4830 ], "_not": [ - 4600 + 4830 ], "_or": [ - 4600 + 4830 ], "against_count": [ 39 ], "clutcher": [ - 3443 + 3622 ], "clutcher_steam_id": [ 182 @@ -107433,22 +111188,22 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "outcome": [ 80 @@ -107468,7 +111223,7 @@ export default { 38 ], "clutcher": [ - 3450 + 3629 ], "clutcher_steam_id": [ 180 @@ -107477,22 +111232,22 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "outcome": [ 78 @@ -107518,13 +111273,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "outcome": [ 78 @@ -107541,31 +111296,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "outcome": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107582,13 +111337,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "outcome": [ 78 @@ -107605,31 +111360,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "outcome": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107637,43 +111392,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher": [ - 3452 + 3631 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "outcome": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107699,16 +111454,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107733,16 +111488,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107767,16 +111522,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107784,7 +111539,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4615 + 4845 ], "ordering": [ 236 @@ -107804,13 +111559,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "outcome": [ 78 @@ -107844,16 +111599,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107878,16 +111633,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107912,16 +111667,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107946,16 +111701,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2481 + 2660 ], "clutcher_steam_id": [ - 2481 + 2660 ], "kills_in_clutch": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -107972,16 +111727,16 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "victim_side": [ 78 @@ -107998,10 +111753,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4626 + 4856 ], "nodes": [ - 4624 + 4854 ], "__typename": [ 78 @@ -108009,13 +111764,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4627 + 4857 ], "count": [ 38, { "columns": [ - 4632, + 4862, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -108024,31 +111779,31 @@ export default { } ], "max": [ - 4629 + 4859 ], "min": [ - 4630 + 4860 ], "stddev": [ - 4633 + 4863 ], "stddev_pop": [ - 4634 + 4864 ], "stddev_samp": [ - 4635 + 4865 ], "sum": [ - 4638 + 4868 ], "var_pop": [ - 4639 + 4869 ], "var_samp": [ - 4640 + 4870 ], "variance": [ - 4641 + 4871 ], "__typename": [ 78 @@ -108070,13 +111825,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4628 + 4858 ], "_not": [ - 4628 + 4858 ], "_or": [ - 4628 + 4858 ], "killer_side": [ 80 @@ -108088,16 +111843,16 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "victim_side": [ 80 @@ -108123,10 +111878,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "victim_side": [ 78 @@ -108152,10 +111907,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "victim_side": [ 78 @@ -108172,34 +111927,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2481 + 2660 ], "killer_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "victim_side": [ - 2481 + 2660 ], "victim_steam_id": [ - 2481 + 2660 ], "weapon": [ - 2481 + 2660 ], "__typename": [ 78 @@ -108250,7 +112005,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4637 + 4867 ], "ordering": [ 236 @@ -108270,10 +112025,10 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "victim_side": [ 78 @@ -108346,22 +112101,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -108381,10 +112136,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4644 + 4874 ], "nodes": [ - 4642 + 4872 ], "__typename": [ 78 @@ -108392,13 +112147,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4645 + 4875 ], "count": [ 38, { "columns": [ - 4650, + 4880, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -108407,31 +112162,31 @@ export default { } ], "max": [ - 4647 + 4877 ], "min": [ - 4648 + 4878 ], "stddev": [ - 4651 + 4881 ], "stddev_pop": [ - 4652 + 4882 ], "stddev_samp": [ - 4653 + 4883 ], "sum": [ - 4656 + 4886 ], "var_pop": [ - 4657 + 4887 ], "var_samp": [ - 4658 + 4888 ], "variance": [ - 4659 + 4889 ], "__typename": [ 78 @@ -108450,31 +112205,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4646 + 4876 ], "_not": [ - 4646 + 4876 ], "_or": [ - 4646 + 4876 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "matchup": [ 80 @@ -108494,13 +112249,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -108520,13 +112275,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -108546,34 +112301,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "matchup": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -108615,7 +112370,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4655 + 4885 ], "ordering": [ 236 @@ -108626,13 +112381,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -108708,22 +112463,22 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "opening_attempts": [ 38 @@ -108764,10 +112519,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 4662 + 4892 ], "nodes": [ - 4660 + 4890 ], "__typename": [ 78 @@ -108775,13 +112530,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 4663 + 4893 ], "count": [ 38, { "columns": [ - 4668, + 4898, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -108790,31 +112545,31 @@ export default { } ], "max": [ - 4665 + 4895 ], "min": [ - 4666 + 4896 ], "stddev": [ - 4669 + 4899 ], "stddev_pop": [ - 4670 + 4900 ], "stddev_samp": [ - 4671 + 4901 ], "sum": [ - 4674 + 4904 ], "var_pop": [ - 4675 + 4905 ], "var_samp": [ - 4676 + 4906 ], "variance": [ - 4677 + 4907 ], "__typename": [ 78 @@ -108869,13 +112624,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 4664 + 4894 ], "_not": [ - 4664 + 4894 ], "_or": [ - 4664 + 4894 ], "man_adv_rounds": [ 39 @@ -108890,22 +112645,22 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "opening_attempts": [ 39 @@ -108958,13 +112713,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "opening_attempts": [ 38 @@ -109017,13 +112772,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "opening_attempts": [ 38 @@ -109064,67 +112819,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2481 + 2660 ], "man_adv_wins": [ - 2481 + 2660 ], "man_dis_rounds": [ - 2481 + 2660 ], "man_dis_wins": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "opening_attempts": [ - 2481 + 2660 ], "opening_wins": [ - 2481 + 2660 ], "pistol_rounds": [ - 2481 + 2660 ], "pistol_wins": [ - 2481 + 2660 ], "round_wins": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "won_buy_eco": [ - 2481 + 2660 ], "won_buy_force": [ - 2481 + 2660 ], "won_buy_full": [ - 2481 + 2660 ], "won_buy_pistol": [ - 2481 + 2660 ], "__typename": [ 78 @@ -109274,7 +113029,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 4673 + 4903 ], "ordering": [ 236 @@ -109297,13 +113052,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "opening_attempts": [ 38 @@ -109535,7 +113290,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109546,10 +113301,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 4680 + 4910 ], "nodes": [ - 4678 + 4908 ], "__typename": [ 78 @@ -109557,13 +113312,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 4681 + 4911 ], "count": [ 38, { "columns": [ - 4689, + 4919, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -109572,31 +113327,31 @@ export default { } ], "max": [ - 4685 + 4915 ], "min": [ - 4686 + 4916 ], "stddev": [ - 4691 + 4921 ], "stddev_pop": [ - 4692 + 4922 ], "stddev_samp": [ - 4693 + 4923 ], "sum": [ - 4696 + 4926 ], "var_pop": [ - 4698 + 4928 ], "var_samp": [ - 4699 + 4929 ], "variance": [ - 4700 + 4930 ], "__typename": [ 78 @@ -109612,19 +113367,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4682 + 4912 ], "_not": [ - 4682 + 4912 ], "_or": [ - 4682 + 4912 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4464 + 4643 ], "round": [ 39 @@ -109646,7 +113401,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109657,7 +113412,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109668,7 +113423,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109682,7 +113437,7 @@ export default { 38 ], "returning": [ - 4678 + 4908 ], "__typename": [ 78 @@ -109690,13 +113445,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -109708,7 +113463,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109743,7 +113498,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4695 + 4925 ], "ordering": [ 236 @@ -109757,7 +113512,7 @@ export default { 3 ], "match_map_id": [ - 4462 + 4641 ], "round": [ 38 @@ -109776,13 +113531,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4683 + 4913 ], "_set": [ - 4690 + 4920 ], "where": [ - 4682 + 4912 ], "__typename": [ 78 @@ -109820,28 +113575,28 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 ], "player": [ - 3439 + 3618 ], "rounds": [ 38 @@ -109858,10 +113613,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4703 + 4933 ], "nodes": [ - 4701 + 4931 ], "__typename": [ 78 @@ -109869,13 +113624,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4704 + 4934 ], "count": [ 38, { "columns": [ - 4709, + 4939, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -109884,31 +113639,31 @@ export default { } ], "max": [ - 4706 + 4936 ], "min": [ - 4707 + 4937 ], "stddev": [ - 4710 + 4940 ], "stddev_pop": [ - 4711 + 4941 ], "stddev_samp": [ - 4712 + 4942 ], "sum": [ - 4715 + 4945 ], "var_pop": [ - 4716 + 4946 ], "var_samp": [ - 4717 + 4947 ], "variance": [ - 4718 + 4948 ], "__typename": [ 78 @@ -109933,13 +113688,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4705 + 4935 ], "_not": [ - 4705 + 4935 ], "_or": [ - 4705 + 4935 ], "deaths": [ 39 @@ -109948,28 +113703,28 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "matchup": [ 80 ], "player": [ - 3443 + 3622 ], "rounds": [ 39 @@ -109992,13 +113747,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -110024,13 +113779,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -110050,43 +113805,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "matchup": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "rounds": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110146,7 +113901,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4714 + 4944 ], "ordering": [ 236 @@ -110163,13 +113918,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "matchup": [ 78 @@ -110263,25 +114018,25 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1976 + 2155 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "side": [ 78 @@ -110301,10 +114056,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4723 + 4953 ], "nodes": [ - 4719 + 4949 ], "__typename": [ 78 @@ -110312,7 +114067,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4722 + 4952 ], "__typename": [ 78 @@ -110320,13 +114075,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4735 + 4965 ], "distinct": [ 3 ], "filter": [ - 4728 + 4958 ], "predicate": [ 39 @@ -110337,13 +114092,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4726 + 4956 ], "count": [ 38, { "columns": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -110352,31 +114107,31 @@ export default { } ], "max": [ - 4730 + 4960 ], "min": [ - 4732 + 4962 ], "stddev": [ - 4736 + 4966 ], "stddev_pop": [ - 4738 + 4968 ], "stddev_samp": [ - 4740 + 4970 ], "sum": [ - 4744 + 4974 ], "var_pop": [ - 4746 + 4976 ], "var_samp": [ - 4748 + 4978 ], "variance": [ - 4750 + 4980 ], "__typename": [ 78 @@ -110384,37 +114139,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4727 + 4957 ], "count": [ - 2481 + 2660 ], "max": [ - 4731 + 4961 ], "min": [ - 4733 + 4963 ], "stddev": [ - 4737 + 4967 ], "stddev_pop": [ - 4739 + 4969 ], "stddev_samp": [ - 4741 + 4971 ], "sum": [ - 4745 + 4975 ], "var_pop": [ - 4747 + 4977 ], "var_samp": [ - 4749 + 4979 ], "variance": [ - 4751 + 4981 ], "__typename": [ 78 @@ -110422,7 +114177,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4729 + 4959 ], "__typename": [ 78 @@ -110450,19 +114205,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110470,13 +114225,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4728 + 4958 ], "_not": [ - 4728 + 4958 ], "_or": [ - 4728 + 4958 ], "attempts": [ 39 @@ -110485,25 +114240,25 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_lineup": [ - 1985 + 2164 ], "match_lineup_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "side": [ 80 @@ -110529,25 +114284,25 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_lineup": [ - 1994 + 2173 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "side": [ 78 @@ -110573,13 +114328,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "side": [ 78 @@ -110599,31 +114354,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110637,13 +114392,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "side": [ 78 @@ -110663,31 +114418,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "side": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110695,43 +114450,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_lineup": [ - 1996 + 2175 ], "match_lineup_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "side": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110760,19 +114515,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110800,19 +114555,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110840,19 +114595,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110860,7 +114615,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4743 + 4973 ], "ordering": [ 236 @@ -110877,13 +114632,13 @@ export default { 38 ], "match_id": [ - 4462 + 4641 ], "match_lineup_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "side": [ 78 @@ -110923,19 +114678,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -110963,19 +114718,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -111003,19 +114758,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -111043,19 +114798,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "traded_deaths": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -111069,10 +114824,10 @@ export default { 180 ], "nemsis": [ - 3439 + 3618 ], "player": [ - 3439 + 3618 ], "victim_id": [ 180 @@ -111083,10 +114838,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4754 + 4984 ], "nodes": [ - 4752 + 4982 ], "__typename": [ 78 @@ -111094,13 +114849,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4755 + 4985 ], "count": [ 38, { "columns": [ - 4760, + 4990, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -111109,31 +114864,31 @@ export default { } ], "max": [ - 4757 + 4987 ], "min": [ - 4758 + 4988 ], "stddev": [ - 4761 + 4991 ], "stddev_pop": [ - 4762 + 4992 ], "stddev_samp": [ - 4763 + 4993 ], "sum": [ - 4766 + 4996 ], "var_pop": [ - 4767 + 4997 ], "var_samp": [ - 4768 + 4998 ], "variance": [ - 4769 + 4999 ], "__typename": [ 78 @@ -111155,13 +114910,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4756 + 4986 ], "_not": [ - 4756 + 4986 ], "_or": [ - 4756 + 4986 ], "attacker_id": [ 182 @@ -111170,10 +114925,10 @@ export default { 182 ], "nemsis": [ - 3443 + 3622 ], "player": [ - 3443 + 3622 ], "victim_id": [ 182 @@ -111212,19 +114967,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2481 + 2660 ], "kill_count": [ - 2481 + 2660 ], "nemsis": [ - 3452 + 3631 ], "player": [ - 3452 + 3631 ], "victim_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -111275,7 +115030,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4765 + 4995 ], "ordering": [ 236 @@ -111359,7 +115114,7 @@ export default { 180 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 @@ -111376,10 +115131,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 4772 + 5002 ], "nodes": [ - 4770 + 5000 ], "__typename": [ 78 @@ -111387,13 +115142,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 4773 + 5003 ], "count": [ 38, { "columns": [ - 4778, + 5008, "[v_player_damage_select_column!]" ], "distinct": [ @@ -111402,31 +115157,31 @@ export default { } ], "max": [ - 4775 + 5005 ], "min": [ - 4776 + 5006 ], "stddev": [ - 4779 + 5009 ], "stddev_pop": [ - 4780 + 5010 ], "stddev_samp": [ - 4781 + 5011 ], "sum": [ - 4784 + 5014 ], "var_pop": [ - 4785 + 5015 ], "var_samp": [ - 4786 + 5016 ], "variance": [ - 4787 + 5017 ], "__typename": [ 78 @@ -111451,19 +115206,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 4774 + 5004 ], "_not": [ - 4774 + 5004 ], "_or": [ - 4774 + 5004 ], "avg_damage_per_round": [ 182 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 @@ -111514,19 +115269,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "total_damage": [ - 2481 + 2660 ], "total_rounds": [ - 2481 + 2660 ], "__typename": [ 78 @@ -111586,7 +115341,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 4783 + 5013 ], "ordering": [ 236 @@ -111682,7 +115437,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -111694,7 +115449,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -111703,16 +115458,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -111724,22 +115479,22 @@ export default { 38 ], "match": [ - 2296 + 2475 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_name": [ 78 @@ -111748,16 +115503,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ 78 @@ -111771,10 +115526,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 4802 + 5032 ], "nodes": [ - 4788 + 5018 ], "__typename": [ 78 @@ -111782,31 +115537,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 4791 + 5021 ], "corr": [ - 4792 + 5022 ], "count": [ - 4794 + 5024 ], "covar_samp": [ - 4795 + 5025 ], "max": [ - 4797 + 5027 ], "min": [ - 4798 + 5028 ], "stddev_samp": [ - 4799 + 5029 ], "sum": [ - 4800 + 5030 ], "var_samp": [ - 4801 + 5031 ], "__typename": [ 78 @@ -111814,16 +115569,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 4815 + 5045 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111831,16 +115586,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 4793 + 5023 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111848,10 +115603,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 4816 + 5046 ], "Y": [ - 4816 + 5046 ], "__typename": [ 78 @@ -111859,13 +115614,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 4814 + 5044 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ 39 @@ -111876,16 +115631,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 4796 + 5026 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111893,10 +115648,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4817 + 5047 ], "Y": [ - 4817 + 5047 ], "__typename": [ 78 @@ -111904,16 +115659,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 4818 + 5048 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111921,16 +115676,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 4819 + 5049 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111938,16 +115693,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4820 + 5050 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111955,16 +115710,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 4821 + 5051 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111972,16 +115727,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 4822 + 5052 ], "distinct": [ 3 ], "filter": [ - 4807 + 5037 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -111989,13 +115744,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 4805 + 5035 ], "count": [ 38, { "columns": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "distinct": [ @@ -112004,31 +115759,31 @@ export default { } ], "max": [ - 4809 + 5039 ], "min": [ - 4811 + 5041 ], "stddev": [ - 4823 + 5053 ], "stddev_pop": [ - 4825 + 5055 ], "stddev_samp": [ - 4827 + 5057 ], "sum": [ - 4831 + 5061 ], "var_pop": [ - 4833 + 5063 ], "var_samp": [ - 4835 + 5065 ], "variance": [ - 4837 + 5067 ], "__typename": [ 78 @@ -112036,37 +115791,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 4806 + 5036 ], "count": [ - 2481 + 2660 ], "max": [ - 4810 + 5040 ], "min": [ - 4812 + 5042 ], "stddev": [ - 4824 + 5054 ], "stddev_pop": [ - 4826 + 5056 ], "stddev_samp": [ - 4828 + 5058 ], "sum": [ - 4832 + 5062 ], "var_pop": [ - 4834 + 5064 ], "var_samp": [ - 4836 + 5066 ], "variance": [ - 4838 + 5068 ], "__typename": [ 78 @@ -112074,7 +115829,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 4808 + 5038 ], "__typename": [ 78 @@ -112150,67 +115905,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -112218,16 +115973,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 4807 + 5037 ], "_not": [ - 4807 + 5037 ], "_or": [ - 4807 + 5037 ], "actual_score": [ - 1201 + 1379 ], "assists": [ 39 @@ -112239,7 +115994,7 @@ export default { 39 ], "damage_percent": [ - 1201 + 1379 ], "deaths": [ 39 @@ -112248,16 +116003,16 @@ export default { 39 ], "expected_score": [ - 1201 + 1379 ], "impact": [ - 1201 + 1379 ], "k_factor": [ 39 ], "kda": [ - 1201 + 1379 ], "kills": [ 39 @@ -112269,22 +116024,22 @@ export default { 39 ], "match": [ - 2305 + 2484 ], "match_created_at": [ - 4025 + 4204 ], "match_id": [ - 4464 + 4643 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1201 + 1379 ], "performance_multiplier": [ - 1201 + 1379 ], "player_name": [ 80 @@ -112293,16 +116048,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1201 + 1379 ], "season_id": [ - 4464 + 4643 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1201 + 1379 ], "type": [ 80 @@ -112316,7 +116071,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -112328,7 +116083,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -112337,16 +116092,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -112358,22 +116113,22 @@ export default { 38 ], "match": [ - 2314 + 2493 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_name": [ 78 @@ -112382,16 +116137,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ 78 @@ -112405,7 +116160,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -112417,7 +116172,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -112426,16 +116181,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -112447,19 +116202,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_name": [ 78 @@ -112468,16 +116223,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ 78 @@ -112491,85 +116246,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "match_created_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_result": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_name": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "season_id": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -112577,7 +116332,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -112589,7 +116344,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -112598,16 +116353,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -112619,19 +116374,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_name": [ 78 @@ -112640,16 +116395,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ 78 @@ -112663,85 +116418,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "match_created_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_result": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_name": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "season_id": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -112749,88 +116504,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_created_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_result": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_name": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "season_id": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -112915,67 +116670,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113051,67 +116806,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113187,67 +116942,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113255,7 +117010,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 4830 + 5060 ], "ordering": [ 236 @@ -113266,7 +117021,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -113278,7 +117033,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -113287,16 +117042,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -113308,19 +117063,19 @@ export default { 38 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_name": [ 78 @@ -113329,16 +117084,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "season_id": [ - 4462 + 4641 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "type": [ 78 @@ -113352,7 +117107,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1200 + 1378 ], "assists": [ 38 @@ -113364,7 +117119,7 @@ export default { 38 ], "damage_percent": [ - 1200 + 1378 ], "deaths": [ 38 @@ -113373,16 +117128,16 @@ export default { 38 ], "expected_score": [ - 1200 + 1378 ], "impact": [ - 1200 + 1378 ], "k_factor": [ 38 ], "kda": [ - 1200 + 1378 ], "kills": [ 38 @@ -113394,22 +117149,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1200 + 1378 ], "performance_multiplier": [ - 1200 + 1378 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1200 + 1378 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1200 + 1378 ], "updated_elo": [ 38 @@ -113420,67 +117175,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113556,67 +117311,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113692,67 +117447,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113828,67 +117583,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2481 + 2660 ], "assists": [ - 2481 + 2660 ], "current_elo": [ - 2481 + 2660 ], "damage": [ - 2481 + 2660 ], "damage_percent": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "elo_change": [ - 2481 + 2660 ], "expected_score": [ - 2481 + 2660 ], "impact": [ - 2481 + 2660 ], "k_factor": [ - 2481 + 2660 ], "kda": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map_losses": [ - 2481 + 2660 ], "map_wins": [ - 2481 + 2660 ], "opponent_team_elo_avg": [ - 2481 + 2660 ], "performance_multiplier": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "player_team_elo_avg": [ - 2481 + 2660 ], "series_multiplier": [ - 2481 + 2660 ], "team_avg_kda": [ - 2481 + 2660 ], "updated_elo": [ - 2481 + 2660 ], "__typename": [ 78 @@ -113896,19 +117651,19 @@ export default { }, "v_player_map_losses": { "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -113919,10 +117674,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 4841 + 5071 ], "nodes": [ - 4839 + 5069 ], "__typename": [ 78 @@ -113930,13 +117685,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 4842 + 5072 ], "count": [ 38, { "columns": [ - 4847, + 5077, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -113945,31 +117700,31 @@ export default { } ], "max": [ - 4844 + 5074 ], "min": [ - 4845 + 5075 ], "stddev": [ - 4848 + 5078 ], "stddev_pop": [ - 4849 + 5079 ], "stddev_samp": [ - 4850 + 5080 ], "sum": [ - 4853 + 5083 ], "var_pop": [ - 4854 + 5084 ], "var_samp": [ - 4855 + 5085 ], "variance": [ - 4856 + 5086 ], "__typename": [ 78 @@ -113985,28 +117740,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 4843 + 5073 ], "_not": [ - 4843 + 5073 ], "_or": [ - 4843 + 5073 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "started_at": [ - 4025 + 4204 ], "steam_id": [ 182 @@ -114017,13 +117772,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114034,13 +117789,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114051,22 +117806,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -114099,7 +117854,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 4852 + 5082 ], "ordering": [ 236 @@ -114110,13 +117865,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114159,19 +117914,19 @@ export default { }, "v_player_map_wins": { "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114182,10 +117937,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 4859 + 5089 ], "nodes": [ - 4857 + 5087 ], "__typename": [ 78 @@ -114193,13 +117948,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 4860 + 5090 ], "count": [ 38, { "columns": [ - 4865, + 5095, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -114208,31 +117963,31 @@ export default { } ], "max": [ - 4862 + 5092 ], "min": [ - 4863 + 5093 ], "stddev": [ - 4866 + 5096 ], "stddev_pop": [ - 4867 + 5097 ], "stddev_samp": [ - 4868 + 5098 ], "sum": [ - 4871 + 5101 ], "var_pop": [ - 4872 + 5102 ], "var_samp": [ - 4873 + 5103 ], "variance": [ - 4874 + 5104 ], "__typename": [ 78 @@ -114248,28 +118003,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 4861 + 5091 ], "_not": [ - 4861 + 5091 ], "_or": [ - 4861 + 5091 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "started_at": [ - 4025 + 4204 ], "steam_id": [ 182 @@ -114280,13 +118035,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114297,13 +118052,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114314,22 +118069,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "started_at": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -114362,7 +118117,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 4870 + 5100 ], "ordering": [ 236 @@ -114373,13 +118128,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "started_at": [ - 4024 + 4203 ], "steam_id": [ 180 @@ -114422,13 +118177,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3439 + 3618 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3439 + 3618 ], "attacker_steam_id": [ 180 @@ -114449,10 +118204,10 @@ export default { 180 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -114460,10 +118215,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 4877 + 5107 ], "nodes": [ - 4875 + 5105 ], "__typename": [ 78 @@ -114471,13 +118226,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 4878 + 5108 ], "count": [ 38, { "columns": [ - 4883, + 5113, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -114486,31 +118241,31 @@ export default { } ], "max": [ - 4880 + 5110 ], "min": [ - 4881 + 5111 ], "stddev": [ - 4884 + 5114 ], "stddev_pop": [ - 4885 + 5115 ], "stddev_samp": [ - 4886 + 5116 ], "sum": [ - 4889 + 5119 ], "var_pop": [ - 4890 + 5120 ], "var_samp": [ - 4891 + 5121 ], "variance": [ - 4892 + 5122 ], "__typename": [ 78 @@ -114544,22 +118299,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 4879 + 5109 ], "_not": [ - 4879 + 5109 ], "_or": [ - 4879 + 5109 ], "attacked": [ - 3443 + 3622 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3443 + 3622 ], "attacker_steam_id": [ 182 @@ -114580,10 +118335,10 @@ export default { 182 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -114612,7 +118367,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -114641,7 +118396,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -114649,37 +118404,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3452 + 3631 ], "attacked_steam_id": [ - 2481 + 2660 ], "attacker": [ - 3452 + 3631 ], "attacker_steam_id": [ - 2481 + 2660 ], "damage_dealt": [ - 2481 + 2660 ], "flash_count": [ - 2481 + 2660 ], "headshot_kills": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -114766,7 +118521,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 4888 + 5118 ], "ordering": [ 236 @@ -114798,7 +118553,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -114910,37 +118665,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "rounds_played": [ 38 @@ -114954,10 +118709,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 4897 + 5127 ], "nodes": [ - 4893 + 5123 ], "__typename": [ 78 @@ -114965,7 +118720,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 4896 + 5126 ], "__typename": [ 78 @@ -114973,13 +118728,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 4911 + 5141 ], "distinct": [ 3 ], "filter": [ - 4902 + 5132 ], "predicate": [ 39 @@ -114990,13 +118745,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 4900 + 5130 ], "count": [ 38, { "columns": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -115005,31 +118760,31 @@ export default { } ], "max": [ - 4905 + 5135 ], "min": [ - 4907 + 5137 ], "stddev": [ - 4913 + 5143 ], "stddev_pop": [ - 4915 + 5145 ], "stddev_samp": [ - 4917 + 5147 ], "sum": [ - 4921 + 5151 ], "var_pop": [ - 4924 + 5154 ], "var_samp": [ - 4926 + 5156 ], "variance": [ - 4928 + 5158 ], "__typename": [ 78 @@ -115037,37 +118792,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 4901 + 5131 ], "count": [ - 2481 + 2660 ], "max": [ - 4906 + 5136 ], "min": [ - 4908 + 5138 ], "stddev": [ - 4914 + 5144 ], "stddev_pop": [ - 4916 + 5146 ], "stddev_samp": [ - 4918 + 5148 ], "sum": [ - 4922 + 5152 ], "var_pop": [ - 4925 + 5155 ], "var_samp": [ - 4927 + 5157 ], "variance": [ - 4929 + 5159 ], "__typename": [ 78 @@ -115075,7 +118830,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 4904 + 5134 ], "__typename": [ 78 @@ -115112,28 +118867,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115141,46 +118896,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 4902 + 5132 ], "_not": [ - 4902 + 5132 ], "_or": [ - 4902 + 5132 ], "adr": [ - 2480 + 2659 ], "apr": [ - 2480 + 2659 ], "dpr": [ - 2480 + 2659 ], "hltv_rating": [ - 2480 + 2659 ], "kast_pct": [ - 2480 + 2659 ], "kpr": [ - 2480 + 2659 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "rounds_played": [ 39 @@ -115194,22 +118949,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "rounds_played": [ 38 @@ -115223,37 +118978,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match": [ - 2314 + 2493 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2152 + 2331 ], "match_map_id": [ - 4462 + 4641 ], "player": [ - 3450 + 3629 ], "rounds_played": [ 38 @@ -115267,28 +119022,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -115302,34 +119057,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115337,28 +119092,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -115372,34 +119127,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_map_id": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115410,7 +119165,7 @@ export default { 38 ], "returning": [ - 4893 + 5123 ], "__typename": [ 78 @@ -115418,43 +119173,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115463,28 +119218,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -115527,28 +119282,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115585,28 +119340,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115643,28 +119398,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115672,7 +119427,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 4920 + 5150 ], "ordering": [ 236 @@ -115683,28 +119438,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -115718,22 +119473,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2479 + 2658 ], "apr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "rounds_played": [ 38 @@ -115747,28 +119502,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115776,13 +119531,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 4903 + 5133 ], "_set": [ - 4912 + 5142 ], "where": [ - 4902 + 5132 ], "__typename": [ 78 @@ -115819,28 +119574,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115877,28 +119632,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115935,28 +119690,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2481 + 2660 ], "apr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -115964,52 +119719,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2479 + 2658 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2658 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2658 ], "entry_rate": [ - 2479 + 2658 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kills": [ 38 ], "kpr": [ - 2479 + 2658 ], "lineup_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "match_map": [ - 2134 + 2313 ], "match_map_id": [ - 4462 + 4641 ], "open_deaths": [ 38 @@ -116021,7 +119776,7 @@ export default { 38 ], "player": [ - 3439 + 3618 ], "role": [ 78 @@ -116033,7 +119788,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2658 ], "total_kills": [ 38 @@ -116053,10 +119808,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 4932 + 5162 ], "nodes": [ - 4930 + 5160 ], "__typename": [ 78 @@ -116064,13 +119819,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 4933 + 5163 ], "count": [ 38, { "columns": [ - 4938, + 5168, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -116079,31 +119834,31 @@ export default { } ], "max": [ - 4935 + 5165 ], "min": [ - 4936 + 5166 ], "stddev": [ - 4939 + 5169 ], "stddev_pop": [ - 4940 + 5170 ], "stddev_samp": [ - 4941 + 5171 ], "sum": [ - 4944 + 5174 ], "var_pop": [ - 4945 + 5175 ], "var_samp": [ - 4946 + 5176 ], "variance": [ - 4947 + 5177 ], "__typename": [ 78 @@ -116179,61 +119934,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 4934 + 5164 ], "_not": [ - 4934 + 5164 ], "_or": [ - 4934 + 5164 ], "adr": [ - 2480 + 2659 ], "awp_kills": [ 39 ], "awp_share": [ - 2480 + 2659 ], "deaths": [ 39 ], "dpr": [ - 2480 + 2659 ], "entry_rate": [ - 2480 + 2659 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2480 + 2659 ], "kast_pct": [ - 2480 + 2659 ], "kills": [ 39 ], "kpr": [ - 2480 + 2659 ], "lineup_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "match_map": [ - 2143 + 2322 ], "match_map_id": [ - 4464 + 4643 ], "open_deaths": [ 39 @@ -116245,7 +120000,7 @@ export default { 39 ], "player": [ - 3443 + 3622 ], "role": [ 80 @@ -116257,7 +120012,7 @@ export default { 182 ], "support_idx": [ - 2480 + 2659 ], "total_kills": [ 39 @@ -116277,46 +120032,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2479 + 2658 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2658 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2658 ], "entry_rate": [ - 2479 + 2658 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kills": [ 38 ], "kpr": [ - 2479 + 2658 ], "lineup_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "open_deaths": [ 38 @@ -116337,7 +120092,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2658 ], "total_kills": [ 38 @@ -116357,46 +120112,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2479 + 2658 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2658 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2658 ], "entry_rate": [ - 2479 + 2658 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kills": [ 38 ], "kpr": [ - 2479 + 2658 ], "lineup_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "open_deaths": [ 38 @@ -116417,7 +120172,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2658 ], "total_kills": [ 38 @@ -116437,88 +120192,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2481 + 2660 ], "awp_kills": [ - 2481 + 2660 ], "awp_share": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "entry_rate": [ - 2481 + 2660 ], "flash_assists": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "lineup_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "match_map": [ - 2154 + 2333 ], "match_map_id": [ - 2481 + 2660 ], "open_deaths": [ - 2481 + 2660 ], "open_kills": [ - 2481 + 2660 ], "opening_attempts": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "role": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "support_idx": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "trade_kill_successes": [ - 2481 + 2660 ], "traded_death_successes": [ - 2481 + 2660 ], "util_damage": [ - 2481 + 2660 ], "__typename": [ 78 @@ -116731,7 +120486,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 4943 + 5173 ], "ordering": [ 236 @@ -116742,46 +120497,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2479 + 2658 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2658 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2658 ], "entry_rate": [ - 2479 + 2658 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kills": [ 38 ], "kpr": [ - 2479 + 2658 ], "lineup_id": [ - 4462 + 4641 ], "match_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462 + 4641 ], "open_deaths": [ 38 @@ -116802,7 +120557,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2658 ], "total_kills": [ 38 @@ -116822,37 +120577,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2479 + 2658 ], "awp_kills": [ 38 ], "awp_share": [ - 2479 + 2658 ], "deaths": [ 38 ], "dpr": [ - 2479 + 2658 ], "entry_rate": [ - 2479 + 2658 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kills": [ 38 ], "kpr": [ - 2479 + 2658 ], "open_deaths": [ 38 @@ -116870,7 +120625,7 @@ export default { 180 ], "support_idx": [ - 2479 + 2658 ], "total_kills": [ 38 @@ -117103,19 +120858,19 @@ export default { 38 ], "map": [ - 1814 + 1993 ], "map_id": [ - 4462 + 4641 ], "match": [ - 2296 + 2475 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 @@ -117135,10 +120890,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 4950 + 5180 ], "nodes": [ - 4948 + 5178 ], "__typename": [ 78 @@ -117146,13 +120901,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 4951 + 5181 ], "count": [ 38, { "columns": [ - 4956, + 5186, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -117161,31 +120916,31 @@ export default { } ], "max": [ - 4953 + 5183 ], "min": [ - 4954 + 5184 ], "stddev": [ - 4957 + 5187 ], "stddev_pop": [ - 4958 + 5188 ], "stddev_samp": [ - 4959 + 5189 ], "sum": [ - 4962 + 5192 ], "var_pop": [ - 4963 + 5193 ], "var_samp": [ - 4964 + 5194 ], "variance": [ - 4965 + 5195 ], "__typename": [ 78 @@ -117210,13 +120965,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 4952 + 5182 ], "_not": [ - 4952 + 5182 ], "_or": [ - 4952 + 5182 ], "assists": [ 39 @@ -117228,19 +120983,19 @@ export default { 39 ], "map": [ - 1823 + 2002 ], "map_id": [ - 4464 + 4643 ], "match": [ - 2305 + 2484 ], "match_created_at": [ - 4025 + 4204 ], "match_id": [ - 4464 + 4643 ], "match_result": [ 80 @@ -117269,13 +121024,13 @@ export default { 38 ], "map_id": [ - 4462 + 4641 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 @@ -117304,13 +121059,13 @@ export default { 38 ], "map_id": [ - 4462 + 4641 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 @@ -117330,40 +121085,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "map": [ - 1833 + 2012 ], "map_id": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_created_at": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "match_result": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "__typename": [ 78 @@ -117423,7 +121178,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 4961 + 5191 ], "ordering": [ 236 @@ -117443,13 +121198,13 @@ export default { 38 ], "map_id": [ - 4462 + 4641 ], "match_created_at": [ - 4024 + 4203 ], "match_id": [ - 4462 + 4641 ], "match_result": [ 78 @@ -117537,28 +121292,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match": [ - 2296 + 2475 ], "match_id": [ - 4462 + 4641 ], "player": [ - 3439 + 3618 ], "rounds_played": [ 38 @@ -117572,10 +121327,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 4968 + 5198 ], "nodes": [ - 4966 + 5196 ], "__typename": [ 78 @@ -117583,13 +121338,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 4969 + 5199 ], "count": [ 38, { "columns": [ - 4974, + 5204, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -117598,31 +121353,31 @@ export default { } ], "max": [ - 4971 + 5201 ], "min": [ - 4972 + 5202 ], "stddev": [ - 4975 + 5205 ], "stddev_pop": [ - 4976 + 5206 ], "stddev_samp": [ - 4977 + 5207 ], "sum": [ - 4980 + 5210 ], "var_pop": [ - 4981 + 5211 ], "var_samp": [ - 4982 + 5212 ], "variance": [ - 4983 + 5213 ], "__typename": [ 78 @@ -117656,37 +121411,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 4970 + 5200 ], "_not": [ - 4970 + 5200 ], "_or": [ - 4970 + 5200 ], "adr": [ - 2480 + 2659 ], "dpr": [ - 2480 + 2659 ], "hltv_rating": [ - 2480 + 2659 ], "kast_pct": [ - 2480 + 2659 ], "kpr": [ - 2480 + 2659 ], "match": [ - 2305 + 2484 ], "match_id": [ - 4464 + 4643 ], "player": [ - 3443 + 3622 ], "rounds_played": [ 39 @@ -117700,22 +121455,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -117729,22 +121484,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -117758,34 +121513,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2481 + 2660 ], "dpr": [ - 2481 + 2660 ], "hltv_rating": [ - 2481 + 2660 ], "kast_pct": [ - 2481 + 2660 ], "kpr": [ - 2481 + 2660 ], "match": [ - 2316 + 2495 ], "match_id": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "rounds_played": [ - 2481 + 2660 ], "steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -117872,7 +121627,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 4979 + 5209 ], "ordering": [ 236 @@ -117883,22 +121638,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "match_id": [ - 4462 + 4641 ], "rounds_played": [ 38 @@ -117912,19 +121667,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2479 + 2658 ], "dpr": [ - 2479 + 2658 ], "hltv_rating": [ - 2479 + 2658 ], "kast_pct": [ - 2479 + 2658 ], "kpr": [ - 2479 + 2658 ], "rounds_played": [ 38 @@ -118022,7 +121777,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "round": [ 38 @@ -118033,10 +121788,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 4988 + 5218 ], "nodes": [ - 4984 + 5214 ], "__typename": [ 78 @@ -118044,7 +121799,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 4987 + 5217 ], "__typename": [ 78 @@ -118052,13 +121807,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5000 + 5230 ], "distinct": [ 3 ], "filter": [ - 4993 + 5223 ], "predicate": [ 39 @@ -118069,13 +121824,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 4991 + 5221 ], "count": [ 38, { "columns": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -118084,31 +121839,31 @@ export default { } ], "max": [ - 4995 + 5225 ], "min": [ - 4997 + 5227 ], "stddev": [ - 5001 + 5231 ], "stddev_pop": [ - 5003 + 5233 ], "stddev_samp": [ - 5005 + 5235 ], "sum": [ - 5009 + 5239 ], "var_pop": [ - 5011 + 5241 ], "var_samp": [ - 5013 + 5243 ], "variance": [ - 5015 + 5245 ], "__typename": [ 78 @@ -118116,37 +121871,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 4992 + 5222 ], "count": [ - 2481 + 2660 ], "max": [ - 4996 + 5226 ], "min": [ - 4998 + 5228 ], "stddev": [ - 5002 + 5232 ], "stddev_pop": [ - 5004 + 5234 ], "stddev_samp": [ - 5006 + 5236 ], "sum": [ - 5010 + 5240 ], "var_pop": [ - 5012 + 5242 ], "var_samp": [ - 5014 + 5244 ], "variance": [ - 5016 + 5246 ], "__typename": [ 78 @@ -118154,7 +121909,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 4994 + 5224 ], "__typename": [ 78 @@ -118176,13 +121931,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118190,13 +121945,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 4993 + 5223 ], "_not": [ - 4993 + 5223 ], "_or": [ - 4993 + 5223 ], "attacker_steam_id": [ 182 @@ -118205,7 +121960,7 @@ export default { 182 ], "match_id": [ - 4464 + 4643 ], "round": [ 39 @@ -118222,7 +121977,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "round": [ 38 @@ -118239,7 +121994,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "round": [ 38 @@ -118250,16 +122005,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118273,7 +122028,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "round": [ 38 @@ -118284,16 +122039,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118301,16 +122056,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "match_id": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118333,13 +122088,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118361,13 +122116,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118389,13 +122144,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118403,7 +122158,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5008 + 5238 ], "ordering": [ 236 @@ -118420,7 +122175,7 @@ export default { 180 ], "match_id": [ - 4462 + 4641 ], "round": [ 38 @@ -118445,13 +122200,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118473,13 +122228,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118501,13 +122256,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118529,13 +122284,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "round": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118566,10 +122321,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5019 + 5249 ], "nodes": [ - 5017 + 5247 ], "__typename": [ 78 @@ -118577,13 +122332,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5020 + 5250 ], "count": [ 38, { "columns": [ - 5025, + 5255, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -118592,31 +122347,31 @@ export default { } ], "max": [ - 5022 + 5252 ], "min": [ - 5023 + 5253 ], "stddev": [ - 5026 + 5256 ], "stddev_pop": [ - 5027 + 5257 ], "stddev_samp": [ - 5028 + 5258 ], "sum": [ - 5031 + 5261 ], "var_pop": [ - 5032 + 5262 ], "var_samp": [ - 5033 + 5263 ], "variance": [ - 5034 + 5264 ], "__typename": [ 78 @@ -118638,13 +122393,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5021 + 5251 ], "_not": [ - 5021 + 5251 ], "_or": [ - 5021 + 5251 ], "damage": [ 182 @@ -118716,22 +122471,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2481 + 2660 ], "hits": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -118782,7 +122537,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5030 + 5260 ], "ordering": [ 236 @@ -118895,10 +122650,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5037 + 5267 ], "nodes": [ - 5035 + 5265 ], "__typename": [ 78 @@ -118906,13 +122661,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5038 + 5268 ], "count": [ 38, { "columns": [ - 5043, + 5273, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -118921,31 +122676,31 @@ export default { } ], "max": [ - 5040 + 5270 ], "min": [ - 5041 + 5271 ], "stddev": [ - 5044 + 5274 ], "stddev_pop": [ - 5045 + 5275 ], "stddev_samp": [ - 5046 + 5276 ], "sum": [ - 5049 + 5279 ], "var_pop": [ - 5050 + 5280 ], "var_samp": [ - 5051 + 5281 ], "variance": [ - 5052 + 5282 ], "__typename": [ 78 @@ -118967,13 +122722,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5039 + 5269 ], "_not": [ - 5039 + 5269 ], "_or": [ - 5039 + 5269 ], "kill_count": [ 182 @@ -119045,22 +122800,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "rounds": [ - 2481 + 2660 ], "source": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "with": [ - 2481 + 2660 ], "__typename": [ 78 @@ -119111,7 +122866,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5048 + 5278 ], "ordering": [ 236 @@ -119204,16 +122959,16 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool": [ - 1795 + 1974 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119236,10 +122991,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5059 + 5289 ], "nodes": [ - 5053 + 5283 ], "__typename": [ 78 @@ -119247,13 +123002,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5056 + 5286 ], "bool_or": [ - 5057 + 5287 ], "count": [ - 5058 + 5288 ], "__typename": [ 78 @@ -119261,13 +123016,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5071 + 5301 ], "distinct": [ 3 ], "filter": [ - 5062 + 5292 ], "predicate": [ 4 @@ -119278,13 +123033,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5072 + 5302 ], "distinct": [ 3 ], "filter": [ - 5062 + 5292 ], "predicate": [ 4 @@ -119295,13 +123050,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5070 + 5300 ], "distinct": [ 3 ], "filter": [ - 5062 + 5292 ], "predicate": [ 39 @@ -119315,7 +123070,7 @@ export default { 38, { "columns": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -119324,10 +123079,10 @@ export default { } ], "max": [ - 5064 + 5294 ], "min": [ - 5066 + 5296 ], "__typename": [ 78 @@ -119335,13 +123090,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2481 + 2660 ], "max": [ - 5065 + 5295 ], "min": [ - 5067 + 5297 ], "__typename": [ 78 @@ -119349,7 +123104,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5063 + 5293 ], "__typename": [ 78 @@ -119357,28 +123112,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5062 + 5292 ], "_not": [ - 5062 + 5292 ], "_or": [ - 5062 + 5292 ], "active_pool": [ 4 ], "id": [ - 4464 + 4643 ], "label": [ 80 ], "map_pool": [ - 1798 + 1977 ], "map_pool_id": [ - 4464 + 4643 ], "name": [ 80 @@ -119404,16 +123159,16 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool": [ - 1804 + 1983 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119436,13 +123191,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119465,28 +123220,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "map_pool_id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -119494,13 +123249,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119523,28 +123278,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "map_pool_id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -119555,7 +123310,7 @@ export default { 38 ], "returning": [ - 5053 + 5283 ], "__typename": [ 78 @@ -119563,34 +123318,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "label": [ - 2481 + 2660 ], "map_pool": [ - 1806 + 1985 ], "map_pool_id": [ - 2481 + 2660 ], "name": [ - 2481 + 2660 ], "patch": [ - 2481 + 2660 ], "poster": [ - 2481 + 2660 ], "type": [ - 2481 + 2660 ], "workshop_map_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -119604,13 +123359,13 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119633,7 +123388,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5075 + 5305 ], "ordering": [ 236 @@ -119647,13 +123402,13 @@ export default { 3 ], "id": [ - 4462 + 4641 ], "label": [ 78 ], "map_pool_id": [ - 4462 + 4641 ], "name": [ 78 @@ -119676,10 +123431,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5073 + 5303 ], "where": [ - 5062 + 5292 ], "__typename": [ 78 @@ -119704,10 +123459,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5079 + 5309 ], "nodes": [ - 5077 + 5307 ], "__typename": [ 78 @@ -119715,13 +123470,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5080 + 5310 ], "count": [ 38, { "columns": [ - 5085, + 5315, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -119730,31 +123485,31 @@ export default { } ], "max": [ - 5082 + 5312 ], "min": [ - 5083 + 5313 ], "stddev": [ - 5086 + 5316 ], "stddev_pop": [ - 5087 + 5317 ], "stddev_samp": [ - 5088 + 5318 ], "sum": [ - 5091 + 5321 ], "var_pop": [ - 5092 + 5322 ], "var_samp": [ - 5093 + 5323 ], "variance": [ - 5094 + 5324 ], "__typename": [ 78 @@ -119779,13 +123534,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5081 + 5311 ], "_not": [ - 5081 + 5311 ], "_or": [ - 5081 + 5311 ], "busy_accounts": [ 39 @@ -119839,16 +123594,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2481 + 2660 ], "free_accounts": [ - 2481 + 2660 ], "id": [ - 2481 + 2660 ], "total_accounts": [ - 2481 + 2660 ], "__typename": [ 78 @@ -119908,7 +123663,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5090 + 5320 ], "ordering": [ 236 @@ -120010,7 +123765,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120025,10 +123780,10 @@ export default { 180 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120036,10 +123791,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5097 + 5327 ], "nodes": [ - 5095 + 5325 ], "__typename": [ 78 @@ -120047,13 +123802,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5098 + 5328 ], "count": [ 38, { "columns": [ - 5105, + 5335, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -120062,31 +123817,31 @@ export default { } ], "max": [ - 5101 + 5331 ], "min": [ - 5102 + 5332 ], "stddev": [ - 5106 + 5336 ], "stddev_pop": [ - 5107 + 5337 ], "stddev_samp": [ - 5108 + 5338 ], "sum": [ - 5111 + 5341 ], "var_pop": [ - 5112 + 5342 ], "var_samp": [ - 5113 + 5343 ], "variance": [ - 5114 + 5344 ], "__typename": [ 78 @@ -120120,13 +123875,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5099 + 5329 ], "_not": [ - 5099 + 5329 ], "_or": [ - 5099 + 5329 ], "avg_elo": [ 39 @@ -120135,7 +123890,7 @@ export default { 39 ], "avg_faceit_level": [ - 1201 + 1379 ], "avg_premier": [ 39 @@ -120150,10 +123905,10 @@ export default { 182 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -120167,7 +123922,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120182,10 +123937,10 @@ export default { 180 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120199,7 +123954,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120214,7 +123969,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120228,7 +123983,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120243,7 +123998,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120251,7 +124006,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5100 + 5330 ], "__typename": [ 78 @@ -120259,31 +124014,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2481 + 2660 ], "avg_faceit_elo": [ - 2481 + 2660 ], "avg_faceit_level": [ - 2481 + 2660 ], "avg_premier": [ - 2481 + 2660 ], "max_elo": [ - 2481 + 2660 ], "min_elo": [ - 2481 + 2660 ], "roster_size": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -120370,7 +124125,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5110 + 5340 ], "ordering": [ 236 @@ -120387,7 +124142,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120402,7 +124157,7 @@ export default { 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120416,7 +124171,7 @@ export default { 38 ], "avg_faceit_level": [ - 1200 + 1378 ], "avg_premier": [ 38 @@ -120520,16 +124275,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 ], "team": [ - 3981 + 4160 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120537,10 +124292,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5117 + 5347 ], "nodes": [ - 5115 + 5345 ], "__typename": [ 78 @@ -120548,13 +124303,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5118 + 5348 ], "count": [ 38, { "columns": [ - 5125, + 5355, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -120563,31 +124318,31 @@ export default { } ], "max": [ - 5121 + 5351 ], "min": [ - 5122 + 5352 ], "stddev": [ - 5126 + 5356 ], "stddev_pop": [ - 5127 + 5357 ], "stddev_samp": [ - 5128 + 5358 ], "sum": [ - 5131 + 5361 ], "var_pop": [ - 5132 + 5362 ], "var_samp": [ - 5133 + 5363 ], "variance": [ - 5134 + 5364 ], "__typename": [ 78 @@ -120612,13 +124367,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5119 + 5349 ], "_not": [ - 5119 + 5349 ], "_or": [ - 5119 + 5349 ], "late_cancels": [ 182 @@ -120627,16 +124382,16 @@ export default { 182 ], "reliability_pct": [ - 2480 + 2659 ], "scrims_completed": [ 182 ], "team": [ - 3990 + 4169 ], "team_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -120650,16 +124405,16 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 ], "team": [ - 3999 + 4178 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120673,13 +124428,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120693,13 +124448,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120707,7 +124462,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5120 + 5350 ], "__typename": [ 78 @@ -120715,22 +124470,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2481 + 2660 ], "no_shows": [ - 2481 + 2660 ], "reliability_pct": [ - 2481 + 2660 ], "scrims_completed": [ - 2481 + 2660 ], "team": [ - 4001 + 4180 ], "team_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -120790,7 +124545,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5130 + 5360 ], "ordering": [ 236 @@ -120807,13 +124562,13 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 ], "team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -120827,7 +124582,7 @@ export default { 180 ], "reliability_pct": [ - 2479 + 2658 ], "scrims_completed": [ 180 @@ -120925,13 +124680,13 @@ export default { 38 ], "stage": [ - 4154 + 4333 ], "team": [ - 4287 + 4466 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -120940,10 +124695,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -120954,10 +124709,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5149 + 5379 ], "nodes": [ - 5135 + 5365 ], "__typename": [ 78 @@ -120965,31 +124720,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5138 + 5368 ], "corr": [ - 5139 + 5369 ], "count": [ - 5141 + 5371 ], "covar_samp": [ - 5142 + 5372 ], "max": [ - 5144 + 5374 ], "min": [ - 5145 + 5375 ], "stddev_samp": [ - 5146 + 5376 ], "sum": [ - 5147 + 5377 ], "var_samp": [ - 5148 + 5378 ], "__typename": [ 78 @@ -120997,16 +124752,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5168 + 5398 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121014,16 +124769,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5140 + 5370 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121031,10 +124786,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5169 + 5399 ], "Y": [ - 5169 + 5399 ], "__typename": [ 78 @@ -121042,13 +124797,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5167 + 5397 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ 39 @@ -121059,16 +124814,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5143 + 5373 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121076,10 +124831,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5170 + 5400 ], "Y": [ - 5170 + 5400 ], "__typename": [ 78 @@ -121087,16 +124842,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5171 + 5401 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121104,16 +124859,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5172 + 5402 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121121,16 +124876,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5173 + 5403 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121138,16 +124893,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5174 + 5404 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121155,16 +124910,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5175 + 5405 ], "distinct": [ 3 ], "filter": [ - 5154 + 5384 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -121172,13 +124927,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5152 + 5382 ], "count": [ 38, { "columns": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -121187,31 +124942,31 @@ export default { } ], "max": [ - 5158 + 5388 ], "min": [ - 5160 + 5390 ], "stddev": [ - 5177 + 5407 ], "stddev_pop": [ - 5179 + 5409 ], "stddev_samp": [ - 5181 + 5411 ], "sum": [ - 5185 + 5415 ], "var_pop": [ - 5189 + 5419 ], "var_samp": [ - 5191 + 5421 ], "variance": [ - 5193 + 5423 ], "__typename": [ 78 @@ -121219,37 +124974,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5153 + 5383 ], "count": [ - 2481 + 2660 ], "max": [ - 5159 + 5389 ], "min": [ - 5161 + 5391 ], "stddev": [ - 5178 + 5408 ], "stddev_pop": [ - 5180 + 5410 ], "stddev_samp": [ - 5182 + 5412 ], "sum": [ - 5186 + 5416 ], "var_pop": [ - 5190 + 5420 ], "var_samp": [ - 5192 + 5422 ], "variance": [ - 5194 + 5424 ], "__typename": [ 78 @@ -121257,10 +125012,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5157 + 5387 ], "on_conflict": [ - 5164 + 5394 ], "__typename": [ 78 @@ -121321,52 +125076,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -121374,13 +125129,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5154 + 5384 ], "_not": [ - 5154 + 5384 ], "_or": [ - 5154 + 5384 ], "group_number": [ 39 @@ -121419,13 +125174,13 @@ export default { 39 ], "stage": [ - 4166 + 4345 ], "team": [ - 4296 + 4475 ], "team_kdr": [ - 1201 + 1379 ], "total_deaths": [ 39 @@ -121434,10 +125189,10 @@ export default { 39 ], "tournament_stage_id": [ - 4464 + 4643 ], "tournament_team_id": [ - 4464 + 4643 ], "wins": [ 39 @@ -121485,7 +125240,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -121538,13 +125293,13 @@ export default { 38 ], "stage": [ - 4178 + 4357 ], "team": [ - 4305 + 4484 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -121553,10 +125308,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -121603,7 +125358,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -121612,10 +125367,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -121626,58 +125381,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -121721,7 +125476,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -121730,10 +125485,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -121744,58 +125499,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -121806,7 +125561,7 @@ export default { 38 ], "returning": [ - 5135 + 5365 ], "__typename": [ 78 @@ -121814,10 +125569,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5157 + 5387 ], "on_conflict": [ - 5164 + 5394 ], "__typename": [ 78 @@ -121825,13 +125580,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5155 + 5385 ], "update_columns": [ - 5187 + 5417 ], "where": [ - 5154 + 5384 ], "__typename": [ 78 @@ -121839,64 +125594,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "stage": [ - 4180 + 4359 ], "team": [ - 4307 + 4486 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament_stage_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -121904,10 +125659,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -121960,7 +125715,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -121969,10 +125724,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -122036,52 +125791,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122142,52 +125897,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122248,52 +126003,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122301,7 +126056,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5184 + 5414 ], "ordering": [ 236 @@ -122348,7 +126103,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -122357,10 +126112,10 @@ export default { 38 ], "tournament_stage_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -122407,7 +126162,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -122424,52 +126179,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122478,13 +126233,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5156 + 5386 ], "_set": [ - 5176 + 5406 ], "where": [ - 5154 + 5384 ], "__typename": [ 78 @@ -122545,52 +126300,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122651,52 +126406,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122757,52 +126512,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2481 + 2660 ], "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "placement": [ - 2481 + 2660 ], "rank": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -122837,10 +126592,10 @@ export default { 38 ], "team": [ - 4287 + 4466 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -122849,13 +126604,13 @@ export default { 38 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -122866,10 +126621,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5209 + 5439 ], "nodes": [ - 5195 + 5425 ], "__typename": [ 78 @@ -122877,31 +126632,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5198 + 5428 ], "corr": [ - 5199 + 5429 ], "count": [ - 5201 + 5431 ], "covar_samp": [ - 5202 + 5432 ], "max": [ - 5204 + 5434 ], "min": [ - 5205 + 5435 ], "stddev_samp": [ - 5206 + 5436 ], "sum": [ - 5207 + 5437 ], "var_samp": [ - 5208 + 5438 ], "__typename": [ 78 @@ -122909,16 +126664,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5222 + 5452 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -122926,16 +126681,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5200 + 5430 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -122943,10 +126698,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5223 + 5453 ], "Y": [ - 5223 + 5453 ], "__typename": [ 78 @@ -122954,13 +126709,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5221 + 5451 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ 39 @@ -122971,16 +126726,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5203 + 5433 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -122988,10 +126743,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5224 + 5454 ], "Y": [ - 5224 + 5454 ], "__typename": [ 78 @@ -122999,16 +126754,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5225 + 5455 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -123016,16 +126771,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5226 + 5456 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -123033,16 +126788,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5227 + 5457 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -123050,16 +126805,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5228 + 5458 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -123067,16 +126822,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5229 + 5459 ], "distinct": [ 3 ], "filter": [ - 5214 + 5444 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -123084,13 +126839,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5212 + 5442 ], "count": [ 38, { "columns": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -123099,31 +126854,31 @@ export default { } ], "max": [ - 5216 + 5446 ], "min": [ - 5218 + 5448 ], "stddev": [ - 5230 + 5460 ], "stddev_pop": [ - 5232 + 5462 ], "stddev_samp": [ - 5234 + 5464 ], "sum": [ - 5238 + 5468 ], "var_pop": [ - 5240 + 5470 ], "var_samp": [ - 5242 + 5472 ], "variance": [ - 5244 + 5474 ], "__typename": [ 78 @@ -123131,37 +126886,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5213 + 5443 ], "count": [ - 2481 + 2660 ], "max": [ - 5217 + 5447 ], "min": [ - 5219 + 5449 ], "stddev": [ - 5231 + 5461 ], "stddev_pop": [ - 5233 + 5463 ], "stddev_samp": [ - 5235 + 5465 ], "sum": [ - 5239 + 5469 ], "var_pop": [ - 5241 + 5471 ], "var_samp": [ - 5243 + 5473 ], "variance": [ - 5245 + 5475 ], "__typename": [ 78 @@ -123169,7 +126924,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5215 + 5445 ], "__typename": [ 78 @@ -123221,43 +126976,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123265,13 +127020,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5214 + 5444 ], "_not": [ - 5214 + 5444 ], "_or": [ - 5214 + 5444 ], "head_to_head_match_wins": [ 39 @@ -123301,10 +127056,10 @@ export default { 39 ], "team": [ - 4296 + 4475 ], "team_kdr": [ - 1201 + 1379 ], "total_deaths": [ 39 @@ -123313,13 +127068,13 @@ export default { 39 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "tournament_team_id": [ - 4464 + 4643 ], "wins": [ 39 @@ -123357,10 +127112,10 @@ export default { 38 ], "team": [ - 4305 + 4484 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -123369,13 +127124,13 @@ export default { 38 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -123413,7 +127168,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -123422,10 +127177,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -123436,49 +127191,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123513,7 +127268,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -123522,10 +127277,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -123536,49 +127291,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123586,55 +127341,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team": [ - 4307 + 4486 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "tournament_team_id": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123695,43 +127450,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123783,43 +127538,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123871,43 +127626,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -123915,7 +127670,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5237 + 5467 ], "ordering": [ 236 @@ -123953,7 +127708,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -123962,10 +127717,10 @@ export default { 38 ], "tournament_id": [ - 4462 + 4641 ], "tournament_team_id": [ - 4462 + 4641 ], "wins": [ 38 @@ -124003,7 +127758,7 @@ export default { 38 ], "team_kdr": [ - 1200 + 1378 ], "total_deaths": [ 38 @@ -124020,43 +127775,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124108,43 +127863,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124196,43 +127951,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124284,43 +128039,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2481 + 2660 ], "head_to_head_rounds_won": [ - 2481 + 2660 ], "losses": [ - 2481 + 2660 ], "maps_lost": [ - 2481 + 2660 ], "maps_won": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "matches_remaining": [ - 2481 + 2660 ], "rounds_lost": [ - 2481 + 2660 ], "rounds_won": [ - 2481 + 2660 ], "team_kdr": [ - 2481 + 2660 ], "total_deaths": [ - 2481 + 2660 ], "total_kills": [ - 2481 + 2660 ], "wins": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124334,13 +128089,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -124349,16 +128104,16 @@ export default { 38 ], "player": [ - 3439 + 3618 ], "player_steam_id": [ 180 ], "tournament": [ - 4416 + 4595 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -124366,10 +128121,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5260 + 5490 ], "nodes": [ - 5246 + 5476 ], "__typename": [ 78 @@ -124377,31 +128132,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5249 + 5479 ], "corr": [ - 5250 + 5480 ], "count": [ - 5252 + 5482 ], "covar_samp": [ - 5253 + 5483 ], "max": [ - 5255 + 5485 ], "min": [ - 5256 + 5486 ], "stddev_samp": [ - 5257 + 5487 ], "sum": [ - 5258 + 5488 ], "var_samp": [ - 5259 + 5489 ], "__typename": [ 78 @@ -124409,16 +128164,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5273 + 5503 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124426,16 +128181,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5251 + 5481 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124443,10 +128198,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5274 + 5504 ], "Y": [ - 5274 + 5504 ], "__typename": [ 78 @@ -124454,13 +128209,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5272 + 5502 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ 39 @@ -124471,16 +128226,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5254 + 5484 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124488,10 +128243,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5275 + 5505 ], "Y": [ - 5275 + 5505 ], "__typename": [ 78 @@ -124499,16 +128254,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5276 + 5506 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124516,16 +128271,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5277 + 5507 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124533,16 +128288,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5278 + 5508 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124550,16 +128305,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5279 + 5509 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124567,16 +128322,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5280 + 5510 ], "distinct": [ 3 ], "filter": [ - 5265 + 5495 ], "predicate": [ - 1201 + 1379 ], "__typename": [ 78 @@ -124584,13 +128339,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5263 + 5493 ], "count": [ 38, { "columns": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -124599,31 +128354,31 @@ export default { } ], "max": [ - 5267 + 5497 ], "min": [ - 5269 + 5499 ], "stddev": [ - 5281 + 5511 ], "stddev_pop": [ - 5283 + 5513 ], "stddev_samp": [ - 5285 + 5515 ], "sum": [ - 5289 + 5519 ], "var_pop": [ - 5291 + 5521 ], "var_samp": [ - 5293 + 5523 ], "variance": [ - 5295 + 5525 ], "__typename": [ 78 @@ -124631,37 +128386,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5264 + 5494 ], "count": [ - 2481 + 2660 ], "max": [ - 5268 + 5498 ], "min": [ - 5270 + 5500 ], "stddev": [ - 5282 + 5512 ], "stddev_pop": [ - 5284 + 5514 ], "stddev_samp": [ - 5286 + 5516 ], "sum": [ - 5290 + 5520 ], "var_pop": [ - 5292 + 5522 ], "var_samp": [ - 5294 + 5524 ], "variance": [ - 5296 + 5526 ], "__typename": [ 78 @@ -124669,7 +128424,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5266 + 5496 ], "__typename": [ 78 @@ -124706,28 +128461,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124735,13 +128490,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5265 + 5495 ], "_not": [ - 5265 + 5495 ], "_or": [ - 5265 + 5495 ], "assists": [ 39 @@ -124750,13 +128505,13 @@ export default { 39 ], "headshot_percentage": [ - 1201 + 1379 ], "headshots": [ 39 ], "kdr": [ - 1201 + 1379 ], "kills": [ 39 @@ -124765,16 +128520,16 @@ export default { 39 ], "player": [ - 3443 + 3622 ], "player_steam_id": [ 182 ], "tournament": [ - 4427 + 4606 ], "tournament_id": [ - 4464 + 4643 ], "__typename": [ 78 @@ -124788,13 +128543,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -124803,16 +128558,16 @@ export default { 38 ], "player": [ - 3450 + 3629 ], "player_steam_id": [ 180 ], "tournament": [ - 4436 + 4615 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -124826,13 +128581,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -124844,7 +128599,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -124852,31 +128607,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124890,13 +128645,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -124908,7 +128663,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -124916,31 +128671,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -124948,37 +128703,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player": [ - 3452 + 3631 ], "player_steam_id": [ - 2481 + 2660 ], "tournament": [ - 4438 + 4617 ], "tournament_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125024,28 +128779,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125082,28 +128837,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125140,28 +128895,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125169,7 +128924,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5288 + 5518 ], "ordering": [ 236 @@ -125186,13 +128941,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -125204,7 +128959,7 @@ export default { 180 ], "tournament_id": [ - 4462 + 4641 ], "__typename": [ 78 @@ -125218,13 +128973,13 @@ export default { 38 ], "headshot_percentage": [ - 1200 + 1378 ], "headshots": [ 38 ], "kdr": [ - 1200 + 1378 ], "kills": [ 38 @@ -125241,28 +128996,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125299,28 +129054,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125357,28 +129112,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125415,28 +129170,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2481 + 2660 ], "deaths": [ - 2481 + 2660 ], "headshot_percentage": [ - 2481 + 2660 ], "headshots": [ - 2481 + 2660 ], "kdr": [ - 2481 + 2660 ], "kills": [ - 2481 + 2660 ], "matches_played": [ - 2481 + 2660 ], "player_steam_id": [ - 2481 + 2660 ], "__typename": [ 78 @@ -125491,11 +129246,11 @@ export default { 92, { "map_id": [ - 4462, + 4641, "uuid!" ], "map_pool_id": [ - 4462, + 4641, "uuid!" ] } @@ -125548,7 +129303,7 @@ export default { 111, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -125601,7 +129356,7 @@ export default { 152, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -125654,7 +129409,7 @@ export default { 185, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -125710,7 +129465,7 @@ export default { 237, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -125763,7 +129518,7 @@ export default { 264, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -125816,7 +129571,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -125873,7 +129628,7 @@ export default { 354, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -126196,11 +129951,64 @@ export default { ] } ], - "e_friend_status": [ + "e_event_status": [ + 525, + { + "distinct_on": [ + 539, + "[e_event_status_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 537, + "[e_event_status_order_by!]" + ], + "where": [ + 528 + ] + } + ], + "e_event_status_aggregate": [ + 526, + { + "distinct_on": [ + 539, + "[e_event_status_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 537, + "[e_event_status_order_by!]" + ], + "where": [ + 528 + ] + } + ], + "e_event_status_by_pk": [ 525, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_friend_status": [ + 545, { "distinct_on": [ - 540, + 560, "[e_friend_status_select_column!]" ], "limit": [ @@ -126210,19 +130018,19 @@ export default { 38 ], "order_by": [ - 538, + 558, "[e_friend_status_order_by!]" ], "where": [ - 528 + 548 ] } ], "e_friend_status_aggregate": [ - 526, + 546, { "distinct_on": [ - 540, + 560, "[e_friend_status_select_column!]" ], "limit": [ @@ -126232,16 +130040,16 @@ export default { 38 ], "order_by": [ - 538, + 558, "[e_friend_status_order_by!]" ], "where": [ - 528 + 548 ] } ], "e_friend_status_by_pk": [ - 525, + 545, { "value": [ 78, @@ -126250,10 +130058,10 @@ export default { } ], "e_game_cfg_types": [ - 546, + 566, { "distinct_on": [ - 560, + 580, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -126263,19 +130071,19 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 569 ] } ], "e_game_cfg_types_aggregate": [ - 547, + 567, { "distinct_on": [ - 560, + 580, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -126285,16 +130093,16 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 569 ] } ], "e_game_cfg_types_by_pk": [ - 546, + 566, { "value": [ 78, @@ -126303,10 +130111,10 @@ export default { } ], "e_game_server_node_statuses": [ - 566, + 586, { "distinct_on": [ - 581, + 601, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -126316,19 +130124,19 @@ export default { 38 ], "order_by": [ - 579, + 599, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_server_node_statuses_aggregate": [ - 567, + 587, { "distinct_on": [ - 581, + 601, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -126338,16 +130146,16 @@ export default { 38 ], "order_by": [ - 579, + 599, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_server_node_statuses_by_pk": [ - 566, + 586, { "value": [ 78, @@ -126356,10 +130164,10 @@ export default { } ], "e_league_movement_types": [ - 587, + 607, { "distinct_on": [ - 602, + 622, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -126369,19 +130177,19 @@ export default { 38 ], "order_by": [ - 600, + 620, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 610 ] } ], "e_league_movement_types_aggregate": [ - 588, + 608, { "distinct_on": [ - 602, + 622, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -126391,16 +130199,16 @@ export default { 38 ], "order_by": [ - 600, + 620, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 610 ] } ], "e_league_movement_types_by_pk": [ - 587, + 607, { "value": [ 78, @@ -126409,10 +130217,10 @@ export default { } ], "e_league_proposal_statuses": [ - 608, + 628, { "distinct_on": [ - 623, + 643, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -126422,19 +130230,19 @@ export default { 38 ], "order_by": [ - 621, + 641, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 631 ] } ], "e_league_proposal_statuses_aggregate": [ - 609, + 629, { "distinct_on": [ - 623, + 643, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -126444,16 +130252,16 @@ export default { 38 ], "order_by": [ - 621, + 641, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 631 ] } ], "e_league_proposal_statuses_by_pk": [ - 608, + 628, { "value": [ 78, @@ -126462,10 +130270,10 @@ export default { } ], "e_league_registration_statuses": [ - 629, + 649, { "distinct_on": [ - 644, + 664, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -126475,19 +130283,19 @@ export default { 38 ], "order_by": [ - 642, + 662, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 652 ] } ], "e_league_registration_statuses_aggregate": [ - 630, + 650, { "distinct_on": [ - 644, + 664, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -126497,16 +130305,16 @@ export default { 38 ], "order_by": [ - 642, + 662, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 652 ] } ], "e_league_registration_statuses_by_pk": [ - 629, + 649, { "value": [ 78, @@ -126515,10 +130323,10 @@ export default { } ], "e_league_season_statuses": [ - 650, + 670, { "distinct_on": [ - 665, + 685, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -126528,19 +130336,19 @@ export default { 38 ], "order_by": [ - 663, + 683, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 673 ] } ], "e_league_season_statuses_aggregate": [ - 651, + 671, { "distinct_on": [ - 665, + 685, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -126550,16 +130358,16 @@ export default { 38 ], "order_by": [ - 663, + 683, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 673 ] } ], "e_league_season_statuses_by_pk": [ - 650, + 670, { "value": [ 78, @@ -126568,10 +130376,10 @@ export default { } ], "e_lobby_access": [ - 671, + 691, { "distinct_on": [ - 686, + 706, "[e_lobby_access_select_column!]" ], "limit": [ @@ -126581,19 +130389,19 @@ export default { 38 ], "order_by": [ - 684, + 704, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 694 ] } ], "e_lobby_access_aggregate": [ - 672, + 692, { "distinct_on": [ - 686, + 706, "[e_lobby_access_select_column!]" ], "limit": [ @@ -126603,16 +130411,16 @@ export default { 38 ], "order_by": [ - 684, + 704, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 694 ] } ], "e_lobby_access_by_pk": [ - 671, + 691, { "value": [ 78, @@ -126621,10 +130429,10 @@ export default { } ], "e_lobby_player_status": [ - 692, + 712, { "distinct_on": [ - 706, + 726, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -126634,19 +130442,19 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 715 ] } ], "e_lobby_player_status_aggregate": [ - 693, + 713, { "distinct_on": [ - 706, + 726, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -126656,16 +130464,16 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 715 ] } ], "e_lobby_player_status_by_pk": [ - 692, + 712, { "value": [ 78, @@ -126674,10 +130482,10 @@ export default { } ], "e_map_pool_types": [ - 712, + 732, { "distinct_on": [ - 727, + 747, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -126687,19 +130495,19 @@ export default { 38 ], "order_by": [ - 725, + 745, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_map_pool_types_aggregate": [ - 713, + 733, { "distinct_on": [ - 727, + 747, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -126709,16 +130517,16 @@ export default { 38 ], "order_by": [ - 725, + 745, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_map_pool_types_by_pk": [ - 712, + 732, { "value": [ 78, @@ -126727,10 +130535,10 @@ export default { } ], "e_match_clip_visibility": [ - 733, + 753, { "distinct_on": [ - 747, + 767, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -126740,19 +130548,19 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 756 ] } ], "e_match_clip_visibility_aggregate": [ - 734, + 754, { "distinct_on": [ - 747, + 767, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -126762,16 +130570,16 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 756 ] } ], "e_match_clip_visibility_by_pk": [ - 733, + 753, { "value": [ 78, @@ -126780,10 +130588,10 @@ export default { } ], "e_match_map_status": [ - 753, + 773, { "distinct_on": [ - 768, + 788, "[e_match_map_status_select_column!]" ], "limit": [ @@ -126793,19 +130601,19 @@ export default { 38 ], "order_by": [ - 766, + 786, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_map_status_aggregate": [ - 754, + 774, { "distinct_on": [ - 768, + 788, "[e_match_map_status_select_column!]" ], "limit": [ @@ -126815,16 +130623,16 @@ export default { 38 ], "order_by": [ - 766, + 786, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_map_status_by_pk": [ - 753, + 773, { "value": [ 78, @@ -126833,10 +130641,10 @@ export default { } ], "e_match_mode": [ - 774, + 794, { "distinct_on": [ - 788, + 808, "[e_match_mode_select_column!]" ], "limit": [ @@ -126846,19 +130654,19 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_mode_order_by!]" ], "where": [ - 777 + 797 ] } ], "e_match_mode_aggregate": [ - 775, + 795, { "distinct_on": [ - 788, + 808, "[e_match_mode_select_column!]" ], "limit": [ @@ -126868,16 +130676,16 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_mode_order_by!]" ], "where": [ - 777 + 797 ] } ], "e_match_mode_by_pk": [ - 774, + 794, { "value": [ 78, @@ -126886,10 +130694,10 @@ export default { } ], "e_match_status": [ - 794, + 814, { "distinct_on": [ - 809, + 829, "[e_match_status_select_column!]" ], "limit": [ @@ -126899,19 +130707,19 @@ export default { 38 ], "order_by": [ - 807, + 827, "[e_match_status_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_status_aggregate": [ - 795, + 815, { "distinct_on": [ - 809, + 829, "[e_match_status_select_column!]" ], "limit": [ @@ -126921,16 +130729,16 @@ export default { 38 ], "order_by": [ - 807, + 827, "[e_match_status_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_status_by_pk": [ - 794, + 814, { "value": [ 78, @@ -126939,10 +130747,10 @@ export default { } ], "e_match_types": [ - 815, + 835, { "distinct_on": [ - 830, + 850, "[e_match_types_select_column!]" ], "limit": [ @@ -126952,19 +130760,19 @@ export default { 38 ], "order_by": [ - 828, + 848, "[e_match_types_order_by!]" ], "where": [ - 818 + 838 ] } ], "e_match_types_aggregate": [ - 816, + 836, { "distinct_on": [ - 830, + 850, "[e_match_types_select_column!]" ], "limit": [ @@ -126974,16 +130782,16 @@ export default { 38 ], "order_by": [ - 828, + 848, "[e_match_types_order_by!]" ], "where": [ - 818 + 838 ] } ], "e_match_types_by_pk": [ - 815, + 835, { "value": [ 78, @@ -126992,10 +130800,10 @@ export default { } ], "e_notification_types": [ - 836, + 856, { "distinct_on": [ - 850, + 870, "[e_notification_types_select_column!]" ], "limit": [ @@ -127005,19 +130813,19 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_notification_types_order_by!]" ], "where": [ - 839 + 859 ] } ], "e_notification_types_aggregate": [ - 837, + 857, { "distinct_on": [ - 850, + 870, "[e_notification_types_select_column!]" ], "limit": [ @@ -127027,16 +130835,16 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_notification_types_order_by!]" ], "where": [ - 839 + 859 ] } ], "e_notification_types_by_pk": [ - 836, + 856, { "value": [ 78, @@ -127045,10 +130853,10 @@ export default { } ], "e_objective_types": [ - 856, + 876, { "distinct_on": [ - 870, + 890, "[e_objective_types_select_column!]" ], "limit": [ @@ -127058,19 +130866,19 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_objective_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_objective_types_aggregate": [ - 857, + 877, { "distinct_on": [ - 870, + 890, "[e_objective_types_select_column!]" ], "limit": [ @@ -127080,16 +130888,16 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_objective_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_objective_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -127098,10 +130906,10 @@ export default { } ], "e_player_roles": [ - 876, + 896, { "distinct_on": [ - 890, + 910, "[e_player_roles_select_column!]" ], "limit": [ @@ -127111,19 +130919,19 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_player_roles_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_player_roles_aggregate": [ - 877, + 897, { "distinct_on": [ - 890, + 910, "[e_player_roles_select_column!]" ], "limit": [ @@ -127133,16 +130941,16 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_player_roles_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_player_roles_by_pk": [ - 876, + 896, { "value": [ 78, @@ -127151,10 +130959,10 @@ export default { } ], "e_plugin_runtimes": [ - 896, + 916, { "distinct_on": [ - 910, + 930, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -127164,19 +130972,19 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_plugin_runtimes_aggregate": [ - 897, + 917, { "distinct_on": [ - 910, + 930, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -127186,16 +130994,16 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_plugin_runtimes_by_pk": [ - 896, + 916, { "value": [ 78, @@ -127204,10 +131012,10 @@ export default { } ], "e_ready_settings": [ - 916, + 936, { "distinct_on": [ - 930, + 950, "[e_ready_settings_select_column!]" ], "limit": [ @@ -127217,19 +131025,19 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_ready_settings_aggregate": [ - 917, + 937, { "distinct_on": [ - 930, + 950, "[e_ready_settings_select_column!]" ], "limit": [ @@ -127239,16 +131047,16 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_ready_settings_by_pk": [ - 916, + 936, { "value": [ 78, @@ -127257,10 +131065,10 @@ export default { } ], "e_sanction_types": [ - 936, + 956, { "distinct_on": [ - 951, + 971, "[e_sanction_types_select_column!]" ], "limit": [ @@ -127270,19 +131078,19 @@ export default { 38 ], "order_by": [ - 949, + 969, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_sanction_types_aggregate": [ - 937, + 957, { "distinct_on": [ - 951, + 971, "[e_sanction_types_select_column!]" ], "limit": [ @@ -127292,16 +131100,16 @@ export default { 38 ], "order_by": [ - 949, + 969, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_sanction_types_by_pk": [ - 936, + 956, { "value": [ 78, @@ -127310,10 +131118,10 @@ export default { } ], "e_scrim_request_statuses": [ - 957, + 977, { "distinct_on": [ - 971, + 991, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -127323,19 +131131,19 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 980 ] } ], "e_scrim_request_statuses_aggregate": [ - 958, + 978, { "distinct_on": [ - 971, + 991, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -127345,16 +131153,16 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 980 ] } ], "e_scrim_request_statuses_by_pk": [ - 957, + 977, { "value": [ 78, @@ -127363,10 +131171,10 @@ export default { } ], "e_server_types": [ - 977, + 997, { "distinct_on": [ - 991, + 1011, "[e_server_types_select_column!]" ], "limit": [ @@ -127376,19 +131184,19 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_server_types_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_server_types_aggregate": [ - 978, + 998, { "distinct_on": [ - 991, + 1011, "[e_server_types_select_column!]" ], "limit": [ @@ -127398,16 +131206,16 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_server_types_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_server_types_by_pk": [ - 977, + 997, { "value": [ 78, @@ -127416,10 +131224,10 @@ export default { } ], "e_sides": [ - 997, + 1017, { "distinct_on": [ - 1011, + 1031, "[e_sides_select_column!]" ], "limit": [ @@ -127429,19 +131237,19 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_sides_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_sides_aggregate": [ - 998, + 1018, { "distinct_on": [ - 1011, + 1031, "[e_sides_select_column!]" ], "limit": [ @@ -127451,16 +131259,16 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_sides_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_sides_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -127469,10 +131277,10 @@ export default { } ], "e_system_alert_types": [ - 1017, + 1037, { "distinct_on": [ - 1031, + 1051, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -127482,19 +131290,19 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_system_alert_types_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1031, + 1051, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -127504,16 +131312,16 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_system_alert_types_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -127522,10 +131330,10 @@ export default { } ], "e_team_roles": [ - 1037, + 1057, { "distinct_on": [ - 1052, + 1072, "[e_team_roles_select_column!]" ], "limit": [ @@ -127535,19 +131343,19 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_team_roles_aggregate": [ - 1038, + 1058, { "distinct_on": [ - 1052, + 1072, "[e_team_roles_select_column!]" ], "limit": [ @@ -127557,16 +131365,16 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_team_roles_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -127575,10 +131383,10 @@ export default { } ], "e_team_roster_statuses": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127588,19 +131396,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_team_roster_statuses_aggregate": [ - 1059, + 1079, { "distinct_on": [ - 1072, + 1092, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -127610,16 +131418,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_team_roster_statuses_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -127628,10 +131436,10 @@ export default { } ], "e_timeout_settings": [ - 1078, + 1098, { "distinct_on": [ - 1092, + 1112, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127641,19 +131449,19 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_timeout_settings_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1092, + 1112, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -127663,16 +131471,16 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_timeout_settings_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -127681,10 +131489,10 @@ export default { } ], "e_tournament_stage_types": [ - 1098, + 1118, { "distinct_on": [ - 1113, + 1133, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127694,19 +131502,19 @@ export default { 38 ], "order_by": [ - 1111, + 1131, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_stage_types_aggregate": [ - 1099, + 1119, { "distinct_on": [ - 1113, + 1133, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -127716,16 +131524,16 @@ export default { 38 ], "order_by": [ - 1111, + 1131, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_stage_types_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -127734,10 +131542,10 @@ export default { } ], "e_tournament_status": [ - 1119, + 1139, { "distinct_on": [ - 1134, + 1154, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127747,19 +131555,19 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1142 ] } ], "e_tournament_status_aggregate": [ - 1120, + 1140, { "distinct_on": [ - 1134, + 1154, "[e_tournament_status_select_column!]" ], "limit": [ @@ -127769,16 +131577,16 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1142 ] } ], "e_tournament_status_by_pk": [ - 1119, + 1139, { "value": [ 78, @@ -127787,10 +131595,10 @@ export default { } ], "e_utility_types": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_utility_types_select_column!]" ], "limit": [ @@ -127800,19 +131608,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_utility_types_aggregate": [ - 1141, + 1161, { "distinct_on": [ - 1154, + 1174, "[e_utility_types_select_column!]" ], "limit": [ @@ -127822,16 +131630,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_utility_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -127840,10 +131648,10 @@ export default { } ], "e_veto_pick_types": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127853,19 +131661,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_veto_pick_types_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -127875,16 +131683,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_veto_pick_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -127893,10 +131701,10 @@ export default { } ], "e_winning_reasons": [ - 1180, + 1200, { "distinct_on": [ - 1194, + 1214, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127906,19 +131714,19 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_winning_reasons_aggregate": [ - 1181, + 1201, { "distinct_on": [ - 1194, + 1214, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -127928,16 +131736,16 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_winning_reasons_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -127945,11 +131753,292 @@ export default { ] } ], + "event_organizers": [ + 1220, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "event_organizers_aggregate": [ + 1221, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "event_organizers_by_pk": [ + 1220, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "event_players": [ + 1261, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "event_players_aggregate": [ + 1262, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "event_players_by_pk": [ + 1261, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "event_teams": [ + 1302, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "event_teams_aggregate": [ + 1303, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "event_teams_by_pk": [ + 1302, + { + "event_id": [ + 4641, + "uuid!" + ], + "team_id": [ + 4641, + "uuid!" + ] + } + ], + "event_tournaments": [ + 1326, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "event_tournaments_aggregate": [ + 1327, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "event_tournaments_by_pk": [ + 1326, + { + "event_id": [ + 4641, + "uuid!" + ], + "tournament_id": [ + 4641, + "uuid!" + ] + } + ], + "events": [ + 1350, + { + "distinct_on": [ + 1365, + "[events_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1363, + "[events_order_by!]" + ], + "where": [ + 1354 + ] + } + ], + "events_aggregate": [ + 1351, + { + "distinct_on": [ + 1365, + "[events_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1363, + "[events_order_by!]" + ], + "where": [ + 1354 + ] + } + ], + "events_by_pk": [ + 1350, + { + "id": [ + 4641, + "uuid!" + ] + } + ], "friends": [ - 1202, + 1380, { "distinct_on": [ - 1216, + 1394, "[friends_select_column!]" ], "limit": [ @@ -127959,19 +132048,19 @@ export default { 38 ], "order_by": [ - 1214, + 1392, "[friends_order_by!]" ], "where": [ - 1206 + 1384 ] } ], "friends_aggregate": [ - 1203, + 1381, { "distinct_on": [ - 1216, + 1394, "[friends_select_column!]" ], "limit": [ @@ -127981,16 +132070,16 @@ export default { 38 ], "order_by": [ - 1214, + 1392, "[friends_order_by!]" ], "where": [ - 1206 + 1384 ] } ], "friends_by_pk": [ - 1202, + 1380, { "other_player_steam_id": [ 180, @@ -128003,10 +132092,10 @@ export default { } ], "game_server_nodes": [ - 1229, + 1407, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -128016,19 +132105,19 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1408, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -128038,16 +132127,16 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], "game_server_nodes_by_pk": [ - 1229, + 1407, { "id": [ 78, @@ -128056,10 +132145,10 @@ export default { } ], "game_versions": [ - 1280, + 1458, { "distinct_on": [ - 1300, + 1478, "[game_versions_select_column!]" ], "limit": [ @@ -128069,19 +132158,19 @@ export default { 38 ], "order_by": [ - 1297, + 1475, "[game_versions_order_by!]" ], "where": [ - 1285 + 1463 ] } ], "game_versions_aggregate": [ - 1281, + 1459, { "distinct_on": [ - 1300, + 1478, "[game_versions_select_column!]" ], "limit": [ @@ -128091,16 +132180,16 @@ export default { 38 ], "order_by": [ - 1297, + 1475, "[game_versions_order_by!]" ], "where": [ - 1285 + 1463 ] } ], "game_versions_by_pk": [ - 1280, + 1458, { "build_id": [ 38, @@ -128109,10 +132198,10 @@ export default { } ], "gamedata_signature_validations": [ - 1313, + 1491, { "distinct_on": [ - 1332, + 1510, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -128122,19 +132211,19 @@ export default { 38 ], "order_by": [ - 1329, + 1507, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1496 ] } ], "gamedata_signature_validations_aggregate": [ - 1314, + 1492, { "distinct_on": [ - 1332, + 1510, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -128144,19 +132233,19 @@ export default { 38 ], "order_by": [ - 1329, + 1507, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1496 ] } ], "gamedata_signature_validations_by_pk": [ - 1313, + 1491, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -128192,7 +132281,7 @@ export default { 34, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "target_steam_id": [ @@ -128276,15 +132365,67 @@ export default { "getTimescaleStats": [ 89 ], + "get_event_leaderboard": [ + 1534, + { + "args": [ + 1523, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 1545, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1544, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 1538 + ] + } + ], + "get_event_leaderboard_aggregate": [ + 1535, + { + "args": [ + 1523, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 1545, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1544, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 1538 + ] + } + ], "get_leaderboard": [ - 1355, + 1534, { "args": [ - 1345, + 1524, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128294,23 +132435,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_leaderboard_aggregate": [ - 1356, + 1535, { "args": [ - 1345, + 1524, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128320,23 +132461,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_league_season_leaderboard": [ - 1355, + 1534, { "args": [ - 1346, + 1525, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128346,23 +132487,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_league_season_leaderboard_aggregate": [ - 1356, + 1535, { "args": [ - 1346, + 1525, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128372,23 +132513,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_player_leaderboard_rank": [ - 2922, + 3101, { "args": [ - 1347, + 1526, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128398,23 +132539,23 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 3102, { "args": [ - 1347, + 1526, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -128424,19 +132565,19 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "leaderboard_entries": [ - 1355, + 1534, { "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128446,19 +132587,19 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "leaderboard_entries_aggregate": [ - 1356, + 1535, { "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -128468,19 +132609,19 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "league_divisions": [ - 1379, + 1558, { "distinct_on": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "limit": [ @@ -128490,19 +132631,19 @@ export default { 38 ], "order_by": [ - 1392, + 1571, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1562 ] } ], "league_divisions_aggregate": [ - 1380, + 1559, { "distinct_on": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "limit": [ @@ -128512,28 +132653,28 @@ export default { 38 ], "order_by": [ - 1392, + 1571, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1562 ] } ], "league_divisions_by_pk": [ - 1379, + 1558, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_match_weeks": [ - 1407, + 1586, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128543,19 +132684,19 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], "league_match_weeks_aggregate": [ - 1408, + 1587, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -128565,28 +132706,28 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], "league_match_weeks_by_pk": [ - 1407, + 1586, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_relegation_playoffs": [ - 1448, + 1627, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128596,19 +132737,19 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], "league_relegation_playoffs_aggregate": [ - 1449, + 1628, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -128618,28 +132759,28 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], "league_relegation_playoffs_by_pk": [ - 1448, + 1627, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_scheduling_proposals": [ - 1489, + 1668, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128649,19 +132790,19 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "league_scheduling_proposals_aggregate": [ - 1490, + 1669, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -128671,28 +132812,28 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "league_scheduling_proposals_by_pk": [ - 1489, + 1668, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_season_divisions": [ - 1530, + 1709, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128702,19 +132843,19 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "league_season_divisions_aggregate": [ - 1531, + 1710, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -128724,28 +132865,28 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "league_season_divisions_by_pk": [ - 1530, + 1709, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_seasons": [ - 1555, + 1734, { "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -128755,19 +132896,19 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], "league_seasons_aggregate": [ - 1556, + 1735, { "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -128777,28 +132918,28 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], "league_seasons_by_pk": [ - 1555, + 1734, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_team_movements": [ - 1588, + 1767, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -128808,19 +132949,19 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "league_team_movements_aggregate": [ - 1589, + 1768, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -128830,28 +132971,28 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "league_team_movements_by_pk": [ - 1588, + 1767, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_team_rosters": [ - 1629, + 1808, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128861,19 +133002,19 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "league_team_rosters_aggregate": [ - 1630, + 1809, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -128883,19 +133024,19 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "league_team_rosters_by_pk": [ - 1629, + 1808, { "league_team_season_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -128905,10 +133046,10 @@ export default { } ], "league_team_seasons": [ - 1670, + 1849, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128918,19 +133059,19 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "league_team_seasons_aggregate": [ - 1671, + 1850, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -128940,28 +133081,28 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "league_team_seasons_by_pk": [ - 1670, + 1849, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_teams": [ - 1712, + 1891, { "distinct_on": [ - 1725, + 1904, "[league_teams_select_column!]" ], "limit": [ @@ -128971,19 +133112,19 @@ export default { 38 ], "order_by": [ - 1723, + 1902, "[league_teams_order_by!]" ], "where": [ - 1715 + 1894 ] } ], "league_teams_aggregate": [ - 1713, + 1892, { "distinct_on": [ - 1725, + 1904, "[league_teams_select_column!]" ], "limit": [ @@ -128993,19 +133134,19 @@ export default { 38 ], "order_by": [ - 1723, + 1902, "[league_teams_order_by!]" ], "where": [ - 1715 + 1894 ] } ], "league_teams_by_pk": [ - 1712, + 1891, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -129026,10 +133167,10 @@ export default { } ], "lobbies": [ - 1731, + 1910, { "distinct_on": [ - 1744, + 1923, "[lobbies_select_column!]" ], "limit": [ @@ -129039,19 +133180,19 @@ export default { 38 ], "order_by": [ - 1742, + 1921, "[lobbies_order_by!]" ], "where": [ - 1734 + 1913 ] } ], "lobbies_aggregate": [ - 1732, + 1911, { "distinct_on": [ - 1744, + 1923, "[lobbies_select_column!]" ], "limit": [ @@ -129061,28 +133202,28 @@ export default { 38 ], "order_by": [ - 1742, + 1921, "[lobbies_order_by!]" ], "where": [ - 1734 + 1913 ] } ], "lobbies_by_pk": [ - 1731, + 1910, { "id": [ - 4462, + 4641, "uuid!" ] } ], "lobby_players": [ - 1750, + 1929, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -129092,19 +133233,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "lobby_players_aggregate": [ - 1751, + 1930, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -129114,19 +133255,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "lobby_players_by_pk": [ - 1750, + 1929, { "lobby_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -129136,10 +133277,10 @@ export default { } ], "map_pools": [ - 1795, + 1974, { "distinct_on": [ - 1808, + 1987, "[map_pools_select_column!]" ], "limit": [ @@ -129149,19 +133290,19 @@ export default { 38 ], "order_by": [ - 1806, + 1985, "[map_pools_order_by!]" ], "where": [ - 1798 + 1977 ] } ], "map_pools_aggregate": [ - 1796, + 1975, { "distinct_on": [ - 1808, + 1987, "[map_pools_select_column!]" ], "limit": [ @@ -129171,28 +133312,28 @@ export default { 38 ], "order_by": [ - 1806, + 1985, "[map_pools_order_by!]" ], "where": [ - 1798 + 1977 ] } ], "map_pools_by_pk": [ - 1795, + 1974, { "id": [ - 4462, + 4641, "uuid!" ] } ], "maps": [ - 1814, + 1993, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -129202,19 +133343,19 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], "maps_aggregate": [ - 1815, + 1994, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -129224,28 +133365,28 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], "maps_by_pk": [ - 1814, + 1993, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_clips": [ - 1843, + 2022, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -129255,19 +133396,19 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_aggregate": [ - 1844, + 2023, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -129277,28 +133418,28 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_by_pk": [ - 1843, + 2022, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_demo_sessions": [ - 1885, + 2064, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -129308,19 +133449,19 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], "match_demo_sessions_aggregate": [ - 1886, + 2065, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -129330,28 +133471,28 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], "match_demo_sessions_by_pk": [ - 1885, + 2064, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_lineup_players": [ - 1931, + 2110, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129361,19 +133502,19 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "match_lineup_players_aggregate": [ - 1932, + 2111, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -129383,28 +133524,28 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "match_lineup_players_by_pk": [ - 1931, + 2110, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_lineups": [ - 1976, + 2155, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -129414,19 +133555,19 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "match_lineups_aggregate": [ - 1977, + 2156, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -129436,28 +133577,28 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "match_lineups_by_pk": [ - 1976, + 2155, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_demos": [ - 2018, + 2197, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -129467,19 +133608,19 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "match_map_demos_aggregate": [ - 2019, + 2198, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -129489,28 +133630,28 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "match_map_demos_by_pk": [ - 2018, + 2197, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_rounds": [ - 2069, + 2248, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129520,19 +133661,19 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "match_map_rounds_aggregate": [ - 2070, + 2249, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -129542,28 +133683,28 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "match_map_rounds_by_pk": [ - 2069, + 2248, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129573,19 +133714,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_map_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -129595,28 +133736,28 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_map_veto_picks_by_pk": [ - 2110, + 2289, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_maps": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -129626,19 +133767,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -129648,28 +133789,28 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_by_pk": [ - 2134, + 2313, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_options": [ - 2176, + 2355, { "distinct_on": [ - 2191, + 2370, "[match_options_select_column!]" ], "limit": [ @@ -129679,19 +133820,19 @@ export default { 38 ], "order_by": [ - 2189, + 2368, "[match_options_order_by!]" ], "where": [ - 2180 + 2359 ] } ], "match_options_aggregate": [ - 2177, + 2356, { "distinct_on": [ - 2191, + 2370, "[match_options_select_column!]" ], "limit": [ @@ -129701,28 +133842,28 @@ export default { 38 ], "order_by": [ - 2189, + 2368, "[match_options_order_by!]" ], "where": [ - 2180 + 2359 ] } ], "match_options_by_pk": [ - 2176, + 2355, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_region_veto_picks": [ - 2204, + 2383, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129732,19 +133873,19 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2384, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -129754,28 +133895,28 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2383, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_streams": [ - 2228, + 2407, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -129785,19 +133926,19 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "match_streams_aggregate": [ - 2229, + 2408, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -129807,28 +133948,28 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "match_streams_by_pk": [ - 2228, + 2407, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_type_cfgs": [ - 2278, + 2457, { "distinct_on": [ - 2290, + 2469, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129838,19 +133979,19 @@ export default { 38 ], "order_by": [ - 2288, + 2467, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2460 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2458, { "distinct_on": [ - 2290, + 2469, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -129860,28 +134001,28 @@ export default { 38 ], "order_by": [ - 2288, + 2467, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2460 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2457, { "type": [ - 551, + 571, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -129891,19 +134032,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_aggregate": [ - 2297, + 2476, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -129913,19 +134054,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_by_pk": [ - 2296, + 2475, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -129934,10 +134075,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2338, + 2517, { "distinct_on": [ - 2350, + 2529, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129947,19 +134088,19 @@ export default { 38 ], "order_by": [ - 2348, + 2527, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2520 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2518, { "distinct_on": [ - 2350, + 2529, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -129969,16 +134110,16 @@ export default { 38 ], "order_by": [ - 2348, + 2527, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2520 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2517, { "name": [ 78, @@ -129987,10 +134128,10 @@ export default { } ], "my_friends": [ - 2356, + 2535, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -130000,19 +134141,19 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], "my_friends_aggregate": [ - 2357, + 2536, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -130022,11 +134163,11 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], @@ -130034,7 +134175,7 @@ export default { 48, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -130043,10 +134184,10 @@ export default { 48 ], "news_articles": [ - 2402, + 2581, { "distinct_on": [ - 2416, + 2595, "[news_articles_select_column!]" ], "limit": [ @@ -130056,19 +134197,19 @@ export default { 38 ], "order_by": [ - 2414, + 2593, "[news_articles_order_by!]" ], "where": [ - 2406 + 2585 ] } ], "news_articles_aggregate": [ - 2403, + 2582, { "distinct_on": [ - 2416, + 2595, "[news_articles_select_column!]" ], "limit": [ @@ -130078,28 +134219,28 @@ export default { 38 ], "order_by": [ - 2414, + 2593, "[news_articles_order_by!]" ], "where": [ - 2406 + 2585 ] } ], "news_articles_by_pk": [ - 2402, + 2581, { "id": [ - 4462, + 4641, "uuid!" ] } ], "notifications": [ - 2429, + 2608, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -130109,19 +134250,19 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "notifications_aggregate": [ - 2430, + 2609, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -130131,28 +134272,28 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "notifications_by_pk": [ - 2429, + 2608, { "id": [ - 4462, + 4641, "uuid!" ] } ], "pending_match_import_players": [ - 2482, + 2661, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130162,19 +134303,19 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2662, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -130184,32 +134325,32 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2661, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "pending_match_imports": [ - 2523, + 2702, { "distinct_on": [ - 2538, + 2717, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130219,19 +134360,19 @@ export default { 38 ], "order_by": [ - 2536, + 2715, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2706 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2703, { "distinct_on": [ - 2538, + 2717, "[pending_match_imports_select_column!]" ], "limit": [ @@ -130241,28 +134382,28 @@ export default { 38 ], "order_by": [ - 2536, + 2715, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2706 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2702, { "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "player_aim_stats_demo": [ - 2551, + 2730, { "distinct_on": [ - 2565, + 2744, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130272,19 +134413,19 @@ export default { 38 ], "order_by": [ - 2563, + 2742, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2734 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2731, { "distinct_on": [ - 2565, + 2744, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -130294,32 +134435,32 @@ export default { 38 ], "order_by": [ - 2563, + 2742, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2734 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2730, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2578, + 2757, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130329,19 +134470,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2758, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -130351,19 +134492,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2757, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -130377,10 +134518,10 @@ export default { } ], "player_assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -130390,19 +134531,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -130412,16 +134553,16 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_by_pk": [ - 2619, + 2798, { "attacked_steam_id": [ 180, @@ -130432,20 +134573,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_career_stats_v": [ - 2664, + 2843, { "distinct_on": [ - 2672, + 2851, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130455,19 +134596,19 @@ export default { 38 ], "order_by": [ - 2671, + 2850, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2847 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2844, { "distinct_on": [ - 2672, + 2851, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -130477,19 +134618,19 @@ export default { 38 ], "order_by": [ - 2671, + 2850, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2847 ] } ], "player_damages": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -130499,19 +134640,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -130521,36 +134662,36 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_by_pk": [ - 2682, + 2861, { "id": [ - 4462, + 4641, "uuid!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_elo": [ - 2723, + 2902, { "distinct_on": [ - 2737, + 2916, "[player_elo_select_column!]" ], "limit": [ @@ -130560,19 +134701,19 @@ export default { 38 ], "order_by": [ - 2735, + 2914, "[player_elo_order_by!]" ], "where": [ - 2727 + 2906 ] } ], "player_elo_aggregate": [ - 2724, + 2903, { "distinct_on": [ - 2737, + 2916, "[player_elo_select_column!]" ], "limit": [ @@ -130582,19 +134723,19 @@ export default { 38 ], "order_by": [ - 2735, + 2914, "[player_elo_order_by!]" ], "where": [ - 2727 + 2906 ] } ], "player_elo_by_pk": [ - 2723, + 2902, { "match_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -130602,16 +134743,16 @@ export default { "bigint!" ], "type": [ - 820, + 840, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2750, + 2929, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130621,19 +134762,19 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 2930, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -130643,28 +134784,28 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 2929, { "id": [ - 4462, + 4641, "uuid!" ] } ], "player_flashes": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -130674,19 +134815,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_flashes_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -130696,16 +134837,16 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_flashes_by_pk": [ - 2791, + 2970, { "attacked_steam_id": [ 180, @@ -130716,20 +134857,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -130739,19 +134880,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -130761,16 +134902,16 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_by_pk": [ - 2836, + 3015, { "attacked_steam_id": [ 180, @@ -130781,20 +134922,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 3027, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130804,19 +134945,19 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 3028, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -130826,16 +134967,16 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 3027, { "player_steam_id": [ 180, @@ -130848,10 +134989,10 @@ export default { } ], "player_leaderboard_rank": [ - 2922, + 3101, { "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130861,19 +135002,19 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 3102, { "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -130883,19 +135024,19 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "player_match_map_stats": [ - 2945, + 3124, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130905,19 +135046,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 3125, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -130927,19 +135068,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 3124, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -130949,10 +135090,10 @@ export default { } ], "player_match_performance_v": [ - 2986, + 3165, { "distinct_on": [ - 2994, + 3173, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130962,19 +135103,19 @@ export default { 38 ], "order_by": [ - 2993, + 3172, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3169 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 3166, { "distinct_on": [ - 2994, + 3173, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -130984,19 +135125,19 @@ export default { 38 ], "order_by": [ - 2993, + 3172, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3169 ] } ], "player_match_stats_v": [ - 3004, + 3183, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131006,19 +135147,19 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3184, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -131028,19 +135169,19 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "player_objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -131050,19 +135191,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -131072,19 +135213,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_by_pk": [ - 3037, + 3216, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -131092,16 +135233,16 @@ export default { "bigint!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_performance_v": [ - 3078, + 3257, { "distinct_on": [ - 3086, + 3265, "[player_performance_v_select_column!]" ], "limit": [ @@ -131111,19 +135252,19 @@ export default { 38 ], "order_by": [ - 3085, + 3264, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3261 ] } ], "player_performance_v_aggregate": [ - 3079, + 3258, { "distinct_on": [ - 3086, + 3265, "[player_performance_v_select_column!]" ], "limit": [ @@ -131133,19 +135274,19 @@ export default { 38 ], "order_by": [ - 3085, + 3264, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3261 ] } ], "player_premier_rank_history": [ - 3096, + 3275, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131155,19 +135296,19 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3276, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -131177,28 +135318,28 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3275, { "id": [ - 4462, + 4641, "uuid!" ] } ], "player_sanctions": [ - 3137, + 3316, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -131208,19 +135349,19 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "player_sanctions_aggregate": [ - 3138, + 3317, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -131230,32 +135371,32 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "player_sanctions_by_pk": [ - 3137, + 3316, { "created_at": [ - 4024, + 4203, "timestamptz!" ], "id": [ - 4462, + 4641, "uuid!" ] } ], "player_season_stats": [ - 3178, + 3357, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -131265,19 +135406,19 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "player_season_stats_aggregate": [ - 3179, + 3358, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -131287,32 +135428,32 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "player_season_stats_by_pk": [ - 3178, + 3357, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4641, "uuid!" ] } ], "player_stats": [ - 3237, + 3416, { "distinct_on": [ - 3252, + 3431, "[player_stats_select_column!]" ], "limit": [ @@ -131322,19 +135463,19 @@ export default { 38 ], "order_by": [ - 3250, + 3429, "[player_stats_order_by!]" ], "where": [ - 3241 + 3420 ] } ], "player_stats_aggregate": [ - 3238, + 3417, { "distinct_on": [ - 3252, + 3431, "[player_stats_select_column!]" ], "limit": [ @@ -131344,16 +135485,16 @@ export default { 38 ], "order_by": [ - 3250, + 3429, "[player_stats_order_by!]" ], "where": [ - 3241 + 3420 ] } ], "player_stats_by_pk": [ - 3237, + 3416, { "player_steam_id": [ 180, @@ -131362,10 +135503,10 @@ export default { } ], "player_steam_bot_friend": [ - 3265, + 3444, { "distinct_on": [ - 3284, + 3463, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131375,19 +135516,19 @@ export default { 38 ], "order_by": [ - 3281, + 3460, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3449 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3445, { "distinct_on": [ - 3284, + 3463, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -131397,16 +135538,16 @@ export default { 38 ], "order_by": [ - 3281, + 3460, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3449 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3444, { "steam_id": [ 180, @@ -131415,10 +135556,10 @@ export default { } ], "player_steam_match_auth": [ - 3297, + 3476, { "distinct_on": [ - 3311, + 3490, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131428,19 +135569,19 @@ export default { 38 ], "order_by": [ - 3309, + 3488, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3480 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3477, { "distinct_on": [ - 3311, + 3490, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -131450,16 +135591,16 @@ export default { 38 ], "order_by": [ - 3309, + 3488, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3480 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3476, { "steam_id": [ 180, @@ -131468,10 +135609,10 @@ export default { } ], "player_unused_utility": [ - 3324, + 3503, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131481,19 +135622,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3504, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -131503,19 +135644,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3503, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -131525,10 +135666,10 @@ export default { } ], "player_utility": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -131538,19 +135679,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utility_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -131560,36 +135701,36 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utility_by_pk": [ - 3365, + 3544, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3406, + 3585, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131599,19 +135740,19 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3586, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -131621,19 +135762,19 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], "players": [ - 3439, + 3618, { "distinct_on": [ - 3454, + 3633, "[players_select_column!]" ], "limit": [ @@ -131643,19 +135784,19 @@ export default { 38 ], "order_by": [ - 3452, + 3631, "[players_order_by!]" ], "where": [ - 3443 + 3622 ] } ], "players_aggregate": [ - 3440, + 3619, { "distinct_on": [ - 3454, + 3633, "[players_select_column!]" ], "limit": [ @@ -131665,16 +135806,16 @@ export default { 38 ], "order_by": [ - 3452, + 3631, "[players_order_by!]" ], "where": [ - 3443 + 3622 ] } ], "players_by_pk": [ - 3439, + 3618, { "steam_id": [ 180, @@ -131683,10 +135824,10 @@ export default { } ], "plugin_versions": [ - 3467, + 3646, { "distinct_on": [ - 3481, + 3660, "[plugin_versions_select_column!]" ], "limit": [ @@ -131696,19 +135837,19 @@ export default { 38 ], "order_by": [ - 3479, + 3658, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3650 ] } ], "plugin_versions_aggregate": [ - 3468, + 3647, { "distinct_on": [ - 3481, + 3660, "[plugin_versions_select_column!]" ], "limit": [ @@ -131718,19 +135859,19 @@ export default { 38 ], "order_by": [ - 3479, + 3658, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3650 ] } ], "plugin_versions_by_pk": [ - 3467, + 3646, { "runtime": [ - 901, + 921, "e_plugin_runtimes_enum!" ], "version": [ @@ -131756,10 +135897,10 @@ export default { } ], "seasons": [ - 3498, + 3677, { "distinct_on": [ - 3513, + 3692, "[seasons_select_column!]" ], "limit": [ @@ -131769,19 +135910,19 @@ export default { 38 ], "order_by": [ - 3511, + 3690, "[seasons_order_by!]" ], "where": [ - 3502 + 3681 ] } ], "seasons_aggregate": [ - 3499, + 3678, { "distinct_on": [ - 3513, + 3692, "[seasons_select_column!]" ], "limit": [ @@ -131791,28 +135932,28 @@ export default { 38 ], "order_by": [ - 3511, + 3690, "[seasons_order_by!]" ], "where": [ - 3502 + 3681 ] } ], "seasons_by_pk": [ - 3498, + 3677, { "id": [ - 4462, + 4641, "uuid!" ] } ], "server_regions": [ - 3526, + 3705, { "distinct_on": [ - 3540, + 3719, "[server_regions_select_column!]" ], "limit": [ @@ -131822,19 +135963,19 @@ export default { 38 ], "order_by": [ - 3538, + 3717, "[server_regions_order_by!]" ], "where": [ - 3530 + 3709 ] } ], "server_regions_aggregate": [ - 3527, + 3706, { "distinct_on": [ - 3540, + 3719, "[server_regions_select_column!]" ], "limit": [ @@ -131844,16 +135985,16 @@ export default { 38 ], "order_by": [ - 3538, + 3717, "[server_regions_order_by!]" ], "where": [ - 3530 + 3709 ] } ], "server_regions_by_pk": [ - 3526, + 3705, { "value": [ 78, @@ -131862,10 +136003,10 @@ export default { } ], "servers": [ - 3553, + 3732, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -131875,19 +136016,19 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], "servers_aggregate": [ - 3554, + 3733, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -131897,28 +136038,28 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], "servers_by_pk": [ - 3553, + 3732, { "id": [ - 4462, + 4641, "uuid!" ] } ], "settings": [ - 3599, + 3778, { "distinct_on": [ - 3611, + 3790, "[settings_select_column!]" ], "limit": [ @@ -131928,19 +136069,19 @@ export default { 38 ], "order_by": [ - 3609, + 3788, "[settings_order_by!]" ], "where": [ - 3602 + 3781 ] } ], "settings_aggregate": [ - 3600, + 3779, { "distinct_on": [ - 3611, + 3790, "[settings_select_column!]" ], "limit": [ @@ -131950,16 +136091,16 @@ export default { 38 ], "order_by": [ - 3609, + 3788, "[settings_order_by!]" ], "where": [ - 3602 + 3781 ] } ], "settings_by_pk": [ - 3599, + 3778, { "name": [ 78, @@ -131971,10 +136112,10 @@ export default { 72 ], "steam_account_claims": [ - 3619, + 3798, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -131984,19 +136125,19 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3799, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -132006,28 +136147,28 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3798, { "id": [ - 4462, + 4641, "uuid!" ] } ], "steam_accounts": [ - 3643, + 3822, { "distinct_on": [ - 3658, + 3837, "[steam_accounts_select_column!]" ], "limit": [ @@ -132037,19 +136178,19 @@ export default { 38 ], "order_by": [ - 3656, + 3835, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3826 ] } ], "steam_accounts_aggregate": [ - 3644, + 3823, { "distinct_on": [ - 3658, + 3837, "[steam_accounts_select_column!]" ], "limit": [ @@ -132059,28 +136200,28 @@ export default { 38 ], "order_by": [ - 3656, + 3835, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3826 ] } ], "steam_accounts_by_pk": [ - 3643, + 3822, { "id": [ - 4462, + 4641, "uuid!" ] } ], "system_alerts": [ - 3671, + 3850, { "distinct_on": [ - 3685, + 3864, "[system_alerts_select_column!]" ], "limit": [ @@ -132090,19 +136231,19 @@ export default { 38 ], "order_by": [ - 3683, + 3862, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3854 ] } ], "system_alerts_aggregate": [ - 3672, + 3851, { "distinct_on": [ - 3685, + 3864, "[system_alerts_select_column!]" ], "limit": [ @@ -132112,19 +136253,19 @@ export default { 38 ], "order_by": [ - 3683, + 3862, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3854 ] } ], "system_alerts_by_pk": [ - 3671, + 3850, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -132133,16 +136274,16 @@ export default { 85, { "team_id": [ - 4462, + 4641, "uuid!" ] } ], "team_invites": [ - 3698, + 3877, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -132152,19 +136293,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_invites_aggregate": [ - 3699, + 3878, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -132174,28 +136315,28 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_invites_by_pk": [ - 3698, + 3877, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_roster": [ - 3739, + 3918, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -132205,19 +136346,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_roster_aggregate": [ - 3740, + 3919, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -132227,32 +136368,32 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_roster_by_pk": [ - 3739, + 3918, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_alerts": [ - 3784, + 3963, { "distinct_on": [ - 3798, + 3977, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132262,19 +136403,19 @@ export default { 38 ], "order_by": [ - 3796, + 3975, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3967 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 3964, { "distinct_on": [ - 3798, + 3977, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -132284,28 +136425,28 @@ export default { 38 ], "order_by": [ - 3796, + 3975, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3967 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 3963, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_availability": [ - 3811, + 3990, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132315,19 +136456,19 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 3991, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -132337,28 +136478,28 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 3990, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_request_proposals": [ - 3839, + 4018, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132368,19 +136509,19 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 4019, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -132390,28 +136531,28 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 4018, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_requests": [ - 3880, + 4059, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132421,19 +136562,19 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 4060, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -132443,28 +136584,28 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 4059, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_settings": [ - 3926, + 4105, { "distinct_on": [ - 3941, + 4120, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132474,19 +136615,19 @@ export default { 38 ], "order_by": [ - 3939, + 4118, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4109 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 4106, { "distinct_on": [ - 3941, + 4120, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -132496,28 +136637,28 @@ export default { 38 ], "order_by": [ - 3939, + 4118, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4109 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 4105, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_suggestions": [ - 3954, + 4133, { "distinct_on": [ - 3968, + 4147, "[team_suggestions_select_column!]" ], "limit": [ @@ -132527,19 +136668,19 @@ export default { 38 ], "order_by": [ - 3966, + 4145, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4137 ] } ], "team_suggestions_aggregate": [ - 3955, + 4134, { "distinct_on": [ - 3968, + 4147, "[team_suggestions_select_column!]" ], "limit": [ @@ -132549,28 +136690,28 @@ export default { 38 ], "order_by": [ - 3966, + 4145, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4137 ] } ], "team_suggestions_by_pk": [ - 3954, + 4133, { "id": [ - 4462, + 4641, "uuid!" ] } ], "teams": [ - 3981, + 4160, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -132580,19 +136721,19 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "teams_aggregate": [ - 3982, + 4161, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -132602,19 +136743,19 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "teams_by_pk": [ - 3981, + 4160, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -132623,10 +136764,10 @@ export default { 86 ], "tournament_brackets": [ - 4026, + 4205, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132636,19 +136777,19 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4206, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -132658,28 +136799,28 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4205, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_organizers": [ - 4072, + 4251, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132689,19 +136830,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4252, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -132711,32 +136852,32 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4251, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_stage_windows": [ - 4113, + 4292, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132746,19 +136887,19 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4293, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -132768,28 +136909,28 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4292, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_stages": [ - 4154, + 4333, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -132799,19 +136940,19 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "tournament_stages_aggregate": [ - 4155, + 4334, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -132821,28 +136962,28 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "tournament_stages_by_pk": [ - 4154, + 4333, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_team_invites": [ - 4205, + 4384, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132852,19 +136993,19 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4385, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -132874,28 +137015,28 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4384, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_team_roster": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132905,19 +137046,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -132927,32 +137068,32 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4425, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_teams": [ - 4287, + 4466, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -132962,19 +137103,19 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "tournament_teams_aggregate": [ - 4288, + 4467, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -132984,28 +137125,28 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "tournament_teams_by_pk": [ - 4287, + 4466, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_trophies": [ - 4329, + 4508, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133015,19 +137156,19 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4509, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -133037,28 +137178,28 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4508, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_trophy_configs": [ - 4374, + 4553, { "distinct_on": [ - 4396, + 4575, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133068,19 +137209,19 @@ export default { 38 ], "order_by": [ - 4394, + 4573, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4562 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4554, { "distinct_on": [ - 4396, + 4575, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -133090,28 +137231,28 @@ export default { 38 ], "order_by": [ - 4394, + 4573, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4562 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4553, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournaments": [ - 4416, + 4595, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -133121,19 +137262,19 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_aggregate": [ - 4417, + 4596, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -133143,28 +137284,72 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_by_pk": [ - 4416, + 4595, { "id": [ - 4462, + 4641, "uuid!" ] } ], + "v_event_player_stats": [ + 4644, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], + "v_event_player_stats_aggregate": [ + 4645, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], "v_gpu_pool_status": [ - 4465, + 4695, { "distinct_on": [ - 4473, + 4703, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133174,19 +137359,19 @@ export default { 38 ], "order_by": [ - 4472, + 4702, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4699 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4696, { "distinct_on": [ - 4473, + 4703, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -133196,19 +137381,19 @@ export default { 38 ], "order_by": [ - 4472, + 4702, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4699 ] } ], "v_league_division_standings": [ - 4483, + 4713, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133218,19 +137403,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4714, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -133240,19 +137425,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "v_league_season_player_stats": [ - 4516, + 4746, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133262,19 +137447,19 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4747, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -133284,19 +137469,19 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], "v_match_captains": [ - 4567, + 4797, { "distinct_on": [ - 4579, + 4809, "[v_match_captains_select_column!]" ], "limit": [ @@ -133306,19 +137491,19 @@ export default { 38 ], "order_by": [ - 4578, + 4808, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4801 ] } ], "v_match_captains_aggregate": [ - 4568, + 4798, { "distinct_on": [ - 4579, + 4809, "[v_match_captains_select_column!]" ], "limit": [ @@ -133328,19 +137513,19 @@ export default { 38 ], "order_by": [ - 4578, + 4808, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4801 ] } ], "v_match_clutches": [ - 4591, + 4821, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133350,19 +137535,19 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4822, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -133372,19 +137557,19 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], "v_match_kill_pairs": [ - 4624, + 4854, { "distinct_on": [ - 4632, + 4862, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133394,19 +137579,19 @@ export default { 38 ], "order_by": [ - 4631, + 4861, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4858 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4855, { "distinct_on": [ - 4632, + 4862, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -133416,19 +137601,19 @@ export default { 38 ], "order_by": [ - 4631, + 4861, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4858 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4872, { "distinct_on": [ - 4650, + 4880, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133438,19 +137623,19 @@ export default { 38 ], "order_by": [ - 4649, + 4879, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4876 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4873, { "distinct_on": [ - 4650, + 4880, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -133460,19 +137645,19 @@ export default { 38 ], "order_by": [ - 4649, + 4879, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4876 ] } ], "v_match_lineup_map_stats": [ - 4660, + 4890, { "distinct_on": [ - 4668, + 4898, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133482,19 +137667,19 @@ export default { 38 ], "order_by": [ - 4667, + 4897, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4894 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 4891, { "distinct_on": [ - 4668, + 4898, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -133504,19 +137689,19 @@ export default { 38 ], "order_by": [ - 4667, + 4897, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4894 ] } ], "v_match_map_backup_rounds": [ - 4678, + 4908, { "distinct_on": [ - 4689, + 4919, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133526,19 +137711,19 @@ export default { 38 ], "order_by": [ - 4688, + 4918, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4912 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 4909, { "distinct_on": [ - 4689, + 4919, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -133548,19 +137733,19 @@ export default { 38 ], "order_by": [ - 4688, + 4918, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4912 ] } ], "v_match_player_buy_types": [ - 4701, + 4931, { "distinct_on": [ - 4709, + 4939, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133570,19 +137755,19 @@ export default { 38 ], "order_by": [ - 4708, + 4938, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4935 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 4932, { "distinct_on": [ - 4709, + 4939, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -133592,19 +137777,19 @@ export default { 38 ], "order_by": [ - 4708, + 4938, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4935 ] } ], "v_match_player_opening_duels": [ - 4719, + 4949, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133614,19 +137799,19 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 4950, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -133636,19 +137821,19 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "v_player_arch_nemesis": [ - 4752, + 4982, { "distinct_on": [ - 4760, + 4990, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133658,19 +137843,19 @@ export default { 38 ], "order_by": [ - 4759, + 4989, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4986 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 4983, { "distinct_on": [ - 4760, + 4990, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -133680,19 +137865,19 @@ export default { 38 ], "order_by": [ - 4759, + 4989, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4986 ] } ], "v_player_damage": [ - 4770, + 5000, { "distinct_on": [ - 4778, + 5008, "[v_player_damage_select_column!]" ], "limit": [ @@ -133702,19 +137887,19 @@ export default { 38 ], "order_by": [ - 4777, + 5007, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5004 ] } ], "v_player_damage_aggregate": [ - 4771, + 5001, { "distinct_on": [ - 4778, + 5008, "[v_player_damage_select_column!]" ], "limit": [ @@ -133724,19 +137909,19 @@ export default { 38 ], "order_by": [ - 4777, + 5007, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5004 ] } ], "v_player_elo": [ - 4788, + 5018, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -133746,19 +137931,19 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "v_player_elo_aggregate": [ - 4789, + 5019, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -133768,19 +137953,19 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "v_player_map_losses": [ - 4839, + 5069, { "distinct_on": [ - 4847, + 5077, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133790,19 +137975,19 @@ export default { 38 ], "order_by": [ - 4846, + 5076, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5073 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 5070, { "distinct_on": [ - 4847, + 5077, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -133812,19 +137997,19 @@ export default { 38 ], "order_by": [ - 4846, + 5076, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5073 ] } ], "v_player_map_wins": [ - 4857, + 5087, { "distinct_on": [ - 4865, + 5095, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133834,19 +138019,19 @@ export default { 38 ], "order_by": [ - 4864, + 5094, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5091 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 5088, { "distinct_on": [ - 4865, + 5095, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -133856,19 +138041,19 @@ export default { 38 ], "order_by": [ - 4864, + 5094, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5091 ] } ], "v_player_match_head_to_head": [ - 4875, + 5105, { "distinct_on": [ - 4883, + 5113, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133878,19 +138063,19 @@ export default { 38 ], "order_by": [ - 4882, + 5112, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5109 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 5106, { "distinct_on": [ - 4883, + 5113, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -133900,19 +138085,19 @@ export default { 38 ], "order_by": [ - 4882, + 5112, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5109 ] } ], "v_player_match_map_hltv": [ - 4893, + 5123, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133922,19 +138107,19 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 5124, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -133944,19 +138129,19 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "v_player_match_map_roles": [ - 4930, + 5160, { "distinct_on": [ - 4938, + 5168, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133966,19 +138151,19 @@ export default { 38 ], "order_by": [ - 4937, + 5167, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5164 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 5161, { "distinct_on": [ - 4938, + 5168, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -133988,19 +138173,19 @@ export default { 38 ], "order_by": [ - 4937, + 5167, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5164 ] } ], "v_player_match_performance": [ - 4948, + 5178, { "distinct_on": [ - 4956, + 5186, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134010,19 +138195,19 @@ export default { 38 ], "order_by": [ - 4955, + 5185, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5182 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 5179, { "distinct_on": [ - 4956, + 5186, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -134032,19 +138217,19 @@ export default { 38 ], "order_by": [ - 4955, + 5185, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5182 ] } ], "v_player_match_rating": [ - 4966, + 5196, { "distinct_on": [ - 4974, + 5204, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134054,19 +138239,19 @@ export default { 38 ], "order_by": [ - 4973, + 5203, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5200 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 5197, { "distinct_on": [ - 4974, + 5204, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -134076,19 +138261,19 @@ export default { 38 ], "order_by": [ - 4973, + 5203, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5200 ] } ], "v_player_multi_kills": [ - 4984, + 5214, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134098,19 +138283,19 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 5215, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -134120,19 +138305,19 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], "v_player_weapon_damage": [ - 5017, + 5247, { "distinct_on": [ - 5025, + 5255, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134142,19 +138327,19 @@ export default { 38 ], "order_by": [ - 5024, + 5254, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5251 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5248, { "distinct_on": [ - 5025, + 5255, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -134164,19 +138349,19 @@ export default { 38 ], "order_by": [ - 5024, + 5254, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5251 ] } ], "v_player_weapon_kills": [ - 5035, + 5265, { "distinct_on": [ - 5043, + 5273, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134186,19 +138371,19 @@ export default { 38 ], "order_by": [ - 5042, + 5272, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5269 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5266, { "distinct_on": [ - 5043, + 5273, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -134208,19 +138393,19 @@ export default { 38 ], "order_by": [ - 5042, + 5272, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5269 ] } ], "v_pool_maps": [ - 5053, + 5283, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134230,19 +138415,19 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5284, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -134252,19 +138437,19 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], "v_steam_account_pool_status": [ - 5077, + 5307, { "distinct_on": [ - 5085, + 5315, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134274,19 +138459,19 @@ export default { 38 ], "order_by": [ - 5084, + 5314, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5311 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5308, { "distinct_on": [ - 5085, + 5315, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -134296,19 +138481,19 @@ export default { 38 ], "order_by": [ - 5084, + 5314, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5311 ] } ], "v_team_ranks": [ - 5095, + 5325, { "distinct_on": [ - 5105, + 5335, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134318,19 +138503,19 @@ export default { 38 ], "order_by": [ - 5104, + 5334, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5329 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5326, { "distinct_on": [ - 5105, + 5335, "[v_team_ranks_select_column!]" ], "limit": [ @@ -134340,19 +138525,19 @@ export default { 38 ], "order_by": [ - 5104, + 5334, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5329 ] } ], "v_team_reputation": [ - 5115, + 5345, { "distinct_on": [ - 5125, + 5355, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134362,19 +138547,19 @@ export default { 38 ], "order_by": [ - 5124, + 5354, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5349 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5346, { "distinct_on": [ - 5125, + 5355, "[v_team_reputation_select_column!]" ], "limit": [ @@ -134384,19 +138569,19 @@ export default { 38 ], "order_by": [ - 5124, + 5354, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5349 ] } ], "v_team_stage_results": [ - 5135, + 5365, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134406,19 +138591,19 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5366, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -134428,32 +138613,32 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5365, { "tournament_stage_id": [ - 4462, + 4641, "uuid!" ], "tournament_team_id": [ - 4462, + 4641, "uuid!" ] } ], "v_team_tournament_results": [ - 5195, + 5425, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134463,19 +138648,19 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5426, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -134485,19 +138670,19 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "v_tournament_player_stats": [ - 5246, + 5476, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134507,19 +138692,19 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5477, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -134529,11 +138714,11 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], @@ -134546,7 +138731,7 @@ export default { 55, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -134555,17 +138740,17 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4024 + 4203 ], "winning_lineup_id": [ - 4462 + 4641 ] } ], @@ -134573,7 +138758,7 @@ export default { 81, { "invite_id": [ - 4462, + 4641, "uuid!" ], "type": [ @@ -134586,7 +138771,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4641, "uuid!" ], "steamId": [ @@ -134625,14 +138810,14 @@ export default { } ], "approve_league_season_movements": [ - 1588, + 1767, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -134642,11 +138827,11 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], @@ -134672,7 +138857,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4641, "uuid!" ] } @@ -134693,7 +138878,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4641, "uuid!" ] } @@ -134702,7 +138887,7 @@ export default { 81, { "job_id": [ - 4462, + 4641, "uuid!" ] } @@ -134711,7 +138896,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -134720,7 +138905,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -134738,7 +138923,7 @@ export default { 81, { "request_id": [ - 4462, + 4641, "uuid!" ] } @@ -134747,7 +138932,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -134756,7 +138941,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -134774,14 +138959,14 @@ export default { } ], "clone_league_season": [ - 1555, + 1734, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -134791,11 +138976,11 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], @@ -134803,11 +138988,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4024, + 4203, "timestamptz!" ], "request_id": [ - 4462, + 4641, "uuid!" ] } @@ -134828,7 +139013,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "preset": [ @@ -134863,7 +139048,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -134872,7 +139057,7 @@ export default { 14, { "settings": [ - 1352, + 1531, "jsonb!" ] } @@ -134889,7 +139074,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1352, + 1531, "jsonb!" ], "scheduled_at": [ @@ -134918,7 +139103,7 @@ export default { 81, { "clip_id": [ - 4462, + 4641, "uuid!" ] } @@ -134936,7 +139121,7 @@ export default { 81, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -134970,7 +139155,7 @@ export default { 81, { "tournament_id": [ - 4462, + 4641, "uuid!" ] } @@ -134988,11 +139173,11 @@ export default { 92, { "map_id": [ - 4462, + 4641, "uuid!" ], "map_pool_id": [ - 4462, + 4641, "uuid!" ] } @@ -135010,7 +139195,7 @@ export default { 111, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135028,7 +139213,7 @@ export default { 152, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135046,7 +139231,7 @@ export default { 185, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135064,7 +139249,7 @@ export default { 237, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135082,7 +139267,7 @@ export default { 264, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135100,7 +139285,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -135122,7 +139307,7 @@ export default { 354, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -135235,17 +139420,35 @@ export default { ] } ], - "delete_e_friend_status": [ + "delete_e_event_status": [ 535, { "where": [ 528, + "e_event_status_bool_exp!" + ] + } + ], + "delete_e_event_status_by_pk": [ + 525, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_friend_status": [ + 555, + { + "where": [ + 548, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 525, + 545, { "value": [ 78, @@ -135254,16 +139457,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 556, + 576, { "where": [ - 549, + 569, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 546, + 566, { "value": [ 78, @@ -135272,16 +139475,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 576, + 596, { "where": [ - 569, + 589, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 566, + 586, { "value": [ 78, @@ -135290,16 +139493,16 @@ export default { } ], "delete_e_league_movement_types": [ - 597, + 617, { "where": [ - 590, + 610, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 587, + 607, { "value": [ 78, @@ -135308,16 +139511,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 618, + 638, { "where": [ - 611, + 631, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 608, + 628, { "value": [ 78, @@ -135326,16 +139529,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 639, + 659, { "where": [ - 632, + 652, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 629, + 649, { "value": [ 78, @@ -135344,16 +139547,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 660, + 680, { "where": [ - 653, + 673, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 650, + 670, { "value": [ 78, @@ -135362,16 +139565,16 @@ export default { } ], "delete_e_lobby_access": [ - 681, + 701, { "where": [ - 674, + 694, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 671, + 691, { "value": [ 78, @@ -135380,16 +139583,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 702, + 722, { "where": [ - 695, + 715, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 692, + 712, { "value": [ 78, @@ -135398,16 +139601,16 @@ export default { } ], "delete_e_map_pool_types": [ - 722, + 742, { "where": [ - 715, + 735, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 712, + 732, { "value": [ 78, @@ -135416,16 +139619,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 743, + 763, { "where": [ - 736, + 756, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 733, + 753, { "value": [ 78, @@ -135434,16 +139637,16 @@ export default { } ], "delete_e_match_map_status": [ - 763, + 783, { "where": [ - 756, + 776, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 753, + 773, { "value": [ 78, @@ -135452,16 +139655,16 @@ export default { } ], "delete_e_match_mode": [ - 784, + 804, { "where": [ - 777, + 797, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 774, + 794, { "value": [ 78, @@ -135470,16 +139673,16 @@ export default { } ], "delete_e_match_status": [ - 804, + 824, { "where": [ - 797, + 817, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 794, + 814, { "value": [ 78, @@ -135488,16 +139691,16 @@ export default { } ], "delete_e_match_types": [ - 825, + 845, { "where": [ - 818, + 838, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 815, + 835, { "value": [ 78, @@ -135506,16 +139709,16 @@ export default { } ], "delete_e_notification_types": [ - 846, + 866, { "where": [ - 839, + 859, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 836, + 856, { "value": [ 78, @@ -135524,16 +139727,16 @@ export default { } ], "delete_e_objective_types": [ - 866, + 886, { "where": [ - 859, + 879, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -135542,16 +139745,16 @@ export default { } ], "delete_e_player_roles": [ - 886, + 906, { "where": [ - 879, + 899, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 876, + 896, { "value": [ 78, @@ -135560,16 +139763,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 906, + 926, { "where": [ - 899, + 919, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 896, + 916, { "value": [ 78, @@ -135578,16 +139781,16 @@ export default { } ], "delete_e_ready_settings": [ - 926, + 946, { "where": [ - 919, + 939, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 916, + 936, { "value": [ 78, @@ -135596,16 +139799,16 @@ export default { } ], "delete_e_sanction_types": [ - 946, + 966, { "where": [ - 939, + 959, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 936, + 956, { "value": [ 78, @@ -135614,16 +139817,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 967, + 987, { "where": [ - 960, + 980, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 957, + 977, { "value": [ 78, @@ -135632,16 +139835,16 @@ export default { } ], "delete_e_server_types": [ - 987, + 1007, { "where": [ - 980, + 1000, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 977, + 997, { "value": [ 78, @@ -135650,16 +139853,16 @@ export default { } ], "delete_e_sides": [ - 1007, + 1027, { "where": [ - 1000, + 1020, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -135668,16 +139871,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1027, + 1047, { "where": [ - 1020, + 1040, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -135686,16 +139889,16 @@ export default { } ], "delete_e_team_roles": [ - 1047, + 1067, { "where": [ - 1040, + 1060, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -135704,16 +139907,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1068, + 1088, { "where": [ - 1061, + 1081, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -135722,16 +139925,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1088, + 1108, { "where": [ - 1081, + 1101, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -135740,16 +139943,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1108, + 1128, { "where": [ - 1101, + 1121, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -135758,16 +139961,16 @@ export default { } ], "delete_e_tournament_status": [ - 1129, + 1149, { "where": [ - 1122, + 1142, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1119, + 1139, { "value": [ 78, @@ -135776,16 +139979,16 @@ export default { } ], "delete_e_utility_types": [ - 1150, + 1170, { "where": [ - 1143, + 1163, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -135794,16 +139997,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1170, + 1190, { "where": [ - 1163, + 1183, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -135812,16 +140015,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1190, + 1210, { "where": [ - 1183, + 1203, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -135829,17 +140032,123 @@ export default { ] } ], + "delete_event_organizers": [ + 1237, + { + "where": [ + 1229, + "event_organizers_bool_exp!" + ] + } + ], + "delete_event_organizers_by_pk": [ + 1220, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "delete_event_players": [ + 1278, + { + "where": [ + 1270, + "event_players_bool_exp!" + ] + } + ], + "delete_event_players_by_pk": [ + 1261, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "delete_event_teams": [ + 1316, + { + "where": [ + 1309, + "event_teams_bool_exp!" + ] + } + ], + "delete_event_teams_by_pk": [ + 1302, + { + "event_id": [ + 4641, + "uuid!" + ], + "team_id": [ + 4641, + "uuid!" + ] + } + ], + "delete_event_tournaments": [ + 1340, + { + "where": [ + 1333, + "event_tournaments_bool_exp!" + ] + } + ], + "delete_event_tournaments_by_pk": [ + 1326, + { + "event_id": [ + 4641, + "uuid!" + ], + "tournament_id": [ + 4641, + "uuid!" + ] + } + ], + "delete_events": [ + 1360, + { + "where": [ + 1354, + "events_bool_exp!" + ] + } + ], + "delete_events_by_pk": [ + 1350, + { + "id": [ + 4641, + "uuid!" + ] + } + ], "delete_friends": [ - 1212, + 1390, { "where": [ - 1206, + 1384, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1202, + 1380, { "other_player_steam_id": [ 180, @@ -135852,16 +140161,16 @@ export default { } ], "delete_game_server_nodes": [ - 1252, + 1430, { "where": [ - 1241, + 1419, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1229, + 1407, { "id": [ 78, @@ -135870,16 +140179,16 @@ export default { } ], "delete_game_versions": [ - 1294, + 1472, { "where": [ - 1285, + 1463, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1280, + 1458, { "build_id": [ 38, @@ -135888,172 +140197,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1327, + 1505, { "where": [ - 1318, + 1496, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1313, + 1491, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1364, + 1543, { "where": [ - 1359, + 1538, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1389, + 1568, { "where": [ - 1383, + 1562, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1379, + 1558, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_match_weeks": [ - 1424, + 1603, { "where": [ - 1416, + 1595, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1407, + 1586, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1465, + 1644, { "where": [ - 1457, + 1636, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1448, + 1627, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1506, + 1685, { "where": [ - 1498, + 1677, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1489, + 1668, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_season_divisions": [ - 1544, + 1723, { "where": [ - 1537, + 1716, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1530, + 1709, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_seasons": [ - 1569, + 1748, { "where": [ - 1560, + 1739, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1555, + 1734, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_team_movements": [ - 1605, + 1784, { "where": [ - 1597, + 1776, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1588, + 1767, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_team_rosters": [ - 1646, + 1825, { "where": [ - 1638, + 1817, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1629, + 1808, { "league_team_season_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -136063,73 +140372,73 @@ export default { } ], "delete_league_team_seasons": [ - 1687, + 1866, { "where": [ - 1679, + 1858, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1670, + 1849, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_league_teams": [ - 1720, + 1899, { "where": [ - 1715, + 1894, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 1712, + 1891, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_lobbies": [ - 1739, + 1918, { "where": [ - 1734, + 1913, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1731, + 1910, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_lobby_players": [ - 1769, + 1948, { "where": [ - 1761, + 1940, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1750, + 1929, { "lobby_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -136139,286 +140448,286 @@ export default { } ], "delete_map_pools": [ - 1803, + 1982, { "where": [ - 1798, + 1977, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1795, + 1974, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_maps": [ - 1830, + 2009, { "where": [ - 1823, + 2002, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1814, + 1993, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_clips": [ - 1860, + 2039, { "where": [ - 1852, + 2031, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1843, + 2022, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1906, + 2085, { "where": [ - 1895, + 2074, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1885, + 2064, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_lineup_players": [ - 1950, + 2129, { "where": [ - 1942, + 2121, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1931, + 2110, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_lineups": [ - 1993, + 2172, { "where": [ - 1985, + 2164, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1976, + 2155, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_map_demos": [ - 2041, + 2220, { "where": [ - 2030, + 2209, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2018, + 2197, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_map_rounds": [ - 2086, + 2265, { "where": [ - 2078, + 2257, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2069, + 2248, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2124, + 2303, { "where": [ - 2117, + 2296, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2110, + 2289, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_maps": [ - 2151, + 2330, { "where": [ - 2143, + 2322, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2134, + 2313, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_options": [ - 2186, + 2365, { "where": [ - 2180, + 2359, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2176, + 2355, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2218, + 2397, { "where": [ - 2211, + 2390, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2204, + 2383, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_streams": [ - 2251, + 2430, { "where": [ - 2240, + 2419, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2228, + 2407, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2286, + 2465, { "where": [ - 2281, + 2460, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2278, + 2457, { "type": [ - 551, + 571, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2313, + 2492, { "where": [ - 2305, + 2484, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2296, + 2475, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2346, + 2525, { "where": [ - 2341, + 2520, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2338, + 2517, { "name": [ 78, @@ -136427,126 +140736,126 @@ export default { } ], "delete_my_friends": [ - 2378, + 2557, { "where": [ - 2368, + 2547, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2412, + 2591, { "where": [ - 2406, + 2585, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2402, + 2581, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_notifications": [ - 2452, + 2631, { "where": [ - 2441, + 2620, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2429, + 2608, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2499, + 2678, { "where": [ - 2491, + 2670, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2482, + 2661, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "delete_pending_match_imports": [ - 2533, + 2712, { "where": [ - 2527, + 2706, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2523, + 2702, { "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2561, + 2740, { "where": [ - 2555, + 2734, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2551, + 2730, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2595, + 2774, { "where": [ - 2587, + 2766, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2578, + 2757, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -136560,16 +140869,16 @@ export default { } ], "delete_player_assists": [ - 2638, + 2817, { "where": [ - 2630, + 2809, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2619, + 2798, { "attacked_steam_id": [ 180, @@ -136580,55 +140889,55 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_player_damages": [ - 2699, + 2878, { "where": [ - 2691, + 2870, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2682, + 2861, { "id": [ - 4462, + 4641, "uuid!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_player_elo": [ - 2733, + 2912, { "where": [ - 2727, + 2906, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2723, + 2902, { "match_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -136636,40 +140945,40 @@ export default { "bigint!" ], "type": [ - 820, + 840, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2767, + 2946, { "where": [ - 2759, + 2938, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2750, + 2929, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_player_flashes": [ - 2810, + 2989, { "where": [ - 2802, + 2981, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2791, + 2970, { "attacked_steam_id": [ 180, @@ -136680,26 +140989,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_player_kills": [ - 2896, + 3075, { "where": [ - 2847, + 3026, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2836, + 3015, { "attacked_steam_id": [ 180, @@ -136710,26 +141019,26 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2865, + 3044, { "where": [ - 2857, + 3036, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2848, + 3027, { "player_steam_id": [ 180, @@ -136742,28 +141051,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 2931, + 3110, { "where": [ - 2926, + 3105, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2962, + 3141, { "where": [ - 2954, + 3133, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2945, + 3124, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -136773,19 +141082,19 @@ export default { } ], "delete_player_objectives": [ - 3054, + 3233, { "where": [ - 3046, + 3225, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3037, + 3216, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -136793,84 +141102,84 @@ export default { "bigint!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3113, + 3292, { "where": [ - 3105, + 3284, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3096, + 3275, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_player_sanctions": [ - 3154, + 3333, { "where": [ - 3146, + 3325, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3137, + 3316, { "created_at": [ - 4024, + 4203, "timestamptz!" ], "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_player_season_stats": [ - 3205, + 3384, { "where": [ - 3197, + 3376, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3178, + 3357, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4641, "uuid!" ] } ], "delete_player_stats": [ - 3247, + 3426, { "where": [ - 3241, + 3420, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3237, + 3416, { "player_steam_id": [ 180, @@ -136879,16 +141188,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3279, + 3458, { "where": [ - 3270, + 3449, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3265, + 3444, { "steam_id": [ 180, @@ -136897,16 +141206,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3307, + 3486, { "where": [ - 3301, + 3480, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3297, + 3476, { "steam_id": [ 180, @@ -136915,19 +141224,19 @@ export default { } ], "delete_player_unused_utility": [ - 3341, + 3520, { "where": [ - 3333, + 3512, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3324, + 3503, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -136937,42 +141246,42 @@ export default { } ], "delete_player_utility": [ - 3382, + 3561, { "where": [ - 3374, + 3553, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3365, + 3544, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "delete_players": [ - 3449, + 3628, { "where": [ - 3443, + 3622, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3439, + 3618, { "steam_id": [ 180, @@ -136981,19 +141290,19 @@ export default { } ], "delete_plugin_versions": [ - 3477, + 3656, { "where": [ - 3471, + 3650, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3467, + 3646, { "runtime": [ - 901, + 921, "e_plugin_runtimes_enum!" ], "version": [ @@ -137003,34 +141312,34 @@ export default { } ], "delete_seasons": [ - 3508, + 3687, { "where": [ - 3502, + 3681, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3498, + 3677, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_server_regions": [ - 3535, + 3714, { "where": [ - 3530, + 3709, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3526, + 3705, { "value": [ 78, @@ -137039,34 +141348,34 @@ export default { } ], "delete_servers": [ - 3572, + 3751, { "where": [ - 3564, + 3743, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3553, + 3732, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_settings": [ - 3607, + 3786, { "where": [ - 3602, + 3781, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3599, + 3778, { "name": [ 78, @@ -137075,467 +141384,467 @@ export default { } ], "delete_steam_account_claims": [ - 3633, + 3812, { "where": [ - 3626, + 3805, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3619, + 3798, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_steam_accounts": [ - 3653, + 3832, { "where": [ - 3647, + 3826, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3643, + 3822, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_system_alerts": [ - 3681, + 3860, { "where": [ - 3675, + 3854, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3671, + 3850, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_invites": [ - 3715, + 3894, { "where": [ - 3707, + 3886, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3698, + 3877, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_roster": [ - 3758, + 3937, { "where": [ - 3750, + 3929, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3739, + 3918, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3794, + 3973, { "where": [ - 3788, + 3967, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3784, + 3963, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_scrim_availability": [ - 3827, + 4006, { "where": [ - 3820, + 3999, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3811, + 3990, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 3856, + 4035, { "where": [ - 3848, + 4027, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 3839, + 4018, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_scrim_requests": [ - 3899, + 4078, { "where": [ - 3891, + 4070, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 3880, + 4059, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_scrim_settings": [ - 3936, + 4115, { "where": [ - 3930, + 4109, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 3926, + 4105, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_team_suggestions": [ - 3964, + 4143, { "where": [ - 3958, + 4137, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 3954, + 4133, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_teams": [ - 3998, + 4177, { "where": [ - 3990, + 4169, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 3981, + 4160, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_brackets": [ - 4045, + 4224, { "where": [ - 4037, + 4216, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4026, + 4205, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_organizers": [ - 4089, + 4268, { "where": [ - 4081, + 4260, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4072, + 4251, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4130, + 4309, { "where": [ - 4122, + 4301, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4113, + 4292, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_stages": [ - 4177, + 4356, { "where": [ - 4166, + 4345, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4154, + 4333, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4222, + 4401, { "where": [ - 4214, + 4393, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4205, + 4384, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4263, + 4442, { "where": [ - 4255, + 4434, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4246, + 4425, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_teams": [ - 4304, + 4483, { "where": [ - 4296, + 4475, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4287, + 4466, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_trophies": [ - 4348, + 4527, { "where": [ - 4340, + 4519, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4329, + 4508, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4391, + 4570, { "where": [ - 4383, + 4562, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4374, + 4553, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_tournaments": [ - 4435, + 4614, { "where": [ - 4427, + 4606, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4416, + 4595, { "id": [ - 4462, + 4641, "uuid!" ] } ], "delete_v_match_captains": [ - 4576, + 4806, { "where": [ - 4571, + 4801, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4687, + 4917, { "where": [ - 4682, + 4912, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 4909, + 5139, { "where": [ - 4902, + 5132, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5068, + 5298, { "where": [ - 5062, + 5292, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5162, + 5392, { "where": [ - 5154, + 5384, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5135, + 5365, { "tournament_stage_id": [ - 4462, + 4641, "uuid!" ], "tournament_team_id": [ - 4462, + 4641, "uuid!" ] } @@ -137544,7 +141853,7 @@ export default { 81, { "invite_id": [ - 4462, + 4641, "uuid!" ], "type": [ @@ -137557,11 +141866,11 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "winning_lineup_id": [ - 4462, + 4641, "uuid!" ] } @@ -137570,7 +141879,7 @@ export default { 43, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -137914,2937 +142223,3081 @@ export default { ] } ], - "insert_e_friend_status": [ + "insert_e_event_status": [ 535, { "objects": [ 532, - "[e_friend_status_insert_input!]!" + "[e_event_status_insert_input!]!" ], "on_conflict": [ - 537 + 536 ] } ], - "insert_e_friend_status_one": [ + "insert_e_event_status_one": [ 525, { "object": [ 532, + "e_event_status_insert_input!" + ], + "on_conflict": [ + 536 + ] + } + ], + "insert_e_friend_status": [ + 555, + { + "objects": [ + 552, + "[e_friend_status_insert_input!]!" + ], + "on_conflict": [ + 557 + ] + } + ], + "insert_e_friend_status_one": [ + 545, + { + "object": [ + 552, "e_friend_status_insert_input!" ], "on_conflict": [ - 537 + 557 ] } ], "insert_e_game_cfg_types": [ - 556, + 576, { "objects": [ - 553, + 573, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 557 + 577 ] } ], "insert_e_game_cfg_types_one": [ - 546, + 566, { "object": [ - 553, + 573, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 557 + 577 ] } ], "insert_e_game_server_node_statuses": [ - 576, + 596, { "objects": [ - 573, + 593, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 578 + 598 ] } ], "insert_e_game_server_node_statuses_one": [ - 566, + 586, { "object": [ - 573, + 593, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 578 + 598 ] } ], "insert_e_league_movement_types": [ - 597, + 617, { "objects": [ - 594, + 614, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 599 + 619 ] } ], "insert_e_league_movement_types_one": [ - 587, + 607, { "object": [ - 594, + 614, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 599 + 619 ] } ], "insert_e_league_proposal_statuses": [ - 618, + 638, { "objects": [ - 615, + 635, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 620 + 640 ] } ], "insert_e_league_proposal_statuses_one": [ - 608, + 628, { "object": [ - 615, + 635, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 620 + 640 ] } ], "insert_e_league_registration_statuses": [ - 639, + 659, { "objects": [ - 636, + 656, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 641 + 661 ] } ], "insert_e_league_registration_statuses_one": [ - 629, + 649, { "object": [ - 636, + 656, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 641 + 661 ] } ], "insert_e_league_season_statuses": [ - 660, + 680, { "objects": [ - 657, + 677, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 662 + 682 ] } ], "insert_e_league_season_statuses_one": [ - 650, + 670, { "object": [ - 657, + 677, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 662 + 682 ] } ], "insert_e_lobby_access": [ - 681, + 701, { "objects": [ - 678, + 698, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 683 + 703 ] } ], "insert_e_lobby_access_one": [ - 671, + 691, { "object": [ - 678, + 698, "e_lobby_access_insert_input!" ], "on_conflict": [ - 683 + 703 ] } ], "insert_e_lobby_player_status": [ - 702, + 722, { "objects": [ - 699, + 719, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 703 + 723 ] } ], "insert_e_lobby_player_status_one": [ - 692, + 712, { "object": [ - 699, + 719, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 703 + 723 ] } ], "insert_e_map_pool_types": [ - 722, + 742, { "objects": [ - 719, + 739, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 724 + 744 ] } ], "insert_e_map_pool_types_one": [ - 712, + 732, { "object": [ - 719, + 739, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 724 + 744 ] } ], "insert_e_match_clip_visibility": [ - 743, + 763, { "objects": [ - 740, + 760, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 744 + 764 ] } ], "insert_e_match_clip_visibility_one": [ - 733, + 753, { "object": [ - 740, + 760, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 744 + 764 ] } ], "insert_e_match_map_status": [ - 763, + 783, { "objects": [ - 760, + 780, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 765 + 785 ] } ], "insert_e_match_map_status_one": [ - 753, + 773, { "object": [ - 760, + 780, "e_match_map_status_insert_input!" ], "on_conflict": [ - 765 + 785 ] } ], "insert_e_match_mode": [ - 784, + 804, { "objects": [ - 781, + 801, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 785 + 805 ] } ], "insert_e_match_mode_one": [ - 774, + 794, { "object": [ - 781, + 801, "e_match_mode_insert_input!" ], "on_conflict": [ - 785 + 805 ] } ], "insert_e_match_status": [ - 804, + 824, { "objects": [ - 801, + 821, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 806 + 826 ] } ], "insert_e_match_status_one": [ - 794, + 814, { "object": [ - 801, + 821, "e_match_status_insert_input!" ], "on_conflict": [ - 806 + 826 ] } ], "insert_e_match_types": [ - 825, + 845, { "objects": [ - 822, + 842, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 827 + 847 ] } ], "insert_e_match_types_one": [ - 815, + 835, { "object": [ - 822, + 842, "e_match_types_insert_input!" ], "on_conflict": [ - 827 + 847 ] } ], "insert_e_notification_types": [ - 846, + 866, { "objects": [ - 843, + 863, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 847 + 867 ] } ], "insert_e_notification_types_one": [ - 836, + 856, { "object": [ - 843, + 863, "e_notification_types_insert_input!" ], "on_conflict": [ - 847 + 867 ] } ], "insert_e_objective_types": [ - 866, + 886, { "objects": [ - 863, + 883, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 867 + 887 ] } ], "insert_e_objective_types_one": [ - 856, + 876, { "object": [ - 863, + 883, "e_objective_types_insert_input!" ], "on_conflict": [ - 867 + 887 ] } ], "insert_e_player_roles": [ - 886, + 906, { "objects": [ - 883, + 903, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 887 + 907 ] } ], "insert_e_player_roles_one": [ - 876, + 896, { "object": [ - 883, + 903, "e_player_roles_insert_input!" ], "on_conflict": [ - 887 + 907 ] } ], "insert_e_plugin_runtimes": [ - 906, + 926, { "objects": [ - 903, + 923, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 907 + 927 ] } ], "insert_e_plugin_runtimes_one": [ - 896, + 916, { "object": [ - 903, + 923, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 907 + 927 ] } ], "insert_e_ready_settings": [ - 926, + 946, { "objects": [ - 923, + 943, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 927 + 947 ] } ], "insert_e_ready_settings_one": [ - 916, + 936, { "object": [ - 923, + 943, "e_ready_settings_insert_input!" ], "on_conflict": [ - 927 + 947 ] } ], "insert_e_sanction_types": [ - 946, + 966, { "objects": [ - 943, + 963, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 948 + 968 ] } ], "insert_e_sanction_types_one": [ - 936, + 956, { "object": [ - 943, + 963, "e_sanction_types_insert_input!" ], "on_conflict": [ - 948 + 968 ] } ], "insert_e_scrim_request_statuses": [ - 967, + 987, { "objects": [ - 964, + 984, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 968 + 988 ] } ], "insert_e_scrim_request_statuses_one": [ - 957, + 977, { "object": [ - 964, + 984, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 968 + 988 ] } ], "insert_e_server_types": [ - 987, + 1007, { "objects": [ - 984, + 1004, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 988 + 1008 ] } ], "insert_e_server_types_one": [ - 977, + 997, { "object": [ - 984, + 1004, "e_server_types_insert_input!" ], "on_conflict": [ - 988 + 1008 ] } ], "insert_e_sides": [ - 1007, + 1027, { "objects": [ - 1004, + 1024, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1008 + 1028 ] } ], "insert_e_sides_one": [ - 997, + 1017, { "object": [ - 1004, + 1024, "e_sides_insert_input!" ], "on_conflict": [ - 1008 + 1028 ] } ], "insert_e_system_alert_types": [ - 1027, + 1047, { "objects": [ - 1024, + 1044, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1028 + 1048 ] } ], "insert_e_system_alert_types_one": [ - 1017, + 1037, { "object": [ - 1024, + 1044, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1028 + 1048 ] } ], "insert_e_team_roles": [ - 1047, + 1067, { "objects": [ - 1044, + 1064, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1049 + 1069 ] } ], "insert_e_team_roles_one": [ - 1037, + 1057, { "object": [ - 1044, + 1064, "e_team_roles_insert_input!" ], "on_conflict": [ - 1049 + 1069 ] } ], "insert_e_team_roster_statuses": [ - 1068, + 1088, { "objects": [ - 1065, + 1085, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1069 + 1089 ] } ], "insert_e_team_roster_statuses_one": [ - 1058, + 1078, { "object": [ - 1065, + 1085, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1069 + 1089 ] } ], "insert_e_timeout_settings": [ - 1088, + 1108, { "objects": [ - 1085, + 1105, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1089 + 1109 ] } ], "insert_e_timeout_settings_one": [ - 1078, + 1098, { "object": [ - 1085, + 1105, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1089 + 1109 ] } ], "insert_e_tournament_stage_types": [ - 1108, + 1128, { "objects": [ - 1105, + 1125, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1110 + 1130 ] } ], "insert_e_tournament_stage_types_one": [ - 1098, + 1118, { "object": [ - 1105, + 1125, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1110 + 1130 ] } ], "insert_e_tournament_status": [ - 1129, + 1149, { "objects": [ - 1126, + 1146, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1131 + 1151 ] } ], "insert_e_tournament_status_one": [ - 1119, + 1139, { "object": [ - 1126, + 1146, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1131 + 1151 ] } ], "insert_e_utility_types": [ - 1150, + 1170, { "objects": [ - 1147, + 1167, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_utility_types_one": [ - 1140, + 1160, { "object": [ - 1147, + 1167, "e_utility_types_insert_input!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_veto_pick_types": [ - 1170, + 1190, { "objects": [ - 1167, + 1187, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_e_veto_pick_types_one": [ - 1160, + 1180, { "object": [ - 1167, + 1187, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_e_winning_reasons": [ - 1190, + 1210, { "objects": [ - 1187, + 1207, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1191 + 1211 ] } ], "insert_e_winning_reasons_one": [ - 1180, + 1200, { "object": [ - 1187, + 1207, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1191 + 1211 + ] + } + ], + "insert_event_organizers": [ + 1237, + { + "objects": [ + 1232, + "[event_organizers_insert_input!]!" + ], + "on_conflict": [ + 1238 + ] + } + ], + "insert_event_organizers_one": [ + 1220, + { + "object": [ + 1232, + "event_organizers_insert_input!" + ], + "on_conflict": [ + 1238 + ] + } + ], + "insert_event_players": [ + 1278, + { + "objects": [ + 1273, + "[event_players_insert_input!]!" + ], + "on_conflict": [ + 1279 + ] + } + ], + "insert_event_players_one": [ + 1261, + { + "object": [ + 1273, + "event_players_insert_input!" + ], + "on_conflict": [ + 1279 + ] + } + ], + "insert_event_teams": [ + 1316, + { + "objects": [ + 1311, + "[event_teams_insert_input!]!" + ], + "on_conflict": [ + 1317 + ] + } + ], + "insert_event_teams_one": [ + 1302, + { + "object": [ + 1311, + "event_teams_insert_input!" + ], + "on_conflict": [ + 1317 + ] + } + ], + "insert_event_tournaments": [ + 1340, + { + "objects": [ + 1335, + "[event_tournaments_insert_input!]!" + ], + "on_conflict": [ + 1341 + ] + } + ], + "insert_event_tournaments_one": [ + 1326, + { + "object": [ + 1335, + "event_tournaments_insert_input!" + ], + "on_conflict": [ + 1341 + ] + } + ], + "insert_events": [ + 1360, + { + "objects": [ + 1357, + "[events_insert_input!]!" + ], + "on_conflict": [ + 1362 + ] + } + ], + "insert_events_one": [ + 1350, + { + "object": [ + 1357, + "events_insert_input!" + ], + "on_conflict": [ + 1362 ] } ], "insert_friends": [ - 1212, + 1390, { "objects": [ - 1209, + 1387, "[friends_insert_input!]!" ], "on_conflict": [ - 1213 + 1391 ] } ], "insert_friends_one": [ - 1202, + 1380, { "object": [ - 1209, + 1387, "friends_insert_input!" ], "on_conflict": [ - 1213 + 1391 ] } ], "insert_game_server_nodes": [ - 1252, + 1430, { "objects": [ - 1247, + 1425, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1254 + 1432 ] } ], "insert_game_server_nodes_one": [ - 1229, + 1407, { "object": [ - 1247, + 1425, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1254 + 1432 ] } ], "insert_game_versions": [ - 1294, + 1472, { "objects": [ - 1291, + 1469, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1296 + 1474 ] } ], "insert_game_versions_one": [ - 1280, + 1458, { "object": [ - 1291, + 1469, "game_versions_insert_input!" ], "on_conflict": [ - 1296 + 1474 ] } ], "insert_gamedata_signature_validations": [ - 1327, + 1505, { "objects": [ - 1324, + 1502, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1328 + 1506 ] } ], "insert_gamedata_signature_validations_one": [ - 1313, + 1491, { "object": [ - 1324, + 1502, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1328 + 1506 ] } ], "insert_leaderboard_entries": [ - 1364, + 1543, { "objects": [ - 1361, + 1540, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1355, + 1534, { "object": [ - 1361, + 1540, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1389, + 1568, { "objects": [ - 1386, + 1565, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1391 + 1570 ] } ], "insert_league_divisions_one": [ - 1379, + 1558, { "object": [ - 1386, + 1565, "league_divisions_insert_input!" ], "on_conflict": [ - 1391 + 1570 ] } ], "insert_league_match_weeks": [ - 1424, + 1603, { "objects": [ - 1419, + 1598, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1425 + 1604 ] } ], "insert_league_match_weeks_one": [ - 1407, + 1586, { "object": [ - 1419, + 1598, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1425 + 1604 ] } ], "insert_league_relegation_playoffs": [ - 1465, + 1644, { "objects": [ - 1460, + 1639, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1466 + 1645 ] } ], "insert_league_relegation_playoffs_one": [ - 1448, + 1627, { "object": [ - 1460, + 1639, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1466 + 1645 ] } ], "insert_league_scheduling_proposals": [ - 1506, + 1685, { "objects": [ - 1501, + 1680, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1507 + 1686 ] } ], "insert_league_scheduling_proposals_one": [ - 1489, + 1668, { "object": [ - 1501, + 1680, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1507 + 1686 ] } ], "insert_league_season_divisions": [ - 1544, + 1723, { "objects": [ - 1539, + 1718, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1546 + 1725 ] } ], "insert_league_season_divisions_one": [ - 1530, + 1709, { "object": [ - 1539, + 1718, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1546 + 1725 ] } ], "insert_league_seasons": [ - 1569, + 1748, { "objects": [ - 1566, + 1745, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1571 + 1750 ] } ], "insert_league_seasons_one": [ - 1555, + 1734, { "object": [ - 1566, + 1745, "league_seasons_insert_input!" ], "on_conflict": [ - 1571 + 1750 ] } ], "insert_league_team_movements": [ - 1605, + 1784, { "objects": [ - 1600, + 1779, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1606 + 1785 ] } ], "insert_league_team_movements_one": [ - 1588, + 1767, { "object": [ - 1600, + 1779, "league_team_movements_insert_input!" ], "on_conflict": [ - 1606 + 1785 ] } ], "insert_league_team_rosters": [ - 1646, + 1825, { "objects": [ - 1641, + 1820, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1647 + 1826 ] } ], "insert_league_team_rosters_one": [ - 1629, + 1808, { "object": [ - 1641, + 1820, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1647 + 1826 ] } ], "insert_league_team_seasons": [ - 1687, + 1866, { "objects": [ - 1682, + 1861, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1689 + 1868 ] } ], "insert_league_team_seasons_one": [ - 1670, + 1849, { "object": [ - 1682, + 1861, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1689 + 1868 ] } ], "insert_league_teams": [ - 1720, + 1899, { "objects": [ - 1717, + 1896, "[league_teams_insert_input!]!" ], "on_conflict": [ - 1722 + 1901 ] } ], "insert_league_teams_one": [ - 1712, + 1891, { "object": [ - 1717, + 1896, "league_teams_insert_input!" ], "on_conflict": [ - 1722 + 1901 ] } ], "insert_lobbies": [ - 1739, + 1918, { "objects": [ - 1736, + 1915, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1741 + 1920 ] } ], "insert_lobbies_one": [ - 1731, + 1910, { "object": [ - 1736, + 1915, "lobbies_insert_input!" ], "on_conflict": [ - 1741 + 1920 ] } ], "insert_lobby_players": [ - 1769, + 1948, { "objects": [ - 1764, + 1943, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1770 + 1949 ] } ], "insert_lobby_players_one": [ - 1750, + 1929, { "object": [ - 1764, + 1943, "lobby_players_insert_input!" ], "on_conflict": [ - 1770 + 1949 ] } ], "insert_map_pools": [ - 1803, + 1982, { "objects": [ - 1800, + 1979, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1805 + 1984 ] } ], "insert_map_pools_one": [ - 1795, + 1974, { "object": [ - 1800, + 1979, "map_pools_insert_input!" ], "on_conflict": [ - 1805 + 1984 ] } ], "insert_maps": [ - 1830, + 2009, { "objects": [ - 1825, + 2004, "[maps_insert_input!]!" ], "on_conflict": [ - 1832 + 2011 ] } ], "insert_maps_one": [ - 1814, + 1993, { "object": [ - 1825, + 2004, "maps_insert_input!" ], "on_conflict": [ - 1832 + 2011 ] } ], "insert_match_clips": [ - 1860, + 2039, { "objects": [ - 1855, + 2034, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1862 + 2041 ] } ], "insert_match_clips_one": [ - 1843, + 2022, { "object": [ - 1855, + 2034, "match_clips_insert_input!" ], "on_conflict": [ - 1862 + 2041 ] } ], "insert_match_demo_sessions": [ - 1906, + 2085, { "objects": [ - 1901, + 2080, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1907 + 2086 ] } ], "insert_match_demo_sessions_one": [ - 1885, + 2064, { "object": [ - 1901, + 2080, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1907 + 2086 ] } ], "insert_match_lineup_players": [ - 1950, + 2129, { "objects": [ - 1945, + 2124, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1951 + 2130 ] } ], "insert_match_lineup_players_one": [ - 1931, + 2110, { "object": [ - 1945, + 2124, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1951 + 2130 ] } ], "insert_match_lineups": [ - 1993, + 2172, { "objects": [ - 1988, + 2167, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1995 + 2174 ] } ], "insert_match_lineups_one": [ - 1976, + 2155, { "object": [ - 1988, + 2167, "match_lineups_insert_input!" ], "on_conflict": [ - 1995 + 2174 ] } ], "insert_match_map_demos": [ - 2041, + 2220, { "objects": [ - 2036, + 2215, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2043 + 2222 ] } ], "insert_match_map_demos_one": [ - 2018, + 2197, { "object": [ - 2036, + 2215, "match_map_demos_insert_input!" ], "on_conflict": [ - 2043 + 2222 ] } ], "insert_match_map_rounds": [ - 2086, + 2265, { "objects": [ - 2081, + 2260, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2087 + 2266 ] } ], "insert_match_map_rounds_one": [ - 2069, + 2248, { "object": [ - 2081, + 2260, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2087 + 2266 ] } ], "insert_match_map_veto_picks": [ - 2124, + 2303, { "objects": [ - 2119, + 2298, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2125 + 2304 ] } ], "insert_match_map_veto_picks_one": [ - 2110, + 2289, { "object": [ - 2119, + 2298, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2125 + 2304 ] } ], "insert_match_maps": [ - 2151, + 2330, { "objects": [ - 2146, + 2325, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2153 + 2332 ] } ], "insert_match_maps_one": [ - 2134, + 2313, { "object": [ - 2146, + 2325, "match_maps_insert_input!" ], "on_conflict": [ - 2153 + 2332 ] } ], "insert_match_options": [ - 2186, + 2365, { "objects": [ - 2183, + 2362, "[match_options_insert_input!]!" ], "on_conflict": [ - 2188 + 2367 ] } ], "insert_match_options_one": [ - 2176, + 2355, { "object": [ - 2183, + 2362, "match_options_insert_input!" ], "on_conflict": [ - 2188 + 2367 ] } ], "insert_match_region_veto_picks": [ - 2218, + 2397, { "objects": [ - 2213, + 2392, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2219 + 2398 ] } ], "insert_match_region_veto_picks_one": [ - 2204, + 2383, { "object": [ - 2213, + 2392, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2219 + 2398 ] } ], "insert_match_streams": [ - 2251, + 2430, { "objects": [ - 2246, + 2425, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2252 + 2431 ] } ], "insert_match_streams_one": [ - 2228, + 2407, { "object": [ - 2246, + 2425, "match_streams_insert_input!" ], "on_conflict": [ - 2252 + 2431 ] } ], "insert_match_type_cfgs": [ - 2286, + 2465, { "objects": [ - 2283, + 2462, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2287 + 2466 ] } ], "insert_match_type_cfgs_one": [ - 2278, + 2457, { "object": [ - 2283, + 2462, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2287 + 2466 ] } ], "insert_matches": [ - 2313, + 2492, { "objects": [ - 2308, + 2487, "[matches_insert_input!]!" ], "on_conflict": [ - 2315 + 2494 ] } ], "insert_matches_one": [ - 2296, + 2475, { "object": [ - 2308, + 2487, "matches_insert_input!" ], "on_conflict": [ - 2315 + 2494 ] } ], "insert_migration_hashes_hashes": [ - 2346, + 2525, { "objects": [ - 2343, + 2522, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2347 + 2526 ] } ], "insert_migration_hashes_hashes_one": [ - 2338, + 2517, { "object": [ - 2343, + 2522, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2347 + 2526 ] } ], "insert_my_friends": [ - 2378, + 2557, { "objects": [ - 2373, + 2552, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2356, + 2535, { "object": [ - 2373, + 2552, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2412, + 2591, { "objects": [ - 2409, + 2588, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2413 + 2592 ] } ], "insert_news_articles_one": [ - 2402, + 2581, { "object": [ - 2409, + 2588, "news_articles_insert_input!" ], "on_conflict": [ - 2413 + 2592 ] } ], "insert_notifications": [ - 2452, + 2631, { "objects": [ - 2447, + 2626, "[notifications_insert_input!]!" ], "on_conflict": [ - 2453 + 2632 ] } ], "insert_notifications_one": [ - 2429, + 2608, { "object": [ - 2447, + 2626, "notifications_insert_input!" ], "on_conflict": [ - 2453 + 2632 ] } ], "insert_pending_match_import_players": [ - 2499, + 2678, { "objects": [ - 2494, + 2673, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2500 + 2679 ] } ], "insert_pending_match_import_players_one": [ - 2482, + 2661, { "object": [ - 2494, + 2673, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2500 + 2679 ] } ], "insert_pending_match_imports": [ - 2533, + 2712, { "objects": [ - 2530, + 2709, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2535 + 2714 ] } ], "insert_pending_match_imports_one": [ - 2523, + 2702, { "object": [ - 2530, + 2709, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2535 + 2714 ] } ], "insert_player_aim_stats_demo": [ - 2561, + 2740, { "objects": [ - 2558, + 2737, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2562 + 2741 ] } ], "insert_player_aim_stats_demo_one": [ - 2551, + 2730, { "object": [ - 2558, + 2737, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2562 + 2741 ] } ], "insert_player_aim_weapon_stats": [ - 2595, + 2774, { "objects": [ - 2590, + 2769, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2596 + 2775 ] } ], "insert_player_aim_weapon_stats_one": [ - 2578, + 2757, { "object": [ - 2590, + 2769, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2596 + 2775 ] } ], "insert_player_assists": [ - 2638, + 2817, { "objects": [ - 2633, + 2812, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2639 + 2818 ] } ], "insert_player_assists_one": [ - 2619, + 2798, { "object": [ - 2633, + 2812, "player_assists_insert_input!" ], "on_conflict": [ - 2639 + 2818 ] } ], "insert_player_damages": [ - 2699, + 2878, { "objects": [ - 2694, + 2873, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2700 + 2879 ] } ], "insert_player_damages_one": [ - 2682, + 2861, { "object": [ - 2694, + 2873, "player_damages_insert_input!" ], "on_conflict": [ - 2700 + 2879 ] } ], "insert_player_elo": [ - 2733, + 2912, { "objects": [ - 2730, + 2909, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2734 + 2913 ] } ], "insert_player_elo_one": [ - 2723, + 2902, { "object": [ - 2730, + 2909, "player_elo_insert_input!" ], "on_conflict": [ - 2734 + 2913 ] } ], "insert_player_faceit_rank_history": [ - 2767, + 2946, { "objects": [ - 2762, + 2941, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2768 + 2947 ] } ], "insert_player_faceit_rank_history_one": [ - 2750, + 2929, { "object": [ - 2762, + 2941, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2768 + 2947 ] } ], "insert_player_flashes": [ - 2810, + 2989, { "objects": [ - 2805, + 2984, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2811 + 2990 ] } ], "insert_player_flashes_one": [ - 2791, + 2970, { "object": [ - 2805, + 2984, "player_flashes_insert_input!" ], "on_conflict": [ - 2811 + 2990 ] } ], "insert_player_kills": [ - 2896, + 3075, { "objects": [ - 2891, + 3070, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2897 + 3076 ] } ], "insert_player_kills_by_weapon": [ - 2865, + 3044, { "objects": [ - 2860, + 3039, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2866 + 3045 ] } ], "insert_player_kills_by_weapon_one": [ - 2848, + 3027, { "object": [ - 2860, + 3039, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2866 + 3045 ] } ], "insert_player_kills_one": [ - 2836, + 3015, { "object": [ - 2891, + 3070, "player_kills_insert_input!" ], "on_conflict": [ - 2897 + 3076 ] } ], "insert_player_leaderboard_rank": [ - 2931, + 3110, { "objects": [ - 2928, + 3107, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2922, + 3101, { "object": [ - 2928, + 3107, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2962, + 3141, { "objects": [ - 2957, + 3136, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2963 + 3142 ] } ], "insert_player_match_map_stats_one": [ - 2945, + 3124, { "object": [ - 2957, + 3136, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2963 + 3142 ] } ], "insert_player_objectives": [ - 3054, + 3233, { "objects": [ - 3049, + 3228, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3055 + 3234 ] } ], "insert_player_objectives_one": [ - 3037, + 3216, { "object": [ - 3049, + 3228, "player_objectives_insert_input!" ], "on_conflict": [ - 3055 + 3234 ] } ], "insert_player_premier_rank_history": [ - 3113, + 3292, { "objects": [ - 3108, + 3287, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3114 + 3293 ] } ], "insert_player_premier_rank_history_one": [ - 3096, + 3275, { "object": [ - 3108, + 3287, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3114 + 3293 ] } ], "insert_player_sanctions": [ - 3154, + 3333, { "objects": [ - 3149, + 3328, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3155 + 3334 ] } ], "insert_player_sanctions_one": [ - 3137, + 3316, { "object": [ - 3149, + 3328, "player_sanctions_insert_input!" ], "on_conflict": [ - 3155 + 3334 ] } ], "insert_player_season_stats": [ - 3205, + 3384, { "objects": [ - 3200, + 3379, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3206 + 3385 ] } ], "insert_player_season_stats_one": [ - 3178, + 3357, { "object": [ - 3200, + 3379, "player_season_stats_insert_input!" ], "on_conflict": [ - 3206 + 3385 ] } ], "insert_player_stats": [ - 3247, + 3426, { "objects": [ - 3244, + 3423, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3249 + 3428 ] } ], "insert_player_stats_one": [ - 3237, + 3416, { "object": [ - 3244, + 3423, "player_stats_insert_input!" ], "on_conflict": [ - 3249 + 3428 ] } ], "insert_player_steam_bot_friend": [ - 3279, + 3458, { "objects": [ - 3276, + 3455, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3280 + 3459 ] } ], "insert_player_steam_bot_friend_one": [ - 3265, + 3444, { "object": [ - 3276, + 3455, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3280 + 3459 ] } ], "insert_player_steam_match_auth": [ - 3307, + 3486, { "objects": [ - 3304, + 3483, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3308 + 3487 ] } ], "insert_player_steam_match_auth_one": [ - 3297, + 3476, { "object": [ - 3304, + 3483, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3308 + 3487 ] } ], "insert_player_unused_utility": [ - 3341, + 3520, { "objects": [ - 3336, + 3515, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3342 + 3521 ] } ], "insert_player_unused_utility_one": [ - 3324, + 3503, { "object": [ - 3336, + 3515, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3342 + 3521 ] } ], "insert_player_utility": [ - 3382, + 3561, { "objects": [ - 3377, + 3556, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3383 + 3562 ] } ], "insert_player_utility_one": [ - 3365, + 3544, { "object": [ - 3377, + 3556, "player_utility_insert_input!" ], "on_conflict": [ - 3383 + 3562 ] } ], "insert_players": [ - 3449, + 3628, { "objects": [ - 3446, + 3625, "[players_insert_input!]!" ], "on_conflict": [ - 3451 + 3630 ] } ], "insert_players_one": [ - 3439, + 3618, { "object": [ - 3446, + 3625, "players_insert_input!" ], "on_conflict": [ - 3451 + 3630 ] } ], "insert_plugin_versions": [ - 3477, + 3656, { "objects": [ - 3474, + 3653, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3478 + 3657 ] } ], "insert_plugin_versions_one": [ - 3467, + 3646, { "object": [ - 3474, + 3653, "plugin_versions_insert_input!" ], "on_conflict": [ - 3478 + 3657 ] } ], "insert_seasons": [ - 3508, + 3687, { "objects": [ - 3505, + 3684, "[seasons_insert_input!]!" ], "on_conflict": [ - 3510 + 3689 ] } ], "insert_seasons_one": [ - 3498, + 3677, { "object": [ - 3505, + 3684, "seasons_insert_input!" ], "on_conflict": [ - 3510 + 3689 ] } ], "insert_server_regions": [ - 3535, + 3714, { "objects": [ - 3532, + 3711, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3537 + 3716 ] } ], "insert_server_regions_one": [ - 3526, + 3705, { "object": [ - 3532, + 3711, "server_regions_insert_input!" ], "on_conflict": [ - 3537 + 3716 ] } ], "insert_servers": [ - 3572, + 3751, { "objects": [ - 3567, + 3746, "[servers_insert_input!]!" ], "on_conflict": [ - 3574 + 3753 ] } ], "insert_servers_one": [ - 3553, + 3732, { "object": [ - 3567, + 3746, "servers_insert_input!" ], "on_conflict": [ - 3574 + 3753 ] } ], "insert_settings": [ - 3607, + 3786, { "objects": [ - 3604, + 3783, "[settings_insert_input!]!" ], "on_conflict": [ - 3608 + 3787 ] } ], "insert_settings_one": [ - 3599, + 3778, { "object": [ - 3604, + 3783, "settings_insert_input!" ], "on_conflict": [ - 3608 + 3787 ] } ], "insert_steam_account_claims": [ - 3633, + 3812, { "objects": [ - 3628, + 3807, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3634 + 3813 ] } ], "insert_steam_account_claims_one": [ - 3619, + 3798, { "object": [ - 3628, + 3807, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3634 + 3813 ] } ], "insert_steam_accounts": [ - 3653, + 3832, { "objects": [ - 3650, + 3829, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3655 + 3834 ] } ], "insert_steam_accounts_one": [ - 3643, + 3822, { "object": [ - 3650, + 3829, "steam_accounts_insert_input!" ], "on_conflict": [ - 3655 + 3834 ] } ], "insert_system_alerts": [ - 3681, + 3860, { "objects": [ - 3678, + 3857, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3682 + 3861 ] } ], "insert_system_alerts_one": [ - 3671, + 3850, { "object": [ - 3678, + 3857, "system_alerts_insert_input!" ], "on_conflict": [ - 3682 + 3861 ] } ], "insert_team_invites": [ - 3715, + 3894, { "objects": [ - 3710, + 3889, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3716 + 3895 ] } ], "insert_team_invites_one": [ - 3698, + 3877, { "object": [ - 3710, + 3889, "team_invites_insert_input!" ], "on_conflict": [ - 3716 + 3895 ] } ], "insert_team_roster": [ - 3758, + 3937, { "objects": [ - 3753, + 3932, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3759 + 3938 ] } ], "insert_team_roster_one": [ - 3739, + 3918, { "object": [ - 3753, + 3932, "team_roster_insert_input!" ], "on_conflict": [ - 3759 + 3938 ] } ], "insert_team_scrim_alerts": [ - 3794, + 3973, { "objects": [ - 3791, + 3970, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3795 + 3974 ] } ], "insert_team_scrim_alerts_one": [ - 3784, + 3963, { "object": [ - 3791, + 3970, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3795 + 3974 ] } ], "insert_team_scrim_availability": [ - 3827, + 4006, { "objects": [ - 3822, + 4001, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 3828 + 4007 ] } ], "insert_team_scrim_availability_one": [ - 3811, + 3990, { "object": [ - 3822, + 4001, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 3828 + 4007 ] } ], "insert_team_scrim_request_proposals": [ - 3856, + 4035, { "objects": [ - 3851, + 4030, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 3857 + 4036 ] } ], "insert_team_scrim_request_proposals_one": [ - 3839, + 4018, { "object": [ - 3851, + 4030, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 3857 + 4036 ] } ], "insert_team_scrim_requests": [ - 3899, + 4078, { "objects": [ - 3894, + 4073, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 3901 + 4080 ] } ], "insert_team_scrim_requests_one": [ - 3880, + 4059, { "object": [ - 3894, + 4073, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 3901 + 4080 ] } ], "insert_team_scrim_settings": [ - 3936, + 4115, { "objects": [ - 3933, + 4112, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 3938 + 4117 ] } ], "insert_team_scrim_settings_one": [ - 3926, + 4105, { "object": [ - 3933, + 4112, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 3938 + 4117 ] } ], "insert_team_suggestions": [ - 3964, + 4143, { "objects": [ - 3961, + 4140, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 3965 + 4144 ] } ], "insert_team_suggestions_one": [ - 3954, + 4133, { "object": [ - 3961, + 4140, "team_suggestions_insert_input!" ], "on_conflict": [ - 3965 + 4144 ] } ], "insert_teams": [ - 3998, + 4177, { "objects": [ - 3993, + 4172, "[teams_insert_input!]!" ], "on_conflict": [ - 4000 + 4179 ] } ], "insert_teams_one": [ - 3981, + 4160, { "object": [ - 3993, + 4172, "teams_insert_input!" ], "on_conflict": [ - 4000 + 4179 ] } ], "insert_tournament_brackets": [ - 4045, + 4224, { "objects": [ - 4040, + 4219, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4047 + 4226 ] } ], "insert_tournament_brackets_one": [ - 4026, + 4205, { "object": [ - 4040, + 4219, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4047 + 4226 ] } ], "insert_tournament_organizers": [ - 4089, + 4268, { "objects": [ - 4084, + 4263, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4090 + 4269 ] } ], "insert_tournament_organizers_one": [ - 4072, + 4251, { "object": [ - 4084, + 4263, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4090 + 4269 ] } ], "insert_tournament_stage_windows": [ - 4130, + 4309, { "objects": [ - 4125, + 4304, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4131 + 4310 ] } ], "insert_tournament_stage_windows_one": [ - 4113, + 4292, { "object": [ - 4125, + 4304, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4131 + 4310 ] } ], "insert_tournament_stages": [ - 4177, + 4356, { "objects": [ - 4172, + 4351, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4179 + 4358 ] } ], "insert_tournament_stages_one": [ - 4154, + 4333, { "object": [ - 4172, + 4351, "tournament_stages_insert_input!" ], "on_conflict": [ - 4179 + 4358 ] } ], "insert_tournament_team_invites": [ - 4222, + 4401, { "objects": [ - 4217, + 4396, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4223 + 4402 ] } ], "insert_tournament_team_invites_one": [ - 4205, + 4384, { "object": [ - 4217, + 4396, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4223 + 4402 ] } ], "insert_tournament_team_roster": [ - 4263, + 4442, { "objects": [ - 4258, + 4437, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4264 + 4443 ] } ], "insert_tournament_team_roster_one": [ - 4246, + 4425, { "object": [ - 4258, + 4437, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4264 + 4443 ] } ], "insert_tournament_teams": [ - 4304, + 4483, { "objects": [ - 4299, + 4478, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4306 + 4485 ] } ], "insert_tournament_teams_one": [ - 4287, + 4466, { "object": [ - 4299, + 4478, "tournament_teams_insert_input!" ], "on_conflict": [ - 4306 + 4485 ] } ], "insert_tournament_trophies": [ - 4348, + 4527, { "objects": [ - 4343, + 4522, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4349 + 4528 ] } ], "insert_tournament_trophies_one": [ - 4329, + 4508, { "object": [ - 4343, + 4522, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4349 + 4528 ] } ], "insert_tournament_trophy_configs": [ - 4391, + 4570, { "objects": [ - 4386, + 4565, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4393 + 4572 ] } ], "insert_tournament_trophy_configs_one": [ - 4374, + 4553, { "object": [ - 4386, + 4565, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4393 + 4572 ] } ], "insert_tournaments": [ - 4435, + 4614, { "objects": [ - 4430, + 4609, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4437 + 4616 ] } ], "insert_tournaments_one": [ - 4416, + 4595, { "object": [ - 4430, + 4609, "tournaments_insert_input!" ], "on_conflict": [ - 4437 + 4616 ] } ], "insert_v_match_captains": [ - 4576, + 4806, { "objects": [ - 4573, + 4803, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4567, + 4797, { "object": [ - 4573, + 4803, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4687, + 4917, { "objects": [ - 4684, + 4914, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 4678, + 4908, { "object": [ - 4684, + 4914, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 4909, + 5139, { "objects": [ - 4904, + 5134, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 4893, + 5123, { "object": [ - 4904, + 5134, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5068, + 5298, { "objects": [ - 5063, + 5293, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5053, + 5283, { "object": [ - 5063, + 5293, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5162, + 5392, { "objects": [ - 5157, + 5387, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5164 + 5394 ] } ], "insert_v_team_stage_results_one": [ - 5135, + 5365, { "object": [ - 5157, + 5387, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5164 + 5394 ] } ], @@ -140852,7 +145305,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4641, "uuid!" ], "inviteCode": [ @@ -140864,7 +145317,7 @@ export default { 81, { "draftGameId": [ - 4462, + 4641, "uuid!" ], "inviteCode": [ @@ -140889,14 +145342,14 @@ export default { } ], "league_award_forfeit": [ - 2296, + 2475, { "args": [ - 1378, + 1557, "league_award_forfeit_args!" ], "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -140906,11 +145359,11 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], @@ -140969,7 +145422,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -140981,7 +145434,7 @@ export default { 22, { "draftGameId": [ - 4462, + 4641, "uuid!" ], "inviteCode": [ @@ -140996,7 +145449,7 @@ export default { 38 ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "preset": [ @@ -141022,7 +145475,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141031,20 +145484,20 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4329, + 4508, { "args": [ - 3494, + 3673, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -141054,11 +145507,11 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], @@ -141072,7 +145525,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141096,7 +145549,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141123,14 +145576,14 @@ export default { } ], "remove_league_team_from_season": [ - 1670, + 1849, { "args": [ - 3495, + 3674, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -141140,11 +145593,11 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], @@ -141169,14 +145622,14 @@ export default { } ], "reorder_league_divisions": [ - 1379, + 1558, { "args": [ - 3496, + 3675, "reorder_league_divisions_args!" ], "distinct_on": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "limit": [ @@ -141186,11 +145639,11 @@ export default { 38 ], "order_by": [ - 1392, + 1571, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1562 ] } ], @@ -141204,7 +145657,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -141213,7 +145666,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141235,7 +145688,7 @@ export default { 81, { "job_id": [ - 4462, + 4641, "uuid!" ] } @@ -141248,7 +145701,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4462, + 4641, "uuid!" ] } @@ -141261,7 +145714,7 @@ export default { "Boolean!" ], "request_id": [ - 4462, + 4641, "uuid!" ] } @@ -141276,14 +145729,14 @@ export default { } ], "restart_league_season": [ - 1555, + 1734, { "args": [ - 3497, + 3676, "restart_league_season_args!" ], "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -141293,11 +145746,11 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], @@ -141305,7 +145758,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -141314,7 +145767,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "only_failed": [ @@ -141364,7 +145817,7 @@ export default { 78 ], "id": [ - 4462 + 4641 ], "teaser": [ 78 @@ -141385,11 +145838,11 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024 + 4203 ] } ], @@ -141400,18 +145853,18 @@ export default { 38 ], "from_team_id": [ - 4462, + 4641, "uuid!" ], "proposed_scheduled_at": [ - 4024, + 4203, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4462, + 4641, "uuid!" ] } @@ -141433,7 +145886,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "mode": [ @@ -141446,15 +145899,15 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "winning_lineup_id": [ - 4462, + 4641, "uuid!" ] } @@ -141463,11 +145916,11 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "winning_lineup_id": [ - 4462, + 4641, "uuid!" ] } @@ -141476,7 +145929,7 @@ export default { 48, { "id": [ - 4462, + 4641, "uuid!" ], "status": [ @@ -141492,7 +145945,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141505,7 +145958,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141518,7 +145971,7 @@ export default { "String!" ], "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141527,7 +145980,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "visible": [ @@ -141540,7 +145993,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141549,7 +146002,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141562,7 +146015,7 @@ export default { "Int!" ], "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141571,7 +146024,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "show": [ @@ -141584,7 +146037,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "slot": [ @@ -141601,7 +146054,7 @@ export default { "Boolean!" ], "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141610,7 +146063,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "mode": [ @@ -141623,11 +146076,11 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ], "server_id": [ - 4462 + 4641 ] } ], @@ -141635,7 +146088,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4641, "uuid!" ] } @@ -141644,7 +146097,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141653,7 +146106,7 @@ export default { 81, { "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -141675,7 +146128,7 @@ export default { 81, { "match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141693,7 +146146,7 @@ export default { 81, { "from_match_id": [ - 4462, + 4641, "uuid!" ], "mode": [ @@ -141701,7 +146154,7 @@ export default { "String!" ], "to_match_id": [ - 4462, + 4641, "uuid!" ] } @@ -141741,7 +146194,7 @@ export default { 81, { "clip_id": [ - 4462, + 4641, "uuid!" ], "target_steam_id": [ @@ -141762,7 +146215,7 @@ export default { 78 ], "game_server_node_id": [ - 4462 + 4641 ] } ], @@ -141770,11 +146223,11 @@ export default { 81, { "draftGameId": [ - 4462, + 4641, "uuid!" ], "settings": [ - 1352, + 1531, "jsonb!" ] } @@ -142316,4769 +146769,4985 @@ export default { ] } ], - "update_e_friend_status": [ + "update_e_event_status": [ 535, { "_set": [ - 541 + 540 ], "where": [ 528, + "e_event_status_bool_exp!" + ] + } + ], + "update_e_event_status_by_pk": [ + 525, + { + "_set": [ + 540 + ], + "pk_columns": [ + 538, + "e_event_status_pk_columns_input!" + ] + } + ], + "update_e_event_status_many": [ + 535, + { + "updates": [ + 544, + "[e_event_status_updates!]!" + ] + } + ], + "update_e_friend_status": [ + 555, + { + "_set": [ + 561 + ], + "where": [ + 548, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 525, + 545, { "_set": [ - 541 + 561 ], "pk_columns": [ - 539, + 559, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 535, + 555, { "updates": [ - 545, + 565, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 556, + 576, { "_set": [ - 561 + 581 ], "where": [ - 549, + 569, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 546, + 566, { "_set": [ - 561 + 581 ], "pk_columns": [ - 559, + 579, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 556, + 576, { "updates": [ - 565, + 585, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 576, + 596, { "_set": [ - 582 + 602 ], "where": [ - 569, + 589, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 566, + 586, { "_set": [ - 582 + 602 ], "pk_columns": [ - 580, + 600, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 576, + 596, { "updates": [ - 586, + 606, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 597, + 617, { "_set": [ - 603 + 623 ], "where": [ - 590, + 610, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 587, + 607, { "_set": [ - 603 + 623 ], "pk_columns": [ - 601, + 621, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 597, + 617, { "updates": [ - 607, + 627, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 618, + 638, { "_set": [ - 624 + 644 ], "where": [ - 611, + 631, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 608, + 628, { "_set": [ - 624 + 644 ], "pk_columns": [ - 622, + 642, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 618, + 638, { "updates": [ - 628, + 648, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 639, + 659, { "_set": [ - 645 + 665 ], "where": [ - 632, + 652, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 629, + 649, { "_set": [ - 645 + 665 ], "pk_columns": [ - 643, + 663, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 639, + 659, { "updates": [ - 649, + 669, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 660, + 680, { "_set": [ - 666 + 686 ], "where": [ - 653, + 673, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 650, + 670, { "_set": [ - 666 + 686 ], "pk_columns": [ - 664, + 684, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 660, + 680, { "updates": [ - 670, + 690, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 681, + 701, { "_set": [ - 687 + 707 ], "where": [ - 674, + 694, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 671, + 691, { "_set": [ - 687 + 707 ], "pk_columns": [ - 685, + 705, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 681, + 701, { "updates": [ - 691, + 711, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 702, + 722, { "_set": [ - 707 + 727 ], "where": [ - 695, + 715, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 692, + 712, { "_set": [ - 707 + 727 ], "pk_columns": [ - 705, + 725, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 702, + 722, { "updates": [ - 711, + 731, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 722, + 742, { "_set": [ - 728 + 748 ], "where": [ - 715, + 735, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 712, + 732, { "_set": [ - 728 + 748 ], "pk_columns": [ - 726, + 746, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 722, + 742, { "updates": [ - 732, + 752, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 743, + 763, { "_set": [ - 748 + 768 ], "where": [ - 736, + 756, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 733, + 753, { "_set": [ - 748 + 768 ], "pk_columns": [ - 746, + 766, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 743, + 763, { "updates": [ - 752, + 772, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 763, + 783, { "_set": [ - 769 + 789 ], "where": [ - 756, + 776, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 753, + 773, { "_set": [ - 769 + 789 ], "pk_columns": [ - 767, + 787, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 763, + 783, { "updates": [ - 773, + 793, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 784, + 804, { "_set": [ - 789 + 809 ], "where": [ - 777, + 797, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 774, + 794, { "_set": [ - 789 + 809 ], "pk_columns": [ - 787, + 807, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 784, + 804, { "updates": [ - 793, + 813, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 804, + 824, { "_set": [ - 810 + 830 ], "where": [ - 797, + 817, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 794, + 814, { "_set": [ - 810 + 830 ], "pk_columns": [ - 808, + 828, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 804, + 824, { "updates": [ - 814, + 834, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 825, + 845, { "_set": [ - 831 + 851 ], "where": [ - 818, + 838, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 815, + 835, { "_set": [ - 831 + 851 ], "pk_columns": [ - 829, + 849, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 825, + 845, { "updates": [ - 835, + 855, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 846, + 866, { "_set": [ - 851 + 871 ], "where": [ - 839, + 859, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 836, + 856, { "_set": [ - 851 + 871 ], "pk_columns": [ - 849, + 869, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 846, + 866, { "updates": [ - 855, + 875, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 866, + 886, { "_set": [ - 871 + 891 ], "where": [ - 859, + 879, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 856, + 876, { "_set": [ - 871 + 891 ], "pk_columns": [ - 869, + 889, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 866, + 886, { "updates": [ - 875, + 895, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 886, + 906, { "_set": [ - 891 + 911 ], "where": [ - 879, + 899, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 876, + 896, { "_set": [ - 891 + 911 ], "pk_columns": [ - 889, + 909, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 886, + 906, { "updates": [ - 895, + 915, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 906, + 926, { "_set": [ - 911 + 931 ], "where": [ - 899, + 919, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 896, + 916, { "_set": [ - 911 + 931 ], "pk_columns": [ - 909, + 929, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 906, + 926, { "updates": [ - 915, + 935, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 926, + 946, { "_set": [ - 931 + 951 ], "where": [ - 919, + 939, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 916, + 936, { "_set": [ - 931 + 951 ], "pk_columns": [ - 929, + 949, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 926, + 946, { "updates": [ - 935, + 955, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 946, + 966, { "_set": [ - 952 + 972 ], "where": [ - 939, + 959, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 936, + 956, { "_set": [ - 952 + 972 ], "pk_columns": [ - 950, + 970, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 946, + 966, { "updates": [ - 956, + 976, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 967, + 987, { "_set": [ - 972 + 992 ], "where": [ - 960, + 980, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 957, + 977, { "_set": [ - 972 + 992 ], "pk_columns": [ - 970, + 990, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 967, + 987, { "updates": [ - 976, + 996, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 987, + 1007, { "_set": [ - 992 + 1012 ], "where": [ - 980, + 1000, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 977, + 997, { "_set": [ - 992 + 1012 ], "pk_columns": [ - 990, + 1010, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 987, + 1007, { "updates": [ - 996, + 1016, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1007, + 1027, { "_set": [ - 1012 + 1032 ], "where": [ - 1000, + 1020, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 997, + 1017, { "_set": [ - 1012 + 1032 ], "pk_columns": [ - 1010, + 1030, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1007, + 1027, { "updates": [ - 1016, + 1036, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1027, + 1047, { "_set": [ - 1032 + 1052 ], "where": [ - 1020, + 1040, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1017, + 1037, { "_set": [ - 1032 + 1052 ], "pk_columns": [ - 1030, + 1050, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1027, + 1047, { "updates": [ - 1036, + 1056, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1047, + 1067, { "_set": [ - 1053 + 1073 ], "where": [ - 1040, + 1060, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1037, + 1057, { "_set": [ - 1053 + 1073 ], "pk_columns": [ - 1051, + 1071, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1047, + 1067, { "updates": [ - 1057, + 1077, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1068, + 1088, { "_set": [ - 1073 + 1093 ], "where": [ - 1061, + 1081, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1058, + 1078, { "_set": [ - 1073 + 1093 ], "pk_columns": [ - 1071, + 1091, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1068, + 1088, { "updates": [ - 1077, + 1097, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1088, + 1108, { "_set": [ - 1093 + 1113 ], "where": [ - 1081, + 1101, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1078, + 1098, { "_set": [ - 1093 + 1113 ], "pk_columns": [ - 1091, + 1111, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1088, + 1108, { "updates": [ - 1097, + 1117, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1108, + 1128, { "_set": [ - 1114 + 1134 ], "where": [ - 1101, + 1121, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1098, + 1118, { "_set": [ - 1114 + 1134 ], "pk_columns": [ - 1112, + 1132, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1108, + 1128, { "updates": [ - 1118, + 1138, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1129, + 1149, { "_set": [ - 1135 + 1155 ], "where": [ - 1122, + 1142, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1119, + 1139, { "_set": [ - 1135 + 1155 ], "pk_columns": [ - 1133, + 1153, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1129, + 1149, { "updates": [ - 1139, + 1159, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1150, + 1170, { "_set": [ - 1155 + 1175 ], "where": [ - 1143, + 1163, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1140, + 1160, { "_set": [ - 1155 + 1175 ], "pk_columns": [ - 1153, + 1173, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1150, + 1170, { "updates": [ - 1159, + 1179, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1170, + 1190, { "_set": [ - 1175 + 1195 ], "where": [ - 1163, + 1183, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1160, + 1180, { "_set": [ - 1175 + 1195 ], "pk_columns": [ - 1173, + 1193, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1170, + 1190, { "updates": [ - 1179, + 1199, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1190, + 1210, { "_set": [ - 1195 + 1215 ], "where": [ - 1183, + 1203, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1180, + 1200, { "_set": [ - 1195 + 1215 ], "pk_columns": [ - 1193, + 1213, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1190, + 1210, { "updates": [ - 1199, + 1219, "[e_winning_reasons_updates!]!" ] } ], + "update_event_organizers": [ + 1237, + { + "_inc": [ + 1231 + ], + "_set": [ + 1242 + ], + "where": [ + 1229, + "event_organizers_bool_exp!" + ] + } + ], + "update_event_organizers_by_pk": [ + 1220, + { + "_inc": [ + 1231 + ], + "_set": [ + 1242 + ], + "pk_columns": [ + 1240, + "event_organizers_pk_columns_input!" + ] + } + ], + "update_event_organizers_many": [ + 1237, + { + "updates": [ + 1254, + "[event_organizers_updates!]!" + ] + } + ], + "update_event_players": [ + 1278, + { + "_inc": [ + 1272 + ], + "_set": [ + 1283 + ], + "where": [ + 1270, + "event_players_bool_exp!" + ] + } + ], + "update_event_players_by_pk": [ + 1261, + { + "_inc": [ + 1272 + ], + "_set": [ + 1283 + ], + "pk_columns": [ + 1281, + "event_players_pk_columns_input!" + ] + } + ], + "update_event_players_many": [ + 1278, + { + "updates": [ + 1295, + "[event_players_updates!]!" + ] + } + ], + "update_event_teams": [ + 1316, + { + "_set": [ + 1321 + ], + "where": [ + 1309, + "event_teams_bool_exp!" + ] + } + ], + "update_event_teams_by_pk": [ + 1302, + { + "_set": [ + 1321 + ], + "pk_columns": [ + 1319, + "event_teams_pk_columns_input!" + ] + } + ], + "update_event_teams_many": [ + 1316, + { + "updates": [ + 1325, + "[event_teams_updates!]!" + ] + } + ], + "update_event_tournaments": [ + 1340, + { + "_set": [ + 1345 + ], + "where": [ + 1333, + "event_tournaments_bool_exp!" + ] + } + ], + "update_event_tournaments_by_pk": [ + 1326, + { + "_set": [ + 1345 + ], + "pk_columns": [ + 1343, + "event_tournaments_pk_columns_input!" + ] + } + ], + "update_event_tournaments_many": [ + 1340, + { + "updates": [ + 1349, + "[event_tournaments_updates!]!" + ] + } + ], + "update_events": [ + 1360, + { + "_inc": [ + 1356 + ], + "_set": [ + 1366 + ], + "where": [ + 1354, + "events_bool_exp!" + ] + } + ], + "update_events_by_pk": [ + 1350, + { + "_inc": [ + 1356 + ], + "_set": [ + 1366 + ], + "pk_columns": [ + 1364, + "events_pk_columns_input!" + ] + } + ], + "update_events_many": [ + 1360, + { + "updates": [ + 1374, + "[events_updates!]!" + ] + } + ], "update_friends": [ - 1212, + 1390, { "_inc": [ - 1208 + 1386 ], "_set": [ - 1217 + 1395 ], "where": [ - 1206, + 1384, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1202, + 1380, { "_inc": [ - 1208 + 1386 ], "_set": [ - 1217 + 1395 ], "pk_columns": [ - 1215, + 1393, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1212, + 1390, { "updates": [ - 1225, + 1403, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1252, + 1430, { "_append": [ - 1237 + 1415 ], "_delete_at_path": [ - 1243 + 1421 ], "_delete_elem": [ - 1244 + 1422 ], "_delete_key": [ - 1245 + 1423 ], "_inc": [ - 1246 + 1424 ], "_prepend": [ - 1257 + 1435 ], "_set": [ - 1261 + 1439 ], "where": [ - 1241, + 1419, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1229, + 1407, { "_append": [ - 1237 + 1415 ], "_delete_at_path": [ - 1243 + 1421 ], "_delete_elem": [ - 1244 + 1422 ], "_delete_key": [ - 1245 + 1423 ], "_inc": [ - 1246 + 1424 ], "_prepend": [ - 1257 + 1435 ], "_set": [ - 1261 + 1439 ], "pk_columns": [ - 1256, + 1434, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1252, + 1430, { "updates": [ - 1273, + 1451, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1294, + 1472, { "_append": [ - 1283 + 1461 ], "_delete_at_path": [ - 1287 + 1465 ], "_delete_elem": [ - 1288 + 1466 ], "_delete_key": [ - 1289 + 1467 ], "_inc": [ - 1290 + 1468 ], "_prepend": [ - 1299 + 1477 ], "_set": [ - 1301 + 1479 ], "where": [ - 1285, + 1463, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1280, + 1458, { "_append": [ - 1283 + 1461 ], "_delete_at_path": [ - 1287 + 1465 ], "_delete_elem": [ - 1288 + 1466 ], "_delete_key": [ - 1289 + 1467 ], "_inc": [ - 1290 + 1468 ], "_prepend": [ - 1299 + 1477 ], "_set": [ - 1301 + 1479 ], "pk_columns": [ - 1298, + 1476, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1294, + 1472, { "updates": [ - 1309, + 1487, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1327, + 1505, { "_append": [ - 1316 + 1494 ], "_delete_at_path": [ - 1320 + 1498 ], "_delete_elem": [ - 1321 + 1499 ], "_delete_key": [ - 1322 + 1500 ], "_inc": [ - 1323 + 1501 ], "_prepend": [ - 1331 + 1509 ], "_set": [ - 1333 + 1511 ], "where": [ - 1318, + 1496, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1313, + 1491, { "_append": [ - 1316 + 1494 ], "_delete_at_path": [ - 1320 + 1498 ], "_delete_elem": [ - 1321 + 1499 ], "_delete_key": [ - 1322 + 1500 ], "_inc": [ - 1323 + 1501 ], "_prepend": [ - 1331 + 1509 ], "_set": [ - 1333 + 1511 ], "pk_columns": [ - 1330, + 1508, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1327, + 1505, { "updates": [ - 1341, + 1519, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1364, + 1543, { "_inc": [ - 1360 + 1539 ], "_set": [ - 1367 + 1546 ], "where": [ - 1359, + 1538, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1364, + 1543, { "updates": [ - 1374, + 1553, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1389, + 1568, { "_inc": [ - 1385 + 1564 ], "_set": [ - 1395 + 1574 ], "where": [ - 1383, + 1562, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1379, + 1558, { "_inc": [ - 1385 + 1564 ], "_set": [ - 1395 + 1574 ], "pk_columns": [ - 1393, + 1572, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1389, + 1568, { "updates": [ - 1403, + 1582, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1424, + 1603, { "_inc": [ - 1418 + 1597 ], "_set": [ - 1429 + 1608 ], "where": [ - 1416, + 1595, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1407, + 1586, { "_inc": [ - 1418 + 1597 ], "_set": [ - 1429 + 1608 ], "pk_columns": [ - 1427, + 1606, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1424, + 1603, { "updates": [ - 1441, + 1620, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1465, + 1644, { "_inc": [ - 1459 + 1638 ], "_set": [ - 1470 + 1649 ], "where": [ - 1457, + 1636, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1448, + 1627, { "_inc": [ - 1459 + 1638 ], "_set": [ - 1470 + 1649 ], "pk_columns": [ - 1468, + 1647, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1465, + 1644, { "updates": [ - 1482, + 1661, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1506, + 1685, { "_inc": [ - 1500 + 1679 ], "_set": [ - 1511 + 1690 ], "where": [ - 1498, + 1677, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1489, + 1668, { "_inc": [ - 1500 + 1679 ], "_set": [ - 1511 + 1690 ], "pk_columns": [ - 1509, + 1688, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1506, + 1685, { "updates": [ - 1523, + 1702, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1544, + 1723, { "_set": [ - 1550 + 1729 ], "where": [ - 1537, + 1716, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1530, + 1709, { "_set": [ - 1550 + 1729 ], "pk_columns": [ - 1548, + 1727, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1544, + 1723, { "updates": [ - 1554, + 1733, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1569, + 1748, { "_append": [ - 1558 + 1737 ], "_delete_at_path": [ - 1562 + 1741 ], "_delete_elem": [ - 1563 + 1742 ], "_delete_key": [ - 1564 + 1743 ], "_inc": [ - 1565 + 1744 ], "_prepend": [ - 1574 + 1753 ], "_set": [ - 1576 + 1755 ], "where": [ - 1560, + 1739, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1555, + 1734, { "_append": [ - 1558 + 1737 ], "_delete_at_path": [ - 1562 + 1741 ], "_delete_elem": [ - 1563 + 1742 ], "_delete_key": [ - 1564 + 1743 ], "_inc": [ - 1565 + 1744 ], "_prepend": [ - 1574 + 1753 ], "_set": [ - 1576 + 1755 ], "pk_columns": [ - 1573, + 1752, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1569, + 1748, { "updates": [ - 1584, + 1763, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1605, + 1784, { "_inc": [ - 1599 + 1778 ], "_set": [ - 1610 + 1789 ], "where": [ - 1597, + 1776, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1588, + 1767, { "_inc": [ - 1599 + 1778 ], "_set": [ - 1610 + 1789 ], "pk_columns": [ - 1608, + 1787, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1605, + 1784, { "updates": [ - 1622, + 1801, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1646, + 1825, { "_inc": [ - 1640 + 1819 ], "_set": [ - 1651 + 1830 ], "where": [ - 1638, + 1817, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1629, + 1808, { "_inc": [ - 1640 + 1819 ], "_set": [ - 1651 + 1830 ], "pk_columns": [ - 1649, + 1828, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1646, + 1825, { "updates": [ - 1663, + 1842, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1687, + 1866, { "_inc": [ - 1681 + 1860 ], "_set": [ - 1693 + 1872 ], "where": [ - 1679, + 1858, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1670, + 1849, { "_inc": [ - 1681 + 1860 ], "_set": [ - 1693 + 1872 ], "pk_columns": [ - 1691, + 1870, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1687, + 1866, { "updates": [ - 1705, + 1884, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 1720, + 1899, { "_set": [ - 1726 + 1905 ], "where": [ - 1715, + 1894, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 1712, + 1891, { "_set": [ - 1726 + 1905 ], "pk_columns": [ - 1724, + 1903, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 1720, + 1899, { "updates": [ - 1730, + 1909, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 1739, + 1918, { "_set": [ - 1745 + 1924 ], "where": [ - 1734, + 1913, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1731, + 1910, { "_set": [ - 1745 + 1924 ], "pk_columns": [ - 1743, + 1922, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1739, + 1918, { "updates": [ - 1749, + 1928, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1769, + 1948, { "_inc": [ - 1763 + 1942 ], "_set": [ - 1776 + 1955 ], "where": [ - 1761, + 1940, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1750, + 1929, { "_inc": [ - 1763 + 1942 ], "_set": [ - 1776 + 1955 ], "pk_columns": [ - 1772, + 1951, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1769, + 1948, { "updates": [ - 1788, + 1967, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1803, + 1982, { "_set": [ - 1809 + 1988 ], "where": [ - 1798, + 1977, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1795, + 1974, { "_set": [ - 1809 + 1988 ], "pk_columns": [ - 1807, + 1986, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1803, + 1982, { "updates": [ - 1813, + 1992, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1830, + 2009, { "_set": [ - 1838 + 2017 ], "where": [ - 1823, + 2002, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1814, + 1993, { "_set": [ - 1838 + 2017 ], "pk_columns": [ - 1834, + 2013, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1830, + 2009, { "updates": [ - 1842, + 2021, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1860, + 2039, { "_inc": [ - 1854 + 2033 ], "_set": [ - 1866 + 2045 ], "where": [ - 1852, + 2031, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1843, + 2022, { "_inc": [ - 1854 + 2033 ], "_set": [ - 1866 + 2045 ], "pk_columns": [ - 1864, + 2043, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1860, + 2039, { "updates": [ - 1878, + 2057, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1906, + 2085, { "_append": [ - 1891 + 2070 ], "_delete_at_path": [ - 1897 + 2076 ], "_delete_elem": [ - 1898 + 2077 ], "_delete_key": [ - 1899 + 2078 ], "_inc": [ - 1900 + 2079 ], "_prepend": [ - 1910 + 2089 ], "_set": [ - 1912 + 2091 ], "where": [ - 1895, + 2074, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1885, + 2064, { "_append": [ - 1891 + 2070 ], "_delete_at_path": [ - 1897 + 2076 ], "_delete_elem": [ - 1898 + 2077 ], "_delete_key": [ - 1899 + 2078 ], "_inc": [ - 1900 + 2079 ], "_prepend": [ - 1910 + 2089 ], "_set": [ - 1912 + 2091 ], "pk_columns": [ - 1909, + 2088, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1906, + 2085, { "updates": [ - 1924, + 2103, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 1950, + 2129, { "_inc": [ - 1944 + 2123 ], "_set": [ - 1957 + 2136 ], "where": [ - 1942, + 2121, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1931, + 2110, { "_inc": [ - 1944 + 2123 ], "_set": [ - 1957 + 2136 ], "pk_columns": [ - 1953, + 2132, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1950, + 2129, { "updates": [ - 1969, + 2148, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1993, + 2172, { "_inc": [ - 1987 + 2166 ], "_set": [ - 1999 + 2178 ], "where": [ - 1985, + 2164, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1976, + 2155, { "_inc": [ - 1987 + 2166 ], "_set": [ - 1999 + 2178 ], "pk_columns": [ - 1997, + 2176, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1993, + 2172, { "updates": [ - 2011, + 2190, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2041, + 2220, { "_append": [ - 2026 + 2205 ], "_delete_at_path": [ - 2032 + 2211 ], "_delete_elem": [ - 2033 + 2212 ], "_delete_key": [ - 2034 + 2213 ], "_inc": [ - 2035 + 2214 ], "_prepend": [ - 2046 + 2225 ], "_set": [ - 2050 + 2229 ], "where": [ - 2030, + 2209, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2018, + 2197, { "_append": [ - 2026 + 2205 ], "_delete_at_path": [ - 2032 + 2211 ], "_delete_elem": [ - 2033 + 2212 ], "_delete_key": [ - 2034 + 2213 ], "_inc": [ - 2035 + 2214 ], "_prepend": [ - 2046 + 2225 ], "_set": [ - 2050 + 2229 ], "pk_columns": [ - 2045, + 2224, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2041, + 2220, { "updates": [ - 2062, + 2241, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2086, + 2265, { "_inc": [ - 2080 + 2259 ], "_set": [ - 2091 + 2270 ], "where": [ - 2078, + 2257, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2069, + 2248, { "_inc": [ - 2080 + 2259 ], "_set": [ - 2091 + 2270 ], "pk_columns": [ - 2089, + 2268, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2086, + 2265, { "updates": [ - 2103, + 2282, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2124, + 2303, { "_set": [ - 2129 + 2308 ], "where": [ - 2117, + 2296, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2110, + 2289, { "_set": [ - 2129 + 2308 ], "pk_columns": [ - 2127, + 2306, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2124, + 2303, { "updates": [ - 2133, + 2312, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2151, + 2330, { "_inc": [ - 2145 + 2324 ], "_set": [ - 2157 + 2336 ], "where": [ - 2143, + 2322, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2134, + 2313, { "_inc": [ - 2145 + 2324 ], "_set": [ - 2157 + 2336 ], "pk_columns": [ - 2155, + 2334, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2151, + 2330, { "updates": [ - 2169, + 2348, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2186, + 2365, { "_inc": [ - 2182 + 2361 ], "_set": [ - 2192 + 2371 ], "where": [ - 2180, + 2359, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2176, + 2355, { "_inc": [ - 2182 + 2361 ], "_set": [ - 2192 + 2371 ], "pk_columns": [ - 2190, + 2369, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2186, + 2365, { "updates": [ - 2200, + 2379, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2218, + 2397, { "_set": [ - 2223 + 2402 ], "where": [ - 2211, + 2390, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2204, + 2383, { "_set": [ - 2223 + 2402 ], "pk_columns": [ - 2221, + 2400, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2218, + 2397, { "updates": [ - 2227, + 2406, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2251, + 2430, { "_append": [ - 2236 + 2415 ], "_delete_at_path": [ - 2242 + 2421 ], "_delete_elem": [ - 2243 + 2422 ], "_delete_key": [ - 2244 + 2423 ], "_inc": [ - 2245 + 2424 ], "_prepend": [ - 2255 + 2434 ], "_set": [ - 2259 + 2438 ], "where": [ - 2240, + 2419, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2228, + 2407, { "_append": [ - 2236 + 2415 ], "_delete_at_path": [ - 2242 + 2421 ], "_delete_elem": [ - 2243 + 2422 ], "_delete_key": [ - 2244 + 2423 ], "_inc": [ - 2245 + 2424 ], "_prepend": [ - 2255 + 2434 ], "_set": [ - 2259 + 2438 ], "pk_columns": [ - 2254, + 2433, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2251, + 2430, { "updates": [ - 2271, + 2450, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2286, + 2465, { "_set": [ - 2291 + 2470 ], "where": [ - 2281, + 2460, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2278, + 2457, { "_set": [ - 2291 + 2470 ], "pk_columns": [ - 2289, + 2468, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2286, + 2465, { "updates": [ - 2295, + 2474, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2313, + 2492, { "_inc": [ - 2307 + 2486 ], "_set": [ - 2319 + 2498 ], "where": [ - 2305, + 2484, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2296, + 2475, { "_inc": [ - 2307 + 2486 ], "_set": [ - 2319 + 2498 ], "pk_columns": [ - 2317, + 2496, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2313, + 2492, { "updates": [ - 2331, + 2510, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2346, + 2525, { "_set": [ - 2351 + 2530 ], "where": [ - 2341, + 2520, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2338, + 2517, { "_set": [ - 2351 + 2530 ], "pk_columns": [ - 2349, + 2528, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2346, + 2525, { "updates": [ - 2355, + 2534, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2378, + 2557, { "_append": [ - 2364 + 2543 ], "_delete_at_path": [ - 2369 + 2548 ], "_delete_elem": [ - 2370 + 2549 ], "_delete_key": [ - 2371 + 2550 ], "_inc": [ - 2372 + 2551 ], "_prepend": [ - 2380 + 2559 ], "_set": [ - 2384 + 2563 ], "where": [ - 2368, + 2547, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2378, + 2557, { "updates": [ - 2395, + 2574, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2412, + 2591, { "_inc": [ - 2408 + 2587 ], "_set": [ - 2417 + 2596 ], "where": [ - 2406, + 2585, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2402, + 2581, { "_inc": [ - 2408 + 2587 ], "_set": [ - 2417 + 2596 ], "pk_columns": [ - 2415, + 2594, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2412, + 2591, { "updates": [ - 2425, + 2604, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2452, + 2631, { "_append": [ - 2437 + 2616 ], "_delete_at_path": [ - 2443 + 2622 ], "_delete_elem": [ - 2444 + 2623 ], "_delete_key": [ - 2445 + 2624 ], "_inc": [ - 2446 + 2625 ], "_prepend": [ - 2456 + 2635 ], "_set": [ - 2460 + 2639 ], "where": [ - 2441, + 2620, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2429, + 2608, { "_append": [ - 2437 + 2616 ], "_delete_at_path": [ - 2443 + 2622 ], "_delete_elem": [ - 2444 + 2623 ], "_delete_key": [ - 2445 + 2624 ], "_inc": [ - 2446 + 2625 ], "_prepend": [ - 2456 + 2635 ], "_set": [ - 2460 + 2639 ], "pk_columns": [ - 2455, + 2634, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2452, + 2631, { "updates": [ - 2472, + 2651, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2499, + 2678, { "_inc": [ - 2493 + 2672 ], "_set": [ - 2504 + 2683 ], "where": [ - 2491, + 2670, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2482, + 2661, { "_inc": [ - 2493 + 2672 ], "_set": [ - 2504 + 2683 ], "pk_columns": [ - 2502, + 2681, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2499, + 2678, { "updates": [ - 2516, + 2695, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2533, + 2712, { "_inc": [ - 2529 + 2708 ], "_set": [ - 2539 + 2718 ], "where": [ - 2527, + 2706, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2523, + 2702, { "_inc": [ - 2529 + 2708 ], "_set": [ - 2539 + 2718 ], "pk_columns": [ - 2537, + 2716, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2533, + 2712, { "updates": [ - 2547, + 2726, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2561, + 2740, { "_inc": [ - 2557 + 2736 ], "_set": [ - 2566 + 2745 ], "where": [ - 2555, + 2734, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2551, + 2730, { "_inc": [ - 2557 + 2736 ], "_set": [ - 2566 + 2745 ], "pk_columns": [ - 2564, + 2743, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2561, + 2740, { "updates": [ - 2574, + 2753, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2595, + 2774, { "_inc": [ - 2589 + 2768 ], "_set": [ - 2600 + 2779 ], "where": [ - 2587, + 2766, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2578, + 2757, { "_inc": [ - 2589 + 2768 ], "_set": [ - 2600 + 2779 ], "pk_columns": [ - 2598, + 2777, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2595, + 2774, { "updates": [ - 2612, + 2791, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2638, + 2817, { "_inc": [ - 2632 + 2811 ], "_set": [ - 2645 + 2824 ], "where": [ - 2630, + 2809, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2619, + 2798, { "_inc": [ - 2632 + 2811 ], "_set": [ - 2645 + 2824 ], "pk_columns": [ - 2641, + 2820, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2638, + 2817, { "updates": [ - 2657, + 2836, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2699, + 2878, { "_inc": [ - 2693 + 2872 ], "_set": [ - 2704 + 2883 ], "where": [ - 2691, + 2870, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2682, + 2861, { "_inc": [ - 2693 + 2872 ], "_set": [ - 2704 + 2883 ], "pk_columns": [ - 2702, + 2881, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2699, + 2878, { "updates": [ - 2716, + 2895, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2733, + 2912, { "_inc": [ - 2729 + 2908 ], "_set": [ - 2738 + 2917 ], "where": [ - 2727, + 2906, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2723, + 2902, { "_inc": [ - 2729 + 2908 ], "_set": [ - 2738 + 2917 ], "pk_columns": [ - 2736, + 2915, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2733, + 2912, { "updates": [ - 2746, + 2925, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2767, + 2946, { "_inc": [ - 2761 + 2940 ], "_set": [ - 2772 + 2951 ], "where": [ - 2759, + 2938, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2750, + 2929, { "_inc": [ - 2761 + 2940 ], "_set": [ - 2772 + 2951 ], "pk_columns": [ - 2770, + 2949, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2767, + 2946, { "updates": [ - 2784, + 2963, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2810, + 2989, { "_inc": [ - 2804 + 2983 ], "_set": [ - 2817 + 2996 ], "where": [ - 2802, + 2981, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2791, + 2970, { "_inc": [ - 2804 + 2983 ], "_set": [ - 2817 + 2996 ], "pk_columns": [ - 2813, + 2992, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2810, + 2989, { "updates": [ - 2829, + 3008, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2896, + 3075, { "_inc": [ - 2890 + 3069 ], "_set": [ - 2903 + 3082 ], "where": [ - 2847, + 3026, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2836, + 3015, { "_inc": [ - 2890 + 3069 ], "_set": [ - 2903 + 3082 ], "pk_columns": [ - 2899, + 3078, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2865, + 3044, { "_inc": [ - 2859 + 3038 ], "_set": [ - 2870 + 3049 ], "where": [ - 2857, + 3036, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2848, + 3027, { "_inc": [ - 2859 + 3038 ], "_set": [ - 2870 + 3049 ], "pk_columns": [ - 2868, + 3047, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2865, + 3044, { "updates": [ - 2882, + 3061, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2896, + 3075, { "updates": [ - 2915, + 3094, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2931, + 3110, { "_inc": [ - 2927 + 3106 ], "_set": [ - 2934 + 3113 ], "where": [ - 2926, + 3105, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2931, + 3110, { "updates": [ - 2941, + 3120, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2962, + 3141, { "_inc": [ - 2956 + 3135 ], "_set": [ - 2967 + 3146 ], "where": [ - 2954, + 3133, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2945, + 3124, { "_inc": [ - 2956 + 3135 ], "_set": [ - 2967 + 3146 ], "pk_columns": [ - 2965, + 3144, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2962, + 3141, { "updates": [ - 2979, + 3158, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3054, + 3233, { "_inc": [ - 3048 + 3227 ], "_set": [ - 3059 + 3238 ], "where": [ - 3046, + 3225, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3037, + 3216, { "_inc": [ - 3048 + 3227 ], "_set": [ - 3059 + 3238 ], "pk_columns": [ - 3057, + 3236, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3054, + 3233, { "updates": [ - 3071, + 3250, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3113, + 3292, { "_inc": [ - 3107 + 3286 ], "_set": [ - 3118 + 3297 ], "where": [ - 3105, + 3284, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3096, + 3275, { "_inc": [ - 3107 + 3286 ], "_set": [ - 3118 + 3297 ], "pk_columns": [ - 3116, + 3295, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3113, + 3292, { "updates": [ - 3130, + 3309, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3154, + 3333, { "_inc": [ - 3148 + 3327 ], "_set": [ - 3159 + 3338 ], "where": [ - 3146, + 3325, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3137, + 3316, { "_inc": [ - 3148 + 3327 ], "_set": [ - 3159 + 3338 ], "pk_columns": [ - 3157, + 3336, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3154, + 3333, { "updates": [ - 3171, + 3350, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3205, + 3384, { "_inc": [ - 3199 + 3378 ], "_set": [ - 3218 + 3397 ], "where": [ - 3197, + 3376, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3178, + 3357, { "_inc": [ - 3199 + 3378 ], "_set": [ - 3218 + 3397 ], "pk_columns": [ - 3208, + 3387, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3205, + 3384, { "updates": [ - 3230, + 3409, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3247, + 3426, { "_inc": [ - 3243 + 3422 ], "_set": [ - 3253 + 3432 ], "where": [ - 3241, + 3420, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3237, + 3416, { "_inc": [ - 3243 + 3422 ], "_set": [ - 3253 + 3432 ], "pk_columns": [ - 3251, + 3430, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3247, + 3426, { "updates": [ - 3261, + 3440, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3279, + 3458, { "_append": [ - 3268 + 3447 ], "_delete_at_path": [ - 3272 + 3451 ], "_delete_elem": [ - 3273 + 3452 ], "_delete_key": [ - 3274 + 3453 ], "_inc": [ - 3275 + 3454 ], "_prepend": [ - 3283 + 3462 ], "_set": [ - 3285 + 3464 ], "where": [ - 3270, + 3449, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3265, + 3444, { "_append": [ - 3268 + 3447 ], "_delete_at_path": [ - 3272 + 3451 ], "_delete_elem": [ - 3273 + 3452 ], "_delete_key": [ - 3274 + 3453 ], "_inc": [ - 3275 + 3454 ], "_prepend": [ - 3283 + 3462 ], "_set": [ - 3285 + 3464 ], "pk_columns": [ - 3282, + 3461, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3279, + 3458, { "updates": [ - 3293, + 3472, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3307, + 3486, { "_inc": [ - 3303 + 3482 ], "_set": [ - 3312 + 3491 ], "where": [ - 3301, + 3480, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3297, + 3476, { "_inc": [ - 3303 + 3482 ], "_set": [ - 3312 + 3491 ], "pk_columns": [ - 3310, + 3489, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3307, + 3486, { "updates": [ - 3320, + 3499, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3341, + 3520, { "_inc": [ - 3335 + 3514 ], "_set": [ - 3346 + 3525 ], "where": [ - 3333, + 3512, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3324, + 3503, { "_inc": [ - 3335 + 3514 ], "_set": [ - 3346 + 3525 ], "pk_columns": [ - 3344, + 3523, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3341, + 3520, { "updates": [ - 3358, + 3537, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3382, + 3561, { "_inc": [ - 3376 + 3555 ], "_set": [ - 3387 + 3566 ], "where": [ - 3374, + 3553, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3365, + 3544, { "_inc": [ - 3376 + 3555 ], "_set": [ - 3387 + 3566 ], "pk_columns": [ - 3385, + 3564, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3382, + 3561, { "updates": [ - 3399, + 3578, "[player_utility_updates!]!" ] } ], "update_players": [ - 3449, + 3628, { "_inc": [ - 3445 + 3624 ], "_set": [ - 3455 + 3634 ], "where": [ - 3443, + 3622, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3439, + 3618, { "_inc": [ - 3445 + 3624 ], "_set": [ - 3455 + 3634 ], "pk_columns": [ - 3453, + 3632, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3449, + 3628, { "updates": [ - 3463, + 3642, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3477, + 3656, { "_inc": [ - 3473 + 3652 ], "_set": [ - 3482 + 3661 ], "where": [ - 3471, + 3650, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3467, + 3646, { "_inc": [ - 3473 + 3652 ], "_set": [ - 3482 + 3661 ], "pk_columns": [ - 3480, + 3659, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3477, + 3656, { "updates": [ - 3490, + 3669, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3508, + 3687, { "_inc": [ - 3504 + 3683 ], "_set": [ - 3514 + 3693 ], "where": [ - 3502, + 3681, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3498, + 3677, { "_inc": [ - 3504 + 3683 ], "_set": [ - 3514 + 3693 ], "pk_columns": [ - 3512, + 3691, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3508, + 3687, { "updates": [ - 3522, + 3701, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3535, + 3714, { "_set": [ - 3541 + 3720 ], "where": [ - 3530, + 3709, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3526, + 3705, { "_set": [ - 3541 + 3720 ], "pk_columns": [ - 3539, + 3718, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3535, + 3714, { "updates": [ - 3549, + 3728, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3572, + 3751, { "_inc": [ - 3566 + 3745 ], "_set": [ - 3580 + 3759 ], "where": [ - 3564, + 3743, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3553, + 3732, { "_inc": [ - 3566 + 3745 ], "_set": [ - 3580 + 3759 ], "pk_columns": [ - 3576, + 3755, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3572, + 3751, { "updates": [ - 3592, + 3771, "[servers_updates!]!" ] } ], "update_settings": [ - 3607, + 3786, { "_set": [ - 3612 + 3791 ], "where": [ - 3602, + 3781, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3599, + 3778, { "_set": [ - 3612 + 3791 ], "pk_columns": [ - 3610, + 3789, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3607, + 3786, { "updates": [ - 3616, + 3795, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3633, + 3812, { "_set": [ - 3638 + 3817 ], "where": [ - 3626, + 3805, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3619, + 3798, { "_set": [ - 3638 + 3817 ], "pk_columns": [ - 3636, + 3815, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3633, + 3812, { "updates": [ - 3642, + 3821, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3653, + 3832, { "_inc": [ - 3649 + 3828 ], "_set": [ - 3659 + 3838 ], "where": [ - 3647, + 3826, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3643, + 3822, { "_inc": [ - 3649 + 3828 ], "_set": [ - 3659 + 3838 ], "pk_columns": [ - 3657, + 3836, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3653, + 3832, { "updates": [ - 3667, + 3846, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3681, + 3860, { "_inc": [ - 3677 + 3856 ], "_set": [ - 3686 + 3865 ], "where": [ - 3675, + 3854, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3671, + 3850, { "_inc": [ - 3677 + 3856 ], "_set": [ - 3686 + 3865 ], "pk_columns": [ - 3684, + 3863, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3681, + 3860, { "updates": [ - 3694, + 3873, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3715, + 3894, { "_inc": [ - 3709 + 3888 ], "_set": [ - 3720 + 3899 ], "where": [ - 3707, + 3886, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3698, + 3877, { "_inc": [ - 3709 + 3888 ], "_set": [ - 3720 + 3899 ], "pk_columns": [ - 3718, + 3897, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3715, + 3894, { "updates": [ - 3732, + 3911, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3758, + 3937, { "_inc": [ - 3752 + 3931 ], "_set": [ - 3765 + 3944 ], "where": [ - 3750, + 3929, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3739, + 3918, { "_inc": [ - 3752 + 3931 ], "_set": [ - 3765 + 3944 ], "pk_columns": [ - 3761, + 3940, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3758, + 3937, { "updates": [ - 3777, + 3956, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3794, + 3973, { "_inc": [ - 3790 + 3969 ], "_set": [ - 3799 + 3978 ], "where": [ - 3788, + 3967, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3784, + 3963, { "_inc": [ - 3790 + 3969 ], "_set": [ - 3799 + 3978 ], "pk_columns": [ - 3797, + 3976, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3794, + 3973, { "updates": [ - 3807, + 3986, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 3827, + 4006, { "_set": [ - 3834 + 4013 ], "where": [ - 3820, + 3999, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3811, + 3990, { "_set": [ - 3834 + 4013 ], "pk_columns": [ - 3830, + 4009, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 3827, + 4006, { "updates": [ - 3838, + 4017, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 3856, + 4035, { "_inc": [ - 3850 + 4029 ], "_set": [ - 3861 + 4040 ], "where": [ - 3848, + 4027, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 3839, + 4018, { "_inc": [ - 3850 + 4029 ], "_set": [ - 3861 + 4040 ], "pk_columns": [ - 3859, + 4038, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 3856, + 4035, { "updates": [ - 3873, + 4052, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 3899, + 4078, { "_inc": [ - 3893 + 4072 ], "_set": [ - 3907 + 4086 ], "where": [ - 3891, + 4070, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 3880, + 4059, { "_inc": [ - 3893 + 4072 ], "_set": [ - 3907 + 4086 ], "pk_columns": [ - 3903, + 4082, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 3899, + 4078, { "updates": [ - 3919, + 4098, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 3936, + 4115, { "_inc": [ - 3932 + 4111 ], "_set": [ - 3942 + 4121 ], "where": [ - 3930, + 4109, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 3926, + 4105, { "_inc": [ - 3932 + 4111 ], "_set": [ - 3942 + 4121 ], "pk_columns": [ - 3940, + 4119, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 3936, + 4115, { "updates": [ - 3950, + 4129, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 3964, + 4143, { "_inc": [ - 3960 + 4139 ], "_set": [ - 3969 + 4148 ], "where": [ - 3958, + 4137, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 3954, + 4133, { "_inc": [ - 3960 + 4139 ], "_set": [ - 3969 + 4148 ], "pk_columns": [ - 3967, + 4146, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 3964, + 4143, { "updates": [ - 3977, + 4156, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 3998, + 4177, { "_inc": [ - 3992 + 4171 ], "_set": [ - 4004 + 4183 ], "where": [ - 3990, + 4169, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 3981, + 4160, { "_inc": [ - 3992 + 4171 ], "_set": [ - 4004 + 4183 ], "pk_columns": [ - 4002, + 4181, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 3998, + 4177, { "updates": [ - 4016, + 4195, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4045, + 4224, { "_inc": [ - 4039 + 4218 ], "_set": [ - 4053 + 4232 ], "where": [ - 4037, + 4216, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4026, + 4205, { "_inc": [ - 4039 + 4218 ], "_set": [ - 4053 + 4232 ], "pk_columns": [ - 4049, + 4228, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4045, + 4224, { "updates": [ - 4065, + 4244, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4089, + 4268, { "_inc": [ - 4083 + 4262 ], "_set": [ - 4094 + 4273 ], "where": [ - 4081, + 4260, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4072, + 4251, { "_inc": [ - 4083 + 4262 ], "_set": [ - 4094 + 4273 ], "pk_columns": [ - 4092, + 4271, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4089, + 4268, { "updates": [ - 4106, + 4285, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4130, + 4309, { "_inc": [ - 4124 + 4303 ], "_set": [ - 4135 + 4314 ], "where": [ - 4122, + 4301, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4113, + 4292, { "_inc": [ - 4124 + 4303 ], "_set": [ - 4135 + 4314 ], "pk_columns": [ - 4133, + 4312, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4130, + 4309, { "updates": [ - 4147, + 4326, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4177, + 4356, { "_append": [ - 4162 + 4341 ], "_delete_at_path": [ - 4168 + 4347 ], "_delete_elem": [ - 4169 + 4348 ], "_delete_key": [ - 4170 + 4349 ], "_inc": [ - 4171 + 4350 ], "_prepend": [ - 4182 + 4361 ], "_set": [ - 4186 + 4365 ], "where": [ - 4166, + 4345, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4154, + 4333, { "_append": [ - 4162 + 4341 ], "_delete_at_path": [ - 4168 + 4347 ], "_delete_elem": [ - 4169 + 4348 ], "_delete_key": [ - 4170 + 4349 ], "_inc": [ - 4171 + 4350 ], "_prepend": [ - 4182 + 4361 ], "_set": [ - 4186 + 4365 ], "pk_columns": [ - 4181, + 4360, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4177, + 4356, { "updates": [ - 4198, + 4377, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4222, + 4401, { "_inc": [ - 4216 + 4395 ], "_set": [ - 4227 + 4406 ], "where": [ - 4214, + 4393, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4205, + 4384, { "_inc": [ - 4216 + 4395 ], "_set": [ - 4227 + 4406 ], "pk_columns": [ - 4225, + 4404, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4222, + 4401, { "updates": [ - 4239, + 4418, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4263, + 4442, { "_inc": [ - 4257 + 4436 ], "_set": [ - 4268 + 4447 ], "where": [ - 4255, + 4434, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4246, + 4425, { "_inc": [ - 4257 + 4436 ], "_set": [ - 4268 + 4447 ], "pk_columns": [ - 4266, + 4445, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4263, + 4442, { "updates": [ - 4280, + 4459, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4304, + 4483, { "_inc": [ - 4298 + 4477 ], "_set": [ - 4310 + 4489 ], "where": [ - 4296, + 4475, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4287, + 4466, { "_inc": [ - 4298 + 4477 ], "_set": [ - 4310 + 4489 ], "pk_columns": [ - 4308, + 4487, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4304, + 4483, { "updates": [ - 4322, + 4501, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4348, + 4527, { "_inc": [ - 4342 + 4521 ], "_set": [ - 4355 + 4534 ], "where": [ - 4340, + 4519, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4329, + 4508, { "_inc": [ - 4342 + 4521 ], "_set": [ - 4355 + 4534 ], "pk_columns": [ - 4351, + 4530, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4348, + 4527, { "updates": [ - 4367, + 4546, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4391, + 4570, { "_inc": [ - 4385 + 4564 ], "_set": [ - 4397 + 4576 ], "where": [ - 4383, + 4562, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4374, + 4553, { "_inc": [ - 4385 + 4564 ], "_set": [ - 4397 + 4576 ], "pk_columns": [ - 4395, + 4574, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4391, + 4570, { "updates": [ - 4409, + 4588, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4435, + 4614, { "_inc": [ - 4429 + 4608 ], "_set": [ - 4443 + 4622 ], "where": [ - 4427, + 4606, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4416, + 4595, { "_inc": [ - 4429 + 4608 ], "_set": [ - 4443 + 4622 ], "pk_columns": [ - 4439, + 4618, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4435, + 4614, { "updates": [ - 4455, + 4634, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4576, + 4806, { "_inc": [ - 4572 + 4802 ], "_set": [ - 4580 + 4810 ], "where": [ - 4571, + 4801, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4576, + 4806, { "updates": [ - 4587, + 4817, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4687, + 4917, { "_inc": [ - 4683 + 4913 ], "_set": [ - 4690 + 4920 ], "where": [ - 4682, + 4912, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4687, + 4917, { "updates": [ - 4697, + 4927, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 4909, + 5139, { "_inc": [ - 4903 + 5133 ], "_set": [ - 4912 + 5142 ], "where": [ - 4902, + 5132, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 4909, + 5139, { "updates": [ - 4923, + 5153, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5068, + 5298, { "_set": [ - 5073 + 5303 ], "where": [ - 5062, + 5292, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5068, + 5298, { "updates": [ - 5076, + 5306, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5162, + 5392, { "_inc": [ - 5156 + 5386 ], "_set": [ - 5176 + 5406 ], "where": [ - 5154, + 5384, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5135, + 5365, { "_inc": [ - 5156 + 5386 ], "_set": [ - 5176 + 5406 ], "pk_columns": [ - 5166, + 5396, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5162, + 5392, { "updates": [ - 5188, + 5418, "[v_team_stage_results_updates!]!" ] } @@ -147087,7 +151756,7 @@ export default { 81, { "game_server_node_id": [ - 4462, + 4641, "uuid!" ] } @@ -147096,10 +151765,10 @@ export default { 91, { "match_map_demo_id": [ - 4462 + 4641 ], "match_map_id": [ - 4462, + 4641, "uuid!" ] } @@ -147177,11 +151846,11 @@ export default { 92, { "map_id": [ - 4462, + 4641, "uuid!" ], "map_pool_id": [ - 4462, + 4641, "uuid!" ] } @@ -147250,7 +151919,7 @@ export default { 111, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -147319,7 +151988,7 @@ export default { 152, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -147388,7 +152057,7 @@ export default { 185, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -147457,7 +152126,7 @@ export default { 237, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -147526,7 +152195,7 @@ export default { 264, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -147595,7 +152264,7 @@ export default { 309, { "draft_game_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -147668,7 +152337,7 @@ export default { 354, { "id": [ - 4462, + 4641, "uuid!" ] } @@ -148095,19 +152764,88 @@ export default { "Int!" ], "cursor": [ - 521, - "[e_draft_game_status_stream_cursor_input]!" + 521, + "[e_draft_game_status_stream_cursor_input]!" + ], + "where": [ + 507 + ] + } + ], + "e_event_status": [ + 525, + { + "distinct_on": [ + 539, + "[e_event_status_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 537, + "[e_event_status_order_by!]" + ], + "where": [ + 528 + ] + } + ], + "e_event_status_aggregate": [ + 526, + { + "distinct_on": [ + 539, + "[e_event_status_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 537, + "[e_event_status_order_by!]" + ], + "where": [ + 528 + ] + } + ], + "e_event_status_by_pk": [ + 525, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_event_status_stream": [ + 525, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 541, + "[e_event_status_stream_cursor_input]!" ], "where": [ - 507 + 528 ] } ], "e_friend_status": [ - 525, + 545, { "distinct_on": [ - 540, + 560, "[e_friend_status_select_column!]" ], "limit": [ @@ -148117,19 +152855,19 @@ export default { 38 ], "order_by": [ - 538, + 558, "[e_friend_status_order_by!]" ], "where": [ - 528 + 548 ] } ], "e_friend_status_aggregate": [ - 526, + 546, { "distinct_on": [ - 540, + 560, "[e_friend_status_select_column!]" ], "limit": [ @@ -148139,16 +152877,16 @@ export default { 38 ], "order_by": [ - 538, + 558, "[e_friend_status_order_by!]" ], "where": [ - 528 + 548 ] } ], "e_friend_status_by_pk": [ - 525, + 545, { "value": [ 78, @@ -148157,26 +152895,26 @@ export default { } ], "e_friend_status_stream": [ - 525, + 545, { "batch_size": [ 38, "Int!" ], "cursor": [ - 542, + 562, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 528 + 548 ] } ], "e_game_cfg_types": [ - 546, + 566, { "distinct_on": [ - 560, + 580, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -148186,19 +152924,19 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 569 ] } ], "e_game_cfg_types_aggregate": [ - 547, + 567, { "distinct_on": [ - 560, + 580, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -148208,16 +152946,16 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_game_cfg_types_order_by!]" ], "where": [ - 549 + 569 ] } ], "e_game_cfg_types_by_pk": [ - 546, + 566, { "value": [ 78, @@ -148226,26 +152964,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 546, + 566, { "batch_size": [ 38, "Int!" ], "cursor": [ - 562, + 582, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 549 + 569 ] } ], "e_game_server_node_statuses": [ - 566, + 586, { "distinct_on": [ - 581, + 601, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -148255,19 +152993,19 @@ export default { 38 ], "order_by": [ - 579, + 599, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_server_node_statuses_aggregate": [ - 567, + 587, { "distinct_on": [ - 581, + 601, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -148277,16 +153015,16 @@ export default { 38 ], "order_by": [ - 579, + 599, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_server_node_statuses_by_pk": [ - 566, + 586, { "value": [ 78, @@ -148295,26 +153033,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 566, + 586, { "batch_size": [ 38, "Int!" ], "cursor": [ - 583, + 603, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 569 + 589 ] } ], "e_league_movement_types": [ - 587, + 607, { "distinct_on": [ - 602, + 622, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -148324,19 +153062,19 @@ export default { 38 ], "order_by": [ - 600, + 620, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 610 ] } ], "e_league_movement_types_aggregate": [ - 588, + 608, { "distinct_on": [ - 602, + 622, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -148346,16 +153084,16 @@ export default { 38 ], "order_by": [ - 600, + 620, "[e_league_movement_types_order_by!]" ], "where": [ - 590 + 610 ] } ], "e_league_movement_types_by_pk": [ - 587, + 607, { "value": [ 78, @@ -148364,26 +153102,26 @@ export default { } ], "e_league_movement_types_stream": [ - 587, + 607, { "batch_size": [ 38, "Int!" ], "cursor": [ - 604, + 624, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 590 + 610 ] } ], "e_league_proposal_statuses": [ - 608, + 628, { "distinct_on": [ - 623, + 643, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -148393,19 +153131,19 @@ export default { 38 ], "order_by": [ - 621, + 641, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 631 ] } ], "e_league_proposal_statuses_aggregate": [ - 609, + 629, { "distinct_on": [ - 623, + 643, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -148415,16 +153153,16 @@ export default { 38 ], "order_by": [ - 621, + 641, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 611 + 631 ] } ], "e_league_proposal_statuses_by_pk": [ - 608, + 628, { "value": [ 78, @@ -148433,26 +153171,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 608, + 628, { "batch_size": [ 38, "Int!" ], "cursor": [ - 625, + 645, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 611 + 631 ] } ], "e_league_registration_statuses": [ - 629, + 649, { "distinct_on": [ - 644, + 664, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -148462,19 +153200,19 @@ export default { 38 ], "order_by": [ - 642, + 662, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 652 ] } ], "e_league_registration_statuses_aggregate": [ - 630, + 650, { "distinct_on": [ - 644, + 664, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -148484,16 +153222,16 @@ export default { 38 ], "order_by": [ - 642, + 662, "[e_league_registration_statuses_order_by!]" ], "where": [ - 632 + 652 ] } ], "e_league_registration_statuses_by_pk": [ - 629, + 649, { "value": [ 78, @@ -148502,26 +153240,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 629, + 649, { "batch_size": [ 38, "Int!" ], "cursor": [ - 646, + 666, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 632 + 652 ] } ], "e_league_season_statuses": [ - 650, + 670, { "distinct_on": [ - 665, + 685, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -148531,19 +153269,19 @@ export default { 38 ], "order_by": [ - 663, + 683, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 673 ] } ], "e_league_season_statuses_aggregate": [ - 651, + 671, { "distinct_on": [ - 665, + 685, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -148553,16 +153291,16 @@ export default { 38 ], "order_by": [ - 663, + 683, "[e_league_season_statuses_order_by!]" ], "where": [ - 653 + 673 ] } ], "e_league_season_statuses_by_pk": [ - 650, + 670, { "value": [ 78, @@ -148571,26 +153309,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 650, + 670, { "batch_size": [ 38, "Int!" ], "cursor": [ - 667, + 687, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 653 + 673 ] } ], "e_lobby_access": [ - 671, + 691, { "distinct_on": [ - 686, + 706, "[e_lobby_access_select_column!]" ], "limit": [ @@ -148600,19 +153338,19 @@ export default { 38 ], "order_by": [ - 684, + 704, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 694 ] } ], "e_lobby_access_aggregate": [ - 672, + 692, { "distinct_on": [ - 686, + 706, "[e_lobby_access_select_column!]" ], "limit": [ @@ -148622,16 +153360,16 @@ export default { 38 ], "order_by": [ - 684, + 704, "[e_lobby_access_order_by!]" ], "where": [ - 674 + 694 ] } ], "e_lobby_access_by_pk": [ - 671, + 691, { "value": [ 78, @@ -148640,26 +153378,26 @@ export default { } ], "e_lobby_access_stream": [ - 671, + 691, { "batch_size": [ 38, "Int!" ], "cursor": [ - 688, + 708, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 674 + 694 ] } ], "e_lobby_player_status": [ - 692, + 712, { "distinct_on": [ - 706, + 726, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -148669,19 +153407,19 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 715 ] } ], "e_lobby_player_status_aggregate": [ - 693, + 713, { "distinct_on": [ - 706, + 726, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -148691,16 +153429,16 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_player_status_order_by!]" ], "where": [ - 695 + 715 ] } ], "e_lobby_player_status_by_pk": [ - 692, + 712, { "value": [ 78, @@ -148709,26 +153447,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 692, + 712, { "batch_size": [ 38, "Int!" ], "cursor": [ - 708, + 728, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 695 + 715 ] } ], "e_map_pool_types": [ - 712, + 732, { "distinct_on": [ - 727, + 747, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -148738,19 +153476,19 @@ export default { 38 ], "order_by": [ - 725, + 745, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_map_pool_types_aggregate": [ - 713, + 733, { "distinct_on": [ - 727, + 747, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -148760,16 +153498,16 @@ export default { 38 ], "order_by": [ - 725, + 745, "[e_map_pool_types_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_map_pool_types_by_pk": [ - 712, + 732, { "value": [ 78, @@ -148778,26 +153516,26 @@ export default { } ], "e_map_pool_types_stream": [ - 712, + 732, { "batch_size": [ 38, "Int!" ], "cursor": [ - 729, + 749, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 715 + 735 ] } ], "e_match_clip_visibility": [ - 733, + 753, { "distinct_on": [ - 747, + 767, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -148807,19 +153545,19 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 756 ] } ], "e_match_clip_visibility_aggregate": [ - 734, + 754, { "distinct_on": [ - 747, + 767, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -148829,16 +153567,16 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_match_clip_visibility_order_by!]" ], "where": [ - 736 + 756 ] } ], "e_match_clip_visibility_by_pk": [ - 733, + 753, { "value": [ 78, @@ -148847,26 +153585,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 733, + 753, { "batch_size": [ 38, "Int!" ], "cursor": [ - 749, + 769, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 736 + 756 ] } ], "e_match_map_status": [ - 753, + 773, { "distinct_on": [ - 768, + 788, "[e_match_map_status_select_column!]" ], "limit": [ @@ -148876,19 +153614,19 @@ export default { 38 ], "order_by": [ - 766, + 786, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_map_status_aggregate": [ - 754, + 774, { "distinct_on": [ - 768, + 788, "[e_match_map_status_select_column!]" ], "limit": [ @@ -148898,16 +153636,16 @@ export default { 38 ], "order_by": [ - 766, + 786, "[e_match_map_status_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_map_status_by_pk": [ - 753, + 773, { "value": [ 78, @@ -148916,26 +153654,26 @@ export default { } ], "e_match_map_status_stream": [ - 753, + 773, { "batch_size": [ 38, "Int!" ], "cursor": [ - 770, + 790, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 756 + 776 ] } ], "e_match_mode": [ - 774, + 794, { "distinct_on": [ - 788, + 808, "[e_match_mode_select_column!]" ], "limit": [ @@ -148945,19 +153683,19 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_mode_order_by!]" ], "where": [ - 777 + 797 ] } ], "e_match_mode_aggregate": [ - 775, + 795, { "distinct_on": [ - 788, + 808, "[e_match_mode_select_column!]" ], "limit": [ @@ -148967,16 +153705,16 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_mode_order_by!]" ], "where": [ - 777 + 797 ] } ], "e_match_mode_by_pk": [ - 774, + 794, { "value": [ 78, @@ -148985,26 +153723,26 @@ export default { } ], "e_match_mode_stream": [ - 774, + 794, { "batch_size": [ 38, "Int!" ], "cursor": [ - 790, + 810, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 777 + 797 ] } ], "e_match_status": [ - 794, + 814, { "distinct_on": [ - 809, + 829, "[e_match_status_select_column!]" ], "limit": [ @@ -149014,19 +153752,19 @@ export default { 38 ], "order_by": [ - 807, + 827, "[e_match_status_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_status_aggregate": [ - 795, + 815, { "distinct_on": [ - 809, + 829, "[e_match_status_select_column!]" ], "limit": [ @@ -149036,16 +153774,16 @@ export default { 38 ], "order_by": [ - 807, + 827, "[e_match_status_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_status_by_pk": [ - 794, + 814, { "value": [ 78, @@ -149054,26 +153792,26 @@ export default { } ], "e_match_status_stream": [ - 794, + 814, { "batch_size": [ 38, "Int!" ], "cursor": [ - 811, + 831, "[e_match_status_stream_cursor_input]!" ], "where": [ - 797 + 817 ] } ], "e_match_types": [ - 815, + 835, { "distinct_on": [ - 830, + 850, "[e_match_types_select_column!]" ], "limit": [ @@ -149083,19 +153821,19 @@ export default { 38 ], "order_by": [ - 828, + 848, "[e_match_types_order_by!]" ], "where": [ - 818 + 838 ] } ], "e_match_types_aggregate": [ - 816, + 836, { "distinct_on": [ - 830, + 850, "[e_match_types_select_column!]" ], "limit": [ @@ -149105,16 +153843,16 @@ export default { 38 ], "order_by": [ - 828, + 848, "[e_match_types_order_by!]" ], "where": [ - 818 + 838 ] } ], "e_match_types_by_pk": [ - 815, + 835, { "value": [ 78, @@ -149123,26 +153861,26 @@ export default { } ], "e_match_types_stream": [ - 815, + 835, { "batch_size": [ 38, "Int!" ], "cursor": [ - 832, + 852, "[e_match_types_stream_cursor_input]!" ], "where": [ - 818 + 838 ] } ], "e_notification_types": [ - 836, + 856, { "distinct_on": [ - 850, + 870, "[e_notification_types_select_column!]" ], "limit": [ @@ -149152,19 +153890,19 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_notification_types_order_by!]" ], "where": [ - 839 + 859 ] } ], "e_notification_types_aggregate": [ - 837, + 857, { "distinct_on": [ - 850, + 870, "[e_notification_types_select_column!]" ], "limit": [ @@ -149174,16 +153912,16 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_notification_types_order_by!]" ], "where": [ - 839 + 859 ] } ], "e_notification_types_by_pk": [ - 836, + 856, { "value": [ 78, @@ -149192,26 +153930,26 @@ export default { } ], "e_notification_types_stream": [ - 836, + 856, { "batch_size": [ 38, "Int!" ], "cursor": [ - 852, + 872, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 839 + 859 ] } ], "e_objective_types": [ - 856, + 876, { "distinct_on": [ - 870, + 890, "[e_objective_types_select_column!]" ], "limit": [ @@ -149221,19 +153959,19 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_objective_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_objective_types_aggregate": [ - 857, + 877, { "distinct_on": [ - 870, + 890, "[e_objective_types_select_column!]" ], "limit": [ @@ -149243,16 +153981,16 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_objective_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_objective_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -149261,26 +153999,26 @@ export default { } ], "e_objective_types_stream": [ - 856, + 876, { "batch_size": [ 38, "Int!" ], "cursor": [ - 872, + 892, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 859 + 879 ] } ], "e_player_roles": [ - 876, + 896, { "distinct_on": [ - 890, + 910, "[e_player_roles_select_column!]" ], "limit": [ @@ -149290,19 +154028,19 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_player_roles_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_player_roles_aggregate": [ - 877, + 897, { "distinct_on": [ - 890, + 910, "[e_player_roles_select_column!]" ], "limit": [ @@ -149312,16 +154050,16 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_player_roles_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_player_roles_by_pk": [ - 876, + 896, { "value": [ 78, @@ -149330,26 +154068,26 @@ export default { } ], "e_player_roles_stream": [ - 876, + 896, { "batch_size": [ 38, "Int!" ], "cursor": [ - 892, + 912, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 879 + 899 ] } ], "e_plugin_runtimes": [ - 896, + 916, { "distinct_on": [ - 910, + 930, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -149359,19 +154097,19 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_plugin_runtimes_aggregate": [ - 897, + 917, { "distinct_on": [ - 910, + 930, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -149381,16 +154119,16 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_plugin_runtimes_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_plugin_runtimes_by_pk": [ - 896, + 916, { "value": [ 78, @@ -149399,26 +154137,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 896, + 916, { "batch_size": [ 38, "Int!" ], "cursor": [ - 912, + 932, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 899 + 919 ] } ], "e_ready_settings": [ - 916, + 936, { "distinct_on": [ - 930, + 950, "[e_ready_settings_select_column!]" ], "limit": [ @@ -149428,19 +154166,19 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_ready_settings_aggregate": [ - 917, + 937, { "distinct_on": [ - 930, + 950, "[e_ready_settings_select_column!]" ], "limit": [ @@ -149450,16 +154188,16 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_ready_settings_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_ready_settings_by_pk": [ - 916, + 936, { "value": [ 78, @@ -149468,26 +154206,26 @@ export default { } ], "e_ready_settings_stream": [ - 916, + 936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 932, + 952, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 919 + 939 ] } ], "e_sanction_types": [ - 936, + 956, { "distinct_on": [ - 951, + 971, "[e_sanction_types_select_column!]" ], "limit": [ @@ -149497,19 +154235,19 @@ export default { 38 ], "order_by": [ - 949, + 969, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_sanction_types_aggregate": [ - 937, + 957, { "distinct_on": [ - 951, + 971, "[e_sanction_types_select_column!]" ], "limit": [ @@ -149519,16 +154257,16 @@ export default { 38 ], "order_by": [ - 949, + 969, "[e_sanction_types_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_sanction_types_by_pk": [ - 936, + 956, { "value": [ 78, @@ -149537,26 +154275,26 @@ export default { } ], "e_sanction_types_stream": [ - 936, + 956, { "batch_size": [ 38, "Int!" ], "cursor": [ - 953, + 973, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 939 + 959 ] } ], "e_scrim_request_statuses": [ - 957, + 977, { "distinct_on": [ - 971, + 991, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -149566,19 +154304,19 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 980 ] } ], "e_scrim_request_statuses_aggregate": [ - 958, + 978, { "distinct_on": [ - 971, + 991, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -149588,16 +154326,16 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 960 + 980 ] } ], "e_scrim_request_statuses_by_pk": [ - 957, + 977, { "value": [ 78, @@ -149606,26 +154344,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 957, + 977, { "batch_size": [ 38, "Int!" ], "cursor": [ - 973, + 993, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 960 + 980 ] } ], "e_server_types": [ - 977, + 997, { "distinct_on": [ - 991, + 1011, "[e_server_types_select_column!]" ], "limit": [ @@ -149635,19 +154373,19 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_server_types_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_server_types_aggregate": [ - 978, + 998, { "distinct_on": [ - 991, + 1011, "[e_server_types_select_column!]" ], "limit": [ @@ -149657,16 +154395,16 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_server_types_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_server_types_by_pk": [ - 977, + 997, { "value": [ 78, @@ -149675,26 +154413,26 @@ export default { } ], "e_server_types_stream": [ - 977, + 997, { "batch_size": [ 38, "Int!" ], "cursor": [ - 993, + 1013, "[e_server_types_stream_cursor_input]!" ], "where": [ - 980 + 1000 ] } ], "e_sides": [ - 997, + 1017, { "distinct_on": [ - 1011, + 1031, "[e_sides_select_column!]" ], "limit": [ @@ -149704,19 +154442,19 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_sides_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_sides_aggregate": [ - 998, + 1018, { "distinct_on": [ - 1011, + 1031, "[e_sides_select_column!]" ], "limit": [ @@ -149726,16 +154464,16 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_sides_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_sides_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -149744,26 +154482,26 @@ export default { } ], "e_sides_stream": [ - 997, + 1017, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1013, + 1033, "[e_sides_stream_cursor_input]!" ], "where": [ - 1000 + 1020 ] } ], "e_system_alert_types": [ - 1017, + 1037, { "distinct_on": [ - 1031, + 1051, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -149773,19 +154511,19 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_system_alert_types_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1031, + 1051, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -149795,16 +154533,16 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_system_alert_types_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_system_alert_types_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -149813,26 +154551,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1017, + 1037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1033, + 1053, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1020 + 1040 ] } ], "e_team_roles": [ - 1037, + 1057, { "distinct_on": [ - 1052, + 1072, "[e_team_roles_select_column!]" ], "limit": [ @@ -149842,19 +154580,19 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_team_roles_aggregate": [ - 1038, + 1058, { "distinct_on": [ - 1052, + 1072, "[e_team_roles_select_column!]" ], "limit": [ @@ -149864,16 +154602,16 @@ export default { 38 ], "order_by": [ - 1050, + 1070, "[e_team_roles_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_team_roles_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -149882,26 +154620,26 @@ export default { } ], "e_team_roles_stream": [ - 1037, + 1057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1054, + 1074, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1040 + 1060 ] } ], "e_team_roster_statuses": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149911,19 +154649,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_team_roster_statuses_aggregate": [ - 1059, + 1079, { "distinct_on": [ - 1072, + 1092, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -149933,16 +154671,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1061 + 1081 ] } ], "e_team_roster_statuses_by_pk": [ - 1058, + 1078, { "value": [ 78, @@ -149951,26 +154689,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1058, + 1078, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1074, + 1094, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1061 + 1081 ] } ], "e_timeout_settings": [ - 1078, + 1098, { "distinct_on": [ - 1092, + 1112, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -149980,19 +154718,19 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_timeout_settings_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1092, + 1112, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -150002,16 +154740,16 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_timeout_settings_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_timeout_settings_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -150020,26 +154758,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1078, + 1098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1094, + 1114, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1081 + 1101 ] } ], "e_tournament_stage_types": [ - 1098, + 1118, { "distinct_on": [ - 1113, + 1133, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -150049,19 +154787,19 @@ export default { 38 ], "order_by": [ - 1111, + 1131, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_stage_types_aggregate": [ - 1099, + 1119, { "distinct_on": [ - 1113, + 1133, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -150071,16 +154809,16 @@ export default { 38 ], "order_by": [ - 1111, + 1131, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_stage_types_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -150089,26 +154827,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1098, + 1118, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1115, + 1135, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_status": [ - 1119, + 1139, { "distinct_on": [ - 1134, + 1154, "[e_tournament_status_select_column!]" ], "limit": [ @@ -150118,19 +154856,19 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1142 ] } ], "e_tournament_status_aggregate": [ - 1120, + 1140, { "distinct_on": [ - 1134, + 1154, "[e_tournament_status_select_column!]" ], "limit": [ @@ -150140,16 +154878,16 @@ export default { 38 ], "order_by": [ - 1132, + 1152, "[e_tournament_status_order_by!]" ], "where": [ - 1122 + 1142 ] } ], "e_tournament_status_by_pk": [ - 1119, + 1139, { "value": [ 78, @@ -150158,26 +154896,26 @@ export default { } ], "e_tournament_status_stream": [ - 1119, + 1139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1136, + 1156, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1122 + 1142 ] } ], "e_utility_types": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_utility_types_select_column!]" ], "limit": [ @@ -150187,19 +154925,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_utility_types_aggregate": [ - 1141, + 1161, { "distinct_on": [ - 1154, + 1174, "[e_utility_types_select_column!]" ], "limit": [ @@ -150209,16 +154947,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_utility_types_order_by!]" ], "where": [ - 1143 + 1163 ] } ], "e_utility_types_by_pk": [ - 1140, + 1160, { "value": [ 78, @@ -150227,26 +154965,26 @@ export default { } ], "e_utility_types_stream": [ - 1140, + 1160, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1156, + 1176, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1143 + 1163 ] } ], "e_veto_pick_types": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -150256,19 +154994,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_veto_pick_types_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -150278,16 +155016,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_veto_pick_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_veto_pick_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -150296,26 +155034,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1160, + 1180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, + 1196, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1163 + 1183 ] } ], "e_winning_reasons": [ - 1180, + 1200, { "distinct_on": [ - 1194, + 1214, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -150325,19 +155063,19 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_winning_reasons_aggregate": [ - 1181, + 1201, { "distinct_on": [ - 1194, + 1214, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -150347,16 +155085,16 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_winning_reasons_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_winning_reasons_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -150365,26 +155103,387 @@ export default { } ], "e_winning_reasons_stream": [ - 1180, + 1200, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1196, + 1216, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1183 + 1203 + ] + } + ], + "event_organizers": [ + 1220, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "event_organizers_aggregate": [ + 1221, + { + "distinct_on": [ + 1241, + "[event_organizers_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1239, + "[event_organizers_order_by!]" + ], + "where": [ + 1229 + ] + } + ], + "event_organizers_by_pk": [ + 1220, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "event_organizers_stream": [ + 1220, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1249, + "[event_organizers_stream_cursor_input]!" + ], + "where": [ + 1229 + ] + } + ], + "event_players": [ + 1261, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "event_players_aggregate": [ + 1262, + { + "distinct_on": [ + 1282, + "[event_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1280, + "[event_players_order_by!]" + ], + "where": [ + 1270 + ] + } + ], + "event_players_by_pk": [ + 1261, + { + "event_id": [ + 4641, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "event_players_stream": [ + 1261, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1290, + "[event_players_stream_cursor_input]!" + ], + "where": [ + 1270 + ] + } + ], + "event_teams": [ + 1302, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "event_teams_aggregate": [ + 1303, + { + "distinct_on": [ + 1320, + "[event_teams_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1318, + "[event_teams_order_by!]" + ], + "where": [ + 1309 + ] + } + ], + "event_teams_by_pk": [ + 1302, + { + "event_id": [ + 4641, + "uuid!" + ], + "team_id": [ + 4641, + "uuid!" + ] + } + ], + "event_teams_stream": [ + 1302, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1322, + "[event_teams_stream_cursor_input]!" + ], + "where": [ + 1309 + ] + } + ], + "event_tournaments": [ + 1326, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "event_tournaments_aggregate": [ + 1327, + { + "distinct_on": [ + 1344, + "[event_tournaments_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1342, + "[event_tournaments_order_by!]" + ], + "where": [ + 1333 + ] + } + ], + "event_tournaments_by_pk": [ + 1326, + { + "event_id": [ + 4641, + "uuid!" + ], + "tournament_id": [ + 4641, + "uuid!" + ] + } + ], + "event_tournaments_stream": [ + 1326, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1346, + "[event_tournaments_stream_cursor_input]!" + ], + "where": [ + 1333 + ] + } + ], + "events": [ + 1350, + { + "distinct_on": [ + 1365, + "[events_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1363, + "[events_order_by!]" + ], + "where": [ + 1354 + ] + } + ], + "events_aggregate": [ + 1351, + { + "distinct_on": [ + 1365, + "[events_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1363, + "[events_order_by!]" + ], + "where": [ + 1354 + ] + } + ], + "events_by_pk": [ + 1350, + { + "id": [ + 4641, + "uuid!" + ] + } + ], + "events_stream": [ + 1350, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1370, + "[events_stream_cursor_input]!" + ], + "where": [ + 1354 ] } ], "friends": [ - 1202, + 1380, { "distinct_on": [ - 1216, + 1394, "[friends_select_column!]" ], "limit": [ @@ -150394,19 +155493,19 @@ export default { 38 ], "order_by": [ - 1214, + 1392, "[friends_order_by!]" ], "where": [ - 1206 + 1384 ] } ], "friends_aggregate": [ - 1203, + 1381, { "distinct_on": [ - 1216, + 1394, "[friends_select_column!]" ], "limit": [ @@ -150416,16 +155515,16 @@ export default { 38 ], "order_by": [ - 1214, + 1392, "[friends_order_by!]" ], "where": [ - 1206 + 1384 ] } ], "friends_by_pk": [ - 1202, + 1380, { "other_player_steam_id": [ 180, @@ -150438,26 +155537,26 @@ export default { } ], "friends_stream": [ - 1202, + 1380, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1221, + 1399, "[friends_stream_cursor_input]!" ], "where": [ - 1206 + 1384 ] } ], "game_server_nodes": [ - 1229, + 1407, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -150467,19 +155566,19 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], "game_server_nodes_aggregate": [ - 1230, + 1408, { "distinct_on": [ - 1258, + 1436, "[game_server_nodes_select_column!]" ], "limit": [ @@ -150489,16 +155588,16 @@ export default { 38 ], "order_by": [ - 1255, + 1433, "[game_server_nodes_order_by!]" ], "where": [ - 1241 + 1419 ] } ], "game_server_nodes_by_pk": [ - 1229, + 1407, { "id": [ 78, @@ -150507,26 +155606,26 @@ export default { } ], "game_server_nodes_stream": [ - 1229, + 1407, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1268, + 1446, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1241 + 1419 ] } ], "game_versions": [ - 1280, + 1458, { "distinct_on": [ - 1300, + 1478, "[game_versions_select_column!]" ], "limit": [ @@ -150536,19 +155635,19 @@ export default { 38 ], "order_by": [ - 1297, + 1475, "[game_versions_order_by!]" ], "where": [ - 1285 + 1463 ] } ], "game_versions_aggregate": [ - 1281, + 1459, { "distinct_on": [ - 1300, + 1478, "[game_versions_select_column!]" ], "limit": [ @@ -150558,16 +155657,16 @@ export default { 38 ], "order_by": [ - 1297, + 1475, "[game_versions_order_by!]" ], "where": [ - 1285 + 1463 ] } ], "game_versions_by_pk": [ - 1280, + 1458, { "build_id": [ 38, @@ -150576,26 +155675,26 @@ export default { } ], "game_versions_stream": [ - 1280, + 1458, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1305, + 1483, "[game_versions_stream_cursor_input]!" ], "where": [ - 1285 + 1463 ] } ], "gamedata_signature_validations": [ - 1313, + 1491, { "distinct_on": [ - 1332, + 1510, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150605,19 +155704,19 @@ export default { 38 ], "order_by": [ - 1329, + 1507, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1496 ] } ], "gamedata_signature_validations_aggregate": [ - 1314, + 1492, { "distinct_on": [ - 1332, + 1510, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -150627,48 +155726,100 @@ export default { 38 ], "order_by": [ - 1329, + 1507, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1318 + 1496 ] } ], "gamedata_signature_validations_by_pk": [ - 1313, + 1491, { "id": [ - 4462, + 4641, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1313, + 1491, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1337, + 1515, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1318 + 1496 + ] + } + ], + "get_event_leaderboard": [ + 1534, + { + "args": [ + 1523, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 1545, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1544, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 1538 + ] + } + ], + "get_event_leaderboard_aggregate": [ + 1535, + { + "args": [ + 1523, + "get_event_leaderboard_args!" + ], + "distinct_on": [ + 1545, + "[leaderboard_entries_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1544, + "[leaderboard_entries_order_by!]" + ], + "where": [ + 1538 ] } ], "get_leaderboard": [ - 1355, + 1534, { "args": [ - 1345, + 1524, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150678,23 +155829,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_leaderboard_aggregate": [ - 1356, + 1535, { "args": [ - 1345, + 1524, "get_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150704,23 +155855,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_league_season_leaderboard": [ - 1355, + 1534, { "args": [ - 1346, + 1525, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150730,23 +155881,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_league_season_leaderboard_aggregate": [ - 1356, + 1535, { "args": [ - 1346, + 1525, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150756,23 +155907,23 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "get_player_leaderboard_rank": [ - 2922, + 3101, { "args": [ - 1347, + 1526, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150782,23 +155933,23 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2923, + 3102, { "args": [ - 1347, + 1526, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -150808,19 +155959,19 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "leaderboard_entries": [ - 1355, + 1534, { "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150830,19 +155981,19 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "leaderboard_entries_aggregate": [ - 1356, + 1535, { "distinct_on": [ - 1366, + 1545, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -150852,35 +156003,35 @@ export default { 38 ], "order_by": [ - 1365, + 1544, "[leaderboard_entries_order_by!]" ], "where": [ - 1359 + 1538 ] } ], "leaderboard_entries_stream": [ - 1355, + 1534, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1371, + 1550, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1359 + 1538 ] } ], "league_divisions": [ - 1379, + 1558, { "distinct_on": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "limit": [ @@ -150890,19 +156041,19 @@ export default { 38 ], "order_by": [ - 1392, + 1571, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1562 ] } ], "league_divisions_aggregate": [ - 1380, + 1559, { "distinct_on": [ - 1394, + 1573, "[league_divisions_select_column!]" ], "limit": [ @@ -150912,44 +156063,44 @@ export default { 38 ], "order_by": [ - 1392, + 1571, "[league_divisions_order_by!]" ], "where": [ - 1383 + 1562 ] } ], "league_divisions_by_pk": [ - 1379, + 1558, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_divisions_stream": [ - 1379, + 1558, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1399, + 1578, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1383 + 1562 ] } ], "league_match_weeks": [ - 1407, + 1586, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150959,19 +156110,19 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], "league_match_weeks_aggregate": [ - 1408, + 1587, { "distinct_on": [ - 1428, + 1607, "[league_match_weeks_select_column!]" ], "limit": [ @@ -150981,44 +156132,44 @@ export default { 38 ], "order_by": [ - 1426, + 1605, "[league_match_weeks_order_by!]" ], "where": [ - 1416 + 1595 ] } ], "league_match_weeks_by_pk": [ - 1407, + 1586, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_match_weeks_stream": [ - 1407, + 1586, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1436, + 1615, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1416 + 1595 ] } ], "league_relegation_playoffs": [ - 1448, + 1627, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -151028,19 +156179,19 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], "league_relegation_playoffs_aggregate": [ - 1449, + 1628, { "distinct_on": [ - 1469, + 1648, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -151050,44 +156201,44 @@ export default { 38 ], "order_by": [ - 1467, + 1646, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1457 + 1636 ] } ], "league_relegation_playoffs_by_pk": [ - 1448, + 1627, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1448, + 1627, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1477, + 1656, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1457 + 1636 ] } ], "league_scheduling_proposals": [ - 1489, + 1668, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -151097,19 +156248,19 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "league_scheduling_proposals_aggregate": [ - 1490, + 1669, { "distinct_on": [ - 1510, + 1689, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -151119,44 +156270,44 @@ export default { 38 ], "order_by": [ - 1508, + 1687, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1498 + 1677 ] } ], "league_scheduling_proposals_by_pk": [ - 1489, + 1668, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1489, + 1668, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1518, + 1697, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1498 + 1677 ] } ], "league_season_divisions": [ - 1530, + 1709, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -151166,19 +156317,19 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "league_season_divisions_aggregate": [ - 1531, + 1710, { "distinct_on": [ - 1549, + 1728, "[league_season_divisions_select_column!]" ], "limit": [ @@ -151188,44 +156339,44 @@ export default { 38 ], "order_by": [ - 1547, + 1726, "[league_season_divisions_order_by!]" ], "where": [ - 1537 + 1716 ] } ], "league_season_divisions_by_pk": [ - 1530, + 1709, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_season_divisions_stream": [ - 1530, + 1709, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1551, + 1730, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1537 + 1716 ] } ], "league_seasons": [ - 1555, + 1734, { "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -151235,19 +156386,19 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], "league_seasons_aggregate": [ - 1556, + 1735, { "distinct_on": [ - 1575, + 1754, "[league_seasons_select_column!]" ], "limit": [ @@ -151257,44 +156408,44 @@ export default { 38 ], "order_by": [ - 1572, + 1751, "[league_seasons_order_by!]" ], "where": [ - 1560 + 1739 ] } ], "league_seasons_by_pk": [ - 1555, + 1734, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_seasons_stream": [ - 1555, + 1734, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1580, + 1759, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1560 + 1739 ] } ], "league_team_movements": [ - 1588, + 1767, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -151304,19 +156455,19 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "league_team_movements_aggregate": [ - 1589, + 1768, { "distinct_on": [ - 1609, + 1788, "[league_team_movements_select_column!]" ], "limit": [ @@ -151326,44 +156477,44 @@ export default { 38 ], "order_by": [ - 1607, + 1786, "[league_team_movements_order_by!]" ], "where": [ - 1597 + 1776 ] } ], "league_team_movements_by_pk": [ - 1588, + 1767, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_team_movements_stream": [ - 1588, + 1767, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1617, + 1796, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1597 + 1776 ] } ], "league_team_rosters": [ - 1629, + 1808, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -151373,19 +156524,19 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "league_team_rosters_aggregate": [ - 1630, + 1809, { "distinct_on": [ - 1650, + 1829, "[league_team_rosters_select_column!]" ], "limit": [ @@ -151395,19 +156546,19 @@ export default { 38 ], "order_by": [ - 1648, + 1827, "[league_team_rosters_order_by!]" ], "where": [ - 1638 + 1817 ] } ], "league_team_rosters_by_pk": [ - 1629, + 1808, { "league_team_season_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -151417,26 +156568,26 @@ export default { } ], "league_team_rosters_stream": [ - 1629, + 1808, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1658, + 1837, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1638 + 1817 ] } ], "league_team_seasons": [ - 1670, + 1849, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -151446,19 +156597,19 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "league_team_seasons_aggregate": [ - 1671, + 1850, { "distinct_on": [ - 1692, + 1871, "[league_team_seasons_select_column!]" ], "limit": [ @@ -151468,44 +156619,44 @@ export default { 38 ], "order_by": [ - 1690, + 1869, "[league_team_seasons_order_by!]" ], "where": [ - 1679 + 1858 ] } ], "league_team_seasons_by_pk": [ - 1670, + 1849, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_team_seasons_stream": [ - 1670, + 1849, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1700, + 1879, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1679 + 1858 ] } ], "league_teams": [ - 1712, + 1891, { "distinct_on": [ - 1725, + 1904, "[league_teams_select_column!]" ], "limit": [ @@ -151515,19 +156666,19 @@ export default { 38 ], "order_by": [ - 1723, + 1902, "[league_teams_order_by!]" ], "where": [ - 1715 + 1894 ] } ], "league_teams_aggregate": [ - 1713, + 1892, { "distinct_on": [ - 1725, + 1904, "[league_teams_select_column!]" ], "limit": [ @@ -151537,44 +156688,44 @@ export default { 38 ], "order_by": [ - 1723, + 1902, "[league_teams_order_by!]" ], "where": [ - 1715 + 1894 ] } ], "league_teams_by_pk": [ - 1712, + 1891, { "id": [ - 4462, + 4641, "uuid!" ] } ], "league_teams_stream": [ - 1712, + 1891, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1727, + 1906, "[league_teams_stream_cursor_input]!" ], "where": [ - 1715 + 1894 ] } ], "lobbies": [ - 1731, + 1910, { "distinct_on": [ - 1744, + 1923, "[lobbies_select_column!]" ], "limit": [ @@ -151584,19 +156735,19 @@ export default { 38 ], "order_by": [ - 1742, + 1921, "[lobbies_order_by!]" ], "where": [ - 1734 + 1913 ] } ], "lobbies_aggregate": [ - 1732, + 1911, { "distinct_on": [ - 1744, + 1923, "[lobbies_select_column!]" ], "limit": [ @@ -151606,44 +156757,44 @@ export default { 38 ], "order_by": [ - 1742, + 1921, "[lobbies_order_by!]" ], "where": [ - 1734 + 1913 ] } ], "lobbies_by_pk": [ - 1731, + 1910, { "id": [ - 4462, + 4641, "uuid!" ] } ], "lobbies_stream": [ - 1731, + 1910, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1746, + 1925, "[lobbies_stream_cursor_input]!" ], "where": [ - 1734 + 1913 ] } ], "lobby_players": [ - 1750, + 1929, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -151653,19 +156804,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "lobby_players_aggregate": [ - 1751, + 1930, { "distinct_on": [ - 1773, + 1952, "[lobby_players_select_column!]" ], "limit": [ @@ -151675,19 +156826,19 @@ export default { 38 ], "order_by": [ - 1771, + 1950, "[lobby_players_order_by!]" ], "where": [ - 1761 + 1940 ] } ], "lobby_players_by_pk": [ - 1750, + 1929, { "lobby_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -151697,26 +156848,26 @@ export default { } ], "lobby_players_stream": [ - 1750, + 1929, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1783, + 1962, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1761 + 1940 ] } ], "map_pools": [ - 1795, + 1974, { "distinct_on": [ - 1808, + 1987, "[map_pools_select_column!]" ], "limit": [ @@ -151726,19 +156877,19 @@ export default { 38 ], "order_by": [ - 1806, + 1985, "[map_pools_order_by!]" ], "where": [ - 1798 + 1977 ] } ], "map_pools_aggregate": [ - 1796, + 1975, { "distinct_on": [ - 1808, + 1987, "[map_pools_select_column!]" ], "limit": [ @@ -151748,44 +156899,44 @@ export default { 38 ], "order_by": [ - 1806, + 1985, "[map_pools_order_by!]" ], "where": [ - 1798 + 1977 ] } ], "map_pools_by_pk": [ - 1795, + 1974, { "id": [ - 4462, + 4641, "uuid!" ] } ], "map_pools_stream": [ - 1795, + 1974, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1810, + 1989, "[map_pools_stream_cursor_input]!" ], "where": [ - 1798 + 1977 ] } ], "maps": [ - 1814, + 1993, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -151795,19 +156946,19 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], "maps_aggregate": [ - 1815, + 1994, { "distinct_on": [ - 1835, + 2014, "[maps_select_column!]" ], "limit": [ @@ -151817,44 +156968,44 @@ export default { 38 ], "order_by": [ - 1833, + 2012, "[maps_order_by!]" ], "where": [ - 1823 + 2002 ] } ], "maps_by_pk": [ - 1814, + 1993, { "id": [ - 4462, + 4641, "uuid!" ] } ], "maps_stream": [ - 1814, + 1993, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1839, + 2018, "[maps_stream_cursor_input]!" ], "where": [ - 1823 + 2002 ] } ], "match_clips": [ - 1843, + 2022, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -151864,19 +157015,19 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_aggregate": [ - 1844, + 2023, { "distinct_on": [ - 1865, + 2044, "[match_clips_select_column!]" ], "limit": [ @@ -151886,44 +157037,44 @@ export default { 38 ], "order_by": [ - 1863, + 2042, "[match_clips_order_by!]" ], "where": [ - 1852 + 2031 ] } ], "match_clips_by_pk": [ - 1843, + 2022, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_clips_stream": [ - 1843, + 2022, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1873, + 2052, "[match_clips_stream_cursor_input]!" ], "where": [ - 1852 + 2031 ] } ], "match_demo_sessions": [ - 1885, + 2064, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151933,19 +157084,19 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], "match_demo_sessions_aggregate": [ - 1886, + 2065, { "distinct_on": [ - 1911, + 2090, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -151955,44 +157106,44 @@ export default { 38 ], "order_by": [ - 1908, + 2087, "[match_demo_sessions_order_by!]" ], "where": [ - 1895 + 2074 ] } ], "match_demo_sessions_by_pk": [ - 1885, + 2064, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1885, + 2064, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1919, + 2098, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1895 + 2074 ] } ], "match_lineup_players": [ - 1931, + 2110, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -152002,19 +157153,19 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "match_lineup_players_aggregate": [ - 1932, + 2111, { "distinct_on": [ - 1954, + 2133, "[match_lineup_players_select_column!]" ], "limit": [ @@ -152024,44 +157175,44 @@ export default { 38 ], "order_by": [ - 1952, + 2131, "[match_lineup_players_order_by!]" ], "where": [ - 1942 + 2121 ] } ], "match_lineup_players_by_pk": [ - 1931, + 2110, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_lineup_players_stream": [ - 1931, + 2110, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1964, + 2143, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1942 + 2121 ] } ], "match_lineups": [ - 1976, + 2155, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -152071,19 +157222,19 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "match_lineups_aggregate": [ - 1977, + 2156, { "distinct_on": [ - 1998, + 2177, "[match_lineups_select_column!]" ], "limit": [ @@ -152093,44 +157244,44 @@ export default { 38 ], "order_by": [ - 1996, + 2175, "[match_lineups_order_by!]" ], "where": [ - 1985 + 2164 ] } ], "match_lineups_by_pk": [ - 1976, + 2155, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_lineups_stream": [ - 1976, + 2155, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2006, + 2185, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1985 + 2164 ] } ], "match_map_demos": [ - 2018, + 2197, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -152140,19 +157291,19 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "match_map_demos_aggregate": [ - 2019, + 2198, { "distinct_on": [ - 2047, + 2226, "[match_map_demos_select_column!]" ], "limit": [ @@ -152162,44 +157313,44 @@ export default { 38 ], "order_by": [ - 2044, + 2223, "[match_map_demos_order_by!]" ], "where": [ - 2030 + 2209 ] } ], "match_map_demos_by_pk": [ - 2018, + 2197, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_demos_stream": [ - 2018, + 2197, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2057, + 2236, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2030 + 2209 ] } ], "match_map_rounds": [ - 2069, + 2248, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -152209,19 +157360,19 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "match_map_rounds_aggregate": [ - 2070, + 2249, { "distinct_on": [ - 2090, + 2269, "[match_map_rounds_select_column!]" ], "limit": [ @@ -152231,44 +157382,44 @@ export default { 38 ], "order_by": [ - 2088, + 2267, "[match_map_rounds_order_by!]" ], "where": [ - 2078 + 2257 ] } ], "match_map_rounds_by_pk": [ - 2069, + 2248, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_rounds_stream": [ - 2069, + 2248, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2098, + 2277, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2078 + 2257 ] } ], "match_map_veto_picks": [ - 2110, + 2289, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -152278,19 +157429,19 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_map_veto_picks_aggregate": [ - 2111, + 2290, { "distinct_on": [ - 2128, + 2307, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -152300,44 +157451,44 @@ export default { 38 ], "order_by": [ - 2126, + 2305, "[match_map_veto_picks_order_by!]" ], "where": [ - 2117 + 2296 ] } ], "match_map_veto_picks_by_pk": [ - 2110, + 2289, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2110, + 2289, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2130, + 2309, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2117 + 2296 ] } ], "match_maps": [ - 2134, + 2313, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -152347,19 +157498,19 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_aggregate": [ - 2135, + 2314, { "distinct_on": [ - 2156, + 2335, "[match_maps_select_column!]" ], "limit": [ @@ -152369,44 +157520,44 @@ export default { 38 ], "order_by": [ - 2154, + 2333, "[match_maps_order_by!]" ], "where": [ - 2143 + 2322 ] } ], "match_maps_by_pk": [ - 2134, + 2313, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_maps_stream": [ - 2134, + 2313, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2164, + 2343, "[match_maps_stream_cursor_input]!" ], "where": [ - 2143 + 2322 ] } ], "match_options": [ - 2176, + 2355, { "distinct_on": [ - 2191, + 2370, "[match_options_select_column!]" ], "limit": [ @@ -152416,19 +157567,19 @@ export default { 38 ], "order_by": [ - 2189, + 2368, "[match_options_order_by!]" ], "where": [ - 2180 + 2359 ] } ], "match_options_aggregate": [ - 2177, + 2356, { "distinct_on": [ - 2191, + 2370, "[match_options_select_column!]" ], "limit": [ @@ -152438,44 +157589,44 @@ export default { 38 ], "order_by": [ - 2189, + 2368, "[match_options_order_by!]" ], "where": [ - 2180 + 2359 ] } ], "match_options_by_pk": [ - 2176, + 2355, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_options_stream": [ - 2176, + 2355, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2196, + 2375, "[match_options_stream_cursor_input]!" ], "where": [ - 2180 + 2359 ] } ], "match_region_veto_picks": [ - 2204, + 2383, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152485,19 +157636,19 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], "match_region_veto_picks_aggregate": [ - 2205, + 2384, { "distinct_on": [ - 2222, + 2401, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -152507,44 +157658,44 @@ export default { 38 ], "order_by": [ - 2220, + 2399, "[match_region_veto_picks_order_by!]" ], "where": [ - 2211 + 2390 ] } ], "match_region_veto_picks_by_pk": [ - 2204, + 2383, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2204, + 2383, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2224, + 2403, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2211 + 2390 ] } ], "match_streams": [ - 2228, + 2407, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -152554,19 +157705,19 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "match_streams_aggregate": [ - 2229, + 2408, { "distinct_on": [ - 2256, + 2435, "[match_streams_select_column!]" ], "limit": [ @@ -152576,44 +157727,44 @@ export default { 38 ], "order_by": [ - 2253, + 2432, "[match_streams_order_by!]" ], "where": [ - 2240 + 2419 ] } ], "match_streams_by_pk": [ - 2228, + 2407, { "id": [ - 4462, + 4641, "uuid!" ] } ], "match_streams_stream": [ - 2228, + 2407, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2266, + 2445, "[match_streams_stream_cursor_input]!" ], "where": [ - 2240 + 2419 ] } ], "match_type_cfgs": [ - 2278, + 2457, { "distinct_on": [ - 2290, + 2469, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152623,19 +157774,19 @@ export default { 38 ], "order_by": [ - 2288, + 2467, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2460 ] } ], "match_type_cfgs_aggregate": [ - 2279, + 2458, { "distinct_on": [ - 2290, + 2469, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -152645,44 +157796,44 @@ export default { 38 ], "order_by": [ - 2288, + 2467, "[match_type_cfgs_order_by!]" ], "where": [ - 2281 + 2460 ] } ], "match_type_cfgs_by_pk": [ - 2278, + 2457, { "type": [ - 551, + 571, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2278, + 2457, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2292, + 2471, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2281 + 2460 ] } ], "matches": [ - 2296, + 2475, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -152692,19 +157843,19 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_aggregate": [ - 2297, + 2476, { "distinct_on": [ - 2318, + 2497, "[matches_select_column!]" ], "limit": [ @@ -152714,44 +157865,44 @@ export default { 38 ], "order_by": [ - 2316, + 2495, "[matches_order_by!]" ], "where": [ - 2305 + 2484 ] } ], "matches_by_pk": [ - 2296, + 2475, { "id": [ - 4462, + 4641, "uuid!" ] } ], "matches_stream": [ - 2296, + 2475, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2326, + 2505, "[matches_stream_cursor_input]!" ], "where": [ - 2305 + 2484 ] } ], "migration_hashes_hashes": [ - 2338, + 2517, { "distinct_on": [ - 2350, + 2529, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152761,19 +157912,19 @@ export default { 38 ], "order_by": [ - 2348, + 2527, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2520 ] } ], "migration_hashes_hashes_aggregate": [ - 2339, + 2518, { "distinct_on": [ - 2350, + 2529, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -152783,16 +157934,16 @@ export default { 38 ], "order_by": [ - 2348, + 2527, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2341 + 2520 ] } ], "migration_hashes_hashes_by_pk": [ - 2338, + 2517, { "name": [ 78, @@ -152801,26 +157952,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2338, + 2517, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2352, + 2531, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2341 + 2520 ] } ], "my_friends": [ - 2356, + 2535, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -152830,19 +157981,19 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], "my_friends_aggregate": [ - 2357, + 2536, { "distinct_on": [ - 2381, + 2560, "[my_friends_select_column!]" ], "limit": [ @@ -152852,35 +158003,35 @@ export default { 38 ], "order_by": [ - 2379, + 2558, "[my_friends_order_by!]" ], "where": [ - 2368 + 2547 ] } ], "my_friends_stream": [ - 2356, + 2535, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2391, + 2570, "[my_friends_stream_cursor_input]!" ], "where": [ - 2368 + 2547 ] } ], "news_articles": [ - 2402, + 2581, { "distinct_on": [ - 2416, + 2595, "[news_articles_select_column!]" ], "limit": [ @@ -152890,19 +158041,19 @@ export default { 38 ], "order_by": [ - 2414, + 2593, "[news_articles_order_by!]" ], "where": [ - 2406 + 2585 ] } ], "news_articles_aggregate": [ - 2403, + 2582, { "distinct_on": [ - 2416, + 2595, "[news_articles_select_column!]" ], "limit": [ @@ -152912,44 +158063,44 @@ export default { 38 ], "order_by": [ - 2414, + 2593, "[news_articles_order_by!]" ], "where": [ - 2406 + 2585 ] } ], "news_articles_by_pk": [ - 2402, + 2581, { "id": [ - 4462, + 4641, "uuid!" ] } ], "news_articles_stream": [ - 2402, + 2581, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2421, + 2600, "[news_articles_stream_cursor_input]!" ], "where": [ - 2406 + 2585 ] } ], "notifications": [ - 2429, + 2608, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -152959,19 +158110,19 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "notifications_aggregate": [ - 2430, + 2609, { "distinct_on": [ - 2457, + 2636, "[notifications_select_column!]" ], "limit": [ @@ -152981,44 +158132,44 @@ export default { 38 ], "order_by": [ - 2454, + 2633, "[notifications_order_by!]" ], "where": [ - 2441 + 2620 ] } ], "notifications_by_pk": [ - 2429, + 2608, { "id": [ - 4462, + 4641, "uuid!" ] } ], "notifications_stream": [ - 2429, + 2608, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2467, + 2646, "[notifications_stream_cursor_input]!" ], "where": [ - 2441 + 2620 ] } ], "pending_match_import_players": [ - 2482, + 2661, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153028,19 +158179,19 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "pending_match_import_players_aggregate": [ - 2483, + 2662, { "distinct_on": [ - 2503, + 2682, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -153050,48 +158201,48 @@ export default { 38 ], "order_by": [ - 2501, + 2680, "[pending_match_import_players_order_by!]" ], "where": [ - 2491 + 2670 ] } ], "pending_match_import_players_by_pk": [ - 2482, + 2661, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2482, + 2661, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2511, + 2690, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2491 + 2670 ] } ], "pending_match_imports": [ - 2523, + 2702, { "distinct_on": [ - 2538, + 2717, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153101,19 +158252,19 @@ export default { 38 ], "order_by": [ - 2536, + 2715, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2706 ] } ], "pending_match_imports_aggregate": [ - 2524, + 2703, { "distinct_on": [ - 2538, + 2717, "[pending_match_imports_select_column!]" ], "limit": [ @@ -153123,44 +158274,44 @@ export default { 38 ], "order_by": [ - 2536, + 2715, "[pending_match_imports_order_by!]" ], "where": [ - 2527 + 2706 ] } ], "pending_match_imports_by_pk": [ - 2523, + 2702, { "valve_match_id": [ - 2479, + 2658, "numeric!" ] } ], "pending_match_imports_stream": [ - 2523, + 2702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2543, + 2722, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2527 + 2706 ] } ], "player_aim_stats_demo": [ - 2551, + 2730, { "distinct_on": [ - 2565, + 2744, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153170,19 +158321,19 @@ export default { 38 ], "order_by": [ - 2563, + 2742, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2734 ] } ], "player_aim_stats_demo_aggregate": [ - 2552, + 2731, { "distinct_on": [ - 2565, + 2744, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -153192,48 +158343,48 @@ export default { 38 ], "order_by": [ - 2563, + 2742, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2555 + 2734 ] } ], "player_aim_stats_demo_by_pk": [ - 2551, + 2730, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2551, + 2730, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2570, + 2749, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2555 + 2734 ] } ], "player_aim_weapon_stats": [ - 2578, + 2757, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153243,19 +158394,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "player_aim_weapon_stats_aggregate": [ - 2579, + 2758, { "distinct_on": [ - 2599, + 2778, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -153265,19 +158416,19 @@ export default { 38 ], "order_by": [ - 2597, + 2776, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2587 + 2766 ] } ], "player_aim_weapon_stats_by_pk": [ - 2578, + 2757, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -153291,26 +158442,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2578, + 2757, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2607, + 2786, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2587 + 2766 ] } ], "player_assists": [ - 2619, + 2798, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -153320,19 +158471,19 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_aggregate": [ - 2620, + 2799, { "distinct_on": [ - 2642, + 2821, "[player_assists_select_column!]" ], "limit": [ @@ -153342,16 +158493,16 @@ export default { 38 ], "order_by": [ - 2640, + 2819, "[player_assists_order_by!]" ], "where": [ - 2630 + 2809 ] } ], "player_assists_by_pk": [ - 2619, + 2798, { "attacked_steam_id": [ 180, @@ -153362,36 +158513,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_assists_stream": [ - 2619, + 2798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2652, + 2831, "[player_assists_stream_cursor_input]!" ], "where": [ - 2630 + 2809 ] } ], "player_career_stats_v": [ - 2664, + 2843, { "distinct_on": [ - 2672, + 2851, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153401,19 +158552,19 @@ export default { 38 ], "order_by": [ - 2671, + 2850, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2847 ] } ], "player_career_stats_v_aggregate": [ - 2665, + 2844, { "distinct_on": [ - 2672, + 2851, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -153423,35 +158574,35 @@ export default { 38 ], "order_by": [ - 2671, + 2850, "[player_career_stats_v_order_by!]" ], "where": [ - 2668 + 2847 ] } ], "player_career_stats_v_stream": [ - 2664, + 2843, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2676, + 2855, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2668 + 2847 ] } ], "player_damages": [ - 2682, + 2861, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -153461,19 +158612,19 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_aggregate": [ - 2683, + 2862, { "distinct_on": [ - 2703, + 2882, "[player_damages_select_column!]" ], "limit": [ @@ -153483,52 +158634,52 @@ export default { 38 ], "order_by": [ - 2701, + 2880, "[player_damages_order_by!]" ], "where": [ - 2691 + 2870 ] } ], "player_damages_by_pk": [ - 2682, + 2861, { "id": [ - 4462, + 4641, "uuid!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_damages_stream": [ - 2682, + 2861, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2711, + 2890, "[player_damages_stream_cursor_input]!" ], "where": [ - 2691 + 2870 ] } ], "player_elo": [ - 2723, + 2902, { "distinct_on": [ - 2737, + 2916, "[player_elo_select_column!]" ], "limit": [ @@ -153538,19 +158689,19 @@ export default { 38 ], "order_by": [ - 2735, + 2914, "[player_elo_order_by!]" ], "where": [ - 2727 + 2906 ] } ], "player_elo_aggregate": [ - 2724, + 2903, { "distinct_on": [ - 2737, + 2916, "[player_elo_select_column!]" ], "limit": [ @@ -153560,19 +158711,19 @@ export default { 38 ], "order_by": [ - 2735, + 2914, "[player_elo_order_by!]" ], "where": [ - 2727 + 2906 ] } ], "player_elo_by_pk": [ - 2723, + 2902, { "match_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -153580,32 +158731,32 @@ export default { "bigint!" ], "type": [ - 820, + 840, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2723, + 2902, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2742, + 2921, "[player_elo_stream_cursor_input]!" ], "where": [ - 2727 + 2906 ] } ], "player_faceit_rank_history": [ - 2750, + 2929, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153615,19 +158766,19 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], "player_faceit_rank_history_aggregate": [ - 2751, + 2930, { "distinct_on": [ - 2771, + 2950, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -153637,44 +158788,44 @@ export default { 38 ], "order_by": [ - 2769, + 2948, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2759 + 2938 ] } ], "player_faceit_rank_history_by_pk": [ - 2750, + 2929, { "id": [ - 4462, + 4641, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2750, + 2929, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2779, + 2958, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2759 + 2938 ] } ], "player_flashes": [ - 2791, + 2970, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -153684,19 +158835,19 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_flashes_aggregate": [ - 2792, + 2971, { "distinct_on": [ - 2814, + 2993, "[player_flashes_select_column!]" ], "limit": [ @@ -153706,16 +158857,16 @@ export default { 38 ], "order_by": [ - 2812, + 2991, "[player_flashes_order_by!]" ], "where": [ - 2802 + 2981 ] } ], "player_flashes_by_pk": [ - 2791, + 2970, { "attacked_steam_id": [ 180, @@ -153726,36 +158877,36 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_flashes_stream": [ - 2791, + 2970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2824, + 3003, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2802 + 2981 ] } ], "player_kills": [ - 2836, + 3015, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -153765,19 +158916,19 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_aggregate": [ - 2837, + 3016, { "distinct_on": [ - 2900, + 3079, "[player_kills_select_column!]" ], "limit": [ @@ -153787,16 +158938,16 @@ export default { 38 ], "order_by": [ - 2898, + 3077, "[player_kills_order_by!]" ], "where": [ - 2847 + 3026 ] } ], "player_kills_by_pk": [ - 2836, + 3015, { "attacked_steam_id": [ 180, @@ -153807,20 +158958,20 @@ export default { "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2848, + 3027, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153830,19 +158981,19 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], "player_kills_by_weapon_aggregate": [ - 2849, + 3028, { "distinct_on": [ - 2869, + 3048, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -153852,16 +159003,16 @@ export default { 38 ], "order_by": [ - 2867, + 3046, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2857 + 3036 ] } ], "player_kills_by_weapon_by_pk": [ - 2848, + 3027, { "player_steam_id": [ 180, @@ -153874,42 +159025,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 2848, + 3027, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2877, + 3056, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2857 + 3036 ] } ], "player_kills_stream": [ - 2836, + 3015, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2910, + 3089, "[player_kills_stream_cursor_input]!" ], "where": [ - 2847 + 3026 ] } ], "player_leaderboard_rank": [ - 2922, + 3101, { "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153919,19 +159070,19 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "player_leaderboard_rank_aggregate": [ - 2923, + 3102, { "distinct_on": [ - 2933, + 3112, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -153941,35 +159092,35 @@ export default { 38 ], "order_by": [ - 2932, + 3111, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2926 + 3105 ] } ], "player_leaderboard_rank_stream": [ - 2922, + 3101, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2938, + 3117, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2926 + 3105 ] } ], "player_match_map_stats": [ - 2945, + 3124, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -153979,19 +159130,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "player_match_map_stats_aggregate": [ - 2946, + 3125, { "distinct_on": [ - 2966, + 3145, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -154001,19 +159152,19 @@ export default { 38 ], "order_by": [ - 2964, + 3143, "[player_match_map_stats_order_by!]" ], "where": [ - 2954 + 3133 ] } ], "player_match_map_stats_by_pk": [ - 2945, + 3124, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "steam_id": [ @@ -154023,26 +159174,26 @@ export default { } ], "player_match_map_stats_stream": [ - 2945, + 3124, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2974, + 3153, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2954 + 3133 ] } ], "player_match_performance_v": [ - 2986, + 3165, { "distinct_on": [ - 2994, + 3173, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154052,19 +159203,19 @@ export default { 38 ], "order_by": [ - 2993, + 3172, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3169 ] } ], "player_match_performance_v_aggregate": [ - 2987, + 3166, { "distinct_on": [ - 2994, + 3173, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -154074,35 +159225,35 @@ export default { 38 ], "order_by": [ - 2993, + 3172, "[player_match_performance_v_order_by!]" ], "where": [ - 2990 + 3169 ] } ], "player_match_performance_v_stream": [ - 2986, + 3165, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2998, + 3177, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2990 + 3169 ] } ], "player_match_stats_v": [ - 3004, + 3183, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154112,19 +159263,19 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "player_match_stats_v_aggregate": [ - 3005, + 3184, { "distinct_on": [ - 3020, + 3199, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -154134,35 +159285,35 @@ export default { 38 ], "order_by": [ - 3019, + 3198, "[player_match_stats_v_order_by!]" ], "where": [ - 3013 + 3192 ] } ], "player_match_stats_v_stream": [ - 3004, + 3183, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3027, + 3206, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3013 + 3192 ] } ], "player_objectives": [ - 3037, + 3216, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -154172,19 +159323,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_aggregate": [ - 3038, + 3217, { "distinct_on": [ - 3058, + 3237, "[player_objectives_select_column!]" ], "limit": [ @@ -154194,19 +159345,19 @@ export default { 38 ], "order_by": [ - 3056, + 3235, "[player_objectives_order_by!]" ], "where": [ - 3046 + 3225 ] } ], "player_objectives_by_pk": [ - 3037, + 3216, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -154214,32 +159365,32 @@ export default { "bigint!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_objectives_stream": [ - 3037, + 3216, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3066, + 3245, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3046 + 3225 ] } ], "player_performance_v": [ - 3078, + 3257, { "distinct_on": [ - 3086, + 3265, "[player_performance_v_select_column!]" ], "limit": [ @@ -154249,19 +159400,19 @@ export default { 38 ], "order_by": [ - 3085, + 3264, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3261 ] } ], "player_performance_v_aggregate": [ - 3079, + 3258, { "distinct_on": [ - 3086, + 3265, "[player_performance_v_select_column!]" ], "limit": [ @@ -154271,35 +159422,35 @@ export default { 38 ], "order_by": [ - 3085, + 3264, "[player_performance_v_order_by!]" ], "where": [ - 3082 + 3261 ] } ], "player_performance_v_stream": [ - 3078, + 3257, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3090, + 3269, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3082 + 3261 ] } ], "player_premier_rank_history": [ - 3096, + 3275, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154309,19 +159460,19 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "player_premier_rank_history_aggregate": [ - 3097, + 3276, { "distinct_on": [ - 3117, + 3296, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -154331,44 +159482,44 @@ export default { 38 ], "order_by": [ - 3115, + 3294, "[player_premier_rank_history_order_by!]" ], "where": [ - 3105 + 3284 ] } ], "player_premier_rank_history_by_pk": [ - 3096, + 3275, { "id": [ - 4462, + 4641, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3096, + 3275, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3125, + 3304, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3105 + 3284 ] } ], "player_sanctions": [ - 3137, + 3316, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -154378,19 +159529,19 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "player_sanctions_aggregate": [ - 3138, + 3317, { "distinct_on": [ - 3158, + 3337, "[player_sanctions_select_column!]" ], "limit": [ @@ -154400,48 +159551,48 @@ export default { 38 ], "order_by": [ - 3156, + 3335, "[player_sanctions_order_by!]" ], "where": [ - 3146 + 3325 ] } ], "player_sanctions_by_pk": [ - 3137, + 3316, { "created_at": [ - 4024, + 4203, "timestamptz!" ], "id": [ - 4462, + 4641, "uuid!" ] } ], "player_sanctions_stream": [ - 3137, + 3316, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3166, + 3345, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3146 + 3325 ] } ], "player_season_stats": [ - 3178, + 3357, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -154451,19 +159602,19 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "player_season_stats_aggregate": [ - 3179, + 3358, { "distinct_on": [ - 3209, + 3388, "[player_season_stats_select_column!]" ], "limit": [ @@ -154473,48 +159624,48 @@ export default { 38 ], "order_by": [ - 3207, + 3386, "[player_season_stats_order_by!]" ], "where": [ - 3197 + 3376 ] } ], "player_season_stats_by_pk": [ - 3178, + 3357, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4462, + 4641, "uuid!" ] } ], "player_season_stats_stream": [ - 3178, + 3357, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3225, + 3404, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3197 + 3376 ] } ], "player_stats": [ - 3237, + 3416, { "distinct_on": [ - 3252, + 3431, "[player_stats_select_column!]" ], "limit": [ @@ -154524,19 +159675,19 @@ export default { 38 ], "order_by": [ - 3250, + 3429, "[player_stats_order_by!]" ], "where": [ - 3241 + 3420 ] } ], "player_stats_aggregate": [ - 3238, + 3417, { "distinct_on": [ - 3252, + 3431, "[player_stats_select_column!]" ], "limit": [ @@ -154546,16 +159697,16 @@ export default { 38 ], "order_by": [ - 3250, + 3429, "[player_stats_order_by!]" ], "where": [ - 3241 + 3420 ] } ], "player_stats_by_pk": [ - 3237, + 3416, { "player_steam_id": [ 180, @@ -154564,26 +159715,26 @@ export default { } ], "player_stats_stream": [ - 3237, + 3416, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3257, + 3436, "[player_stats_stream_cursor_input]!" ], "where": [ - 3241 + 3420 ] } ], "player_steam_bot_friend": [ - 3265, + 3444, { "distinct_on": [ - 3284, + 3463, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154593,19 +159744,19 @@ export default { 38 ], "order_by": [ - 3281, + 3460, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3449 ] } ], "player_steam_bot_friend_aggregate": [ - 3266, + 3445, { "distinct_on": [ - 3284, + 3463, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -154615,16 +159766,16 @@ export default { 38 ], "order_by": [ - 3281, + 3460, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3270 + 3449 ] } ], "player_steam_bot_friend_by_pk": [ - 3265, + 3444, { "steam_id": [ 180, @@ -154633,26 +159784,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3265, + 3444, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3289, + 3468, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3270 + 3449 ] } ], "player_steam_match_auth": [ - 3297, + 3476, { "distinct_on": [ - 3311, + 3490, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154662,19 +159813,19 @@ export default { 38 ], "order_by": [ - 3309, + 3488, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3480 ] } ], "player_steam_match_auth_aggregate": [ - 3298, + 3477, { "distinct_on": [ - 3311, + 3490, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -154684,16 +159835,16 @@ export default { 38 ], "order_by": [ - 3309, + 3488, "[player_steam_match_auth_order_by!]" ], "where": [ - 3301 + 3480 ] } ], "player_steam_match_auth_by_pk": [ - 3297, + 3476, { "steam_id": [ 180, @@ -154702,26 +159853,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3297, + 3476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3316, + 3495, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3301 + 3480 ] } ], "player_unused_utility": [ - 3324, + 3503, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154731,19 +159882,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utility_aggregate": [ - 3325, + 3504, { "distinct_on": [ - 3345, + 3524, "[player_unused_utility_select_column!]" ], "limit": [ @@ -154753,19 +159904,19 @@ export default { 38 ], "order_by": [ - 3343, + 3522, "[player_unused_utility_order_by!]" ], "where": [ - 3333 + 3512 ] } ], "player_unused_utility_by_pk": [ - 3324, + 3503, { "match_map_id": [ - 4462, + 4641, "uuid!" ], "player_steam_id": [ @@ -154775,26 +159926,26 @@ export default { } ], "player_unused_utility_stream": [ - 3324, + 3503, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3353, + 3532, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3333 + 3512 ] } ], "player_utility": [ - 3365, + 3544, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -154804,19 +159955,19 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utility_aggregate": [ - 3366, + 3545, { "distinct_on": [ - 3386, + 3565, "[player_utility_select_column!]" ], "limit": [ @@ -154826,52 +159977,52 @@ export default { 38 ], "order_by": [ - 3384, + 3563, "[player_utility_order_by!]" ], "where": [ - 3374 + 3553 ] } ], "player_utility_by_pk": [ - 3365, + 3544, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4462, + 4641, "uuid!" ], "time": [ - 4024, + 4203, "timestamptz!" ] } ], "player_utility_stream": [ - 3365, + 3544, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3394, + 3573, "[player_utility_stream_cursor_input]!" ], "where": [ - 3374 + 3553 ] } ], "player_weapon_stats_v": [ - 3406, + 3585, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154881,19 +160032,19 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], "player_weapon_stats_v_aggregate": [ - 3407, + 3586, { "distinct_on": [ - 3422, + 3601, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -154903,35 +160054,35 @@ export default { 38 ], "order_by": [ - 3421, + 3600, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3415 + 3594 ] } ], "player_weapon_stats_v_stream": [ - 3406, + 3585, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3429, + 3608, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3415 + 3594 ] } ], "players": [ - 3439, + 3618, { "distinct_on": [ - 3454, + 3633, "[players_select_column!]" ], "limit": [ @@ -154941,19 +160092,19 @@ export default { 38 ], "order_by": [ - 3452, + 3631, "[players_order_by!]" ], "where": [ - 3443 + 3622 ] } ], "players_aggregate": [ - 3440, + 3619, { "distinct_on": [ - 3454, + 3633, "[players_select_column!]" ], "limit": [ @@ -154963,16 +160114,16 @@ export default { 38 ], "order_by": [ - 3452, + 3631, "[players_order_by!]" ], "where": [ - 3443 + 3622 ] } ], "players_by_pk": [ - 3439, + 3618, { "steam_id": [ 180, @@ -154981,26 +160132,26 @@ export default { } ], "players_stream": [ - 3439, + 3618, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3459, + 3638, "[players_stream_cursor_input]!" ], "where": [ - 3443 + 3622 ] } ], "plugin_versions": [ - 3467, + 3646, { "distinct_on": [ - 3481, + 3660, "[plugin_versions_select_column!]" ], "limit": [ @@ -155010,19 +160161,19 @@ export default { 38 ], "order_by": [ - 3479, + 3658, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3650 ] } ], "plugin_versions_aggregate": [ - 3468, + 3647, { "distinct_on": [ - 3481, + 3660, "[plugin_versions_select_column!]" ], "limit": [ @@ -155032,19 +160183,19 @@ export default { 38 ], "order_by": [ - 3479, + 3658, "[plugin_versions_order_by!]" ], "where": [ - 3471 + 3650 ] } ], "plugin_versions_by_pk": [ - 3467, + 3646, { "runtime": [ - 901, + 921, "e_plugin_runtimes_enum!" ], "version": [ @@ -155054,26 +160205,26 @@ export default { } ], "plugin_versions_stream": [ - 3467, + 3646, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3486, + 3665, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3471 + 3650 ] } ], "seasons": [ - 3498, + 3677, { "distinct_on": [ - 3513, + 3692, "[seasons_select_column!]" ], "limit": [ @@ -155083,19 +160234,19 @@ export default { 38 ], "order_by": [ - 3511, + 3690, "[seasons_order_by!]" ], "where": [ - 3502 + 3681 ] } ], "seasons_aggregate": [ - 3499, + 3678, { "distinct_on": [ - 3513, + 3692, "[seasons_select_column!]" ], "limit": [ @@ -155105,44 +160256,44 @@ export default { 38 ], "order_by": [ - 3511, + 3690, "[seasons_order_by!]" ], "where": [ - 3502 + 3681 ] } ], "seasons_by_pk": [ - 3498, + 3677, { "id": [ - 4462, + 4641, "uuid!" ] } ], "seasons_stream": [ - 3498, + 3677, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3518, + 3697, "[seasons_stream_cursor_input]!" ], "where": [ - 3502 + 3681 ] } ], "server_regions": [ - 3526, + 3705, { "distinct_on": [ - 3540, + 3719, "[server_regions_select_column!]" ], "limit": [ @@ -155152,19 +160303,19 @@ export default { 38 ], "order_by": [ - 3538, + 3717, "[server_regions_order_by!]" ], "where": [ - 3530 + 3709 ] } ], "server_regions_aggregate": [ - 3527, + 3706, { "distinct_on": [ - 3540, + 3719, "[server_regions_select_column!]" ], "limit": [ @@ -155174,16 +160325,16 @@ export default { 38 ], "order_by": [ - 3538, + 3717, "[server_regions_order_by!]" ], "where": [ - 3530 + 3709 ] } ], "server_regions_by_pk": [ - 3526, + 3705, { "value": [ 78, @@ -155192,26 +160343,26 @@ export default { } ], "server_regions_stream": [ - 3526, + 3705, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3545, + 3724, "[server_regions_stream_cursor_input]!" ], "where": [ - 3530 + 3709 ] } ], "servers": [ - 3553, + 3732, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -155221,19 +160372,19 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], "servers_aggregate": [ - 3554, + 3733, { "distinct_on": [ - 3577, + 3756, "[servers_select_column!]" ], "limit": [ @@ -155243,44 +160394,44 @@ export default { 38 ], "order_by": [ - 3575, + 3754, "[servers_order_by!]" ], "where": [ - 3564 + 3743 ] } ], "servers_by_pk": [ - 3553, + 3732, { "id": [ - 4462, + 4641, "uuid!" ] } ], "servers_stream": [ - 3553, + 3732, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3587, + 3766, "[servers_stream_cursor_input]!" ], "where": [ - 3564 + 3743 ] } ], "settings": [ - 3599, + 3778, { "distinct_on": [ - 3611, + 3790, "[settings_select_column!]" ], "limit": [ @@ -155290,19 +160441,19 @@ export default { 38 ], "order_by": [ - 3609, + 3788, "[settings_order_by!]" ], "where": [ - 3602 + 3781 ] } ], "settings_aggregate": [ - 3600, + 3779, { "distinct_on": [ - 3611, + 3790, "[settings_select_column!]" ], "limit": [ @@ -155312,16 +160463,16 @@ export default { 38 ], "order_by": [ - 3609, + 3788, "[settings_order_by!]" ], "where": [ - 3602 + 3781 ] } ], "settings_by_pk": [ - 3599, + 3778, { "name": [ 78, @@ -155330,26 +160481,26 @@ export default { } ], "settings_stream": [ - 3599, + 3778, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3613, + 3792, "[settings_stream_cursor_input]!" ], "where": [ - 3602 + 3781 ] } ], "steam_account_claims": [ - 3619, + 3798, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155359,19 +160510,19 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "steam_account_claims_aggregate": [ - 3620, + 3799, { "distinct_on": [ - 3637, + 3816, "[steam_account_claims_select_column!]" ], "limit": [ @@ -155381,44 +160532,44 @@ export default { 38 ], "order_by": [ - 3635, + 3814, "[steam_account_claims_order_by!]" ], "where": [ - 3626 + 3805 ] } ], "steam_account_claims_by_pk": [ - 3619, + 3798, { "id": [ - 4462, + 4641, "uuid!" ] } ], "steam_account_claims_stream": [ - 3619, + 3798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3639, + 3818, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3626 + 3805 ] } ], "steam_accounts": [ - 3643, + 3822, { "distinct_on": [ - 3658, + 3837, "[steam_accounts_select_column!]" ], "limit": [ @@ -155428,19 +160579,19 @@ export default { 38 ], "order_by": [ - 3656, + 3835, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3826 ] } ], "steam_accounts_aggregate": [ - 3644, + 3823, { "distinct_on": [ - 3658, + 3837, "[steam_accounts_select_column!]" ], "limit": [ @@ -155450,44 +160601,44 @@ export default { 38 ], "order_by": [ - 3656, + 3835, "[steam_accounts_order_by!]" ], "where": [ - 3647 + 3826 ] } ], "steam_accounts_by_pk": [ - 3643, + 3822, { "id": [ - 4462, + 4641, "uuid!" ] } ], "steam_accounts_stream": [ - 3643, + 3822, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3663, + 3842, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3647 + 3826 ] } ], "system_alerts": [ - 3671, + 3850, { "distinct_on": [ - 3685, + 3864, "[system_alerts_select_column!]" ], "limit": [ @@ -155497,19 +160648,19 @@ export default { 38 ], "order_by": [ - 3683, + 3862, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3854 ] } ], "system_alerts_aggregate": [ - 3672, + 3851, { "distinct_on": [ - 3685, + 3864, "[system_alerts_select_column!]" ], "limit": [ @@ -155519,44 +160670,44 @@ export default { 38 ], "order_by": [ - 3683, + 3862, "[system_alerts_order_by!]" ], "where": [ - 3675 + 3854 ] } ], "system_alerts_by_pk": [ - 3671, + 3850, { "id": [ - 4462, + 4641, "uuid!" ] } ], "system_alerts_stream": [ - 3671, + 3850, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3690, + 3869, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3675 + 3854 ] } ], "team_invites": [ - 3698, + 3877, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -155566,19 +160717,19 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_invites_aggregate": [ - 3699, + 3878, { "distinct_on": [ - 3719, + 3898, "[team_invites_select_column!]" ], "limit": [ @@ -155588,44 +160739,44 @@ export default { 38 ], "order_by": [ - 3717, + 3896, "[team_invites_order_by!]" ], "where": [ - 3707 + 3886 ] } ], "team_invites_by_pk": [ - 3698, + 3877, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_invites_stream": [ - 3698, + 3877, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3727, + 3906, "[team_invites_stream_cursor_input]!" ], "where": [ - 3707 + 3886 ] } ], "team_roster": [ - 3739, + 3918, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -155635,19 +160786,19 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_roster_aggregate": [ - 3740, + 3919, { "distinct_on": [ - 3762, + 3941, "[team_roster_select_column!]" ], "limit": [ @@ -155657,48 +160808,48 @@ export default { 38 ], "order_by": [ - 3760, + 3939, "[team_roster_order_by!]" ], "where": [ - 3750 + 3929 ] } ], "team_roster_by_pk": [ - 3739, + 3918, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4462, + 4641, "uuid!" ] } ], "team_roster_stream": [ - 3739, + 3918, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3772, + 3951, "[team_roster_stream_cursor_input]!" ], "where": [ - 3750 + 3929 ] } ], "team_scrim_alerts": [ - 3784, + 3963, { "distinct_on": [ - 3798, + 3977, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155708,19 +160859,19 @@ export default { 38 ], "order_by": [ - 3796, + 3975, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3967 ] } ], "team_scrim_alerts_aggregate": [ - 3785, + 3964, { "distinct_on": [ - 3798, + 3977, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -155730,44 +160881,44 @@ export default { 38 ], "order_by": [ - 3796, + 3975, "[team_scrim_alerts_order_by!]" ], "where": [ - 3788 + 3967 ] } ], "team_scrim_alerts_by_pk": [ - 3784, + 3963, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3784, + 3963, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3803, + 3982, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3788 + 3967 ] } ], "team_scrim_availability": [ - 3811, + 3990, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155777,19 +160928,19 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "team_scrim_availability_aggregate": [ - 3812, + 3991, { "distinct_on": [ - 3831, + 4010, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -155799,44 +160950,44 @@ export default { 38 ], "order_by": [ - 3829, + 4008, "[team_scrim_availability_order_by!]" ], "where": [ - 3820 + 3999 ] } ], "team_scrim_availability_by_pk": [ - 3811, + 3990, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3811, + 3990, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3835, + 4014, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3820 + 3999 ] } ], "team_scrim_request_proposals": [ - 3839, + 4018, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155846,19 +160997,19 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "team_scrim_request_proposals_aggregate": [ - 3840, + 4019, { "distinct_on": [ - 3860, + 4039, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -155868,44 +161019,44 @@ export default { 38 ], "order_by": [ - 3858, + 4037, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 3848 + 4027 ] } ], "team_scrim_request_proposals_by_pk": [ - 3839, + 4018, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 3839, + 4018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3868, + 4047, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 3848 + 4027 ] } ], "team_scrim_requests": [ - 3880, + 4059, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155915,19 +161066,19 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], "team_scrim_requests_aggregate": [ - 3881, + 4060, { "distinct_on": [ - 3904, + 4083, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -155937,44 +161088,44 @@ export default { 38 ], "order_by": [ - 3902, + 4081, "[team_scrim_requests_order_by!]" ], "where": [ - 3891 + 4070 ] } ], "team_scrim_requests_by_pk": [ - 3880, + 4059, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_requests_stream": [ - 3880, + 4059, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3914, + 4093, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 3891 + 4070 ] } ], "team_scrim_settings": [ - 3926, + 4105, { "distinct_on": [ - 3941, + 4120, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -155984,19 +161135,19 @@ export default { 38 ], "order_by": [ - 3939, + 4118, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4109 ] } ], "team_scrim_settings_aggregate": [ - 3927, + 4106, { "distinct_on": [ - 3941, + 4120, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -156006,44 +161157,44 @@ export default { 38 ], "order_by": [ - 3939, + 4118, "[team_scrim_settings_order_by!]" ], "where": [ - 3930 + 4109 ] } ], "team_scrim_settings_by_pk": [ - 3926, + 4105, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_scrim_settings_stream": [ - 3926, + 4105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3946, + 4125, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 3930 + 4109 ] } ], "team_suggestions": [ - 3954, + 4133, { "distinct_on": [ - 3968, + 4147, "[team_suggestions_select_column!]" ], "limit": [ @@ -156053,19 +161204,19 @@ export default { 38 ], "order_by": [ - 3966, + 4145, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4137 ] } ], "team_suggestions_aggregate": [ - 3955, + 4134, { "distinct_on": [ - 3968, + 4147, "[team_suggestions_select_column!]" ], "limit": [ @@ -156075,44 +161226,44 @@ export default { 38 ], "order_by": [ - 3966, + 4145, "[team_suggestions_order_by!]" ], "where": [ - 3958 + 4137 ] } ], "team_suggestions_by_pk": [ - 3954, + 4133, { "id": [ - 4462, + 4641, "uuid!" ] } ], "team_suggestions_stream": [ - 3954, + 4133, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3973, + 4152, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 3958 + 4137 ] } ], "teams": [ - 3981, + 4160, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -156122,19 +161273,19 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "teams_aggregate": [ - 3982, + 4161, { "distinct_on": [ - 4003, + 4182, "[teams_select_column!]" ], "limit": [ @@ -156144,44 +161295,44 @@ export default { 38 ], "order_by": [ - 4001, + 4180, "[teams_order_by!]" ], "where": [ - 3990 + 4169 ] } ], "teams_by_pk": [ - 3981, + 4160, { "id": [ - 4462, + 4641, "uuid!" ] } ], "teams_stream": [ - 3981, + 4160, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4011, + 4190, "[teams_stream_cursor_input]!" ], "where": [ - 3990 + 4169 ] } ], "tournament_brackets": [ - 4026, + 4205, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156191,19 +161342,19 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "tournament_brackets_aggregate": [ - 4027, + 4206, { "distinct_on": [ - 4050, + 4229, "[tournament_brackets_select_column!]" ], "limit": [ @@ -156213,44 +161364,44 @@ export default { 38 ], "order_by": [ - 4048, + 4227, "[tournament_brackets_order_by!]" ], "where": [ - 4037 + 4216 ] } ], "tournament_brackets_by_pk": [ - 4026, + 4205, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_brackets_stream": [ - 4026, + 4205, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4060, + 4239, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4037 + 4216 ] } ], "tournament_organizers": [ - 4072, + 4251, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156260,19 +161411,19 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_organizers_aggregate": [ - 4073, + 4252, { "distinct_on": [ - 4093, + 4272, "[tournament_organizers_select_column!]" ], "limit": [ @@ -156282,48 +161433,48 @@ export default { 38 ], "order_by": [ - 4091, + 4270, "[tournament_organizers_order_by!]" ], "where": [ - 4081 + 4260 ] } ], "tournament_organizers_by_pk": [ - 4072, + 4251, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_organizers_stream": [ - 4072, + 4251, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4101, + 4280, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4081 + 4260 ] } ], "tournament_stage_windows": [ - 4113, + 4292, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156333,19 +161484,19 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], "tournament_stage_windows_aggregate": [ - 4114, + 4293, { "distinct_on": [ - 4134, + 4313, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -156355,44 +161506,44 @@ export default { 38 ], "order_by": [ - 4132, + 4311, "[tournament_stage_windows_order_by!]" ], "where": [ - 4122 + 4301 ] } ], "tournament_stage_windows_by_pk": [ - 4113, + 4292, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4113, + 4292, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4142, + 4321, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4122 + 4301 ] } ], "tournament_stages": [ - 4154, + 4333, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -156402,19 +161553,19 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "tournament_stages_aggregate": [ - 4155, + 4334, { "distinct_on": [ - 4183, + 4362, "[tournament_stages_select_column!]" ], "limit": [ @@ -156424,44 +161575,44 @@ export default { 38 ], "order_by": [ - 4180, + 4359, "[tournament_stages_order_by!]" ], "where": [ - 4166 + 4345 ] } ], "tournament_stages_by_pk": [ - 4154, + 4333, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_stages_stream": [ - 4154, + 4333, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4193, + 4372, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4166 + 4345 ] } ], "tournament_team_invites": [ - 4205, + 4384, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156471,19 +161622,19 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], "tournament_team_invites_aggregate": [ - 4206, + 4385, { "distinct_on": [ - 4226, + 4405, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -156493,44 +161644,44 @@ export default { 38 ], "order_by": [ - 4224, + 4403, "[tournament_team_invites_order_by!]" ], "where": [ - 4214 + 4393 ] } ], "tournament_team_invites_by_pk": [ - 4205, + 4384, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4205, + 4384, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4234, + 4413, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4214 + 4393 ] } ], "tournament_team_roster": [ - 4246, + 4425, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156540,19 +161691,19 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_team_roster_aggregate": [ - 4247, + 4426, { "distinct_on": [ - 4267, + 4446, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -156562,48 +161713,48 @@ export default { 38 ], "order_by": [ - 4265, + 4444, "[tournament_team_roster_order_by!]" ], "where": [ - 4255 + 4434 ] } ], "tournament_team_roster_by_pk": [ - 4246, + 4425, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4246, + 4425, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4275, + 4454, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4255 + 4434 ] } ], "tournament_teams": [ - 4287, + 4466, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -156613,19 +161764,19 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "tournament_teams_aggregate": [ - 4288, + 4467, { "distinct_on": [ - 4309, + 4488, "[tournament_teams_select_column!]" ], "limit": [ @@ -156635,44 +161786,44 @@ export default { 38 ], "order_by": [ - 4307, + 4486, "[tournament_teams_order_by!]" ], "where": [ - 4296 + 4475 ] } ], "tournament_teams_by_pk": [ - 4287, + 4466, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_teams_stream": [ - 4287, + 4466, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4317, + 4496, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4296 + 4475 ] } ], "tournament_trophies": [ - 4329, + 4508, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156682,19 +161833,19 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophies_aggregate": [ - 4330, + 4509, { "distinct_on": [ - 4352, + 4531, "[tournament_trophies_select_column!]" ], "limit": [ @@ -156704,44 +161855,44 @@ export default { 38 ], "order_by": [ - 4350, + 4529, "[tournament_trophies_order_by!]" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophies_by_pk": [ - 4329, + 4508, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_trophies_stream": [ - 4329, + 4508, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4362, + 4541, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4340 + 4519 ] } ], "tournament_trophy_configs": [ - 4374, + 4553, { "distinct_on": [ - 4396, + 4575, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156751,19 +161902,19 @@ export default { 38 ], "order_by": [ - 4394, + 4573, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4562 ] } ], "tournament_trophy_configs_aggregate": [ - 4375, + 4554, { "distinct_on": [ - 4396, + 4575, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -156773,44 +161924,44 @@ export default { 38 ], "order_by": [ - 4394, + 4573, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4383 + 4562 ] } ], "tournament_trophy_configs_by_pk": [ - 4374, + 4553, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4374, + 4553, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4404, + 4583, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4383 + 4562 ] } ], "tournaments": [ - 4416, + 4595, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -156820,19 +161971,19 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_aggregate": [ - 4417, + 4596, { "distinct_on": [ - 4440, + 4619, "[tournaments_select_column!]" ], "limit": [ @@ -156842,44 +161993,104 @@ export default { 38 ], "order_by": [ - 4438, + 4617, "[tournaments_order_by!]" ], "where": [ - 4427 + 4606 ] } ], "tournaments_by_pk": [ - 4416, + 4595, { "id": [ - 4462, + 4641, "uuid!" ] } ], "tournaments_stream": [ - 4416, + 4595, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4450, + 4629, "[tournaments_stream_cursor_input]!" ], "where": [ - 4427 + 4606 + ] + } + ], + "v_event_player_stats": [ + 4644, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], + "v_event_player_stats_aggregate": [ + 4645, + { + "distinct_on": [ + 4670, + "[v_event_player_stats_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4669, + "[v_event_player_stats_order_by!]" + ], + "where": [ + 4663 + ] + } + ], + "v_event_player_stats_stream": [ + 4644, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4685, + "[v_event_player_stats_stream_cursor_input]!" + ], + "where": [ + 4663 ] } ], "v_gpu_pool_status": [ - 4465, + 4695, { "distinct_on": [ - 4473, + 4703, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156889,19 +162100,19 @@ export default { 38 ], "order_by": [ - 4472, + 4702, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4699 ] } ], "v_gpu_pool_status_aggregate": [ - 4466, + 4696, { "distinct_on": [ - 4473, + 4703, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -156911,35 +162122,35 @@ export default { 38 ], "order_by": [ - 4472, + 4702, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4469 + 4699 ] } ], "v_gpu_pool_status_stream": [ - 4465, + 4695, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4477, + 4707, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4469 + 4699 ] } ], "v_league_division_standings": [ - 4483, + 4713, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156949,19 +162160,19 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "v_league_division_standings_aggregate": [ - 4484, + 4714, { "distinct_on": [ - 4499, + 4729, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -156971,35 +162182,35 @@ export default { 38 ], "order_by": [ - 4498, + 4728, "[v_league_division_standings_order_by!]" ], "where": [ - 4492 + 4722 ] } ], "v_league_division_standings_stream": [ - 4483, + 4713, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4506, + 4736, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4492 + 4722 ] } ], "v_league_season_player_stats": [ - 4516, + 4746, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157009,19 +162220,19 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], "v_league_season_player_stats_aggregate": [ - 4517, + 4747, { "distinct_on": [ - 4542, + 4772, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -157031,35 +162242,35 @@ export default { 38 ], "order_by": [ - 4541, + 4771, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4535 + 4765 ] } ], "v_league_season_player_stats_stream": [ - 4516, + 4746, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4557, + 4787, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4535 + 4765 ] } ], "v_match_captains": [ - 4567, + 4797, { "distinct_on": [ - 4579, + 4809, "[v_match_captains_select_column!]" ], "limit": [ @@ -157069,19 +162280,19 @@ export default { 38 ], "order_by": [ - 4578, + 4808, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4801 ] } ], "v_match_captains_aggregate": [ - 4568, + 4798, { "distinct_on": [ - 4579, + 4809, "[v_match_captains_select_column!]" ], "limit": [ @@ -157091,35 +162302,35 @@ export default { 38 ], "order_by": [ - 4578, + 4808, "[v_match_captains_order_by!]" ], "where": [ - 4571 + 4801 ] } ], "v_match_captains_stream": [ - 4567, + 4797, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4584, + 4814, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4571 + 4801 ] } ], "v_match_clutches": [ - 4591, + 4821, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157129,19 +162340,19 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], "v_match_clutches_aggregate": [ - 4592, + 4822, { "distinct_on": [ - 4607, + 4837, "[v_match_clutches_select_column!]" ], "limit": [ @@ -157151,35 +162362,35 @@ export default { 38 ], "order_by": [ - 4606, + 4836, "[v_match_clutches_order_by!]" ], "where": [ - 4600 + 4830 ] } ], "v_match_clutches_stream": [ - 4591, + 4821, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4614, + 4844, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4600 + 4830 ] } ], "v_match_kill_pairs": [ - 4624, + 4854, { "distinct_on": [ - 4632, + 4862, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157189,19 +162400,19 @@ export default { 38 ], "order_by": [ - 4631, + 4861, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4858 ] } ], "v_match_kill_pairs_aggregate": [ - 4625, + 4855, { "distinct_on": [ - 4632, + 4862, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -157211,35 +162422,35 @@ export default { 38 ], "order_by": [ - 4631, + 4861, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4628 + 4858 ] } ], "v_match_kill_pairs_stream": [ - 4624, + 4854, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4636, + 4866, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4628 + 4858 ] } ], "v_match_lineup_buy_types": [ - 4642, + 4872, { "distinct_on": [ - 4650, + 4880, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157249,19 +162460,19 @@ export default { 38 ], "order_by": [ - 4649, + 4879, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4876 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4643, + 4873, { "distinct_on": [ - 4650, + 4880, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -157271,35 +162482,35 @@ export default { 38 ], "order_by": [ - 4649, + 4879, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4646 + 4876 ] } ], "v_match_lineup_buy_types_stream": [ - 4642, + 4872, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4654, + 4884, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4646 + 4876 ] } ], "v_match_lineup_map_stats": [ - 4660, + 4890, { "distinct_on": [ - 4668, + 4898, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157309,19 +162520,19 @@ export default { 38 ], "order_by": [ - 4667, + 4897, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4894 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4661, + 4891, { "distinct_on": [ - 4668, + 4898, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -157331,35 +162542,35 @@ export default { 38 ], "order_by": [ - 4667, + 4897, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4664 + 4894 ] } ], "v_match_lineup_map_stats_stream": [ - 4660, + 4890, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4672, + 4902, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 4664 + 4894 ] } ], "v_match_map_backup_rounds": [ - 4678, + 4908, { "distinct_on": [ - 4689, + 4919, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157369,19 +162580,19 @@ export default { 38 ], "order_by": [ - 4688, + 4918, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4912 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4679, + 4909, { "distinct_on": [ - 4689, + 4919, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -157391,35 +162602,35 @@ export default { 38 ], "order_by": [ - 4688, + 4918, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4682 + 4912 ] } ], "v_match_map_backup_rounds_stream": [ - 4678, + 4908, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4694, + 4924, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4682 + 4912 ] } ], "v_match_player_buy_types": [ - 4701, + 4931, { "distinct_on": [ - 4709, + 4939, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157429,19 +162640,19 @@ export default { 38 ], "order_by": [ - 4708, + 4938, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4935 ] } ], "v_match_player_buy_types_aggregate": [ - 4702, + 4932, { "distinct_on": [ - 4709, + 4939, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -157451,35 +162662,35 @@ export default { 38 ], "order_by": [ - 4708, + 4938, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4705 + 4935 ] } ], "v_match_player_buy_types_stream": [ - 4701, + 4931, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4713, + 4943, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4705 + 4935 ] } ], "v_match_player_opening_duels": [ - 4719, + 4949, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157489,19 +162700,19 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "v_match_player_opening_duels_aggregate": [ - 4720, + 4950, { "distinct_on": [ - 4735, + 4965, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -157511,35 +162722,35 @@ export default { 38 ], "order_by": [ - 4734, + 4964, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4728 + 4958 ] } ], "v_match_player_opening_duels_stream": [ - 4719, + 4949, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4742, + 4972, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4728 + 4958 ] } ], "v_player_arch_nemesis": [ - 4752, + 4982, { "distinct_on": [ - 4760, + 4990, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157549,19 +162760,19 @@ export default { 38 ], "order_by": [ - 4759, + 4989, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4986 ] } ], "v_player_arch_nemesis_aggregate": [ - 4753, + 4983, { "distinct_on": [ - 4760, + 4990, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -157571,35 +162782,35 @@ export default { 38 ], "order_by": [ - 4759, + 4989, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4756 + 4986 ] } ], "v_player_arch_nemesis_stream": [ - 4752, + 4982, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4764, + 4994, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4756 + 4986 ] } ], "v_player_damage": [ - 4770, + 5000, { "distinct_on": [ - 4778, + 5008, "[v_player_damage_select_column!]" ], "limit": [ @@ -157609,19 +162820,19 @@ export default { 38 ], "order_by": [ - 4777, + 5007, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5004 ] } ], "v_player_damage_aggregate": [ - 4771, + 5001, { "distinct_on": [ - 4778, + 5008, "[v_player_damage_select_column!]" ], "limit": [ @@ -157631,35 +162842,35 @@ export default { 38 ], "order_by": [ - 4777, + 5007, "[v_player_damage_order_by!]" ], "where": [ - 4774 + 5004 ] } ], "v_player_damage_stream": [ - 4770, + 5000, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4782, + 5012, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 4774 + 5004 ] } ], "v_player_elo": [ - 4788, + 5018, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -157669,19 +162880,19 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "v_player_elo_aggregate": [ - 4789, + 5019, { "distinct_on": [ - 4814, + 5044, "[v_player_elo_select_column!]" ], "limit": [ @@ -157691,35 +162902,35 @@ export default { 38 ], "order_by": [ - 4813, + 5043, "[v_player_elo_order_by!]" ], "where": [ - 4807 + 5037 ] } ], "v_player_elo_stream": [ - 4788, + 5018, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4829, + 5059, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 4807 + 5037 ] } ], "v_player_map_losses": [ - 4839, + 5069, { "distinct_on": [ - 4847, + 5077, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157729,19 +162940,19 @@ export default { 38 ], "order_by": [ - 4846, + 5076, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5073 ] } ], "v_player_map_losses_aggregate": [ - 4840, + 5070, { "distinct_on": [ - 4847, + 5077, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -157751,35 +162962,35 @@ export default { 38 ], "order_by": [ - 4846, + 5076, "[v_player_map_losses_order_by!]" ], "where": [ - 4843 + 5073 ] } ], "v_player_map_losses_stream": [ - 4839, + 5069, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4851, + 5081, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 4843 + 5073 ] } ], "v_player_map_wins": [ - 4857, + 5087, { "distinct_on": [ - 4865, + 5095, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157789,19 +163000,19 @@ export default { 38 ], "order_by": [ - 4864, + 5094, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5091 ] } ], "v_player_map_wins_aggregate": [ - 4858, + 5088, { "distinct_on": [ - 4865, + 5095, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -157811,35 +163022,35 @@ export default { 38 ], "order_by": [ - 4864, + 5094, "[v_player_map_wins_order_by!]" ], "where": [ - 4861 + 5091 ] } ], "v_player_map_wins_stream": [ - 4857, + 5087, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4869, + 5099, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 4861 + 5091 ] } ], "v_player_match_head_to_head": [ - 4875, + 5105, { "distinct_on": [ - 4883, + 5113, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157849,19 +163060,19 @@ export default { 38 ], "order_by": [ - 4882, + 5112, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5109 ] } ], "v_player_match_head_to_head_aggregate": [ - 4876, + 5106, { "distinct_on": [ - 4883, + 5113, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -157871,35 +163082,35 @@ export default { 38 ], "order_by": [ - 4882, + 5112, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 4879 + 5109 ] } ], "v_player_match_head_to_head_stream": [ - 4875, + 5105, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4887, + 5117, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 4879 + 5109 ] } ], "v_player_match_map_hltv": [ - 4893, + 5123, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157909,19 +163120,19 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "v_player_match_map_hltv_aggregate": [ - 4894, + 5124, { "distinct_on": [ - 4911, + 5141, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -157931,35 +163142,35 @@ export default { 38 ], "order_by": [ - 4910, + 5140, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 4902 + 5132 ] } ], "v_player_match_map_hltv_stream": [ - 4893, + 5123, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4919, + 5149, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 4902 + 5132 ] } ], "v_player_match_map_roles": [ - 4930, + 5160, { "distinct_on": [ - 4938, + 5168, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157969,19 +163180,19 @@ export default { 38 ], "order_by": [ - 4937, + 5167, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5164 ] } ], "v_player_match_map_roles_aggregate": [ - 4931, + 5161, { "distinct_on": [ - 4938, + 5168, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -157991,35 +163202,35 @@ export default { 38 ], "order_by": [ - 4937, + 5167, "[v_player_match_map_roles_order_by!]" ], "where": [ - 4934 + 5164 ] } ], "v_player_match_map_roles_stream": [ - 4930, + 5160, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4942, + 5172, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 4934 + 5164 ] } ], "v_player_match_performance": [ - 4948, + 5178, { "distinct_on": [ - 4956, + 5186, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158029,19 +163240,19 @@ export default { 38 ], "order_by": [ - 4955, + 5185, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5182 ] } ], "v_player_match_performance_aggregate": [ - 4949, + 5179, { "distinct_on": [ - 4956, + 5186, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -158051,35 +163262,35 @@ export default { 38 ], "order_by": [ - 4955, + 5185, "[v_player_match_performance_order_by!]" ], "where": [ - 4952 + 5182 ] } ], "v_player_match_performance_stream": [ - 4948, + 5178, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4960, + 5190, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 4952 + 5182 ] } ], "v_player_match_rating": [ - 4966, + 5196, { "distinct_on": [ - 4974, + 5204, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158089,19 +163300,19 @@ export default { 38 ], "order_by": [ - 4973, + 5203, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5200 ] } ], "v_player_match_rating_aggregate": [ - 4967, + 5197, { "distinct_on": [ - 4974, + 5204, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -158111,35 +163322,35 @@ export default { 38 ], "order_by": [ - 4973, + 5203, "[v_player_match_rating_order_by!]" ], "where": [ - 4970 + 5200 ] } ], "v_player_match_rating_stream": [ - 4966, + 5196, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4978, + 5208, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 4970 + 5200 ] } ], "v_player_multi_kills": [ - 4984, + 5214, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158149,19 +163360,19 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], "v_player_multi_kills_aggregate": [ - 4985, + 5215, { "distinct_on": [ - 5000, + 5230, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -158171,35 +163382,35 @@ export default { 38 ], "order_by": [ - 4999, + 5229, "[v_player_multi_kills_order_by!]" ], "where": [ - 4993 + 5223 ] } ], "v_player_multi_kills_stream": [ - 4984, + 5214, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5007, + 5237, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 4993 + 5223 ] } ], "v_player_weapon_damage": [ - 5017, + 5247, { "distinct_on": [ - 5025, + 5255, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158209,19 +163420,19 @@ export default { 38 ], "order_by": [ - 5024, + 5254, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5251 ] } ], "v_player_weapon_damage_aggregate": [ - 5018, + 5248, { "distinct_on": [ - 5025, + 5255, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -158231,35 +163442,35 @@ export default { 38 ], "order_by": [ - 5024, + 5254, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5021 + 5251 ] } ], "v_player_weapon_damage_stream": [ - 5017, + 5247, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5029, + 5259, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5021 + 5251 ] } ], "v_player_weapon_kills": [ - 5035, + 5265, { "distinct_on": [ - 5043, + 5273, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158269,19 +163480,19 @@ export default { 38 ], "order_by": [ - 5042, + 5272, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5269 ] } ], "v_player_weapon_kills_aggregate": [ - 5036, + 5266, { "distinct_on": [ - 5043, + 5273, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -158291,35 +163502,35 @@ export default { 38 ], "order_by": [ - 5042, + 5272, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5039 + 5269 ] } ], "v_player_weapon_kills_stream": [ - 5035, + 5265, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5047, + 5277, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5039 + 5269 ] } ], "v_pool_maps": [ - 5053, + 5283, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158329,19 +163540,19 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], "v_pool_maps_aggregate": [ - 5054, + 5284, { "distinct_on": [ - 5070, + 5300, "[v_pool_maps_select_column!]" ], "limit": [ @@ -158351,35 +163562,35 @@ export default { 38 ], "order_by": [ - 5069, + 5299, "[v_pool_maps_order_by!]" ], "where": [ - 5062 + 5292 ] } ], "v_pool_maps_stream": [ - 5053, + 5283, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5074, + 5304, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5062 + 5292 ] } ], "v_steam_account_pool_status": [ - 5077, + 5307, { "distinct_on": [ - 5085, + 5315, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158389,19 +163600,19 @@ export default { 38 ], "order_by": [ - 5084, + 5314, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5311 ] } ], "v_steam_account_pool_status_aggregate": [ - 5078, + 5308, { "distinct_on": [ - 5085, + 5315, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -158411,35 +163622,35 @@ export default { 38 ], "order_by": [ - 5084, + 5314, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5081 + 5311 ] } ], "v_steam_account_pool_status_stream": [ - 5077, + 5307, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5089, + 5319, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5081 + 5311 ] } ], "v_team_ranks": [ - 5095, + 5325, { "distinct_on": [ - 5105, + 5335, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158449,19 +163660,19 @@ export default { 38 ], "order_by": [ - 5104, + 5334, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5329 ] } ], "v_team_ranks_aggregate": [ - 5096, + 5326, { "distinct_on": [ - 5105, + 5335, "[v_team_ranks_select_column!]" ], "limit": [ @@ -158471,35 +163682,35 @@ export default { 38 ], "order_by": [ - 5104, + 5334, "[v_team_ranks_order_by!]" ], "where": [ - 5099 + 5329 ] } ], "v_team_ranks_stream": [ - 5095, + 5325, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5109, + 5339, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5099 + 5329 ] } ], "v_team_reputation": [ - 5115, + 5345, { "distinct_on": [ - 5125, + 5355, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158509,19 +163720,19 @@ export default { 38 ], "order_by": [ - 5124, + 5354, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5349 ] } ], "v_team_reputation_aggregate": [ - 5116, + 5346, { "distinct_on": [ - 5125, + 5355, "[v_team_reputation_select_column!]" ], "limit": [ @@ -158531,35 +163742,35 @@ export default { 38 ], "order_by": [ - 5124, + 5354, "[v_team_reputation_order_by!]" ], "where": [ - 5119 + 5349 ] } ], "v_team_reputation_stream": [ - 5115, + 5345, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5129, + 5359, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5119 + 5349 ] } ], "v_team_stage_results": [ - 5135, + 5365, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158569,19 +163780,19 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "v_team_stage_results_aggregate": [ - 5136, + 5366, { "distinct_on": [ - 5167, + 5397, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -158591,48 +163802,48 @@ export default { 38 ], "order_by": [ - 5165, + 5395, "[v_team_stage_results_order_by!]" ], "where": [ - 5154 + 5384 ] } ], "v_team_stage_results_by_pk": [ - 5135, + 5365, { "tournament_stage_id": [ - 4462, + 4641, "uuid!" ], "tournament_team_id": [ - 4462, + 4641, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5135, + 5365, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5183, + 5413, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5154 + 5384 ] } ], "v_team_tournament_results": [ - 5195, + 5425, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158642,19 +163853,19 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "v_team_tournament_results_aggregate": [ - 5196, + 5426, { "distinct_on": [ - 5221, + 5451, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -158664,35 +163875,35 @@ export default { 38 ], "order_by": [ - 5220, + 5450, "[v_team_tournament_results_order_by!]" ], "where": [ - 5214 + 5444 ] } ], "v_team_tournament_results_stream": [ - 5195, + 5425, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5236, + 5466, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5214 + 5444 ] } ], "v_tournament_player_stats": [ - 5246, + 5476, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158702,19 +163913,19 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], "v_tournament_player_stats_aggregate": [ - 5247, + 5477, { "distinct_on": [ - 5272, + 5502, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -158724,27 +163935,27 @@ export default { 38 ], "order_by": [ - 5271, + 5501, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5265 + 5495 ] } ], "v_tournament_player_stats_stream": [ - 5246, + 5476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5287, + 5517, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5265 + 5495 ] } ], From 268c912bf906eaa6eeb4841f029ed24dbb1e3abc Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 10:52:02 -0400 Subject: [PATCH 03/11] wip --- generated/schema.graphql | 2067 +- generated/schema.ts | 2350 +- generated/types.ts | 53764 ++++++++-------- hasura/functions/events/event_access.sql | 122 + .../events/get_event_leaderboard.sql | 29 +- .../match/get_match_server_plugin_runtime.sql | 20 + .../public_get_event_leaderboard.yaml | 1 + .../tables/public_e_event_media_access.yaml | 12 + ...us.yaml => public_e_event_visibility.yaml} | 2 +- .../tables/public_event_match_links.yaml | 35 + .../default/tables/public_event_media.yaml | 75 + .../tables/public_event_media_players.yaml | 64 + .../tables/public_event_organizers.yaml | 22 +- .../default/tables/public_event_players.yaml | 14 +- .../default/tables/public_event_teams.yaml | 14 +- .../tables/public_event_tournaments.yaml | 14 +- .../default/tables/public_events.yaml | 318 +- .../default/tables/public_matches.yaml | 7 + .../tables/public_v_event_player_stats.yaml | 14 +- .../databases/default/tables/tables.yaml | 6 +- .../default/1867000000300_events/down.sql | 2 + .../down.sql | 33 + .../up.sql | 62 + .../down.sql | 31 + .../1872000000000_remove_event_status/up.sql | 7 + .../1873000000000_event_media_meta/down.sql | 2 + .../1873000000000_event_media_meta/up.sql | 12 + .../1874000000000_event_match_links/down.sql | 35 + .../1874000000000_event_match_links/up.sql | 12 + .../down.sql | 1 + .../up.sql | 4 + .../down.sql | 1 + .../up.sql | 4 + hasura/triggers/event_match_links.sql | 128 + hasura/views/v_event_matches.sql | 51 + hasura/views/v_event_player_stats.sql | 11 +- src/app.module.ts | 2 + src/chat/chat.service.ts | 8 +- src/events/events.controller.ts | 570 + src/events/events.module.ts | 14 + src/events/events.service.ts | 206 + src/matches/events/MatchMapResetRoundEvent.ts | 4 + .../match-assistant.service.ts | 14 +- src/matches/match-events.gateway.ts | 17 +- src/system/enums/SystemSettingName.ts | 1 + 45 files changed, 33967 insertions(+), 26215 deletions(-) create mode 100644 hasura/functions/events/event_access.sql create mode 100644 hasura/functions/match/get_match_server_plugin_runtime.sql create mode 100644 hasura/metadata/databases/default/tables/public_e_event_media_access.yaml rename hasura/metadata/databases/default/tables/{public_e_event_status.yaml => public_e_event_visibility.yaml} (86%) create mode 100644 hasura/metadata/databases/default/tables/public_event_match_links.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_media.yaml create mode 100644 hasura/metadata/databases/default/tables/public_event_media_players.yaml create mode 100644 hasura/migrations/default/1871000000000_event_visibility_media/down.sql create mode 100644 hasura/migrations/default/1871000000000_event_visibility_media/up.sql create mode 100644 hasura/migrations/default/1872000000000_remove_event_status/down.sql create mode 100644 hasura/migrations/default/1872000000000_remove_event_status/up.sql create mode 100644 hasura/migrations/default/1873000000000_event_media_meta/down.sql create mode 100644 hasura/migrations/default/1873000000000_event_media_meta/up.sql create mode 100644 hasura/migrations/default/1874000000000_event_match_links/down.sql create mode 100644 hasura/migrations/default/1874000000000_event_match_links/up.sql create mode 100644 hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql create mode 100644 hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql create mode 100644 hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql create mode 100644 hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql create mode 100644 hasura/triggers/event_match_links.sql create mode 100644 hasura/views/v_event_matches.sql create mode 100644 src/events/events.controller.ts create mode 100644 src/events/events.module.ts create mode 100644 src/events/events.service.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index 2f38e269..9c4b1dc8 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -5608,128 +5608,299 @@ input e_draft_game_status_updates { } """ -columns and relationships of "e_event_status" +columns and relationships of "e_event_media_access" """ -type e_event_status { +type e_event_media_access { description: String! value: String! } """ -aggregated selection of "e_event_status" +aggregated selection of "e_event_media_access" """ -type e_event_status_aggregate { - aggregate: e_event_status_aggregate_fields - nodes: [e_event_status!]! +type e_event_media_access_aggregate { + aggregate: e_event_media_access_aggregate_fields + nodes: [e_event_media_access!]! } """ -aggregate fields of "e_event_status" +aggregate fields of "e_event_media_access" """ -type e_event_status_aggregate_fields { - count(columns: [e_event_status_select_column!], distinct: Boolean): Int! - max: e_event_status_max_fields - min: e_event_status_min_fields +type e_event_media_access_aggregate_fields { + count(columns: [e_event_media_access_select_column!], distinct: Boolean): Int! + max: e_event_media_access_max_fields + min: e_event_media_access_min_fields } """ -Boolean expression to filter rows from the table "e_event_status". All fields are combined with a logical 'AND'. +Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. """ -input e_event_status_bool_exp { - _and: [e_event_status_bool_exp!] - _not: e_event_status_bool_exp - _or: [e_event_status_bool_exp!] +input e_event_media_access_bool_exp { + _and: [e_event_media_access_bool_exp!] + _not: e_event_media_access_bool_exp + _or: [e_event_media_access_bool_exp!] description: String_comparison_exp value: String_comparison_exp } """ -unique or primary key constraints on table "e_event_status" +unique or primary key constraints on table "e_event_media_access" """ -enum e_event_status_constraint { +enum e_event_media_access_constraint { """ unique or primary key constraint on columns "value" """ - e_event_status_pkey + e_event_media_access_pkey } -enum e_event_status_enum { - """Event has finished""" - Finished +enum e_event_media_access_enum { + """Anyone involved in the event""" + Involved - """Event is in progress""" - Live + """Organizers only""" + Organizers +} - """Event is being set up; hidden from the public""" - Setup +""" +Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. +""" +input e_event_media_access_enum_comparison_exp { + _eq: e_event_media_access_enum + _in: [e_event_media_access_enum!] + _is_null: Boolean + _neq: e_event_media_access_enum + _nin: [e_event_media_access_enum!] +} + +""" +input type for inserting data into table "e_event_media_access" +""" +input e_event_media_access_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_event_media_access_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_event_media_access_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_event_media_access" +""" +type e_event_media_access_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_event_media_access!]! +} + +""" +on_conflict condition type for table "e_event_media_access" +""" +input e_event_media_access_on_conflict { + constraint: e_event_media_access_constraint! + update_columns: [e_event_media_access_update_column!]! = [] + where: e_event_media_access_bool_exp +} + +"""Ordering options when selecting data from "e_event_media_access".""" +input e_event_media_access_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_event_media_access""" +input e_event_media_access_pk_columns_input { + value: String! +} + +""" +select columns of table "e_event_media_access" +""" +enum e_event_media_access_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_event_media_access" +""" +input e_event_media_access_set_input { + description: String + value: String } """ -Boolean expression to compare columns of type "e_event_status_enum". All fields are combined with logical 'AND'. +Streaming cursor of the table "e_event_media_access" """ -input e_event_status_enum_comparison_exp { - _eq: e_event_status_enum - _in: [e_event_status_enum!] +input e_event_media_access_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_event_media_access_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_event_media_access_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_event_media_access" +""" +enum e_event_media_access_update_column { + """column name""" + description + + """column name""" + value +} + +input e_event_media_access_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_event_media_access_set_input + + """filter the rows which have to be updated""" + where: e_event_media_access_bool_exp! +} + +""" +columns and relationships of "e_event_visibility" +""" +type e_event_visibility { + description: String! + value: String! +} + +""" +aggregated selection of "e_event_visibility" +""" +type e_event_visibility_aggregate { + aggregate: e_event_visibility_aggregate_fields + nodes: [e_event_visibility!]! +} + +""" +aggregate fields of "e_event_visibility" +""" +type e_event_visibility_aggregate_fields { + count(columns: [e_event_visibility_select_column!], distinct: Boolean): Int! + max: e_event_visibility_max_fields + min: e_event_visibility_min_fields +} + +""" +Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. +""" +input e_event_visibility_bool_exp { + _and: [e_event_visibility_bool_exp!] + _not: e_event_visibility_bool_exp + _or: [e_event_visibility_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_event_visibility" +""" +enum e_event_visibility_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_event_visibility_pkey +} + +enum e_event_visibility_enum { + """Involved people and their friends""" + Friends + + """Only people involved in the event""" + Private + + """Anyone""" + Public +} + +""" +Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. +""" +input e_event_visibility_enum_comparison_exp { + _eq: e_event_visibility_enum + _in: [e_event_visibility_enum!] _is_null: Boolean - _neq: e_event_status_enum - _nin: [e_event_status_enum!] + _neq: e_event_visibility_enum + _nin: [e_event_visibility_enum!] } """ -input type for inserting data into table "e_event_status" +input type for inserting data into table "e_event_visibility" """ -input e_event_status_insert_input { +input e_event_visibility_insert_input { description: String value: String } """aggregate max on columns""" -type e_event_status_max_fields { +type e_event_visibility_max_fields { description: String value: String } """aggregate min on columns""" -type e_event_status_min_fields { +type e_event_visibility_min_fields { description: String value: String } """ -response of any mutation on the table "e_event_status" +response of any mutation on the table "e_event_visibility" """ -type e_event_status_mutation_response { +type e_event_visibility_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [e_event_status!]! + returning: [e_event_visibility!]! } """ -on_conflict condition type for table "e_event_status" +on_conflict condition type for table "e_event_visibility" """ -input e_event_status_on_conflict { - constraint: e_event_status_constraint! - update_columns: [e_event_status_update_column!]! = [] - where: e_event_status_bool_exp +input e_event_visibility_on_conflict { + constraint: e_event_visibility_constraint! + update_columns: [e_event_visibility_update_column!]! = [] + where: e_event_visibility_bool_exp } -"""Ordering options when selecting data from "e_event_status".""" -input e_event_status_order_by { +"""Ordering options when selecting data from "e_event_visibility".""" +input e_event_visibility_order_by { description: order_by value: order_by } -"""primary key columns input for table: e_event_status""" -input e_event_status_pk_columns_input { +"""primary key columns input for table: e_event_visibility""" +input e_event_visibility_pk_columns_input { value: String! } """ -select columns of table "e_event_status" +select columns of table "e_event_visibility" """ -enum e_event_status_select_column { +enum e_event_visibility_select_column { """column name""" description @@ -5738,34 +5909,34 @@ enum e_event_status_select_column { } """ -input type for updating data in table "e_event_status" +input type for updating data in table "e_event_visibility" """ -input e_event_status_set_input { +input e_event_visibility_set_input { description: String value: String } """ -Streaming cursor of the table "e_event_status" +Streaming cursor of the table "e_event_visibility" """ -input e_event_status_stream_cursor_input { +input e_event_visibility_stream_cursor_input { """Stream column input with initial value""" - initial_value: e_event_status_stream_cursor_value_input! + initial_value: e_event_visibility_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input e_event_status_stream_cursor_value_input { +input e_event_visibility_stream_cursor_value_input { description: String value: String } """ -update columns of table "e_event_status" +update columns of table "e_event_visibility" """ -enum e_event_status_update_column { +enum e_event_visibility_update_column { """column name""" description @@ -5773,12 +5944,12 @@ enum e_event_status_update_column { value } -input e_event_status_updates { +input e_event_visibility_updates { """sets the columns of the filtered rows to the given values""" - _set: e_event_status_set_input + _set: e_event_visibility_set_input """filter the rows which have to be updated""" - where: e_event_status_bool_exp! + where: e_event_visibility_bool_exp! } """ @@ -12548,6 +12719,855 @@ input e_winning_reasons_updates { where: e_winning_reasons_bool_exp! } +""" +columns and relationships of "event_media" +""" +type event_media { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + filename: String! + id: uuid! + mime_type: String! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + size: bigint! + title: String + + """An object relationship""" + uploader: players! + uploader_steam_id: bigint! +} + +""" +aggregated selection of "event_media" +""" +type event_media_aggregate { + aggregate: event_media_aggregate_fields + nodes: [event_media!]! +} + +input event_media_aggregate_bool_exp { + count: event_media_aggregate_bool_exp_count +} + +input event_media_aggregate_bool_exp_count { + arguments: [event_media_select_column!] + distinct: Boolean + filter: event_media_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media" +""" +type event_media_aggregate_fields { + avg: event_media_avg_fields + count(columns: [event_media_select_column!], distinct: Boolean): Int! + max: event_media_max_fields + min: event_media_min_fields + stddev: event_media_stddev_fields + stddev_pop: event_media_stddev_pop_fields + stddev_samp: event_media_stddev_samp_fields + sum: event_media_sum_fields + var_pop: event_media_var_pop_fields + var_samp: event_media_var_samp_fields + variance: event_media_variance_fields +} + +""" +order by aggregate values of table "event_media" +""" +input event_media_aggregate_order_by { + avg: event_media_avg_order_by + count: order_by + max: event_media_max_order_by + min: event_media_min_order_by + stddev: event_media_stddev_order_by + stddev_pop: event_media_stddev_pop_order_by + stddev_samp: event_media_stddev_samp_order_by + sum: event_media_sum_order_by + var_pop: event_media_var_pop_order_by + var_samp: event_media_var_samp_order_by + variance: event_media_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media" +""" +input event_media_arr_rel_insert_input { + data: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +"""aggregate avg on columns""" +type event_media_avg_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by avg() on columns of table "event_media" +""" +input event_media_avg_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. +""" +input event_media_bool_exp { + _and: [event_media_bool_exp!] + _not: event_media_bool_exp + _or: [event_media_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + filename: String_comparison_exp + id: uuid_comparison_exp + mime_type: String_comparison_exp + players: event_media_players_bool_exp + players_aggregate: event_media_players_aggregate_bool_exp + size: bigint_comparison_exp + title: String_comparison_exp + uploader: players_bool_exp + uploader_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media" +""" +enum event_media_constraint { + """ + unique or primary key constraint on columns "filename", "event_id" + """ + event_media_event_id_filename_key + + """ + unique or primary key constraint on columns "id" + """ + event_media_pkey +} + +""" +input type for incrementing numeric columns in table "event_media" +""" +input event_media_inc_input { + size: bigint + uploader_steam_id: bigint +} + +""" +input type for inserting data into table "event_media" +""" +input event_media_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + filename: String + id: uuid + mime_type: String + players: event_media_players_arr_rel_insert_input + size: bigint + title: String + uploader: players_obj_rel_insert_input + uploader_steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_max_fields { + created_at: timestamptz + event_id: uuid + filename: String + id: uuid + mime_type: String + size: bigint + title: String + uploader_steam_id: bigint +} + +""" +order by max() on columns of table "event_media" +""" +input event_media_max_order_by { + created_at: order_by + event_id: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + title: order_by + uploader_steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_min_fields { + created_at: timestamptz + event_id: uuid + filename: String + id: uuid + mime_type: String + size: bigint + title: String + uploader_steam_id: bigint +} + +""" +order by min() on columns of table "event_media" +""" +input event_media_min_order_by { + created_at: order_by + event_id: order_by + filename: order_by + id: order_by + mime_type: order_by + size: order_by + title: order_by + uploader_steam_id: order_by +} + +""" +response of any mutation on the table "event_media" +""" +type event_media_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media!]! +} + +""" +input type for inserting object relation for remote table "event_media" +""" +input event_media_obj_rel_insert_input { + data: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict +} + +""" +on_conflict condition type for table "event_media" +""" +input event_media_on_conflict { + constraint: event_media_constraint! + update_columns: [event_media_update_column!]! = [] + where: event_media_bool_exp +} + +"""Ordering options when selecting data from "event_media".""" +input event_media_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + filename: order_by + id: order_by + mime_type: order_by + players_aggregate: event_media_players_aggregate_order_by + size: order_by + title: order_by + uploader: players_order_by + uploader_steam_id: order_by +} + +"""primary key columns input for table: event_media""" +input event_media_pk_columns_input { + id: uuid! +} + +""" +columns and relationships of "event_media_players" +""" +type event_media_players { + created_at: timestamptz! + + """An object relationship""" + media: event_media! + media_id: uuid! + + """An object relationship""" + player: players! + steam_id: bigint! +} + +""" +aggregated selection of "event_media_players" +""" +type event_media_players_aggregate { + aggregate: event_media_players_aggregate_fields + nodes: [event_media_players!]! +} + +input event_media_players_aggregate_bool_exp { + count: event_media_players_aggregate_bool_exp_count +} + +input event_media_players_aggregate_bool_exp_count { + arguments: [event_media_players_select_column!] + distinct: Boolean + filter: event_media_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "event_media_players" +""" +type event_media_players_aggregate_fields { + avg: event_media_players_avg_fields + count(columns: [event_media_players_select_column!], distinct: Boolean): Int! + max: event_media_players_max_fields + min: event_media_players_min_fields + stddev: event_media_players_stddev_fields + stddev_pop: event_media_players_stddev_pop_fields + stddev_samp: event_media_players_stddev_samp_fields + sum: event_media_players_sum_fields + var_pop: event_media_players_var_pop_fields + var_samp: event_media_players_var_samp_fields + variance: event_media_players_variance_fields +} + +""" +order by aggregate values of table "event_media_players" +""" +input event_media_players_aggregate_order_by { + avg: event_media_players_avg_order_by + count: order_by + max: event_media_players_max_order_by + min: event_media_players_min_order_by + stddev: event_media_players_stddev_order_by + stddev_pop: event_media_players_stddev_pop_order_by + stddev_samp: event_media_players_stddev_samp_order_by + sum: event_media_players_sum_order_by + var_pop: event_media_players_var_pop_order_by + var_samp: event_media_players_var_samp_order_by + variance: event_media_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "event_media_players" +""" +input event_media_players_arr_rel_insert_input { + data: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict +} + +"""aggregate avg on columns""" +type event_media_players_avg_fields { + steam_id: Float +} + +""" +order by avg() on columns of table "event_media_players" +""" +input event_media_players_avg_order_by { + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. +""" +input event_media_players_bool_exp { + _and: [event_media_players_bool_exp!] + _not: event_media_players_bool_exp + _or: [event_media_players_bool_exp!] + created_at: timestamptz_comparison_exp + media: event_media_bool_exp + media_id: uuid_comparison_exp + player: players_bool_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "event_media_players" +""" +enum event_media_players_constraint { + """ + unique or primary key constraint on columns "steam_id", "media_id" + """ + event_media_players_pkey +} + +""" +input type for incrementing numeric columns in table "event_media_players" +""" +input event_media_players_inc_input { + steam_id: bigint +} + +""" +input type for inserting data into table "event_media_players" +""" +input event_media_players_insert_input { + created_at: timestamptz + media: event_media_obj_rel_insert_input + media_id: uuid + player: players_obj_rel_insert_input + steam_id: bigint +} + +"""aggregate max on columns""" +type event_media_players_max_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by max() on columns of table "event_media_players" +""" +input event_media_players_max_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +"""aggregate min on columns""" +type event_media_players_min_fields { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +""" +order by min() on columns of table "event_media_players" +""" +input event_media_players_min_order_by { + created_at: order_by + media_id: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "event_media_players" +""" +type event_media_players_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_media_players!]! +} + +""" +on_conflict condition type for table "event_media_players" +""" +input event_media_players_on_conflict { + constraint: event_media_players_constraint! + update_columns: [event_media_players_update_column!]! = [] + where: event_media_players_bool_exp +} + +"""Ordering options when selecting data from "event_media_players".""" +input event_media_players_order_by { + created_at: order_by + media: event_media_order_by + media_id: order_by + player: players_order_by + steam_id: order_by +} + +"""primary key columns input for table: event_media_players""" +input event_media_players_pk_columns_input { + media_id: uuid! + steam_id: bigint! +} + +""" +select columns of table "event_media_players" +""" +enum event_media_players_select_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +""" +input type for updating data in table "event_media_players" +""" +input event_media_players_set_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_players_stddev_fields { + steam_id: Float +} + +""" +order by stddev() on columns of table "event_media_players" +""" +input event_media_players_stddev_order_by { + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_players_stddev_pop_fields { + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media_players" +""" +input event_media_players_stddev_pop_order_by { + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_players_stddev_samp_fields { + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media_players" +""" +input event_media_players_stddev_samp_order_by { + steam_id: order_by +} + +""" +Streaming cursor of the table "event_media_players" +""" +input event_media_players_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_players_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_players_stream_cursor_value_input { + created_at: timestamptz + media_id: uuid + steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_players_sum_fields { + steam_id: bigint +} + +""" +order by sum() on columns of table "event_media_players" +""" +input event_media_players_sum_order_by { + steam_id: order_by +} + +""" +update columns of table "event_media_players" +""" +enum event_media_players_update_column { + """column name""" + created_at + + """column name""" + media_id + + """column name""" + steam_id +} + +input event_media_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_players_var_pop_fields { + steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media_players" +""" +input event_media_players_var_pop_order_by { + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_players_var_samp_fields { + steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media_players" +""" +input event_media_players_var_samp_order_by { + steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_players_variance_fields { + steam_id: Float +} + +""" +order by variance() on columns of table "event_media_players" +""" +input event_media_players_variance_order_by { + steam_id: order_by +} + +""" +select columns of table "event_media" +""" +enum event_media_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + title + + """column name""" + uploader_steam_id +} + +""" +input type for updating data in table "event_media" +""" +input event_media_set_input { + created_at: timestamptz + event_id: uuid + filename: String + id: uuid + mime_type: String + size: bigint + title: String + uploader_steam_id: bigint +} + +"""aggregate stddev on columns""" +type event_media_stddev_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev() on columns of table "event_media" +""" +input event_media_stddev_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type event_media_stddev_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "event_media" +""" +input event_media_stddev_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type event_media_stddev_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "event_media" +""" +input event_media_stddev_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +Streaming cursor of the table "event_media" +""" +input event_media_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_media_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_media_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + filename: String + id: uuid + mime_type: String + size: bigint + title: String + uploader_steam_id: bigint +} + +"""aggregate sum on columns""" +type event_media_sum_fields { + size: bigint + uploader_steam_id: bigint +} + +""" +order by sum() on columns of table "event_media" +""" +input event_media_sum_order_by { + size: order_by + uploader_steam_id: order_by +} + +""" +update columns of table "event_media" +""" +enum event_media_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + filename + + """column name""" + id + + """column name""" + mime_type + + """column name""" + size + + """column name""" + title + + """column name""" + uploader_steam_id +} + +input event_media_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! +} + +"""aggregate var_pop on columns""" +type event_media_var_pop_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_pop() on columns of table "event_media" +""" +input event_media_var_pop_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type event_media_var_samp_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by var_samp() on columns of table "event_media" +""" +input event_media_var_samp_order_by { + size: order_by + uploader_steam_id: order_by +} + +"""aggregate variance on columns""" +type event_media_variance_fields { + size: Float + uploader_steam_id: Float +} + +""" +order by variance() on columns of table "event_media" +""" +input event_media_variance_order_by { + size: order_by + uploader_steam_id: order_by +} + """ columns and relationships of "event_organizers" """ @@ -13704,6 +14724,19 @@ input event_tournaments_updates { columns and relationships of "events" """ type events { + """An object relationship""" + banner: event_media + banner_media_id: uuid + + """ + A computed field, executes function "can_upload_event_media" + """ + can_upload_media: Boolean + + """ + A computed field, executes function "can_view_event" + """ + can_view: Boolean created_at: timestamptz! description: String ends_at: timestamptz @@ -13713,6 +14746,43 @@ type events { A computed field, executes function "is_event_organizer" """ is_organizer: Boolean + + """An array relationship""" + media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + media_access: e_event_media_access_enum! + + """An aggregate relationship""" + media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! name: String! """An object relationship""" @@ -13827,7 +14897,6 @@ type events { where: event_players_bool_exp ): event_players_aggregate! starts_at: timestamptz - status: e_event_status_enum! """An array relationship""" teams( @@ -13900,6 +14969,7 @@ type events { """filter the rows returned""" where: event_tournaments_bool_exp ): event_tournaments_aggregate! + visibility: e_event_visibility_enum! } """ @@ -13939,11 +15009,18 @@ input events_bool_exp { _and: [events_bool_exp!] _not: events_bool_exp _or: [events_bool_exp!] + banner: event_media_bool_exp + banner_media_id: uuid_comparison_exp + can_upload_media: Boolean_comparison_exp + can_view: Boolean_comparison_exp created_at: timestamptz_comparison_exp description: String_comparison_exp ends_at: timestamptz_comparison_exp id: uuid_comparison_exp is_organizer: Boolean_comparison_exp + media: event_media_bool_exp + media_access: e_event_media_access_enum_comparison_exp + media_aggregate: event_media_aggregate_bool_exp name: String_comparison_exp organizer: players_bool_exp organizer_steam_id: bigint_comparison_exp @@ -13954,11 +15031,11 @@ input events_bool_exp { players: event_players_bool_exp players_aggregate: event_players_aggregate_bool_exp starts_at: timestamptz_comparison_exp - status: e_event_status_enum_comparison_exp teams: event_teams_bool_exp teams_aggregate: event_teams_aggregate_bool_exp tournaments: event_tournaments_bool_exp tournaments_aggregate: event_tournaments_aggregate_bool_exp + visibility: e_event_visibility_enum_comparison_exp } """ @@ -13982,10 +15059,14 @@ input events_inc_input { input type for inserting data into table "events" """ input events_insert_input { + banner: event_media_obj_rel_insert_input + banner_media_id: uuid created_at: timestamptz description: String ends_at: timestamptz id: uuid + media: event_media_arr_rel_insert_input + media_access: e_event_media_access_enum name: String organizer: players_obj_rel_insert_input organizer_steam_id: bigint @@ -13993,13 +15074,14 @@ input events_insert_input { player_stats: v_event_player_stats_arr_rel_insert_input players: event_players_arr_rel_insert_input starts_at: timestamptz - status: e_event_status_enum teams: event_teams_arr_rel_insert_input tournaments: event_tournaments_arr_rel_insert_input + visibility: e_event_visibility_enum } """aggregate max on columns""" type events_max_fields { + banner_media_id: uuid created_at: timestamptz description: String ends_at: timestamptz @@ -14011,6 +15093,7 @@ type events_max_fields { """aggregate min on columns""" type events_min_fields { + banner_media_id: uuid created_at: timestamptz description: String ends_at: timestamptz @@ -14052,11 +15135,17 @@ input events_on_conflict { """Ordering options when selecting data from "events".""" input events_order_by { + banner: event_media_order_by + banner_media_id: order_by + can_upload_media: order_by + can_view: order_by created_at: order_by description: order_by ends_at: order_by id: order_by is_organizer: order_by + media_access: order_by + media_aggregate: event_media_aggregate_order_by name: order_by organizer: players_order_by organizer_steam_id: order_by @@ -14064,9 +15153,9 @@ input events_order_by { player_stats_aggregate: v_event_player_stats_aggregate_order_by players_aggregate: event_players_aggregate_order_by starts_at: order_by - status: order_by teams_aggregate: event_teams_aggregate_order_by tournaments_aggregate: event_tournaments_aggregate_order_by + visibility: order_by } """primary key columns input for table: events""" @@ -14078,6 +15167,9 @@ input events_pk_columns_input { select columns of table "events" """ enum events_select_column { + """column name""" + banner_media_id + """column name""" created_at @@ -14090,6 +15182,9 @@ enum events_select_column { """column name""" id + """column name""" + media_access + """column name""" name @@ -14100,21 +15195,23 @@ enum events_select_column { starts_at """column name""" - status + visibility } """ input type for updating data in table "events" """ input events_set_input { + banner_media_id: uuid created_at: timestamptz description: String ends_at: timestamptz id: uuid + media_access: e_event_media_access_enum name: String organizer_steam_id: bigint starts_at: timestamptz - status: e_event_status_enum + visibility: e_event_visibility_enum } """aggregate stddev on columns""" @@ -14145,14 +15242,16 @@ input events_stream_cursor_input { """Initial value of the column from where the streaming should start""" input events_stream_cursor_value_input { + banner_media_id: uuid created_at: timestamptz description: String ends_at: timestamptz id: uuid + media_access: e_event_media_access_enum name: String organizer_steam_id: bigint starts_at: timestamptz - status: e_event_status_enum + visibility: e_event_visibility_enum } """aggregate sum on columns""" @@ -14164,6 +15263,9 @@ type events_sum_fields { update columns of table "events" """ enum events_update_column { + """column name""" + banner_media_id + """column name""" created_at @@ -14176,6 +15278,9 @@ enum events_update_column { """column name""" id + """column name""" + media_access + """column name""" name @@ -14186,7 +15291,7 @@ enum events_update_column { starts_at """column name""" - status + visibility } input events_updates { @@ -32690,17 +33795,30 @@ type mutation_root { delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status """ - delete data from the table: "e_event_status" + delete data from the table: "e_event_media_access" """ - delete_e_event_status( + delete_e_event_media_access( """filter the rows which have to be deleted""" - where: e_event_status_bool_exp! - ): e_event_status_mutation_response + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response """ - delete single row from the table: "e_event_status" + delete single row from the table: "e_event_media_access" """ - delete_e_event_status_by_pk(value: String!): e_event_status + delete_e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + delete data from the table: "e_event_visibility" + """ + delete_e_event_visibility( + """filter the rows which have to be deleted""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + delete single row from the table: "e_event_visibility" + """ + delete_e_event_visibility_by_pk(value: String!): e_event_visibility """ delete data from the table: "e_friend_status" @@ -33131,6 +34249,32 @@ type mutation_root { """ delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + delete data from the table: "event_media" + """ + delete_event_media( + """filter the rows which have to be deleted""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + delete single row from the table: "event_media" + """ + delete_event_media_by_pk(id: uuid!): event_media + + """ + delete data from the table: "event_media_players" + """ + delete_event_media_players( + """filter the rows which have to be deleted""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + delete single row from the table: "event_media_players" + """ + delete_event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + """ delete data from the table: "event_organizers" """ @@ -34661,26 +35805,48 @@ type mutation_root { ): e_draft_game_status """ - insert data into the table: "e_event_status" + insert data into the table: "e_event_media_access" + """ + insert_e_event_media_access( + """the rows to be inserted""" + objects: [e_event_media_access_insert_input!]! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access_mutation_response + + """ + insert a single row into the table: "e_event_media_access" """ - insert_e_event_status( + insert_e_event_media_access_one( + """the row to be inserted""" + object: e_event_media_access_insert_input! + + """upsert condition""" + on_conflict: e_event_media_access_on_conflict + ): e_event_media_access + + """ + insert data into the table: "e_event_visibility" + """ + insert_e_event_visibility( """the rows to be inserted""" - objects: [e_event_status_insert_input!]! + objects: [e_event_visibility_insert_input!]! """upsert condition""" - on_conflict: e_event_status_on_conflict - ): e_event_status_mutation_response + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility_mutation_response """ - insert a single row into the table: "e_event_status" + insert a single row into the table: "e_event_visibility" """ - insert_e_event_status_one( + insert_e_event_visibility_one( """the row to be inserted""" - object: e_event_status_insert_input! + object: e_event_visibility_insert_input! """upsert condition""" - on_conflict: e_event_status_on_conflict - ): e_event_status + on_conflict: e_event_visibility_on_conflict + ): e_event_visibility """ insert data into the table: "e_friend_status" @@ -35408,6 +36574,50 @@ type mutation_root { on_conflict: e_winning_reasons_on_conflict ): e_winning_reasons + """ + insert data into the table: "event_media" + """ + insert_event_media( + """the rows to be inserted""" + objects: [event_media_insert_input!]! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media_mutation_response + + """ + insert a single row into the table: "event_media" + """ + insert_event_media_one( + """the row to be inserted""" + object: event_media_insert_input! + + """upsert condition""" + on_conflict: event_media_on_conflict + ): event_media + + """ + insert data into the table: "event_media_players" + """ + insert_event_media_players( + """the rows to be inserted""" + objects: [event_media_players_insert_input!]! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players_mutation_response + + """ + insert a single row into the table: "event_media_players" + """ + insert_event_media_players_one( + """the row to be inserted""" + object: event_media_players_insert_input! + + """upsert condition""" + on_conflict: event_media_players_on_conflict + ): event_media_players + """ insert data into the table: "event_organizers" """ @@ -38257,32 +39467,60 @@ type mutation_root { ): [e_draft_game_status_mutation_response] """ - update data of the table: "e_event_status" + update data of the table: "e_event_media_access" """ - update_e_event_status( + update_e_event_media_access( """sets the columns of the filtered rows to the given values""" - _set: e_event_status_set_input + _set: e_event_media_access_set_input """filter the rows which have to be updated""" - where: e_event_status_bool_exp! - ): e_event_status_mutation_response + where: e_event_media_access_bool_exp! + ): e_event_media_access_mutation_response """ - update single row of the table: "e_event_status" + update single row of the table: "e_event_media_access" """ - update_e_event_status_by_pk( + update_e_event_media_access_by_pk( """sets the columns of the filtered rows to the given values""" - _set: e_event_status_set_input - pk_columns: e_event_status_pk_columns_input! - ): e_event_status + _set: e_event_media_access_set_input + pk_columns: e_event_media_access_pk_columns_input! + ): e_event_media_access """ - update multiples rows of table: "e_event_status" + update multiples rows of table: "e_event_media_access" """ - update_e_event_status_many( + update_e_event_media_access_many( """updates to execute, in order""" - updates: [e_event_status_updates!]! - ): [e_event_status_mutation_response] + updates: [e_event_media_access_updates!]! + ): [e_event_media_access_mutation_response] + + """ + update data of the table: "e_event_visibility" + """ + update_e_event_visibility( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + + """filter the rows which have to be updated""" + where: e_event_visibility_bool_exp! + ): e_event_visibility_mutation_response + + """ + update single row of the table: "e_event_visibility" + """ + update_e_event_visibility_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_event_visibility_set_input + pk_columns: e_event_visibility_pk_columns_input! + ): e_event_visibility + + """ + update multiples rows of table: "e_event_visibility" + """ + update_e_event_visibility_many( + """updates to execute, in order""" + updates: [e_event_visibility_updates!]! + ): [e_event_visibility_mutation_response] """ update data of the table: "e_friend_status" @@ -39208,6 +40446,74 @@ type mutation_root { updates: [e_winning_reasons_updates!]! ): [e_winning_reasons_mutation_response] + """ + update data of the table: "event_media" + """ + update_event_media( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + + """filter the rows which have to be updated""" + where: event_media_bool_exp! + ): event_media_mutation_response + + """ + update single row of the table: "event_media" + """ + update_event_media_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_set_input + pk_columns: event_media_pk_columns_input! + ): event_media + + """ + update multiples rows of table: "event_media" + """ + update_event_media_many( + """updates to execute, in order""" + updates: [event_media_updates!]! + ): [event_media_mutation_response] + + """ + update data of the table: "event_media_players" + """ + update_event_media_players( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + + """filter the rows which have to be updated""" + where: event_media_players_bool_exp! + ): event_media_players_mutation_response + + """ + update single row of the table: "event_media_players" + """ + update_event_media_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: event_media_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: event_media_players_set_input + pk_columns: event_media_players_pk_columns_input! + ): event_media_players + + """ + update multiples rows of table: "event_media_players" + """ + update_event_media_players_many( + """updates to execute, in order""" + updates: [event_media_players_updates!]! + ): [event_media_players_mutation_response] + """ update data of the table: "event_organizers" """ @@ -64910,11 +66216,56 @@ type query_root { e_draft_game_status_by_pk(value: String!): e_draft_game_status """ - fetch data from the table: "e_event_status" + fetch data from the table: "e_event_media_access" + """ + e_event_media_access( + """distinct select on columns""" + distinct_on: [e_event_media_access_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: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch aggregated fields from the table: "e_event_media_access" + """ + e_event_media_access_aggregate( + """distinct select on columns""" + distinct_on: [e_event_media_access_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: [e_event_media_access_order_by!] + + """filter the rows returned""" + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! + + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access + + """ + fetch data from the table: "e_event_visibility" """ - e_event_status( + e_event_visibility( """distinct select on columns""" - distinct_on: [e_event_status_select_column!] + distinct_on: [e_event_visibility_select_column!] """limit the number of rows returned""" limit: Int @@ -64923,18 +66274,18 @@ type query_root { offset: Int """sort the rows by one or more columns""" - order_by: [e_event_status_order_by!] + order_by: [e_event_visibility_order_by!] """filter the rows returned""" - where: e_event_status_bool_exp - ): [e_event_status!]! + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! """ - fetch aggregated fields from the table: "e_event_status" + fetch aggregated fields from the table: "e_event_visibility" """ - e_event_status_aggregate( + e_event_visibility_aggregate( """distinct select on columns""" - distinct_on: [e_event_status_select_column!] + distinct_on: [e_event_visibility_select_column!] """limit the number of rows returned""" limit: Int @@ -64943,14 +66294,16 @@ type query_root { offset: Int """sort the rows by one or more columns""" - order_by: [e_event_status_order_by!] + order_by: [e_event_visibility_order_by!] """filter the rows returned""" - where: e_event_status_bool_exp - ): e_event_status_aggregate! + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! - """fetch data from the table: "e_event_status" using primary key columns""" - e_event_status_by_pk(value: String!): e_event_status + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility """ fetch data from the table: "e_friend_status" @@ -66417,6 +67770,94 @@ type query_root { """ e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + """ fetch data from the table: "event_organizers" """ @@ -70800,6 +72241,46 @@ type query_root { """fetch data from the table: "tournaments" using primary key columns""" tournaments_by_pk(id: uuid!): tournaments + """ + fetch data from the table: "v_event_matches" + """ + v_event_matches( + """distinct select on columns""" + distinct_on: [v_event_matches_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: [v_event_matches_order_by!] + + """filter the rows returned""" + where: v_event_matches_bool_exp + ): [v_event_matches!]! + + """ + fetch aggregated fields from the table: "v_event_matches" + """ + v_event_matches_aggregate( + """distinct select on columns""" + distinct_on: [v_event_matches_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: [v_event_matches_order_by!] + + """filter the rows returned""" + where: v_event_matches_bool_exp + ): v_event_matches_aggregate! + """ fetch data from the table: "v_event_player_stats" """ @@ -75326,11 +76807,11 @@ type subscription_root { ): [e_draft_game_status!]! """ - fetch data from the table: "e_event_status" + fetch data from the table: "e_event_media_access" """ - e_event_status( + e_event_media_access( """distinct select on columns""" - distinct_on: [e_event_status_select_column!] + distinct_on: [e_event_media_access_select_column!] """limit the number of rows returned""" limit: Int @@ -75339,18 +76820,18 @@ type subscription_root { offset: Int """sort the rows by one or more columns""" - order_by: [e_event_status_order_by!] + order_by: [e_event_media_access_order_by!] """filter the rows returned""" - where: e_event_status_bool_exp - ): [e_event_status!]! + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! """ - fetch aggregated fields from the table: "e_event_status" + fetch aggregated fields from the table: "e_event_media_access" """ - e_event_status_aggregate( + e_event_media_access_aggregate( """distinct select on columns""" - distinct_on: [e_event_status_select_column!] + distinct_on: [e_event_media_access_select_column!] """limit the number of rows returned""" limit: Int @@ -75359,28 +76840,89 @@ type subscription_root { offset: Int """sort the rows by one or more columns""" - order_by: [e_event_status_order_by!] + order_by: [e_event_media_access_order_by!] """filter the rows returned""" - where: e_event_status_bool_exp - ): e_event_status_aggregate! + where: e_event_media_access_bool_exp + ): e_event_media_access_aggregate! - """fetch data from the table: "e_event_status" using primary key columns""" - e_event_status_by_pk(value: String!): e_event_status + """ + fetch data from the table: "e_event_media_access" using primary key columns + """ + e_event_media_access_by_pk(value: String!): e_event_media_access """ - fetch data from the table in a streaming manner: "e_event_status" + fetch data from the table in a streaming manner: "e_event_media_access" """ - e_event_status_stream( + e_event_media_access_stream( """maximum number of rows returned in a single batch""" batch_size: Int! """cursor to stream the results returned by the query""" - cursor: [e_event_status_stream_cursor_input]! + cursor: [e_event_media_access_stream_cursor_input]! """filter the rows returned""" - where: e_event_status_bool_exp - ): [e_event_status!]! + where: e_event_media_access_bool_exp + ): [e_event_media_access!]! + + """ + fetch data from the table: "e_event_visibility" + """ + e_event_visibility( + """distinct select on columns""" + distinct_on: [e_event_visibility_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: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! + + """ + fetch aggregated fields from the table: "e_event_visibility" + """ + e_event_visibility_aggregate( + """distinct select on columns""" + distinct_on: [e_event_visibility_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: [e_event_visibility_order_by!] + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): e_event_visibility_aggregate! + + """ + fetch data from the table: "e_event_visibility" using primary key columns + """ + e_event_visibility_by_pk(value: String!): e_event_visibility + + """ + fetch data from the table in a streaming manner: "e_event_visibility" + """ + e_event_visibility_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_event_visibility_stream_cursor_input]! + + """filter the rows returned""" + where: e_event_visibility_bool_exp + ): [e_event_visibility!]! """ fetch data from the table: "e_friend_status" @@ -77309,6 +78851,122 @@ type subscription_root { where: e_winning_reasons_bool_exp ): [e_winning_reasons!]! + """ + fetch data from the table: "event_media" + """ + event_media( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + + """ + fetch aggregated fields from the table: "event_media" + """ + event_media_aggregate( + """distinct select on columns""" + distinct_on: [event_media_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: [event_media_order_by!] + + """filter the rows returned""" + where: event_media_bool_exp + ): event_media_aggregate! + + """fetch data from the table: "event_media" using primary key columns""" + event_media_by_pk(id: uuid!): event_media + + """ + fetch data from the table: "event_media_players" + """ + event_media_players( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch aggregated fields from the table: "event_media_players" + """ + event_media_players_aggregate( + """distinct select on columns""" + distinct_on: [event_media_players_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: [event_media_players_order_by!] + + """filter the rows returned""" + where: event_media_players_bool_exp + ): event_media_players_aggregate! + + """ + fetch data from the table: "event_media_players" using primary key columns + """ + event_media_players_by_pk(media_id: uuid!, steam_id: bigint!): event_media_players + + """ + fetch data from the table in a streaming manner: "event_media_players" + """ + event_media_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_players_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_players_bool_exp + ): [event_media_players!]! + + """ + fetch data from the table in a streaming manner: "event_media" + """ + event_media_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_media_stream_cursor_input]! + + """filter the rows returned""" + where: event_media_bool_exp + ): [event_media!]! + """ fetch data from the table: "event_organizers" """ @@ -82961,6 +84619,60 @@ type subscription_root { where: tournaments_bool_exp ): [tournaments!]! + """ + fetch data from the table: "v_event_matches" + """ + v_event_matches( + """distinct select on columns""" + distinct_on: [v_event_matches_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: [v_event_matches_order_by!] + + """filter the rows returned""" + where: v_event_matches_bool_exp + ): [v_event_matches!]! + + """ + fetch aggregated fields from the table: "v_event_matches" + """ + v_event_matches_aggregate( + """distinct select on columns""" + distinct_on: [v_event_matches_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: [v_event_matches_order_by!] + + """filter the rows returned""" + where: v_event_matches_bool_exp + ): v_event_matches_aggregate! + + """ + fetch data from the table in a streaming manner: "v_event_matches" + """ + v_event_matches_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [v_event_matches_stream_cursor_input]! + + """filter the rows returned""" + where: v_event_matches_bool_exp + ): [v_event_matches!]! + """ fetch data from the table: "v_event_player_stats" """ @@ -95125,6 +96837,97 @@ input uuid_comparison_exp { _nin: [uuid!] } +""" +columns and relationships of "v_event_matches" +""" +type v_event_matches { + """An object relationship""" + event: events + event_id: uuid + + """An object relationship""" + match: matches + match_id: uuid +} + +""" +aggregated selection of "v_event_matches" +""" +type v_event_matches_aggregate { + aggregate: v_event_matches_aggregate_fields + nodes: [v_event_matches!]! +} + +""" +aggregate fields of "v_event_matches" +""" +type v_event_matches_aggregate_fields { + count(columns: [v_event_matches_select_column!], distinct: Boolean): Int! + max: v_event_matches_max_fields + min: v_event_matches_min_fields +} + +""" +Boolean expression to filter rows from the table "v_event_matches". All fields are combined with a logical 'AND'. +""" +input v_event_matches_bool_exp { + _and: [v_event_matches_bool_exp!] + _not: v_event_matches_bool_exp + _or: [v_event_matches_bool_exp!] + event: events_bool_exp + event_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp +} + +"""aggregate max on columns""" +type v_event_matches_max_fields { + event_id: uuid + match_id: uuid +} + +"""aggregate min on columns""" +type v_event_matches_min_fields { + event_id: uuid + match_id: uuid +} + +"""Ordering options when selecting data from "v_event_matches".""" +input v_event_matches_order_by { + event: events_order_by + event_id: order_by + match: matches_order_by + match_id: order_by +} + +""" +select columns of table "v_event_matches" +""" +enum v_event_matches_select_column { + """column name""" + event_id + + """column name""" + match_id +} + +""" +Streaming cursor of the table "v_event_matches" +""" +input v_event_matches_stream_cursor_input { + """Stream column input with initial value""" + initial_value: v_event_matches_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input v_event_matches_stream_cursor_value_input { + event_id: uuid + match_id: uuid +} + """ columns and relationships of "v_event_player_stats" """ diff --git a/generated/schema.ts b/generated/schema.ts index c001dd54..6ff989e2 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -2380,69 +2380,134 @@ export type e_draft_game_status_select_column = 'description' | 'value' export type e_draft_game_status_update_column = 'description' | 'value' -/** columns and relationships of "e_event_status" */ -export interface e_event_status { +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_access { description: Scalars['String'] value: Scalars['String'] - __typename: 'e_event_status' + __typename: 'e_event_media_access' } -/** aggregated selection of "e_event_status" */ -export interface e_event_status_aggregate { - aggregate: (e_event_status_aggregate_fields | null) - nodes: e_event_status[] - __typename: 'e_event_status_aggregate' +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregate { + aggregate: (e_event_media_access_aggregate_fields | null) + nodes: e_event_media_access[] + __typename: 'e_event_media_access_aggregate' } -/** aggregate fields of "e_event_status" */ -export interface e_event_status_aggregate_fields { +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fields { count: Scalars['Int'] - max: (e_event_status_max_fields | null) - min: (e_event_status_min_fields | null) - __typename: 'e_event_status_aggregate_fields' + max: (e_event_media_access_max_fields | null) + min: (e_event_media_access_min_fields | null) + __typename: 'e_event_media_access_aggregate_fields' } -/** unique or primary key constraints on table "e_event_status" */ -export type e_event_status_constraint = 'e_event_status_pkey' +/** unique or primary key constraints on table "e_event_media_access" */ +export type e_event_media_access_constraint = 'e_event_media_access_pkey' -export type e_event_status_enum = 'Finished' | 'Live' | 'Setup' +export type e_event_media_access_enum = 'Involved' | 'Organizers' /** aggregate max on columns */ -export interface e_event_status_max_fields { +export interface e_event_media_access_max_fields { description: (Scalars['String'] | null) value: (Scalars['String'] | null) - __typename: 'e_event_status_max_fields' + __typename: 'e_event_media_access_max_fields' } /** aggregate min on columns */ -export interface e_event_status_min_fields { +export interface e_event_media_access_min_fields { description: (Scalars['String'] | null) value: (Scalars['String'] | null) - __typename: 'e_event_status_min_fields' + __typename: 'e_event_media_access_min_fields' } -/** response of any mutation on the table "e_event_status" */ -export interface e_event_status_mutation_response { +/** response of any mutation on the table "e_event_media_access" */ +export interface e_event_media_access_mutation_response { /** number of rows affected by the mutation */ affected_rows: Scalars['Int'] /** data from the rows affected by the mutation */ - returning: e_event_status[] - __typename: 'e_event_status_mutation_response' + returning: e_event_media_access[] + __typename: 'e_event_media_access_mutation_response' } -/** select columns of table "e_event_status" */ -export type e_event_status_select_column = 'description' | 'value' +/** select columns of table "e_event_media_access" */ +export type e_event_media_access_select_column = 'description' | 'value' -/** update columns of table "e_event_status" */ -export type e_event_status_update_column = 'description' | 'value' +/** update columns of table "e_event_media_access" */ +export type e_event_media_access_update_column = 'description' | 'value' + + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibility { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_event_visibility' +} + + +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregate { + aggregate: (e_event_visibility_aggregate_fields | null) + nodes: e_event_visibility[] + __typename: 'e_event_visibility_aggregate' +} + + +/** aggregate fields of "e_event_visibility" */ +export interface e_event_visibility_aggregate_fields { + count: Scalars['Int'] + max: (e_event_visibility_max_fields | null) + min: (e_event_visibility_min_fields | null) + __typename: 'e_event_visibility_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_event_visibility" */ +export type e_event_visibility_constraint = 'e_event_visibility_pkey' + +export type e_event_visibility_enum = 'Friends' | 'Private' | 'Public' + + +/** aggregate max on columns */ +export interface e_event_visibility_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_max_fields' +} + + +/** aggregate min on columns */ +export interface e_event_visibility_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_event_visibility_min_fields' +} + + +/** response of any mutation on the table "e_event_visibility" */ +export interface e_event_visibility_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_event_visibility[] + __typename: 'e_event_visibility_mutation_response' +} + + +/** select columns of table "e_event_visibility" */ +export type e_event_visibility_select_column = 'description' | 'value' + + +/** update columns of table "e_event_visibility" */ +export type e_event_visibility_update_column = 'description' | 'value' /** columns and relationships of "e_friend_status" */ @@ -4650,6 +4715,301 @@ export type e_winning_reasons_select_column = 'description' | 'value' export type e_winning_reasons_update_column = 'description' | 'value' +/** columns and relationships of "event_media" */ +export interface event_media { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + filename: Scalars['String'] + id: Scalars['uuid'] + mime_type: Scalars['String'] + /** An array relationship */ + players: event_media_players[] + /** An aggregate relationship */ + players_aggregate: event_media_players_aggregate + size: Scalars['bigint'] + title: (Scalars['String'] | null) + /** An object relationship */ + uploader: players + uploader_steam_id: Scalars['bigint'] + __typename: 'event_media' +} + + +/** aggregated selection of "event_media" */ +export interface event_media_aggregate { + aggregate: (event_media_aggregate_fields | null) + nodes: event_media[] + __typename: 'event_media_aggregate' +} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fields { + avg: (event_media_avg_fields | null) + count: Scalars['Int'] + max: (event_media_max_fields | null) + min: (event_media_min_fields | null) + stddev: (event_media_stddev_fields | null) + stddev_pop: (event_media_stddev_pop_fields | null) + stddev_samp: (event_media_stddev_samp_fields | null) + sum: (event_media_sum_fields | null) + var_pop: (event_media_var_pop_fields | null) + var_samp: (event_media_var_samp_fields | null) + variance: (event_media_variance_fields | null) + __typename: 'event_media_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_media_avg_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_avg_fields' +} + + +/** unique or primary key constraints on table "event_media" */ +export type event_media_constraint = 'event_media_event_id_filename_key' | 'event_media_pkey' + + +/** aggregate max on columns */ +export interface event_media_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_max_fields' +} + + +/** aggregate min on columns */ +export interface event_media_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + filename: (Scalars['String'] | null) + id: (Scalars['uuid'] | null) + mime_type: (Scalars['String'] | null) + size: (Scalars['bigint'] | null) + title: (Scalars['String'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_min_fields' +} + + +/** response of any mutation on the table "event_media" */ +export interface event_media_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_media[] + __typename: 'event_media_mutation_response' +} + + +/** columns and relationships of "event_media_players" */ +export interface event_media_players { + created_at: Scalars['timestamptz'] + /** An object relationship */ + media: event_media + media_id: Scalars['uuid'] + /** An object relationship */ + player: players + steam_id: Scalars['bigint'] + __typename: 'event_media_players' +} + + +/** aggregated selection of "event_media_players" */ +export interface event_media_players_aggregate { + aggregate: (event_media_players_aggregate_fields | null) + nodes: event_media_players[] + __typename: 'event_media_players_aggregate' +} + + +/** aggregate fields of "event_media_players" */ +export interface event_media_players_aggregate_fields { + avg: (event_media_players_avg_fields | null) + count: Scalars['Int'] + max: (event_media_players_max_fields | null) + min: (event_media_players_min_fields | null) + stddev: (event_media_players_stddev_fields | null) + stddev_pop: (event_media_players_stddev_pop_fields | null) + stddev_samp: (event_media_players_stddev_samp_fields | null) + sum: (event_media_players_sum_fields | null) + var_pop: (event_media_players_var_pop_fields | null) + var_samp: (event_media_players_var_samp_fields | null) + variance: (event_media_players_variance_fields | null) + __typename: 'event_media_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface event_media_players_avg_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_avg_fields' +} + + +/** unique or primary key constraints on table "event_media_players" */ +export type event_media_players_constraint = 'event_media_players_pkey' + + +/** aggregate max on columns */ +export interface event_media_players_max_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_max_fields' +} + + +/** aggregate min on columns */ +export interface event_media_players_min_fields { + created_at: (Scalars['timestamptz'] | null) + media_id: (Scalars['uuid'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_min_fields' +} + + +/** response of any mutation on the table "event_media_players" */ +export interface event_media_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_media_players[] + __typename: 'event_media_players_mutation_response' +} + + +/** select columns of table "event_media_players" */ +export type event_media_players_select_column = 'created_at' | 'media_id' | 'steam_id' + + +/** aggregate stddev on columns */ +export interface event_media_players_stddev_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_media_players_stddev_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_media_players_stddev_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_media_players_sum_fields { + steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_players_sum_fields' +} + + +/** update columns of table "event_media_players" */ +export type event_media_players_update_column = 'created_at' | 'media_id' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface event_media_players_var_pop_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_media_players_variance_fields { + steam_id: (Scalars['Float'] | null) + __typename: 'event_media_players_variance_fields' +} + + +/** select columns of table "event_media" */ +export type event_media_select_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'title' | 'uploader_steam_id' + + +/** aggregate stddev on columns */ +export interface event_media_stddev_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface event_media_stddev_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface event_media_stddev_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface event_media_sum_fields { + size: (Scalars['bigint'] | null) + uploader_steam_id: (Scalars['bigint'] | null) + __typename: 'event_media_sum_fields' +} + + +/** update columns of table "event_media" */ +export type event_media_update_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'title' | 'uploader_steam_id' + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface event_media_variance_fields { + size: (Scalars['Float'] | null) + uploader_steam_id: (Scalars['Float'] | null) + __typename: 'event_media_variance_fields' +} + + /** columns and relationships of "event_organizers" */ export interface event_organizers { created_at: Scalars['timestamptz'] @@ -5060,12 +5420,24 @@ export type event_tournaments_update_column = 'created_at' | 'event_id' | 'tourn /** columns and relationships of "events" */ export interface events { + /** An object relationship */ + banner: (event_media | null) + banner_media_id: (Scalars['uuid'] | null) + /** A computed field, executes function "can_upload_event_media" */ + can_upload_media: (Scalars['Boolean'] | null) + /** A computed field, executes function "can_view_event" */ + can_view: (Scalars['Boolean'] | null) created_at: Scalars['timestamptz'] description: (Scalars['String'] | null) ends_at: (Scalars['timestamptz'] | null) id: Scalars['uuid'] /** A computed field, executes function "is_event_organizer" */ is_organizer: (Scalars['Boolean'] | null) + /** An array relationship */ + media: event_media[] + media_access: e_event_media_access_enum + /** An aggregate relationship */ + media_aggregate: event_media_aggregate name: Scalars['String'] /** An object relationship */ organizer: players @@ -5083,7 +5455,6 @@ export interface events { /** An aggregate relationship */ players_aggregate: event_players_aggregate starts_at: (Scalars['timestamptz'] | null) - status: e_event_status_enum /** An array relationship */ teams: event_teams[] /** An aggregate relationship */ @@ -5092,6 +5463,7 @@ export interface events { tournaments: event_tournaments[] /** An aggregate relationship */ tournaments_aggregate: event_tournaments_aggregate + visibility: e_event_visibility_enum __typename: 'events' } @@ -5134,6 +5506,7 @@ export type events_constraint = 'events_pkey' /** aggregate max on columns */ export interface events_max_fields { + banner_media_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) ends_at: (Scalars['timestamptz'] | null) @@ -5147,6 +5520,7 @@ export interface events_max_fields { /** aggregate min on columns */ export interface events_min_fields { + banner_media_id: (Scalars['uuid'] | null) created_at: (Scalars['timestamptz'] | null) description: (Scalars['String'] | null) ends_at: (Scalars['timestamptz'] | null) @@ -5169,7 +5543,7 @@ export interface events_mutation_response { /** select columns of table "events" */ -export type events_select_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'name' | 'organizer_steam_id' | 'starts_at' | 'status' +export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate stddev on columns */ @@ -5201,7 +5575,7 @@ export interface events_sum_fields { /** update columns of table "events" */ -export type events_update_column = 'created_at' | 'description' | 'ends_at' | 'id' | 'name' | 'organizer_steam_id' | 'starts_at' | 'status' +export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate var_pop on columns */ @@ -10883,10 +11257,14 @@ export interface mutation_root { delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk: (e_draft_game_status | null) - /** delete data from the table: "e_event_status" */ - delete_e_event_status: (e_event_status_mutation_response | null) - /** delete single row from the table: "e_event_status" */ - delete_e_event_status_by_pk: (e_event_status | null) + /** delete data from the table: "e_event_media_access" */ + delete_e_event_media_access: (e_event_media_access_mutation_response | null) + /** delete single row from the table: "e_event_media_access" */ + delete_e_event_media_access_by_pk: (e_event_media_access | null) + /** delete data from the table: "e_event_visibility" */ + delete_e_event_visibility: (e_event_visibility_mutation_response | null) + /** delete single row from the table: "e_event_visibility" */ + delete_e_event_visibility_by_pk: (e_event_visibility | null) /** delete data from the table: "e_friend_status" */ delete_e_friend_status: (e_friend_status_mutation_response | null) /** delete single row from the table: "e_friend_status" */ @@ -11019,6 +11397,14 @@ export interface mutation_root { delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** delete data from the table: "event_media" */ + delete_event_media: (event_media_mutation_response | null) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk: (event_media | null) + /** delete data from the table: "event_media_players" */ + delete_event_media_players: (event_media_players_mutation_response | null) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk: (event_media_players | null) /** delete data from the table: "event_organizers" */ delete_event_organizers: (event_organizers_mutation_response | null) /** delete single row from the table: "event_organizers" */ @@ -11450,10 +11836,14 @@ export interface mutation_root { insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) /** insert a single row into the table: "e_draft_game_status" */ insert_e_draft_game_status_one: (e_draft_game_status | null) - /** insert data into the table: "e_event_status" */ - insert_e_event_status: (e_event_status_mutation_response | null) - /** insert a single row into the table: "e_event_status" */ - insert_e_event_status_one: (e_event_status | null) + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access: (e_event_media_access_mutation_response | null) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one: (e_event_media_access | null) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility: (e_event_visibility_mutation_response | null) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one: (e_event_visibility | null) /** insert data into the table: "e_friend_status" */ insert_e_friend_status: (e_friend_status_mutation_response | null) /** insert a single row into the table: "e_friend_status" */ @@ -11586,6 +11976,14 @@ export interface mutation_root { insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** insert a single row into the table: "e_winning_reasons" */ insert_e_winning_reasons_one: (e_winning_reasons | null) + /** insert data into the table: "event_media" */ + insert_event_media: (event_media_mutation_response | null) + /** insert a single row into the table: "event_media" */ + insert_event_media_one: (event_media | null) + /** insert data into the table: "event_media_players" */ + insert_event_media_players: (event_media_players_mutation_response | null) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one: (event_media_players | null) /** insert data into the table: "event_organizers" */ insert_event_organizers: (event_organizers_mutation_response | null) /** insert a single row into the table: "event_organizers" */ @@ -12181,12 +12579,18 @@ export interface mutation_root { update_e_draft_game_status_by_pk: (e_draft_game_status | null) /** update multiples rows of table: "e_draft_game_status" */ update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) - /** update data of the table: "e_event_status" */ - update_e_event_status: (e_event_status_mutation_response | null) - /** update single row of the table: "e_event_status" */ - update_e_event_status_by_pk: (e_event_status | null) - /** update multiples rows of table: "e_event_status" */ - update_e_event_status_many: ((e_event_status_mutation_response | null)[] | null) + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access: (e_event_media_access_mutation_response | null) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk: (e_event_media_access | null) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many: ((e_event_media_access_mutation_response | null)[] | null) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility: (e_event_visibility_mutation_response | null) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk: (e_event_visibility | null) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many: ((e_event_visibility_mutation_response | null)[] | null) /** update data of the table: "e_friend_status" */ update_e_friend_status: (e_friend_status_mutation_response | null) /** update single row of the table: "e_friend_status" */ @@ -12385,6 +12789,18 @@ export interface mutation_root { update_e_winning_reasons_by_pk: (e_winning_reasons | null) /** update multiples rows of table: "e_winning_reasons" */ update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) + /** update data of the table: "event_media" */ + update_event_media: (event_media_mutation_response | null) + /** update single row of the table: "event_media" */ + update_event_media_by_pk: (event_media | null) + /** update multiples rows of table: "event_media" */ + update_event_media_many: ((event_media_mutation_response | null)[] | null) + /** update data of the table: "event_media_players" */ + update_event_media_players: (event_media_players_mutation_response | null) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk: (event_media_players | null) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many: ((event_media_players_mutation_response | null)[] | null) /** update data of the table: "event_organizers" */ update_event_organizers: (event_organizers_mutation_response | null) /** update single row of the table: "event_organizers" */ @@ -21160,12 +21576,18 @@ export interface query_root { e_draft_game_status_aggregate: e_draft_game_status_aggregate /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk: (e_draft_game_status | null) - /** fetch data from the table: "e_event_status" */ - e_event_status: e_event_status[] - /** fetch aggregated fields from the table: "e_event_status" */ - e_event_status_aggregate: e_event_status_aggregate - /** fetch data from the table: "e_event_status" using primary key columns */ - e_event_status_by_pk: (e_event_status | null) + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -21364,6 +21786,18 @@ export interface query_root { e_winning_reasons_aggregate: e_winning_reasons_aggregate /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) /** fetch data from the table: "event_organizers" */ event_organizers: event_organizers[] /** fetch aggregated fields from the table: "event_organizers" */ @@ -21989,6 +22423,10 @@ export interface query_root { tournaments_aggregate: tournaments_aggregate /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk: (tournaments | null) + /** fetch data from the table: "v_event_matches" */ + v_event_matches: v_event_matches[] + /** fetch aggregated fields from the table: "v_event_matches" */ + v_event_matches_aggregate: v_event_matches_aggregate /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats: v_event_player_stats[] /** fetch aggregated fields from the table: "v_event_player_stats" */ @@ -23099,14 +23537,22 @@ export interface subscription_root { e_draft_game_status_by_pk: (e_draft_game_status | null) /** fetch data from the table in a streaming manner: "e_draft_game_status" */ e_draft_game_status_stream: e_draft_game_status[] - /** fetch data from the table: "e_event_status" */ - e_event_status: e_event_status[] - /** fetch aggregated fields from the table: "e_event_status" */ - e_event_status_aggregate: e_event_status_aggregate - /** fetch data from the table: "e_event_status" using primary key columns */ - e_event_status_by_pk: (e_event_status | null) - /** fetch data from the table in a streaming manner: "e_event_status" */ - e_event_status_stream: e_event_status[] + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access: e_event_media_access[] + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate: e_event_media_access_aggregate + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk: (e_event_media_access | null) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream: e_event_media_access[] + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility: e_event_visibility[] + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate: e_event_visibility_aggregate + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk: (e_event_visibility | null) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream: e_event_visibility[] /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -23371,6 +23817,22 @@ export interface subscription_root { e_winning_reasons_by_pk: (e_winning_reasons | null) /** fetch data from the table in a streaming manner: "e_winning_reasons" */ e_winning_reasons_stream: e_winning_reasons[] + /** fetch data from the table: "event_media" */ + event_media: event_media[] + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate: event_media_aggregate + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk: (event_media | null) + /** fetch data from the table: "event_media_players" */ + event_media_players: event_media_players[] + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate: event_media_players_aggregate + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk: (event_media_players | null) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream: event_media_players[] + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream: event_media[] /** fetch data from the table: "event_organizers" */ event_organizers: event_organizers[] /** fetch aggregated fields from the table: "event_organizers" */ @@ -24139,6 +24601,12 @@ export interface subscription_root { tournaments_by_pk: (tournaments | null) /** fetch data from the table in a streaming manner: "tournaments" */ tournaments_stream: tournaments[] + /** fetch data from the table: "v_event_matches" */ + v_event_matches: v_event_matches[] + /** fetch aggregated fields from the table: "v_event_matches" */ + v_event_matches_aggregate: v_event_matches_aggregate + /** fetch data from the table in a streaming manner: "v_event_matches" */ + v_event_matches_stream: v_event_matches[] /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats: v_event_player_stats[] /** fetch aggregated fields from the table: "v_event_player_stats" */ @@ -27675,6 +28143,55 @@ export interface tournaments_variance_fields { } +/** columns and relationships of "v_event_matches" */ +export interface v_event_matches { + /** An object relationship */ + event: (events | null) + event_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_event_matches' +} + + +/** aggregated selection of "v_event_matches" */ +export interface v_event_matches_aggregate { + aggregate: (v_event_matches_aggregate_fields | null) + nodes: v_event_matches[] + __typename: 'v_event_matches_aggregate' +} + + +/** aggregate fields of "v_event_matches" */ +export interface v_event_matches_aggregate_fields { + count: Scalars['Int'] + max: (v_event_matches_max_fields | null) + min: (v_event_matches_min_fields | null) + __typename: 'v_event_matches_aggregate_fields' +} + + +/** aggregate max on columns */ +export interface v_event_matches_max_fields { + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_event_matches_max_fields' +} + + +/** aggregate min on columns */ +export interface v_event_matches_min_fields { + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'v_event_matches_min_fields' +} + + +/** select columns of table "v_event_matches" */ +export type v_event_matches_select_column = 'event_id' | 'match_id' + + /** columns and relationships of "v_event_player_stats" */ export interface v_event_player_stats { assists: (Scalars['Int'] | null) @@ -37121,8 +37638,111 @@ _set?: (e_draft_game_status_set_input | null), where: e_draft_game_status_bool_exp} -/** columns and relationships of "e_event_status" */ -export interface e_event_statusGenqlSelection{ +/** columns and relationships of "e_event_media_access" */ +export interface e_event_media_accessGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_event_media_access" */ +export interface e_event_media_access_aggregateGenqlSelection{ + aggregate?: e_event_media_access_aggregate_fieldsGenqlSelection + nodes?: e_event_media_accessGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_event_media_access" */ +export interface e_event_media_access_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_media_access_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_media_access_max_fieldsGenqlSelection + min?: e_event_media_access_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_event_media_access". All fields are combined with a logical 'AND'. */ +export interface e_event_media_access_bool_exp {_and?: (e_event_media_access_bool_exp[] | null),_not?: (e_event_media_access_bool_exp | null),_or?: (e_event_media_access_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_event_media_access_enum". All fields are combined with logical 'AND'. */ +export interface e_event_media_access_enum_comparison_exp {_eq?: (e_event_media_access_enum | null),_in?: (e_event_media_access_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_media_access_enum | null),_nin?: (e_event_media_access_enum[] | null)} + + +/** input type for inserting data into table "e_event_media_access" */ +export interface e_event_media_access_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_event_media_access_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_event_media_access_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_event_media_access" */ +export interface e_event_media_access_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_event_media_accessGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "e_event_media_access" */ +export interface e_event_media_access_on_conflict {constraint: e_event_media_access_constraint,update_columns?: e_event_media_access_update_column[],where?: (e_event_media_access_bool_exp | null)} + + +/** Ordering options when selecting data from "e_event_media_access". */ +export interface e_event_media_access_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_event_media_access */ +export interface e_event_media_access_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_event_media_access" */ +export interface e_event_media_access_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_event_media_access" */ +export interface e_event_media_access_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_event_media_access_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_event_media_access_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_event_media_access_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_event_media_access_set_input | null), +/** filter the rows which have to be updated */ +where: e_event_media_access_bool_exp} + + +/** columns and relationships of "e_event_visibility" */ +export interface e_event_visibilityGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37130,39 +37750,39 @@ export interface e_event_statusGenqlSelection{ } -/** aggregated selection of "e_event_status" */ -export interface e_event_status_aggregateGenqlSelection{ - aggregate?: e_event_status_aggregate_fieldsGenqlSelection - nodes?: e_event_statusGenqlSelection +/** aggregated selection of "e_event_visibility" */ +export interface e_event_visibility_aggregateGenqlSelection{ + aggregate?: e_event_visibility_aggregate_fieldsGenqlSelection + nodes?: e_event_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** aggregate fields of "e_event_status" */ -export interface e_event_status_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (e_event_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: e_event_status_max_fieldsGenqlSelection - min?: e_event_status_min_fieldsGenqlSelection +/** aggregate fields of "e_event_visibility" */ +export interface e_event_visibility_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_event_visibility_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_event_visibility_max_fieldsGenqlSelection + min?: e_event_visibility_min_fieldsGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** Boolean expression to filter rows from the table "e_event_status". All fields are combined with a logical 'AND'. */ -export interface e_event_status_bool_exp {_and?: (e_event_status_bool_exp[] | null),_not?: (e_event_status_bool_exp | null),_or?: (e_event_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} +/** Boolean expression to filter rows from the table "e_event_visibility". All fields are combined with a logical 'AND'. */ +export interface e_event_visibility_bool_exp {_and?: (e_event_visibility_bool_exp[] | null),_not?: (e_event_visibility_bool_exp | null),_or?: (e_event_visibility_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} -/** Boolean expression to compare columns of type "e_event_status_enum". All fields are combined with logical 'AND'. */ -export interface e_event_status_enum_comparison_exp {_eq?: (e_event_status_enum | null),_in?: (e_event_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_status_enum | null),_nin?: (e_event_status_enum[] | null)} +/** Boolean expression to compare columns of type "e_event_visibility_enum". All fields are combined with logical 'AND'. */ +export interface e_event_visibility_enum_comparison_exp {_eq?: (e_event_visibility_enum | null),_in?: (e_event_visibility_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_event_visibility_enum | null),_nin?: (e_event_visibility_enum[] | null)} -/** input type for inserting data into table "e_event_status" */ -export interface e_event_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for inserting data into table "e_event_visibility" */ +export interface e_event_visibility_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} /** aggregate max on columns */ -export interface e_event_status_max_fieldsGenqlSelection{ +export interface e_event_visibility_max_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37171,7 +37791,7 @@ export interface e_event_status_max_fieldsGenqlSelection{ /** aggregate min on columns */ -export interface e_event_status_min_fieldsGenqlSelection{ +export interface e_event_visibility_min_fieldsGenqlSelection{ description?: boolean | number value?: boolean | number __typename?: boolean | number @@ -37179,49 +37799,49 @@ export interface e_event_status_min_fieldsGenqlSelection{ } -/** response of any mutation on the table "e_event_status" */ -export interface e_event_status_mutation_responseGenqlSelection{ +/** response of any mutation on the table "e_event_visibility" */ +export interface e_event_visibility_mutation_responseGenqlSelection{ /** number of rows affected by the mutation */ affected_rows?: boolean | number /** data from the rows affected by the mutation */ - returning?: e_event_statusGenqlSelection + returning?: e_event_visibilityGenqlSelection __typename?: boolean | number __scalar?: boolean | number } -/** on_conflict condition type for table "e_event_status" */ -export interface e_event_status_on_conflict {constraint: e_event_status_constraint,update_columns?: e_event_status_update_column[],where?: (e_event_status_bool_exp | null)} +/** on_conflict condition type for table "e_event_visibility" */ +export interface e_event_visibility_on_conflict {constraint: e_event_visibility_constraint,update_columns?: e_event_visibility_update_column[],where?: (e_event_visibility_bool_exp | null)} -/** Ordering options when selecting data from "e_event_status". */ -export interface e_event_status_order_by {description?: (order_by | null),value?: (order_by | null)} +/** Ordering options when selecting data from "e_event_visibility". */ +export interface e_event_visibility_order_by {description?: (order_by | null),value?: (order_by | null)} -/** primary key columns input for table: e_event_status */ -export interface e_event_status_pk_columns_input {value: Scalars['String']} +/** primary key columns input for table: e_event_visibility */ +export interface e_event_visibility_pk_columns_input {value: Scalars['String']} -/** input type for updating data in table "e_event_status" */ -export interface e_event_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +/** input type for updating data in table "e_event_visibility" */ +export interface e_event_visibility_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -/** Streaming cursor of the table "e_event_status" */ -export interface e_event_status_stream_cursor_input { +/** Streaming cursor of the table "e_event_visibility" */ +export interface e_event_visibility_stream_cursor_input { /** Stream column input with initial value */ -initial_value: e_event_status_stream_cursor_value_input, +initial_value: e_event_visibility_stream_cursor_value_input, /** cursor ordering */ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface e_event_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} +export interface e_event_visibility_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} -export interface e_event_status_updates { +export interface e_event_visibility_updates { /** sets the columns of the filtered rows to the given values */ -_set?: (e_event_status_set_input | null), +_set?: (e_event_visibility_set_input | null), /** filter the rows which have to be updated */ -where: e_event_status_bool_exp} +where: e_event_visibility_bool_exp} /** columns and relationships of "e_friend_status" */ @@ -41073,6 +41693,535 @@ _set?: (e_winning_reasons_set_input | null), where: e_winning_reasons_bool_exp} +/** columns and relationships of "event_media" */ +export interface event_mediaGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + /** An array relationship */ + players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + size?: boolean | number + title?: boolean | number + /** An object relationship */ + uploader?: playersGenqlSelection + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_media" */ +export interface event_media_aggregateGenqlSelection{ + aggregate?: event_media_aggregate_fieldsGenqlSelection + nodes?: event_mediaGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_media_aggregate_bool_exp {count?: (event_media_aggregate_bool_exp_count | null)} + +export interface event_media_aggregate_bool_exp_count {arguments?: (event_media_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media" */ +export interface event_media_aggregate_fieldsGenqlSelection{ + avg?: event_media_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_max_fieldsGenqlSelection + min?: event_media_min_fieldsGenqlSelection + stddev?: event_media_stddev_fieldsGenqlSelection + stddev_pop?: event_media_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_stddev_samp_fieldsGenqlSelection + sum?: event_media_sum_fieldsGenqlSelection + var_pop?: event_media_var_pop_fieldsGenqlSelection + var_samp?: event_media_var_samp_fieldsGenqlSelection + variance?: event_media_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_media" */ +export interface event_media_aggregate_order_by {avg?: (event_media_avg_order_by | null),count?: (order_by | null),max?: (event_media_max_order_by | null),min?: (event_media_min_order_by | null),stddev?: (event_media_stddev_order_by | null),stddev_pop?: (event_media_stddev_pop_order_by | null),stddev_samp?: (event_media_stddev_samp_order_by | null),sum?: (event_media_sum_order_by | null),var_pop?: (event_media_var_pop_order_by | null),var_samp?: (event_media_var_samp_order_by | null),variance?: (event_media_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "event_media" */ +export interface event_media_arr_rel_insert_input {data: event_media_insert_input[], +/** upsert condition */ +on_conflict?: (event_media_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface event_media_avg_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "event_media" */ +export interface event_media_avg_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. */ +export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "event_media" */ +export interface event_media_inc_input {size?: (Scalars['bigint'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_media" */ +export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface event_media_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + size?: boolean | number + title?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_media" */ +export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_media_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + filename?: boolean | number + id?: boolean | number + mime_type?: boolean | number + size?: boolean | number + title?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_media" */ +export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_media" */ +export interface event_media_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_mediaGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "event_media" */ +export interface event_media_obj_rel_insert_input {data: event_media_insert_input, +/** upsert condition */ +on_conflict?: (event_media_on_conflict | null)} + + +/** on_conflict condition type for table "event_media" */ +export interface event_media_on_conflict {constraint: event_media_constraint,update_columns?: event_media_update_column[],where?: (event_media_bool_exp | null)} + + +/** Ordering options when selecting data from "event_media". */ +export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} + + +/** primary key columns input for table: event_media */ +export interface event_media_pk_columns_input {id: Scalars['uuid']} + + +/** columns and relationships of "event_media_players" */ +export interface event_media_playersGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + media?: event_mediaGenqlSelection + media_id?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_media_players" */ +export interface event_media_players_aggregateGenqlSelection{ + aggregate?: event_media_players_aggregate_fieldsGenqlSelection + nodes?: event_media_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface event_media_players_aggregate_bool_exp {count?: (event_media_players_aggregate_bool_exp_count | null)} + +export interface event_media_players_aggregate_bool_exp_count {arguments?: (event_media_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (event_media_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "event_media_players" */ +export interface event_media_players_aggregate_fieldsGenqlSelection{ + avg?: event_media_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (event_media_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_media_players_max_fieldsGenqlSelection + min?: event_media_players_min_fieldsGenqlSelection + stddev?: event_media_players_stddev_fieldsGenqlSelection + stddev_pop?: event_media_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: event_media_players_stddev_samp_fieldsGenqlSelection + sum?: event_media_players_sum_fieldsGenqlSelection + var_pop?: event_media_players_var_pop_fieldsGenqlSelection + var_samp?: event_media_players_var_samp_fieldsGenqlSelection + variance?: event_media_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "event_media_players" */ +export interface event_media_players_aggregate_order_by {avg?: (event_media_players_avg_order_by | null),count?: (order_by | null),max?: (event_media_players_max_order_by | null),min?: (event_media_players_min_order_by | null),stddev?: (event_media_players_stddev_order_by | null),stddev_pop?: (event_media_players_stddev_pop_order_by | null),stddev_samp?: (event_media_players_stddev_samp_order_by | null),sum?: (event_media_players_sum_order_by | null),var_pop?: (event_media_players_var_pop_order_by | null),var_samp?: (event_media_players_var_samp_order_by | null),variance?: (event_media_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "event_media_players" */ +export interface event_media_players_arr_rel_insert_input {data: event_media_players_insert_input[], +/** upsert condition */ +on_conflict?: (event_media_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface event_media_players_avg_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "event_media_players" */ +export interface event_media_players_avg_order_by {steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "event_media_players". All fields are combined with a logical 'AND'. */ +export interface event_media_players_bool_exp {_and?: (event_media_players_bool_exp[] | null),_not?: (event_media_players_bool_exp | null),_or?: (event_media_players_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),media?: (event_media_bool_exp | null),media_id?: (uuid_comparison_exp | null),player?: (players_bool_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "event_media_players" */ +export interface event_media_players_inc_input {steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "event_media_players" */ +export interface event_media_players_insert_input {created_at?: (Scalars['timestamptz'] | null),media?: (event_media_obj_rel_insert_input | null),media_id?: (Scalars['uuid'] | null),player?: (players_obj_rel_insert_input | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface event_media_players_max_fieldsGenqlSelection{ + created_at?: boolean | number + media_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "event_media_players" */ +export interface event_media_players_max_order_by {created_at?: (order_by | null),media_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface event_media_players_min_fieldsGenqlSelection{ + created_at?: boolean | number + media_id?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "event_media_players" */ +export interface event_media_players_min_order_by {created_at?: (order_by | null),media_id?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "event_media_players" */ +export interface event_media_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_media_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_media_players" */ +export interface event_media_players_on_conflict {constraint: event_media_players_constraint,update_columns?: event_media_players_update_column[],where?: (event_media_players_bool_exp | null)} + + +/** Ordering options when selecting data from "event_media_players". */ +export interface event_media_players_order_by {created_at?: (order_by | null),media?: (event_media_order_by | null),media_id?: (order_by | null),player?: (players_order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: event_media_players */ +export interface event_media_players_pk_columns_input {media_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "event_media_players" */ +export interface event_media_players_set_input {created_at?: (Scalars['timestamptz'] | null),media_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_media_players_stddev_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_media_players" */ +export interface event_media_players_stddev_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_media_players_stddev_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_media_players" */ +export interface event_media_players_stddev_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_media_players_stddev_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_media_players" */ +export interface event_media_players_stddev_samp_order_by {steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "event_media_players" */ +export interface event_media_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_media_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_media_players_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),media_id?: (Scalars['uuid'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_media_players_sum_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_media_players" */ +export interface event_media_players_sum_order_by {steam_id?: (order_by | null)} + +export interface event_media_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_media_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_media_players_set_input | null), +/** filter the rows which have to be updated */ +where: event_media_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_media_players_var_pop_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_media_players" */ +export interface event_media_players_var_pop_order_by {steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_media_players_var_samp_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "event_media_players" */ +export interface event_media_players_var_samp_order_by {steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_media_players_variance_fieldsGenqlSelection{ + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "event_media_players" */ +export interface event_media_players_variance_order_by {steam_id?: (order_by | null)} + + +/** input type for updating data in table "event_media" */ +export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface event_media_stddev_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "event_media" */ +export interface event_media_stddev_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface event_media_stddev_pop_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "event_media" */ +export interface event_media_stddev_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface event_media_stddev_samp_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "event_media" */ +export interface event_media_stddev_samp_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "event_media" */ +export interface event_media_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_media_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface event_media_sum_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "event_media" */ +export interface event_media_sum_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + +export interface event_media_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (event_media_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (event_media_set_input | null), +/** filter the rows which have to be updated */ +where: event_media_bool_exp} + + +/** aggregate var_pop on columns */ +export interface event_media_var_pop_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "event_media" */ +export interface event_media_var_pop_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface event_media_var_samp_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "event_media" */ +export interface event_media_var_samp_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface event_media_variance_fieldsGenqlSelection{ + size?: boolean | number + uploader_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "event_media" */ +export interface event_media_variance_order_by {size?: (order_by | null),uploader_steam_id?: (order_by | null)} + + /** columns and relationships of "event_organizers" */ export interface event_organizersGenqlSelection{ created_at?: boolean | number @@ -41807,12 +42956,44 @@ where: event_tournaments_bool_exp} /** columns and relationships of "events" */ export interface eventsGenqlSelection{ + /** An object relationship */ + banner?: event_mediaGenqlSelection + banner_media_id?: boolean | number + /** A computed field, executes function "can_upload_event_media" */ + can_upload_media?: boolean | number + /** A computed field, executes function "can_view_event" */ + can_view?: boolean | number created_at?: boolean | number description?: boolean | number ends_at?: boolean | number id?: boolean | number /** A computed field, executes function "is_event_organizer" */ is_organizer?: boolean | number + /** An array relationship */ + media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + media_access?: boolean | number + /** An aggregate relationship */ + media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) name?: boolean | number /** An object relationship */ organizer?: playersGenqlSelection @@ -41890,7 +43071,6 @@ export interface eventsGenqlSelection{ /** filter the rows returned */ where?: (event_players_bool_exp | null)} }) starts_at?: boolean | number - status?: boolean | number /** An array relationship */ teams?: (event_teamsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -41939,6 +43119,7 @@ export interface eventsGenqlSelection{ order_by?: (event_tournaments_order_by[] | null), /** filter the rows returned */ where?: (event_tournaments_bool_exp | null)} }) + visibility?: boolean | number __typename?: boolean | number __scalar?: boolean | number } @@ -41980,7 +43161,7 @@ export interface events_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ -export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),status?: (e_event_status_enum_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null)} +export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),banner?: (event_media_bool_exp | null),banner_media_id?: (uuid_comparison_exp | null),can_upload_media?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),media?: (event_media_bool_exp | null),media_access?: (e_event_media_access_enum_comparison_exp | null),media_aggregate?: (event_media_aggregate_bool_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null),visibility?: (e_event_visibility_enum_comparison_exp | null)} /** input type for incrementing numeric columns in table "events" */ @@ -41988,11 +43169,12 @@ export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | nul /** input type for inserting data into table "events" */ -export interface events_insert_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null)} +export interface events_insert_input {banner?: (event_media_obj_rel_insert_input | null),banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media?: (event_media_arr_rel_insert_input | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null),visibility?: (e_event_visibility_enum | null)} /** aggregate max on columns */ export interface events_max_fieldsGenqlSelection{ + banner_media_id?: boolean | number created_at?: boolean | number description?: boolean | number ends_at?: boolean | number @@ -42007,6 +43189,7 @@ export interface events_max_fieldsGenqlSelection{ /** aggregate min on columns */ export interface events_min_fieldsGenqlSelection{ + banner_media_id?: boolean | number created_at?: boolean | number description?: boolean | number ends_at?: boolean | number @@ -42041,7 +43224,7 @@ export interface events_on_conflict {constraint: events_constraint,update_column /** Ordering options when selecting data from "events". */ -export interface events_order_by {created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),status?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null)} +export interface events_order_by {banner?: (event_media_order_by | null),banner_media_id?: (order_by | null),can_upload_media?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),media_access?: (order_by | null),media_aggregate?: (event_media_aggregate_order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null),visibility?: (order_by | null)} /** primary key columns input for table: events */ @@ -42049,7 +43232,7 @@ export interface events_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "events" */ -export interface events_set_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null)} +export interface events_set_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} /** aggregate stddev on columns */ @@ -42085,7 +43268,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface events_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),status?: (e_event_status_enum | null)} +export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} /** aggregate sum on columns */ @@ -51822,12 +53005,18 @@ export interface mutation_rootGenqlSelection{ where: e_draft_game_status_bool_exp} }) /** delete single row from the table: "e_draft_game_status" */ delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** delete data from the table: "e_event_status" */ - delete_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** delete data from the table: "e_event_media_access" */ + delete_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_event_media_access_bool_exp} }) + /** delete single row from the table: "e_event_media_access" */ + delete_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_event_visibility" */ + delete_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ - where: e_event_status_bool_exp} }) - /** delete single row from the table: "e_event_status" */ - delete_e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) + where: e_event_visibility_bool_exp} }) + /** delete single row from the table: "e_event_visibility" */ + delete_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_friend_status" */ delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -52026,6 +53215,18 @@ export interface mutation_rootGenqlSelection{ where: e_winning_reasons_bool_exp} }) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "event_media" */ + delete_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_bool_exp} }) + /** delete single row from the table: "event_media" */ + delete_event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "event_media_players" */ + delete_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_media_players_bool_exp} }) + /** delete single row from the table: "event_media_players" */ + delete_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) /** delete data from the table: "event_organizers" */ delete_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -52761,18 +53962,30 @@ export interface mutation_rootGenqlSelection{ object: e_draft_game_status_insert_input, /** upsert condition */ on_conflict?: (e_draft_game_status_on_conflict | null)} }) - /** insert data into the table: "e_event_status" */ - insert_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** insert data into the table: "e_event_media_access" */ + insert_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ - objects: e_event_status_insert_input[], + objects: e_event_media_access_insert_input[], /** upsert condition */ - on_conflict?: (e_event_status_on_conflict | null)} }) - /** insert a single row into the table: "e_event_status" */ - insert_e_event_status_one?: (e_event_statusGenqlSelection & { __args: { + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert a single row into the table: "e_event_media_access" */ + insert_e_event_media_access_one?: (e_event_media_accessGenqlSelection & { __args: { /** the row to be inserted */ - object: e_event_status_insert_input, + object: e_event_media_access_insert_input, /** upsert condition */ - on_conflict?: (e_event_status_on_conflict | null)} }) + on_conflict?: (e_event_media_access_on_conflict | null)} }) + /** insert data into the table: "e_event_visibility" */ + insert_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_event_visibility_insert_input[], + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) + /** insert a single row into the table: "e_event_visibility" */ + insert_e_event_visibility_one?: (e_event_visibilityGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_event_visibility_insert_input, + /** upsert condition */ + on_conflict?: (e_event_visibility_on_conflict | null)} }) /** insert data into the table: "e_friend_status" */ insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -53169,6 +54382,30 @@ export interface mutation_rootGenqlSelection{ object: e_winning_reasons_insert_input, /** upsert condition */ on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert data into the table: "event_media" */ + insert_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert a single row into the table: "event_media" */ + insert_event_media_one?: (event_mediaGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_insert_input, + /** upsert condition */ + on_conflict?: (event_media_on_conflict | null)} }) + /** insert data into the table: "event_media_players" */ + insert_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_media_players_insert_input[], + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) + /** insert a single row into the table: "event_media_players" */ + insert_event_media_players_one?: (event_media_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_media_players_insert_input, + /** upsert condition */ + on_conflict?: (event_media_players_on_conflict | null)} }) /** insert data into the table: "event_organizers" */ insert_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -54724,20 +55961,34 @@ export interface mutation_rootGenqlSelection{ update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_draft_game_status_updates[]} }) - /** update data of the table: "e_event_status" */ - update_e_event_status?: (e_event_status_mutation_responseGenqlSelection & { __args: { + /** update data of the table: "e_event_media_access" */ + update_e_event_media_access?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_status_set_input | null), + _set?: (e_event_media_access_set_input | null), /** filter the rows which have to be updated */ - where: e_event_status_bool_exp} }) - /** update single row of the table: "e_event_status" */ - update_e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: { + where: e_event_media_access_bool_exp} }) + /** update single row of the table: "e_event_media_access" */ + update_e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ - _set?: (e_event_status_set_input | null), pk_columns: e_event_status_pk_columns_input} }) - /** update multiples rows of table: "e_event_status" */ - update_e_event_status_many?: (e_event_status_mutation_responseGenqlSelection & { __args: { + _set?: (e_event_media_access_set_input | null), pk_columns: e_event_media_access_pk_columns_input} }) + /** update multiples rows of table: "e_event_media_access" */ + update_e_event_media_access_many?: (e_event_media_access_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ - updates: e_event_status_updates[]} }) + updates: e_event_media_access_updates[]} }) + /** update data of the table: "e_event_visibility" */ + update_e_event_visibility?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), + /** filter the rows which have to be updated */ + where: e_event_visibility_bool_exp} }) + /** update single row of the table: "e_event_visibility" */ + update_e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_event_visibility_set_input | null), pk_columns: e_event_visibility_pk_columns_input} }) + /** update multiples rows of table: "e_event_visibility" */ + update_e_event_visibility_many?: (e_event_visibility_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_event_visibility_updates[]} }) /** update data of the table: "e_friend_status" */ update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -55200,6 +56451,42 @@ export interface mutation_rootGenqlSelection{ update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_winning_reasons_updates[]} }) + /** update data of the table: "event_media" */ + update_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_bool_exp} }) + /** update single row of the table: "event_media" */ + update_event_media_by_pk?: (event_mediaGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_set_input | null), pk_columns: event_media_pk_columns_input} }) + /** update multiples rows of table: "event_media" */ + update_event_media_many?: (event_media_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_updates[]} }) + /** update data of the table: "event_media_players" */ + update_event_media_players?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), + /** filter the rows which have to be updated */ + where: event_media_players_bool_exp} }) + /** update single row of the table: "event_media_players" */ + update_event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (event_media_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (event_media_players_set_input | null), pk_columns: event_media_players_pk_columns_input} }) + /** update multiples rows of table: "event_media_players" */ + update_event_media_players_many?: (event_media_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_media_players_updates[]} }) /** update data of the table: "event_organizers" */ update_event_organizers?: (event_organizers_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -68959,32 +70246,58 @@ export interface query_rootGenqlSelection{ where?: (e_draft_game_status_bool_exp | null)} }) /** fetch data from the table: "e_draft_game_status" using primary key columns */ e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table: "e_event_status" */ - e_event_status?: (e_event_statusGenqlSelection & { __args?: { + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (e_event_status_select_column[] | null), + distinct_on?: (e_event_media_access_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?: (e_event_status_order_by[] | null), + order_by?: (e_event_media_access_order_by[] | null), /** filter the rows returned */ - where?: (e_event_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_status" */ - e_event_status_aggregate?: (e_event_status_aggregateGenqlSelection & { __args?: { + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (e_event_status_select_column[] | null), + distinct_on?: (e_event_media_access_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?: (e_event_status_order_by[] | null), + order_by?: (e_event_media_access_order_by[] | null), /** filter the rows returned */ - where?: (e_event_status_bool_exp | null)} }) - /** fetch data from the table: "e_event_status" using primary key columns */ - e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -69843,6 +71156,58 @@ export interface query_rootGenqlSelection{ where?: (e_winning_reasons_bool_exp | null)} }) /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) /** fetch data from the table: "event_organizers" */ event_organizers?: (event_organizersGenqlSelection & { __args?: { /** distinct select on columns */ @@ -72484,6 +73849,30 @@ export interface query_rootGenqlSelection{ where?: (tournaments_bool_exp | null)} }) /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "v_event_matches" */ + v_event_matches?: (v_event_matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_matches_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_matches" */ + v_event_matches_aggregate?: (v_event_matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_matches_bool_exp | null)} }) /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -75053,40 +76442,74 @@ export interface subscription_rootGenqlSelection{ cursor: (e_draft_game_status_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_draft_game_status_bool_exp | null)} }) - /** fetch data from the table: "e_event_status" */ - e_event_status?: (e_event_statusGenqlSelection & { __args?: { + /** fetch data from the table: "e_event_media_access" */ + e_event_media_access?: (e_event_media_accessGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (e_event_status_select_column[] | null), + distinct_on?: (e_event_media_access_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?: (e_event_status_order_by[] | null), + order_by?: (e_event_media_access_order_by[] | null), /** filter the rows returned */ - where?: (e_event_status_bool_exp | null)} }) - /** fetch aggregated fields from the table: "e_event_status" */ - e_event_status_aggregate?: (e_event_status_aggregateGenqlSelection & { __args?: { + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_media_access" */ + e_event_media_access_aggregate?: (e_event_media_access_aggregateGenqlSelection & { __args?: { /** distinct select on columns */ - distinct_on?: (e_event_status_select_column[] | null), + distinct_on?: (e_event_media_access_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?: (e_event_status_order_by[] | null), + order_by?: (e_event_media_access_order_by[] | null), /** filter the rows returned */ - where?: (e_event_status_bool_exp | null)} }) - /** fetch data from the table: "e_event_status" using primary key columns */ - e_event_status_by_pk?: (e_event_statusGenqlSelection & { __args: {value: Scalars['String']} }) - /** fetch data from the table in a streaming manner: "e_event_status" */ - e_event_status_stream?: (e_event_statusGenqlSelection & { __args: { + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_media_access" using primary key columns */ + e_event_media_access_by_pk?: (e_event_media_accessGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_media_access" */ + e_event_media_access_stream?: (e_event_media_accessGenqlSelection & { __args: { /** maximum number of rows returned in a single batch */ batch_size: Scalars['Int'], /** cursor to stream the results returned by the query */ - cursor: (e_event_status_stream_cursor_input | null)[], + cursor: (e_event_media_access_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_media_access_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" */ + e_event_visibility?: (e_event_visibilityGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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?: (e_event_visibility_order_by[] | null), /** filter the rows returned */ - where?: (e_event_status_bool_exp | null)} }) + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_event_visibility" */ + e_event_visibility_aggregate?: (e_event_visibility_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_event_visibility_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?: (e_event_visibility_order_by[] | null), + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) + /** fetch data from the table: "e_event_visibility" using primary key columns */ + e_event_visibility_by_pk?: (e_event_visibilityGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_event_visibility" */ + e_event_visibility_stream?: (e_event_visibilityGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_event_visibility_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_event_visibility_bool_exp | null)} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -76209,6 +77632,74 @@ export interface subscription_rootGenqlSelection{ cursor: (e_winning_reasons_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "event_media" */ + event_media?: (event_mediaGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media" */ + event_media_aggregate?: (event_media_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_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?: (event_media_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) + /** fetch data from the table: "event_media" using primary key columns */ + event_media_by_pk?: (event_mediaGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "event_media_players" */ + event_media_players?: (event_media_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_media_players" */ + event_media_players_aggregate?: (event_media_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_media_players_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?: (event_media_players_order_by[] | null), + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table: "event_media_players" using primary key columns */ + event_media_players_by_pk?: (event_media_playersGenqlSelection & { __args: {media_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "event_media_players" */ + event_media_players_stream?: (event_media_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_players_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "event_media" */ + event_media_stream?: (event_mediaGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_media_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_media_bool_exp | null)} }) /** fetch data from the table: "event_organizers" */ event_organizers?: (event_organizersGenqlSelection & { __args?: { /** distinct select on columns */ @@ -79569,6 +81060,38 @@ export interface subscription_rootGenqlSelection{ cursor: (tournaments_stream_cursor_input | null)[], /** filter the rows returned */ where?: (tournaments_bool_exp | null)} }) + /** fetch data from the table: "v_event_matches" */ + v_event_matches?: (v_event_matchesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_matches_bool_exp | null)} }) + /** fetch aggregated fields from the table: "v_event_matches" */ + v_event_matches_aggregate?: (v_event_matches_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), + /** filter the rows returned */ + where?: (v_event_matches_bool_exp | null)} }) + /** fetch data from the table in a streaming manner: "v_event_matches" */ + v_event_matches_stream?: (v_event_matchesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (v_event_matches_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (v_event_matches_bool_exp | null)} }) /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -86254,6 +87777,76 @@ _contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (S export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} +/** columns and relationships of "v_event_matches" */ +export interface v_event_matchesGenqlSelection{ + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "v_event_matches" */ +export interface v_event_matches_aggregateGenqlSelection{ + aggregate?: v_event_matches_aggregate_fieldsGenqlSelection + nodes?: v_event_matchesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "v_event_matches" */ +export interface v_event_matches_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (v_event_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: v_event_matches_max_fieldsGenqlSelection + min?: v_event_matches_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "v_event_matches". All fields are combined with a logical 'AND'. */ +export interface v_event_matches_bool_exp {_and?: (v_event_matches_bool_exp[] | null),_not?: (v_event_matches_bool_exp | null),_or?: (v_event_matches_bool_exp[] | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} + + +/** aggregate max on columns */ +export interface v_event_matches_max_fieldsGenqlSelection{ + event_id?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface v_event_matches_min_fieldsGenqlSelection{ + event_id?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Ordering options when selecting data from "v_event_matches". */ +export interface v_event_matches_order_by {event?: (events_order_by | null),event_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} + + +/** Streaming cursor of the table "v_event_matches" */ +export interface v_event_matches_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: v_event_matches_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface v_event_matches_stream_cursor_value_input {event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} + + /** columns and relationships of "v_event_player_stats" */ export interface v_event_player_statsGenqlSelection{ assists?: boolean | number @@ -95549,50 +97142,98 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const e_event_status_possibleTypes: string[] = ['e_event_status'] - export const ise_event_status = (obj?: { __typename?: any } | null): obj is e_event_status => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status"') - return e_event_status_possibleTypes.includes(obj.__typename) + const e_event_media_access_possibleTypes: string[] = ['e_event_media_access'] + export const ise_event_media_access = (obj?: { __typename?: any } | null): obj is e_event_media_access => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access"') + return e_event_media_access_possibleTypes.includes(obj.__typename) } - const e_event_status_aggregate_possibleTypes: string[] = ['e_event_status_aggregate'] - export const ise_event_status_aggregate = (obj?: { __typename?: any } | null): obj is e_event_status_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_aggregate"') - return e_event_status_aggregate_possibleTypes.includes(obj.__typename) + const e_event_media_access_aggregate_possibleTypes: string[] = ['e_event_media_access_aggregate'] + export const ise_event_media_access_aggregate = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate"') + return e_event_media_access_aggregate_possibleTypes.includes(obj.__typename) } - const e_event_status_aggregate_fields_possibleTypes: string[] = ['e_event_status_aggregate_fields'] - export const ise_event_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_status_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_aggregate_fields"') - return e_event_status_aggregate_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_aggregate_fields_possibleTypes: string[] = ['e_event_media_access_aggregate_fields'] + export const ise_event_media_access_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_aggregate_fields"') + return e_event_media_access_aggregate_fields_possibleTypes.includes(obj.__typename) } - const e_event_status_max_fields_possibleTypes: string[] = ['e_event_status_max_fields'] - export const ise_event_status_max_fields = (obj?: { __typename?: any } | null): obj is e_event_status_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_max_fields"') - return e_event_status_max_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_max_fields_possibleTypes: string[] = ['e_event_media_access_max_fields'] + export const ise_event_media_access_max_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_max_fields"') + return e_event_media_access_max_fields_possibleTypes.includes(obj.__typename) } - const e_event_status_min_fields_possibleTypes: string[] = ['e_event_status_min_fields'] - export const ise_event_status_min_fields = (obj?: { __typename?: any } | null): obj is e_event_status_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_min_fields"') - return e_event_status_min_fields_possibleTypes.includes(obj.__typename) + const e_event_media_access_min_fields_possibleTypes: string[] = ['e_event_media_access_min_fields'] + export const ise_event_media_access_min_fields = (obj?: { __typename?: any } | null): obj is e_event_media_access_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_min_fields"') + return e_event_media_access_min_fields_possibleTypes.includes(obj.__typename) } - const e_event_status_mutation_response_possibleTypes: string[] = ['e_event_status_mutation_response'] - export const ise_event_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_status_mutation_response => { - if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_status_mutation_response"') - return e_event_status_mutation_response_possibleTypes.includes(obj.__typename) + const e_event_media_access_mutation_response_possibleTypes: string[] = ['e_event_media_access_mutation_response'] + export const ise_event_media_access_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_media_access_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_media_access_mutation_response"') + return e_event_media_access_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_possibleTypes: string[] = ['e_event_visibility'] + export const ise_event_visibility = (obj?: { __typename?: any } | null): obj is e_event_visibility => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility"') + return e_event_visibility_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_aggregate_possibleTypes: string[] = ['e_event_visibility_aggregate'] + export const ise_event_visibility_aggregate = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate"') + return e_event_visibility_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_aggregate_fields_possibleTypes: string[] = ['e_event_visibility_aggregate_fields'] + export const ise_event_visibility_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_aggregate_fields"') + return e_event_visibility_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_max_fields_possibleTypes: string[] = ['e_event_visibility_max_fields'] + export const ise_event_visibility_max_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_max_fields"') + return e_event_visibility_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_min_fields_possibleTypes: string[] = ['e_event_visibility_min_fields'] + export const ise_event_visibility_min_fields = (obj?: { __typename?: any } | null): obj is e_event_visibility_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_min_fields"') + return e_event_visibility_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_event_visibility_mutation_response_possibleTypes: string[] = ['e_event_visibility_mutation_response'] + export const ise_event_visibility_mutation_response = (obj?: { __typename?: any } | null): obj is e_event_visibility_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_event_visibility_mutation_response"') + return e_event_visibility_mutation_response_possibleTypes.includes(obj.__typename) } @@ -97181,6 +98822,230 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const event_media_possibleTypes: string[] = ['event_media'] + export const isevent_media = (obj?: { __typename?: any } | null): obj is event_media => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media"') + return event_media_possibleTypes.includes(obj.__typename) + } + + + + const event_media_aggregate_possibleTypes: string[] = ['event_media_aggregate'] + export const isevent_media_aggregate = (obj?: { __typename?: any } | null): obj is event_media_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate"') + return event_media_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_media_aggregate_fields_possibleTypes: string[] = ['event_media_aggregate_fields'] + export const isevent_media_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_aggregate_fields"') + return event_media_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_avg_fields_possibleTypes: string[] = ['event_media_avg_fields'] + export const isevent_media_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_avg_fields"') + return event_media_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_max_fields_possibleTypes: string[] = ['event_media_max_fields'] + export const isevent_media_max_fields = (obj?: { __typename?: any } | null): obj is event_media_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_max_fields"') + return event_media_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_min_fields_possibleTypes: string[] = ['event_media_min_fields'] + export const isevent_media_min_fields = (obj?: { __typename?: any } | null): obj is event_media_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_min_fields"') + return event_media_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_mutation_response_possibleTypes: string[] = ['event_media_mutation_response'] + export const isevent_media_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_mutation_response"') + return event_media_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_possibleTypes: string[] = ['event_media_players'] + export const isevent_media_players = (obj?: { __typename?: any } | null): obj is event_media_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players"') + return event_media_players_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_aggregate_possibleTypes: string[] = ['event_media_players_aggregate'] + export const isevent_media_players_aggregate = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate"') + return event_media_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_aggregate_fields_possibleTypes: string[] = ['event_media_players_aggregate_fields'] + export const isevent_media_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_media_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_aggregate_fields"') + return event_media_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_avg_fields_possibleTypes: string[] = ['event_media_players_avg_fields'] + export const isevent_media_players_avg_fields = (obj?: { __typename?: any } | null): obj is event_media_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_avg_fields"') + return event_media_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_max_fields_possibleTypes: string[] = ['event_media_players_max_fields'] + export const isevent_media_players_max_fields = (obj?: { __typename?: any } | null): obj is event_media_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_max_fields"') + return event_media_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_min_fields_possibleTypes: string[] = ['event_media_players_min_fields'] + export const isevent_media_players_min_fields = (obj?: { __typename?: any } | null): obj is event_media_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_min_fields"') + return event_media_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_mutation_response_possibleTypes: string[] = ['event_media_players_mutation_response'] + export const isevent_media_players_mutation_response = (obj?: { __typename?: any } | null): obj is event_media_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_mutation_response"') + return event_media_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_fields_possibleTypes: string[] = ['event_media_players_stddev_fields'] + export const isevent_media_players_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_fields"') + return event_media_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_pop_fields_possibleTypes: string[] = ['event_media_players_stddev_pop_fields'] + export const isevent_media_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_pop_fields"') + return event_media_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_stddev_samp_fields_possibleTypes: string[] = ['event_media_players_stddev_samp_fields'] + export const isevent_media_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_stddev_samp_fields"') + return event_media_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_sum_fields_possibleTypes: string[] = ['event_media_players_sum_fields'] + export const isevent_media_players_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_sum_fields"') + return event_media_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_var_pop_fields_possibleTypes: string[] = ['event_media_players_var_pop_fields'] + export const isevent_media_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_pop_fields"') + return event_media_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_var_samp_fields_possibleTypes: string[] = ['event_media_players_var_samp_fields'] + export const isevent_media_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_var_samp_fields"') + return event_media_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_players_variance_fields_possibleTypes: string[] = ['event_media_players_variance_fields'] + export const isevent_media_players_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_players_variance_fields"') + return event_media_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_fields_possibleTypes: string[] = ['event_media_stddev_fields'] + export const isevent_media_stddev_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_fields"') + return event_media_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_pop_fields_possibleTypes: string[] = ['event_media_stddev_pop_fields'] + export const isevent_media_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_pop_fields"') + return event_media_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_stddev_samp_fields_possibleTypes: string[] = ['event_media_stddev_samp_fields'] + export const isevent_media_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_stddev_samp_fields"') + return event_media_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_sum_fields_possibleTypes: string[] = ['event_media_sum_fields'] + export const isevent_media_sum_fields = (obj?: { __typename?: any } | null): obj is event_media_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_sum_fields"') + return event_media_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_var_pop_fields_possibleTypes: string[] = ['event_media_var_pop_fields'] + export const isevent_media_var_pop_fields = (obj?: { __typename?: any } | null): obj is event_media_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_pop_fields"') + return event_media_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_var_samp_fields_possibleTypes: string[] = ['event_media_var_samp_fields'] + export const isevent_media_var_samp_fields = (obj?: { __typename?: any } | null): obj is event_media_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_var_samp_fields"') + return event_media_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_media_variance_fields_possibleTypes: string[] = ['event_media_variance_fields'] + export const isevent_media_variance_fields = (obj?: { __typename?: any } | null): obj is event_media_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media_variance_fields"') + return event_media_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const event_organizers_possibleTypes: string[] = ['event_organizers'] export const isevent_organizers = (obj?: { __typename?: any } | null): obj is event_organizers => { if (!obj?.__typename) throw new Error('__typename is missing in "isevent_organizers"') @@ -107021,6 +108886,46 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const v_event_matches_possibleTypes: string[] = ['v_event_matches'] + export const isv_event_matches = (obj?: { __typename?: any } | null): obj is v_event_matches => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches"') + return v_event_matches_possibleTypes.includes(obj.__typename) + } + + + + const v_event_matches_aggregate_possibleTypes: string[] = ['v_event_matches_aggregate'] + export const isv_event_matches_aggregate = (obj?: { __typename?: any } | null): obj is v_event_matches_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_aggregate"') + return v_event_matches_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const v_event_matches_aggregate_fields_possibleTypes: string[] = ['v_event_matches_aggregate_fields'] + export const isv_event_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_aggregate_fields"') + return v_event_matches_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_matches_max_fields_possibleTypes: string[] = ['v_event_matches_max_fields'] + export const isv_event_matches_max_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_max_fields"') + return v_event_matches_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const v_event_matches_min_fields_possibleTypes: string[] = ['v_event_matches_min_fields'] + export const isv_event_matches_min_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_min_fields"') + return v_event_matches_min_fields_possibleTypes.includes(obj.__typename) + } + + + const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') @@ -110714,22 +112619,41 @@ export const enumEDraftGameStatusUpdateColumn = { value: 'value' as const } -export const enumEEventStatusConstraint = { - e_event_status_pkey: 'e_event_status_pkey' as const +export const enumEEventMediaAccessConstraint = { + e_event_media_access_pkey: 'e_event_media_access_pkey' as const } -export const enumEEventStatusEnum = { - Finished: 'Finished' as const, - Live: 'Live' as const, - Setup: 'Setup' as const +export const enumEEventMediaAccessEnum = { + Involved: 'Involved' as const, + Organizers: 'Organizers' as const +} + +export const enumEEventMediaAccessSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventMediaAccessUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEEventVisibilityConstraint = { + e_event_visibility_pkey: 'e_event_visibility_pkey' as const +} + +export const enumEEventVisibilityEnum = { + Friends: 'Friends' as const, + Private: 'Private' as const, + Public: 'Public' as const } -export const enumEEventStatusSelectColumn = { +export const enumEEventVisibilitySelectColumn = { description: 'description' as const, value: 'value' as const } -export const enumEEventStatusUpdateColumn = { +export const enumEEventVisibilityUpdateColumn = { description: 'description' as const, value: 'value' as const } @@ -111483,6 +113407,49 @@ export const enumEWinningReasonsUpdateColumn = { value: 'value' as const } +export const enumEventMediaConstraint = { + event_media_event_id_filename_key: 'event_media_event_id_filename_key' as const, + event_media_pkey: 'event_media_pkey' as const +} + +export const enumEventMediaPlayersConstraint = { + event_media_players_pkey: 'event_media_players_pkey' as const +} + +export const enumEventMediaPlayersSelectColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaPlayersUpdateColumn = { + created_at: 'created_at' as const, + media_id: 'media_id' as const, + steam_id: 'steam_id' as const +} + +export const enumEventMediaSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + +export const enumEventMediaUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + filename: 'filename' as const, + id: 'id' as const, + mime_type: 'mime_type' as const, + size: 'size' as const, + title: 'title' as const, + uploader_steam_id: 'uploader_steam_id' as const +} + export const enumEventOrganizersConstraint = { event_organizers_pkey: 'event_organizers_pkey' as const } @@ -111552,25 +113519,29 @@ export const enumEventsConstraint = { } export const enumEventsSelectColumn = { + banner_media_id: 'banner_media_id' as const, created_at: 'created_at' as const, description: 'description' as const, ends_at: 'ends_at' as const, id: 'id' as const, + media_access: 'media_access' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, starts_at: 'starts_at' as const, - status: 'status' as const + visibility: 'visibility' as const } export const enumEventsUpdateColumn = { + banner_media_id: 'banner_media_id' as const, created_at: 'created_at' as const, description: 'description' as const, ends_at: 'ends_at' as const, id: 'id' as const, + media_access: 'media_access' as const, name: 'name' as const, organizer_steam_id: 'organizer_steam_id' as const, starts_at: 'starts_at' as const, - status: 'status' as const + visibility: 'visibility' as const } export const enumFriendsConstraint = { @@ -114781,6 +116752,11 @@ export const enumTournamentsUpdateColumn = { trophies_enabled: 'trophies_enabled' as const } +export const enumVEventMatchesSelectColumn = { + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + export const enumVEventPlayerStatsSelectColumn = { assists: 'assists' as const, deaths: 'deaths' as const, diff --git a/generated/types.ts b/generated/types.ts index 4fda6f4b..3152a5f7 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -70,66 +70,66 @@ export default { 543, 549, 550, - 560, - 564, + 559, + 563, + 569, 570, - 571, 580, 584, 590, 591, - 601, - 605, + 600, + 604, + 610, 611, - 612, - 622, - 626, + 621, + 625, + 631, 632, - 633, - 643, - 647, + 642, + 646, + 652, 653, - 654, - 664, - 668, + 663, + 667, + 673, 674, - 675, - 685, - 689, + 684, + 688, + 694, 695, - 696, - 706, - 710, + 705, + 709, + 715, 716, - 717, 726, 730, 736, 737, - 747, - 751, + 746, + 750, + 756, 757, - 758, 767, 771, 777, 778, - 788, - 792, + 787, + 791, + 797, 798, - 799, 808, 812, 818, 819, - 829, - 833, + 828, + 832, + 838, 839, - 840, - 850, - 854, + 849, + 853, + 859, 860, - 861, 870, 874, 880, @@ -150,10 +150,10 @@ export default { 954, 960, 961, - 971, - 975, + 970, + 974, + 980, 981, - 982, 991, 995, 1001, @@ -170,10 +170,10 @@ export default { 1055, 1061, 1062, - 1072, - 1076, + 1071, + 1075, + 1081, 1082, - 1083, 1092, 1096, 1102, @@ -182,14 +182,14 @@ export default { 1116, 1122, 1123, - 1133, - 1137, + 1132, + 1136, + 1142, 1143, - 1144, - 1154, - 1158, + 1153, + 1157, + 1163, 1164, - 1165, 1174, 1178, 1184, @@ -200,418 +200,429 @@ export default { 1205, 1214, 1218, - 1230, - 1241, - 1253, - 1271, - 1282, - 1294, - 1310, - 1320, - 1324, - 1334, + 1224, + 1225, + 1234, + 1238, + 1250, + 1272, + 1283, + 1295, + 1303, + 1315, + 1333, 1344, - 1348, - 1355, - 1365, - 1373, - 1378, + 1356, + 1374, 1385, - 1394, - 1402, - 1420, - 1436, + 1397, + 1413, + 1423, + 1427, 1437, - 1438, - 1450, - 1464, - 1478, - 1486, + 1447, + 1451, + 1458, + 1468, + 1476, + 1481, + 1488, 1497, - 1510, - 1518, - 1527, - 1529, - 1531, - 1545, - 1563, - 1573, + 1505, + 1523, + 1539, + 1540, + 1541, + 1553, + 1567, 1581, - 1596, - 1607, - 1619, - 1637, + 1589, + 1600, + 1613, + 1621, + 1630, + 1632, + 1634, 1648, - 1660, - 1678, - 1689, - 1701, - 1717, - 1728, - 1732, + 1666, + 1676, + 1684, + 1699, + 1710, + 1722, 1740, - 1754, - 1762, - 1777, - 1788, - 1800, - 1818, - 1829, - 1841, - 1859, - 1871, - 1883, - 1895, - 1904, - 1908, - 1914, - 1923, - 1927, - 1941, - 1952, - 1953, - 1954, - 1966, - 1978, - 1987, - 1991, - 2003, - 2014, - 2015, - 2016, - 2020, - 2032, + 1751, + 1763, + 1781, + 1792, + 1804, + 1820, + 1831, + 1835, + 1843, + 1857, + 1865, + 1880, + 1891, + 1903, + 1921, + 1932, + 1944, + 1962, + 1974, + 1986, + 1998, + 2007, + 2011, + 2017, + 2026, + 2030, 2044, + 2055, 2056, - 2075, + 2057, + 2069, + 2081, 2090, - 2102, - 2122, - 2133, - 2134, + 2094, + 2106, + 2117, + 2118, + 2119, + 2123, 2135, 2147, - 2165, - 2177, - 2189, - 2210, - 2226, - 2227, - 2228, - 2240, - 2258, - 2269, - 2281, - 2297, - 2307, - 2311, - 2323, - 2335, - 2347, - 2360, - 2370, - 2378, - 2391, - 2401, - 2405, - 2420, - 2435, - 2436, - 2437, - 2449, - 2461, - 2469, + 2159, + 2178, + 2193, + 2205, + 2225, + 2236, + 2237, + 2238, + 2250, + 2268, + 2280, + 2292, + 2313, + 2329, + 2330, + 2331, + 2343, + 2361, + 2372, + 2384, + 2400, + 2410, + 2414, + 2426, + 2438, + 2450, + 2463, 2473, - 2485, - 2497, - 2509, - 2521, - 2529, - 2533, - 2560, - 2561, - 2562, - 2586, - 2595, - 2603, - 2621, + 2481, + 2494, + 2504, + 2508, + 2523, + 2538, + 2539, + 2540, + 2552, + 2564, + 2572, + 2576, + 2588, + 2600, + 2612, + 2624, + 2632, 2636, - 2637, - 2638, - 2650, - 2658, - 2660, - 2671, - 2682, - 2694, - 2707, - 2717, - 2725, - 2735, - 2744, - 2752, - 2767, - 2778, - 2790, + 2663, + 2664, + 2665, + 2689, + 2698, + 2706, + 2724, + 2739, + 2740, + 2741, + 2753, + 2761, + 2763, + 2774, + 2785, + 2797, 2810, - 2821, - 2822, - 2823, - 2835, - 2851, - 2871, - 2882, - 2894, - 2907, - 2916, + 2820, + 2828, + 2838, + 2847, + 2855, + 2870, + 2881, + 2893, + 2913, 2924, - 2939, - 2950, - 2962, - 2982, - 2993, - 2994, - 2995, - 3007, - 3037, - 3048, - 3060, - 3068, - 3079, - 3080, - 3081, - 3093, - 3112, - 3134, - 3145, - 3157, - 3173, - 3199, - 3226, + 2925, + 2926, + 2938, + 2954, + 2974, + 2985, + 2997, + 3010, + 3019, + 3027, + 3042, + 3053, + 3065, + 3085, + 3096, + 3097, + 3098, + 3110, + 3140, + 3151, + 3163, + 3171, + 3182, + 3183, + 3184, + 3196, + 3215, 3237, - 3249, - 3265, - 3285, - 3296, - 3308, - 3326, - 3337, - 3349, - 3377, + 3248, + 3260, + 3276, + 3302, + 3329, + 3340, + 3352, + 3368, 3388, - 3389, - 3390, - 3391, - 3392, - 3393, - 3394, - 3395, - 3396, - 3408, - 3421, - 3431, - 3439, - 3450, - 3463, - 3471, - 3481, - 3490, + 3399, + 3411, + 3429, + 3440, + 3452, + 3480, + 3491, + 3492, + 3493, + 3494, + 3495, + 3496, + 3497, 3498, - 3513, + 3499, + 3511, 3524, - 3536, - 3554, - 3565, - 3577, + 3534, + 3542, + 3553, + 3566, + 3574, + 3584, + 3593, 3601, - 3623, - 3633, - 3641, - 3651, - 3660, + 3616, + 3627, + 3639, + 3657, 3668, - 3682, - 3692, - 3700, - 3710, - 3719, - 3727, + 3680, + 3704, + 3726, + 3736, 3744, - 3756, - 3757, - 3758, - 3770, - 3782, - 3790, - 3794, - 3796, - 3806, - 3816, - 3820, - 3827, - 3837, - 3845, - 3855, - 3864, - 3872, - 3887, - 3898, - 3910, + 3754, + 3763, + 3771, + 3785, + 3795, + 3803, + 3813, + 3822, + 3830, + 3847, + 3859, + 3860, + 3861, + 3873, + 3885, + 3893, + 3897, + 3899, + 3909, + 3919, + 3923, 3930, - 3941, - 3942, - 3943, - 3955, - 3968, - 3977, - 3985, - 4000, - 4010, - 4011, - 4012, - 4016, - 4028, - 4039, - 4051, + 3940, + 3948, + 3958, + 3967, + 3975, + 3990, + 4001, + 4013, + 4033, + 4044, + 4045, + 4046, + 4058, 4071, - 4083, - 4084, - 4085, - 4097, - 4110, - 4120, - 4128, - 4138, - 4147, - 4155, - 4170, - 4182, - 4194, - 4202, - 4203, - 4217, - 4229, - 4230, + 4080, + 4088, + 4103, + 4113, + 4114, + 4115, + 4119, + 4131, + 4142, + 4154, + 4174, + 4186, + 4187, + 4188, + 4200, + 4213, + 4223, 4231, - 4243, - 4261, - 4272, - 4284, - 4302, - 4313, - 4325, + 4241, + 4250, + 4258, + 4273, + 4285, + 4297, + 4305, + 4306, + 4320, + 4332, + 4333, + 4334, 4346, - 4362, - 4363, 4364, - 4376, - 4394, + 4375, + 4387, 4405, - 4417, - 4435, - 4446, - 4458, - 4476, - 4488, - 4500, + 4416, + 4428, + 4449, + 4465, + 4466, + 4467, + 4479, + 4497, + 4508, 4520, - 4531, - 4532, - 4533, - 4545, - 4563, - 4575, - 4587, - 4607, - 4619, - 4620, - 4621, - 4633, - 4641, - 4670, - 4671, - 4672, - 4673, - 4674, - 4675, - 4676, - 4677, + 4538, + 4549, + 4561, + 4579, + 4591, + 4603, + 4623, + 4634, + 4635, + 4636, + 4648, + 4666, 4678, - 4703, - 4729, - 4772, - 4773, - 4774, - 4775, - 4776, - 4777, - 4778, - 4779, - 4780, - 4809, - 4837, - 4862, - 4880, - 4898, - 4919, - 4939, - 4965, - 4990, - 5008, - 5044, - 5045, - 5046, - 5047, - 5048, - 5049, - 5050, - 5051, + 4690, + 4710, + 4722, + 4723, + 4724, + 4736, + 4744, + 4754, + 4783, + 4784, + 4785, + 4786, + 4787, + 4788, + 4789, + 4790, + 4791, + 4816, + 4842, + 4885, + 4886, + 4887, + 4888, + 4889, + 4890, + 4891, + 4892, + 4893, + 4922, + 4950, + 4975, + 4993, + 5011, + 5032, 5052, - 5077, - 5095, - 5113, - 5141, - 5168, - 5186, - 5204, - 5230, - 5255, - 5273, - 5300, - 5301, - 5302, - 5315, - 5335, - 5355, - 5385, - 5397, - 5398, - 5399, - 5400, - 5401, - 5402, - 5403, - 5404, - 5405, - 5417, - 5451, - 5452, - 5453, - 5454, - 5455, - 5456, - 5457, - 5458, - 5459, - 5502, - 5503, - 5504, - 5505, - 5506, - 5507, - 5508, - 5509, - 5510 + 5078, + 5103, + 5121, + 5157, + 5158, + 5159, + 5160, + 5161, + 5162, + 5163, + 5164, + 5165, + 5190, + 5208, + 5226, + 5254, + 5281, + 5299, + 5317, + 5343, + 5368, + 5386, + 5413, + 5414, + 5415, + 5428, + 5448, + 5468, + 5498, + 5510, + 5511, + 5512, + 5513, + 5514, + 5515, + 5516, + 5517, + 5518, + 5530, + 5564, + 5565, + 5566, + 5567, + 5568, + 5569, + 5570, + 5571, + 5572, + 5615, + 5616, + 5617, + 5618, + 5619, + 5620, + 5621, + 5622, + 5623 ], "types": { "ActiveConnection": { @@ -628,7 +639,7 @@ export default { 78 ], "query_start": [ - 4202 + 4305 ], "state": [ 78 @@ -657,7 +668,7 @@ export default { 78 ], "query_start": [ - 4202 + 4305 ], "state": [ 78 @@ -755,7 +766,7 @@ export default { 38 ], "payload": [ - 1531 + 1634 ], "start_ms": [ 38 @@ -789,7 +800,7 @@ export default { 78 ], "match_map_id": [ - 4641 + 4744 ], "output": [ 6 @@ -849,7 +860,7 @@ export default { }, "CpuStat": { "time": [ - 4202 + 4305 ], "total": [ 180 @@ -866,7 +877,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4641 + 4744 ], "success": [ 3 @@ -877,7 +888,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4641 + 4744 ], "__typename": [ 78 @@ -885,7 +896,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4641 + 4744 ], "__typename": [ 78 @@ -1041,7 +1052,7 @@ export default { 20 ], "time": [ - 4202 + 4305 ], "__typename": [ 78 @@ -1067,7 +1078,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "mode": [ 78 @@ -1146,7 +1157,7 @@ export default { 3 ], "modified": [ - 4202 + 4305 ], "name": [ 78 @@ -1250,7 +1261,7 @@ export default { 32 ], "time": [ - 4202 + 4305 ], "__typename": [ 78 @@ -1492,7 +1503,7 @@ export default { 78 ], "player": [ - 3618 + 3721 ], "profile_url": [ 78 @@ -1509,7 +1520,7 @@ export default { }, "MemoryStat": { "time": [ - 4202 + 4305 ], "total": [ 180 @@ -1526,7 +1537,7 @@ export default { 49 ], "time": [ - 4202 + 4305 ], "__typename": [ 78 @@ -1546,7 +1557,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "published_at": [ 78 @@ -2304,16 +2315,16 @@ export default { 38 ], "last_analyze": [ - 4202 + 4305 ], "last_autoanalyze": [ - 4202 + 4305 ], "last_autovacuum": [ - 4202 + 4305 ], "last_vacuum": [ - 4202 + 4305 ], "n_dead_tup": [ 38 @@ -2387,7 +2398,7 @@ export default { 78 ], "next_start": [ - 4202 + 4305 ], "__typename": [ 78 @@ -2409,7 +2420,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4641 + 4744 ], "depth": [ 38 @@ -2418,7 +2429,7 @@ export default { 3 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 @@ -2461,10 +2472,10 @@ export default { }, "_map_pool": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2515,10 +2526,10 @@ export default { 95 ], "map_id": [ - 4643 + 4746 ], "map_pool_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -2527,10 +2538,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2538,10 +2549,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2549,10 +2560,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2585,10 +2596,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2660 + 2763 ], "map_pool_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -2596,10 +2607,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2608,10 +2619,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2630,10 +2641,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2654,10 +2665,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -2754,7 +2765,7 @@ export default { 119 ], "count": [ - 2660 + 2763 ], "max": [ 125 @@ -2808,7 +2819,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -2825,10 +2836,10 @@ export default { 120 ], "abandoned_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "steam_id": [ 182 @@ -2848,10 +2859,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -2862,10 +2873,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -2876,13 +2887,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -2890,10 +2901,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -2904,13 +2915,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -2943,13 +2954,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -2957,7 +2968,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -2966,10 +2977,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -2988,7 +2999,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3004,7 +3015,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3020,7 +3031,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3039,10 +3050,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -3061,7 +3072,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3092,7 +3103,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3108,7 +3119,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3124,7 +3135,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3132,16 +3143,16 @@ export default { }, "api_keys": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3227,16 +3238,16 @@ export default { 156 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "label": [ 80 ], "last_used_at": [ - 4204 + 4307 ], "steam_id": [ 182 @@ -3256,16 +3267,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3276,16 +3287,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3296,16 +3307,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3341,19 +3352,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "last_used_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3361,7 +3372,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -3370,16 +3381,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3425,16 +3436,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "last_used_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -3492,7 +3503,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -3604,49 +3615,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2022 + 2125 ], "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 ], "game_server_node": [ - 1407 + 1510 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map": [ - 2313 + 2416 ], "match_map_demo": [ - 2197 + 2300 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "paused": [ 3 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -3655,7 +3666,7 @@ export default { 38 ], "spec": [ - 1531, + 1634, { "path": [ 78 @@ -3666,7 +3677,7 @@ export default { 78 ], "status_history": [ - 1531, + 1634, { "path": [ 78 @@ -3674,7 +3685,7 @@ export default { } ], "user": [ - 3618 + 3721 ], "user_steam_id": [ 180 @@ -3811,7 +3822,7 @@ export default { 196 ], "count": [ - 2660 + 2763 ], "max": [ 205 @@ -3846,10 +3857,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1531 + 1634 ], "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -3882,13 +3893,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -3905,49 +3916,49 @@ export default { 197 ], "clip": [ - 2031 + 2134 ], "clip_id": [ - 4643 + 4746 ], "created_at": [ - 4204 + 4307 ], "error_message": [ 80 ], "game_server_node": [ - 1419 + 1522 ], "game_server_node_id": [ 80 ], "id": [ - 4643 + 4746 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4204 + 4307 ], "match_map": [ - 2322 + 2425 ], "match_map_demo": [ - 2209 + 2312 ], "match_map_demo_id": [ - 4643 + 4746 ], "match_map_id": [ - 4643 + 4746 ], "paused": [ 4 ], "progress": [ - 2659 + 2762 ], "session_token": [ 80 @@ -3956,16 +3967,16 @@ export default { 39 ], "spec": [ - 1533 + 1636 ], "status": [ 80 ], "status_history": [ - 1533 + 1636 ], "user": [ - 3622 + 3725 ], "user_steam_id": [ 182 @@ -4010,7 +4021,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2658 + 2761 ], "sort_index": [ 38 @@ -4024,49 +4035,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2040 + 2143 ], "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 ], "game_server_node": [ - 1431 + 1534 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map": [ - 2331 + 2434 ], "match_map_demo": [ - 2221 + 2324 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "paused": [ 3 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -4075,16 +4086,16 @@ export default { 38 ], "spec": [ - 1531 + 1634 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "user": [ - 3629 + 3732 ], "user_steam_id": [ 180 @@ -4095,10 +4106,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -4107,22 +4118,22 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -4142,46 +4153,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "progress": [ - 2660 + 2763 ], "session_token": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4189,10 +4200,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -4201,22 +4212,22 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -4236,46 +4247,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "progress": [ - 2660 + 2763 ], "session_token": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4308,70 +4319,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2042 + 2145 ], "clip_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node": [ - 1433 + 1536 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_demo": [ - 2223 + 2326 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "paused": [ - 2660 + 2763 ], "progress": [ - 2660 + 2763 ], "session_token": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "spec": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "status_history": [ - 2660 + 2763 ], "user": [ - 3631 + 3734 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4379,7 +4390,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -4387,10 +4398,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1531 + 1634 ], "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -4401,10 +4412,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -4413,25 +4424,25 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "paused": [ 3 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -4440,13 +4451,13 @@ export default { 38 ], "spec": [ - 1531 + 1634 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "user_steam_id": [ 180 @@ -4471,13 +4482,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4499,13 +4510,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4527,13 +4538,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4552,10 +4563,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -4564,25 +4575,25 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "paused": [ 3 ], "progress": [ - 2658 + 2761 ], "session_token": [ 78 @@ -4591,13 +4602,13 @@ export default { 38 ], "spec": [ - 1531 + 1634 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "user_steam_id": [ 180 @@ -4608,7 +4619,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2658 + 2761 ], "sort_index": [ 38 @@ -4622,13 +4633,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4680,13 +4691,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4708,13 +4719,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4736,13 +4747,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2660 + 2763 ], "sort_index": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4750,7 +4761,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -4759,10 +4770,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -4851,10 +4862,10 @@ export default { 241 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "name": [ 80 @@ -4877,10 +4888,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -4894,10 +4905,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -4911,10 +4922,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -4953,16 +4964,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "__typename": [ 78 @@ -4970,7 +4981,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -4979,10 +4990,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -5031,10 +5042,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -5098,22 +5109,22 @@ export default { 3 ], "captain": [ - 3618 + 3721 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "draft_game": [ 354 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "is_organizer": [ 3 @@ -5122,7 +5133,7 @@ export default { 38 ], "picked": [ - 3618 + 3721 ], "picked_steam_id": [ 180 @@ -5259,7 +5270,7 @@ export default { 274 ], "count": [ - 2660 + 2763 ], "max": [ 280 @@ -5319,13 +5330,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5345,22 +5356,22 @@ export default { 4 ], "captain": [ - 3622 + 3725 ], "captain_steam_id": [ 182 ], "created_at": [ - 4204 + 4307 ], "draft_game": [ 365 ], "draft_game_id": [ - 4643 + 4746 ], "id": [ - 4643 + 4746 ], "is_organizer": [ 4 @@ -5369,7 +5380,7 @@ export default { 39 ], "picked": [ - 3622 + 3725 ], "picked_steam_id": [ 182 @@ -5398,28 +5409,28 @@ export default { 3 ], "captain": [ - 3629 + 3732 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "draft_game": [ 374 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "lineup": [ 38 ], "picked": [ - 3629 + 3732 ], "picked_steam_id": [ 180 @@ -5433,13 +5444,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "lineup": [ 38 @@ -5453,22 +5464,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "draft_game_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5479,13 +5490,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "lineup": [ 38 @@ -5499,22 +5510,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "draft_game_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5547,37 +5558,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2660 + 2763 ], "captain": [ - 3631 + 3734 ], "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "draft_game": [ 376 ], "draft_game_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked": [ - 3631 + 3734 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5585,7 +5596,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -5602,13 +5613,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "lineup": [ 38 @@ -5636,13 +5647,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5664,13 +5675,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5692,13 +5703,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5723,13 +5734,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "draft_game_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "lineup": [ 38 @@ -5757,13 +5768,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5800,13 +5811,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5828,13 +5839,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5856,13 +5867,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "picked_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -5873,7 +5884,7 @@ export default { 354 ], "draft_game_id": [ - 4641 + 4744 ], "e_draft_game_player_status": [ 483 @@ -5888,7 +5899,7 @@ export default { 3 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -5897,7 +5908,7 @@ export default { 38 ], "player": [ - 3618 + 3721 ], "status": [ 488 @@ -6037,7 +6048,7 @@ export default { 319 ], "count": [ - 2660 + 2763 ], "max": [ 325 @@ -6100,16 +6111,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6129,7 +6140,7 @@ export default { 365 ], "draft_game_id": [ - 4643 + 4746 ], "e_draft_game_player_status": [ 486 @@ -6144,7 +6155,7 @@ export default { 4 ], "joined_at": [ - 4204 + 4307 ], "lineup": [ 39 @@ -6153,7 +6164,7 @@ export default { 39 ], "player": [ - 3622 + 3725 ], "status": [ 489 @@ -6188,7 +6199,7 @@ export default { 374 ], "draft_game_id": [ - 4641 + 4744 ], "e_draft_game_player_status": [ 494 @@ -6200,7 +6211,7 @@ export default { 3 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -6209,7 +6220,7 @@ export default { 38 ], "player": [ - 3629 + 3732 ], "status": [ 488 @@ -6223,13 +6234,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4641 + 4744 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -6246,22 +6257,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2660 + 2763 ], "elo_snapshot": [ - 2660 + 2763 ], "joined_at": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6269,13 +6280,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4641 + 4744 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -6292,22 +6303,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2660 + 2763 ], "elo_snapshot": [ - 2660 + 2763 ], "joined_at": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6343,37 +6354,37 @@ export default { 376 ], "draft_game_id": [ - 2660 + 2763 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2660 + 2763 ], "is_captain": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 ], "joined_at": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "status": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6381,7 +6392,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -6395,7 +6406,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": [ - 4641 + 4744 ], "elo_snapshot": [ 38 @@ -6404,7 +6415,7 @@ export default { 3 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -6441,16 +6452,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6475,16 +6486,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6509,16 +6520,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6537,7 +6548,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4641 + 4744 ], "elo_snapshot": [ 38 @@ -6546,7 +6557,7 @@ export default { 3 ], "joined_at": [ - 4203 + 4306 ], "lineup": [ 38 @@ -6583,16 +6594,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6632,16 +6643,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6666,16 +6677,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6700,16 +6711,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2660 + 2763 ], "lineup": [ - 2660 + 2763 ], "pick_order": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -6717,7 +6728,7 @@ export default { }, "draft_games": { "access": [ - 696 + 716 ], "capacity": [ 38 @@ -6726,7 +6737,7 @@ export default { 425 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 @@ -6747,43 +6758,43 @@ export default { 504 ], "e_lobby_access": [ - 691 + 711 ], "expires_at": [ - 4203 + 4306 ], "host": [ - 3618 + 3721 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "inner_squad": [ 3 ], "invite_code": [ - 4641 + 4744 ], "is_organizer": [ 3 ], "map_pool": [ - 1974 + 2077 ], "map_pool_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -6795,10 +6806,10 @@ export default { 467 ], "options": [ - 2355 + 2458 ], "pattern": [ - 1531, + 1634, { "path": [ 78 @@ -6806,7 +6817,7 @@ export default { } ], "pick_deadline": [ - 4203 + 4306 ], "picks": [ 264, @@ -6903,28 +6914,28 @@ export default { 3 ], "scheduled_at": [ - 4203 + 4306 ], "status": [ 509 ], "team_1": [ - 4160 + 4263 ], "team_1_id": [ - 4641 + 4744 ], "team_2": [ - 4160 + 4263 ], "team_2_id": [ - 4641 + 4744 ], "type": [ - 840 + 860 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -7058,7 +7069,7 @@ export default { 364 ], "count": [ - 2660 + 2763 ], "max": [ 370 @@ -7124,19 +7135,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -7153,7 +7164,7 @@ export default { 365 ], "access": [ - 697 + 717 ], "capacity": [ 39 @@ -7162,7 +7173,7 @@ export default { 426 ], "created_at": [ - 4204 + 4307 ], "current_pick_lineup": [ 39 @@ -7183,43 +7194,43 @@ export default { 507 ], "e_lobby_access": [ - 694 + 714 ], "expires_at": [ - 4204 + 4307 ], "host": [ - 3622 + 3725 ], "host_steam_id": [ 182 ], "id": [ - 4643 + 4746 ], "inner_squad": [ 4 ], "invite_code": [ - 4643 + 4746 ], "is_organizer": [ 4 ], "map_pool": [ - 1977 + 2080 ], "map_pool_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_options_id": [ - 4643 + 4746 ], "max_elo": [ 39 @@ -7231,13 +7242,13 @@ export default { 468 ], "options": [ - 2359 + 2462 ], "pattern": [ - 1533 + 1636 ], "pick_deadline": [ - 4204 + 4307 ], "picks": [ 275 @@ -7258,28 +7269,28 @@ export default { 4 ], "scheduled_at": [ - 4204 + 4307 ], "status": [ 510 ], "team_1": [ - 4169 + 4272 ], "team_1_id": [ - 4643 + 4746 ], "team_2": [ - 4169 + 4272 ], "team_2_id": [ - 4643 + 4746 ], "type": [ - 841 + 861 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -7308,7 +7319,7 @@ export default { }, "draft_games_insert_input": { "access": [ - 696 + 716 ], "capacity": [ 38 @@ -7317,7 +7328,7 @@ export default { 425 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 @@ -7338,40 +7349,40 @@ export default { 515 ], "e_lobby_access": [ - 702 + 722 ], "expires_at": [ - 4203 + 4306 ], "host": [ - 3629 + 3732 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "inner_squad": [ 3 ], "invite_code": [ - 4641 + 4744 ], "map_pool": [ - 1983 + 2086 ], "map_pool_id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -7383,10 +7394,10 @@ export default { 467 ], "options": [ - 2366 + 2469 ], "pick_deadline": [ - 4203 + 4306 ], "picks": [ 272 @@ -7401,28 +7412,28 @@ export default { 3 ], "scheduled_at": [ - 4203 + 4306 ], "status": [ 509 ], "team_1": [ - 4178 + 4281 ], "team_1_id": [ - 4641 + 4744 ], "team_2": [ - 4178 + 4281 ], "team_2_id": [ - 4641 + 4744 ], "type": [ - 840 + 860 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -7433,31 +7444,31 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4203 + 4306 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "invite_code": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -7466,22 +7477,22 @@ export default { 38 ], "pick_deadline": [ - 4203 + 4306 ], "regions": [ 78 ], "scheduled_at": [ - 4203 + 4306 ], "team_1_id": [ - 4641 + 4744 ], "team_2_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -7489,58 +7500,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invite_code": [ - 2660 + 2763 ], "map_pool_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "pick_deadline": [ - 2660 + 2763 ], "regions": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "team_1_id": [ - 2660 + 2763 ], "team_2_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -7551,31 +7562,31 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4203 + 4306 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "invite_code": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -7584,22 +7595,22 @@ export default { 38 ], "pick_deadline": [ - 4203 + 4306 ], "regions": [ 78 ], "scheduled_at": [ - 4203 + 4306 ], "team_1_id": [ - 4641 + 4744 ], "team_2_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -7607,58 +7618,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invite_code": [ - 2660 + 2763 ], "map_pool_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "pick_deadline": [ - 2660 + 2763 ], "regions": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "team_1_id": [ - 2660 + 2763 ], "team_2_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -7702,22 +7713,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2660 + 2763 ], "capacity": [ - 2660 + 2763 ], "captain_selection": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "draft_order": [ - 2660 + 2763 ], "e_draft_game_captain_selection": [ 433 @@ -7732,61 +7743,61 @@ export default { 517 ], "e_lobby_access": [ - 704 + 724 ], "expires_at": [ - 2660 + 2763 ], "host": [ - 3631 + 3734 ], "host_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "inner_squad": [ - 2660 + 2763 ], "invite_code": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 ], "map_pool": [ - 1985 + 2088 ], "map_pool_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "mode": [ - 2660 + 2763 ], "options": [ - 2368 + 2471 ], "pattern": [ - 2660 + 2763 ], "pick_deadline": [ - 2660 + 2763 ], "picks_aggregate": [ 271 @@ -7795,34 +7806,34 @@ export default { 316 ], "regions": [ - 2660 + 2763 ], "require_approval": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "team_1": [ - 4180 + 4283 ], "team_1_id": [ - 2660 + 2763 ], "team_2": [ - 4180 + 4283 ], "team_2_id": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -7830,7 +7841,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -7841,7 +7852,7 @@ export default { "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, "draft_games_set_input": { "access": [ - 696 + 716 ], "capacity": [ 38 @@ -7850,7 +7861,7 @@ export default { 425 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 @@ -7859,28 +7870,28 @@ export default { 446 ], "expires_at": [ - 4203 + 4306 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "inner_squad": [ 3 ], "invite_code": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -7892,7 +7903,7 @@ export default { 467 ], "pick_deadline": [ - 4203 + 4306 ], "regions": [ 78 @@ -7901,22 +7912,22 @@ export default { 3 ], "scheduled_at": [ - 4203 + 4306 ], "status": [ 509 ], "team_1_id": [ - 4641 + 4744 ], "team_2_id": [ - 4641 + 4744 ], "type": [ - 840 + 860 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -7944,19 +7955,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -7984,19 +7995,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8024,19 +8035,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8055,7 +8066,7 @@ export default { }, "draft_games_stream_cursor_value_input": { "access": [ - 696 + 716 ], "capacity": [ 38 @@ -8064,7 +8075,7 @@ export default { 425 ], "created_at": [ - 4203 + 4306 ], "current_pick_lineup": [ 38 @@ -8073,28 +8084,28 @@ export default { 446 ], "expires_at": [ - 4203 + 4306 ], "host_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "inner_squad": [ 3 ], "invite_code": [ - 4641 + 4744 ], "map_pool_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_elo": [ 38 @@ -8106,7 +8117,7 @@ export default { 467 ], "pick_deadline": [ - 4203 + 4306 ], "regions": [ 78 @@ -8115,22 +8126,22 @@ export default { 3 ], "scheduled_at": [ - 4203 + 4306 ], "status": [ 509 ], "team_1_id": [ - 4641 + 4744 ], "team_2_id": [ - 4641 + 4744 ], "type": [ - 840 + 860 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -8158,19 +8169,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8213,19 +8224,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8253,19 +8264,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8293,19 +8304,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2660 + 2763 ], "current_pick_lineup": [ - 2660 + 2763 ], "host_steam_id": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8458,10 +8469,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8679,10 +8690,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -8900,10 +8911,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -9121,10 +9132,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -9342,10 +9353,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -9563,10 +9574,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -9626,7 +9637,7 @@ export default { 78 ] }, - "e_event_status": { + "e_event_media_access": { "description": [ 78 ], @@ -9637,7 +9648,7 @@ export default { 78 ] }, - "e_event_status_aggregate": { + "e_event_media_access_aggregate": { "aggregate": [ 527 ], @@ -9648,13 +9659,13 @@ export default { 78 ] }, - "e_event_status_aggregate_fields": { + "e_event_media_access_aggregate_fields": { "count": [ 38, { "columns": [ 539, - "[e_event_status_select_column!]" + "[e_event_media_access_select_column!]" ], "distinct": [ 3 @@ -9671,7 +9682,7 @@ export default { 78 ] }, - "e_event_status_bool_exp": { + "e_event_media_access_bool_exp": { "_and": [ 528 ], @@ -9691,9 +9702,9 @@ export default { 78 ] }, - "e_event_status_constraint": {}, - "e_event_status_enum": {}, - "e_event_status_enum_comparison_exp": { + "e_event_media_access_constraint": {}, + "e_event_media_access_enum": {}, + "e_event_media_access_enum_comparison_exp": { "_eq": [ 530 ], @@ -9713,7 +9724,7 @@ export default { 78 ] }, - "e_event_status_insert_input": { + "e_event_media_access_insert_input": { "description": [ 78 ], @@ -9724,7 +9735,7 @@ export default { 78 ] }, - "e_event_status_max_fields": { + "e_event_media_access_max_fields": { "description": [ 78 ], @@ -9735,7 +9746,7 @@ export default { 78 ] }, - "e_event_status_min_fields": { + "e_event_media_access_min_fields": { "description": [ 78 ], @@ -9746,7 +9757,7 @@ export default { 78 ] }, - "e_event_status_mutation_response": { + "e_event_media_access_mutation_response": { "affected_rows": [ 38 ], @@ -9757,7 +9768,7 @@ export default { 78 ] }, - "e_event_status_on_conflict": { + "e_event_media_access_on_conflict": { "constraint": [ 529 ], @@ -9771,18 +9782,18 @@ export default { 78 ] }, - "e_event_status_order_by": { + "e_event_media_access_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 ] }, - "e_event_status_pk_columns_input": { + "e_event_media_access_pk_columns_input": { "value": [ 78 ], @@ -9790,8 +9801,8 @@ export default { 78 ] }, - "e_event_status_select_column": {}, - "e_event_status_set_input": { + "e_event_media_access_select_column": {}, + "e_event_media_access_set_input": { "description": [ 78 ], @@ -9802,7 +9813,7 @@ export default { 78 ] }, - "e_event_status_stream_cursor_input": { + "e_event_media_access_stream_cursor_input": { "initial_value": [ 542 ], @@ -9813,7 +9824,7 @@ export default { 78 ] }, - "e_event_status_stream_cursor_value_input": { + "e_event_media_access_stream_cursor_value_input": { "description": [ 78 ], @@ -9824,8 +9835,8 @@ export default { 78 ] }, - "e_event_status_update_column": {}, - "e_event_status_updates": { + "e_event_media_access_update_column": {}, + "e_event_media_access_updates": { "_set": [ 540 ], @@ -9836,7 +9847,7 @@ export default { 78 ] }, - "e_friend_status": { + "e_event_visibility": { "description": [ 78 ], @@ -9847,7 +9858,7 @@ export default { 78 ] }, - "e_friend_status_aggregate": { + "e_event_visibility_aggregate": { "aggregate": [ 547 ], @@ -9858,13 +9869,13 @@ export default { 78 ] }, - "e_friend_status_aggregate_fields": { + "e_event_visibility_aggregate_fields": { "count": [ 38, { "columns": [ - 560, - "[e_friend_status_select_column!]" + 559, + "[e_event_visibility_select_column!]" ], "distinct": [ 3 @@ -9881,7 +9892,7 @@ export default { 78 ] }, - "e_friend_status_bool_exp": { + "e_event_visibility_bool_exp": { "_and": [ 548 ], @@ -9901,9 +9912,9 @@ export default { 78 ] }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { + "e_event_visibility_constraint": {}, + "e_event_visibility_enum": {}, + "e_event_visibility_enum_comparison_exp": { "_eq": [ 550 ], @@ -9923,6 +9934,216 @@ export default { 78 ] }, + "e_event_visibility_insert_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_max_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_min_fields": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 545 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_on_conflict": { + "constraint": [ + 549 + ], + "update_columns": [ + 563 + ], + "where": [ + 548 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_order_by": { + "description": [ + 2763 + ], + "value": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_pk_columns_input": { + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_select_column": {}, + "e_event_visibility_set_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_stream_cursor_input": { + "initial_value": [ + 562 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_stream_cursor_value_input": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_event_visibility_update_column": {}, + "e_event_visibility_updates": { + "_set": [ + 560 + ], + "where": [ + 548 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status": { + "description": [ + 78 + ], + "value": [ + 78 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 567 + ], + "nodes": [ + 565 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 580, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 573 + ], + "min": [ + 574 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 568 + ], + "_not": [ + 568 + ], + "_or": [ + 568 + ], + "description": [ + 80 + ], + "value": [ + 80 + ], + "__typename": [ + 78 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 570 + ], + "_in": [ + 570 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 570 + ], + "_nin": [ + 570 + ], + "__typename": [ + 78 + ] + }, "e_friend_status_insert_input": { "description": [ 78 @@ -9961,7 +10182,7 @@ export default { 38 ], "returning": [ - 545 + 565 ], "__typename": [ 78 @@ -9969,10 +10190,10 @@ export default { }, "e_friend_status_obj_rel_insert_input": { "data": [ - 552 + 572 ], "on_conflict": [ - 557 + 577 ], "__typename": [ 78 @@ -9980,13 +10201,13 @@ export default { }, "e_friend_status_on_conflict": { "constraint": [ - 549 + 569 ], "update_columns": [ - 564 + 584 ], "where": [ - 548 + 568 ], "__typename": [ 78 @@ -9994,10 +10215,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -10025,7 +10246,7 @@ export default { }, "e_friend_status_stream_cursor_input": { "initial_value": [ - 563 + 583 ], "ordering": [ 236 @@ -10048,10 +10269,10 @@ export default { "e_friend_status_update_column": {}, "e_friend_status_updates": { "_set": [ - 561 + 581 ], "where": [ - 548 + 568 ], "__typename": [ 78 @@ -10070,10 +10291,10 @@ export default { }, "e_game_cfg_types_aggregate": { "aggregate": [ - 568 + 588 ], "nodes": [ - 566 + 586 ], "__typename": [ 78 @@ -10084,7 +10305,7 @@ export default { 38, { "columns": [ - 580, + 600, "[e_game_cfg_types_select_column!]" ], "distinct": [ @@ -10093,10 +10314,10 @@ export default { } ], "max": [ - 574 + 594 ], "min": [ - 575 + 595 ], "__typename": [ 78 @@ -10104,13 +10325,13 @@ export default { }, "e_game_cfg_types_bool_exp": { "_and": [ - 569 + 589 ], "_not": [ - 569 + 589 ], "_or": [ - 569 + 589 ], "description": [ 80 @@ -10126,19 +10347,19 @@ export default { "e_game_cfg_types_enum": {}, "e_game_cfg_types_enum_comparison_exp": { "_eq": [ - 571 + 591 ], "_in": [ - 571 + 591 ], "_is_null": [ 3 ], "_neq": [ - 571 + 591 ], "_nin": [ - 571 + 591 ], "__typename": [ 78 @@ -10182,7 +10403,7 @@ export default { 38 ], "returning": [ - 566 + 586 ], "__typename": [ 78 @@ -10190,13 +10411,13 @@ export default { }, "e_game_cfg_types_on_conflict": { "constraint": [ - 570 + 590 ], "update_columns": [ - 584 + 604 ], "where": [ - 569 + 589 ], "__typename": [ 78 @@ -10204,10 +10425,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -10235,7 +10456,7 @@ export default { }, "e_game_cfg_types_stream_cursor_input": { "initial_value": [ - 583 + 603 ], "ordering": [ 236 @@ -10258,10 +10479,10 @@ export default { "e_game_cfg_types_update_column": {}, "e_game_cfg_types_updates": { "_set": [ - 581 + 601 ], "where": [ - 569 + 589 ], "__typename": [ 78 @@ -10280,10 +10501,10 @@ export default { }, "e_game_server_node_statuses_aggregate": { "aggregate": [ - 588 + 608 ], "nodes": [ - 586 + 606 ], "__typename": [ 78 @@ -10294,7 +10515,7 @@ export default { 38, { "columns": [ - 601, + 621, "[e_game_server_node_statuses_select_column!]" ], "distinct": [ @@ -10303,10 +10524,10 @@ export default { } ], "max": [ - 594 + 614 ], "min": [ - 595 + 615 ], "__typename": [ 78 @@ -10314,13 +10535,13 @@ export default { }, "e_game_server_node_statuses_bool_exp": { "_and": [ - 589 + 609 ], "_not": [ - 589 + 609 ], "_or": [ - 589 + 609 ], "description": [ 80 @@ -10336,19 +10557,19 @@ export default { "e_game_server_node_statuses_enum": {}, "e_game_server_node_statuses_enum_comparison_exp": { "_eq": [ - 591 + 611 ], "_in": [ - 591 + 611 ], "_is_null": [ 3 ], "_neq": [ - 591 + 611 ], "_nin": [ - 591 + 611 ], "__typename": [ 78 @@ -10392,7 +10613,7 @@ export default { 38 ], "returning": [ - 586 + 606 ], "__typename": [ 78 @@ -10400,10 +10621,10 @@ export default { }, "e_game_server_node_statuses_obj_rel_insert_input": { "data": [ - 593 + 613 ], "on_conflict": [ - 598 + 618 ], "__typename": [ 78 @@ -10411,13 +10632,13 @@ export default { }, "e_game_server_node_statuses_on_conflict": { "constraint": [ - 590 + 610 ], "update_columns": [ - 605 + 625 ], "where": [ - 589 + 609 ], "__typename": [ 78 @@ -10425,10 +10646,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -10456,7 +10677,7 @@ export default { }, "e_game_server_node_statuses_stream_cursor_input": { "initial_value": [ - 604 + 624 ], "ordering": [ 236 @@ -10479,10 +10700,10 @@ export default { "e_game_server_node_statuses_update_column": {}, "e_game_server_node_statuses_updates": { "_set": [ - 602 + 622 ], "where": [ - 589 + 609 ], "__typename": [ 78 @@ -10501,10 +10722,10 @@ export default { }, "e_league_movement_types_aggregate": { "aggregate": [ - 609 + 629 ], "nodes": [ - 607 + 627 ], "__typename": [ 78 @@ -10515,7 +10736,7 @@ export default { 38, { "columns": [ - 622, + 642, "[e_league_movement_types_select_column!]" ], "distinct": [ @@ -10524,10 +10745,10 @@ export default { } ], "max": [ - 615 + 635 ], "min": [ - 616 + 636 ], "__typename": [ 78 @@ -10535,13 +10756,13 @@ export default { }, "e_league_movement_types_bool_exp": { "_and": [ - 610 + 630 ], "_not": [ - 610 + 630 ], "_or": [ - 610 + 630 ], "description": [ 80 @@ -10557,19 +10778,19 @@ export default { "e_league_movement_types_enum": {}, "e_league_movement_types_enum_comparison_exp": { "_eq": [ - 612 + 632 ], "_in": [ - 612 + 632 ], "_is_null": [ 3 ], "_neq": [ - 612 + 632 ], "_nin": [ - 612 + 632 ], "__typename": [ 78 @@ -10613,7 +10834,7 @@ export default { 38 ], "returning": [ - 607 + 627 ], "__typename": [ 78 @@ -10621,10 +10842,10 @@ export default { }, "e_league_movement_types_obj_rel_insert_input": { "data": [ - 614 + 634 ], "on_conflict": [ - 619 + 639 ], "__typename": [ 78 @@ -10632,13 +10853,13 @@ export default { }, "e_league_movement_types_on_conflict": { "constraint": [ - 611 + 631 ], "update_columns": [ - 626 + 646 ], "where": [ - 610 + 630 ], "__typename": [ 78 @@ -10646,10 +10867,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -10677,7 +10898,7 @@ export default { }, "e_league_movement_types_stream_cursor_input": { "initial_value": [ - 625 + 645 ], "ordering": [ 236 @@ -10700,10 +10921,10 @@ export default { "e_league_movement_types_update_column": {}, "e_league_movement_types_updates": { "_set": [ - 623 + 643 ], "where": [ - 610 + 630 ], "__typename": [ 78 @@ -10722,10 +10943,10 @@ export default { }, "e_league_proposal_statuses_aggregate": { "aggregate": [ - 630 + 650 ], "nodes": [ - 628 + 648 ], "__typename": [ 78 @@ -10736,7 +10957,7 @@ export default { 38, { "columns": [ - 643, + 663, "[e_league_proposal_statuses_select_column!]" ], "distinct": [ @@ -10745,10 +10966,10 @@ export default { } ], "max": [ - 636 + 656 ], "min": [ - 637 + 657 ], "__typename": [ 78 @@ -10756,13 +10977,13 @@ export default { }, "e_league_proposal_statuses_bool_exp": { "_and": [ - 631 + 651 ], "_not": [ - 631 + 651 ], "_or": [ - 631 + 651 ], "description": [ 80 @@ -10778,19 +10999,19 @@ export default { "e_league_proposal_statuses_enum": {}, "e_league_proposal_statuses_enum_comparison_exp": { "_eq": [ - 633 + 653 ], "_in": [ - 633 + 653 ], "_is_null": [ 3 ], "_neq": [ - 633 + 653 ], "_nin": [ - 633 + 653 ], "__typename": [ 78 @@ -10834,7 +11055,7 @@ export default { 38 ], "returning": [ - 628 + 648 ], "__typename": [ 78 @@ -10842,10 +11063,10 @@ export default { }, "e_league_proposal_statuses_obj_rel_insert_input": { "data": [ - 635 + 655 ], "on_conflict": [ - 640 + 660 ], "__typename": [ 78 @@ -10853,13 +11074,13 @@ export default { }, "e_league_proposal_statuses_on_conflict": { "constraint": [ - 632 + 652 ], "update_columns": [ - 647 + 667 ], "where": [ - 631 + 651 ], "__typename": [ 78 @@ -10867,10 +11088,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -10898,7 +11119,7 @@ export default { }, "e_league_proposal_statuses_stream_cursor_input": { "initial_value": [ - 646 + 666 ], "ordering": [ 236 @@ -10921,10 +11142,10 @@ export default { "e_league_proposal_statuses_update_column": {}, "e_league_proposal_statuses_updates": { "_set": [ - 644 + 664 ], "where": [ - 631 + 651 ], "__typename": [ 78 @@ -10943,10 +11164,10 @@ export default { }, "e_league_registration_statuses_aggregate": { "aggregate": [ - 651 + 671 ], "nodes": [ - 649 + 669 ], "__typename": [ 78 @@ -10957,7 +11178,7 @@ export default { 38, { "columns": [ - 664, + 684, "[e_league_registration_statuses_select_column!]" ], "distinct": [ @@ -10966,10 +11187,10 @@ export default { } ], "max": [ - 657 + 677 ], "min": [ - 658 + 678 ], "__typename": [ 78 @@ -10977,13 +11198,13 @@ export default { }, "e_league_registration_statuses_bool_exp": { "_and": [ - 652 + 672 ], "_not": [ - 652 + 672 ], "_or": [ - 652 + 672 ], "description": [ 80 @@ -10999,19 +11220,19 @@ export default { "e_league_registration_statuses_enum": {}, "e_league_registration_statuses_enum_comparison_exp": { "_eq": [ - 654 + 674 ], "_in": [ - 654 + 674 ], "_is_null": [ 3 ], "_neq": [ - 654 + 674 ], "_nin": [ - 654 + 674 ], "__typename": [ 78 @@ -11055,7 +11276,7 @@ export default { 38 ], "returning": [ - 649 + 669 ], "__typename": [ 78 @@ -11063,10 +11284,10 @@ export default { }, "e_league_registration_statuses_obj_rel_insert_input": { "data": [ - 656 + 676 ], "on_conflict": [ - 661 + 681 ], "__typename": [ 78 @@ -11074,13 +11295,13 @@ export default { }, "e_league_registration_statuses_on_conflict": { "constraint": [ - 653 + 673 ], "update_columns": [ - 668 + 688 ], "where": [ - 652 + 672 ], "__typename": [ 78 @@ -11088,10 +11309,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -11119,7 +11340,7 @@ export default { }, "e_league_registration_statuses_stream_cursor_input": { "initial_value": [ - 667 + 687 ], "ordering": [ 236 @@ -11142,10 +11363,10 @@ export default { "e_league_registration_statuses_update_column": {}, "e_league_registration_statuses_updates": { "_set": [ - 665 + 685 ], "where": [ - 652 + 672 ], "__typename": [ 78 @@ -11164,10 +11385,10 @@ export default { }, "e_league_season_statuses_aggregate": { "aggregate": [ - 672 + 692 ], "nodes": [ - 670 + 690 ], "__typename": [ 78 @@ -11178,7 +11399,7 @@ export default { 38, { "columns": [ - 685, + 705, "[e_league_season_statuses_select_column!]" ], "distinct": [ @@ -11187,10 +11408,10 @@ export default { } ], "max": [ - 678 + 698 ], "min": [ - 679 + 699 ], "__typename": [ 78 @@ -11198,13 +11419,13 @@ export default { }, "e_league_season_statuses_bool_exp": { "_and": [ - 673 + 693 ], "_not": [ - 673 + 693 ], "_or": [ - 673 + 693 ], "description": [ 80 @@ -11220,19 +11441,19 @@ export default { "e_league_season_statuses_enum": {}, "e_league_season_statuses_enum_comparison_exp": { "_eq": [ - 675 + 695 ], "_in": [ - 675 + 695 ], "_is_null": [ 3 ], "_neq": [ - 675 + 695 ], "_nin": [ - 675 + 695 ], "__typename": [ 78 @@ -11276,7 +11497,7 @@ export default { 38 ], "returning": [ - 670 + 690 ], "__typename": [ 78 @@ -11284,10 +11505,10 @@ export default { }, "e_league_season_statuses_obj_rel_insert_input": { "data": [ - 677 + 697 ], "on_conflict": [ - 682 + 702 ], "__typename": [ 78 @@ -11295,13 +11516,13 @@ export default { }, "e_league_season_statuses_on_conflict": { "constraint": [ - 674 + 694 ], "update_columns": [ - 689 + 709 ], "where": [ - 673 + 693 ], "__typename": [ 78 @@ -11309,10 +11530,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -11340,7 +11561,7 @@ export default { }, "e_league_season_statuses_stream_cursor_input": { "initial_value": [ - 688 + 708 ], "ordering": [ 236 @@ -11363,10 +11584,10 @@ export default { "e_league_season_statuses_update_column": {}, "e_league_season_statuses_updates": { "_set": [ - 686 + 706 ], "where": [ - 673 + 693 ], "__typename": [ 78 @@ -11385,10 +11606,10 @@ export default { }, "e_lobby_access_aggregate": { "aggregate": [ - 693 + 713 ], "nodes": [ - 691 + 711 ], "__typename": [ 78 @@ -11399,7 +11620,7 @@ export default { 38, { "columns": [ - 706, + 726, "[e_lobby_access_select_column!]" ], "distinct": [ @@ -11408,10 +11629,10 @@ export default { } ], "max": [ - 699 + 719 ], "min": [ - 700 + 720 ], "__typename": [ 78 @@ -11419,13 +11640,13 @@ export default { }, "e_lobby_access_bool_exp": { "_and": [ - 694 + 714 ], "_not": [ - 694 + 714 ], "_or": [ - 694 + 714 ], "description": [ 80 @@ -11441,19 +11662,19 @@ export default { "e_lobby_access_enum": {}, "e_lobby_access_enum_comparison_exp": { "_eq": [ - 696 + 716 ], "_in": [ - 696 + 716 ], "_is_null": [ 3 ], "_neq": [ - 696 + 716 ], "_nin": [ - 696 + 716 ], "__typename": [ 78 @@ -11497,7 +11718,7 @@ export default { 38 ], "returning": [ - 691 + 711 ], "__typename": [ 78 @@ -11505,10 +11726,10 @@ export default { }, "e_lobby_access_obj_rel_insert_input": { "data": [ - 698 + 718 ], "on_conflict": [ - 703 + 723 ], "__typename": [ 78 @@ -11516,13 +11737,13 @@ export default { }, "e_lobby_access_on_conflict": { "constraint": [ - 695 + 715 ], "update_columns": [ - 710 + 730 ], "where": [ - 694 + 714 ], "__typename": [ 78 @@ -11530,10 +11751,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -11561,7 +11782,7 @@ export default { }, "e_lobby_access_stream_cursor_input": { "initial_value": [ - 709 + 729 ], "ordering": [ 236 @@ -11584,10 +11805,10 @@ export default { "e_lobby_access_update_column": {}, "e_lobby_access_updates": { "_set": [ - 707 + 727 ], "where": [ - 694 + 714 ], "__typename": [ 78 @@ -11606,10 +11827,10 @@ export default { }, "e_lobby_player_status_aggregate": { "aggregate": [ - 714 + 734 ], "nodes": [ - 712 + 732 ], "__typename": [ 78 @@ -11620,7 +11841,7 @@ export default { 38, { "columns": [ - 726, + 746, "[e_lobby_player_status_select_column!]" ], "distinct": [ @@ -11629,10 +11850,10 @@ export default { } ], "max": [ - 720 + 740 ], "min": [ - 721 + 741 ], "__typename": [ 78 @@ -11640,13 +11861,13 @@ export default { }, "e_lobby_player_status_bool_exp": { "_and": [ - 715 + 735 ], "_not": [ - 715 + 735 ], "_or": [ - 715 + 735 ], "description": [ 80 @@ -11662,19 +11883,19 @@ export default { "e_lobby_player_status_enum": {}, "e_lobby_player_status_enum_comparison_exp": { "_eq": [ - 717 + 737 ], "_in": [ - 717 + 737 ], "_is_null": [ 3 ], "_neq": [ - 717 + 737 ], "_nin": [ - 717 + 737 ], "__typename": [ 78 @@ -11718,7 +11939,7 @@ export default { 38 ], "returning": [ - 712 + 732 ], "__typename": [ 78 @@ -11726,13 +11947,13 @@ export default { }, "e_lobby_player_status_on_conflict": { "constraint": [ - 716 + 736 ], "update_columns": [ - 730 + 750 ], "where": [ - 715 + 735 ], "__typename": [ 78 @@ -11740,10 +11961,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -11771,7 +11992,7 @@ export default { }, "e_lobby_player_status_stream_cursor_input": { "initial_value": [ - 729 + 749 ], "ordering": [ 236 @@ -11794,10 +12015,10 @@ export default { "e_lobby_player_status_update_column": {}, "e_lobby_player_status_updates": { "_set": [ - 727 + 747 ], "where": [ - 715 + 735 ], "__typename": [ 78 @@ -11816,10 +12037,10 @@ export default { }, "e_map_pool_types_aggregate": { "aggregate": [ - 734 + 754 ], "nodes": [ - 732 + 752 ], "__typename": [ 78 @@ -11830,7 +12051,7 @@ export default { 38, { "columns": [ - 747, + 767, "[e_map_pool_types_select_column!]" ], "distinct": [ @@ -11839,10 +12060,10 @@ export default { } ], "max": [ - 740 + 760 ], "min": [ - 741 + 761 ], "__typename": [ 78 @@ -11850,13 +12071,13 @@ export default { }, "e_map_pool_types_bool_exp": { "_and": [ - 735 + 755 ], "_not": [ - 735 + 755 ], "_or": [ - 735 + 755 ], "description": [ 80 @@ -11872,19 +12093,19 @@ export default { "e_map_pool_types_enum": {}, "e_map_pool_types_enum_comparison_exp": { "_eq": [ - 737 + 757 ], "_in": [ - 737 + 757 ], "_is_null": [ 3 ], "_neq": [ - 737 + 757 ], "_nin": [ - 737 + 757 ], "__typename": [ 78 @@ -11928,7 +12149,7 @@ export default { 38 ], "returning": [ - 732 + 752 ], "__typename": [ 78 @@ -11936,10 +12157,10 @@ export default { }, "e_map_pool_types_obj_rel_insert_input": { "data": [ - 739 + 759 ], "on_conflict": [ - 744 + 764 ], "__typename": [ 78 @@ -11947,13 +12168,13 @@ export default { }, "e_map_pool_types_on_conflict": { "constraint": [ - 736 + 756 ], "update_columns": [ - 751 + 771 ], "where": [ - 735 + 755 ], "__typename": [ 78 @@ -11961,10 +12182,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -11992,7 +12213,7 @@ export default { }, "e_map_pool_types_stream_cursor_input": { "initial_value": [ - 750 + 770 ], "ordering": [ 236 @@ -12015,10 +12236,10 @@ export default { "e_map_pool_types_update_column": {}, "e_map_pool_types_updates": { "_set": [ - 748 + 768 ], "where": [ - 735 + 755 ], "__typename": [ 78 @@ -12029,10 +12250,10 @@ export default { 78 ], "match_clips": [ - 2022, + 2125, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -12042,19 +12263,19 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_aggregate": [ - 2023, + 2126, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -12064,11 +12285,11 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], @@ -12081,10 +12302,10 @@ export default { }, "e_match_clip_visibility_aggregate": { "aggregate": [ - 755 + 775 ], "nodes": [ - 753 + 773 ], "__typename": [ 78 @@ -12095,7 +12316,7 @@ export default { 38, { "columns": [ - 767, + 787, "[e_match_clip_visibility_select_column!]" ], "distinct": [ @@ -12104,10 +12325,10 @@ export default { } ], "max": [ - 761 + 781 ], "min": [ - 762 + 782 ], "__typename": [ 78 @@ -12115,22 +12336,22 @@ export default { }, "e_match_clip_visibility_bool_exp": { "_and": [ - 756 + 776 ], "_not": [ - 756 + 776 ], "_or": [ - 756 + 776 ], "description": [ 80 ], "match_clips": [ - 2031 + 2134 ], "match_clips_aggregate": [ - 2024 + 2127 ], "value": [ 80 @@ -12143,19 +12364,19 @@ export default { "e_match_clip_visibility_enum": {}, "e_match_clip_visibility_enum_comparison_exp": { "_eq": [ - 758 + 778 ], "_in": [ - 758 + 778 ], "_is_null": [ 3 ], "_neq": [ - 758 + 778 ], "_nin": [ - 758 + 778 ], "__typename": [ 78 @@ -12166,7 +12387,7 @@ export default { 78 ], "match_clips": [ - 2028 + 2131 ], "value": [ 78 @@ -12202,7 +12423,7 @@ export default { 38 ], "returning": [ - 753 + 773 ], "__typename": [ 78 @@ -12210,13 +12431,13 @@ export default { }, "e_match_clip_visibility_on_conflict": { "constraint": [ - 757 + 777 ], "update_columns": [ - 771 + 791 ], "where": [ - 756 + 776 ], "__typename": [ 78 @@ -12224,13 +12445,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2660 + 2763 ], "match_clips_aggregate": [ - 2027 + 2130 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -12258,7 +12479,7 @@ export default { }, "e_match_clip_visibility_stream_cursor_input": { "initial_value": [ - 770 + 790 ], "ordering": [ 236 @@ -12281,10 +12502,10 @@ export default { "e_match_clip_visibility_update_column": {}, "e_match_clip_visibility_updates": { "_set": [ - 768 + 788 ], "where": [ - 756 + 776 ], "__typename": [ 78 @@ -12295,10 +12516,10 @@ export default { 78 ], "match_maps": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -12308,19 +12529,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -12330,11 +12551,11 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], @@ -12347,10 +12568,10 @@ export default { }, "e_match_map_status_aggregate": { "aggregate": [ - 775 + 795 ], "nodes": [ - 773 + 793 ], "__typename": [ 78 @@ -12361,7 +12582,7 @@ export default { 38, { "columns": [ - 788, + 808, "[e_match_map_status_select_column!]" ], "distinct": [ @@ -12370,10 +12591,10 @@ export default { } ], "max": [ - 781 + 801 ], "min": [ - 782 + 802 ], "__typename": [ 78 @@ -12381,22 +12602,22 @@ export default { }, "e_match_map_status_bool_exp": { "_and": [ - 776 + 796 ], "_not": [ - 776 + 796 ], "_or": [ - 776 + 796 ], "description": [ 80 ], "match_maps": [ - 2322 + 2425 ], "match_maps_aggregate": [ - 2315 + 2418 ], "value": [ 80 @@ -12409,19 +12630,19 @@ export default { "e_match_map_status_enum": {}, "e_match_map_status_enum_comparison_exp": { "_eq": [ - 778 + 798 ], "_in": [ - 778 + 798 ], "_is_null": [ 3 ], "_neq": [ - 778 + 798 ], "_nin": [ - 778 + 798 ], "__typename": [ 78 @@ -12432,7 +12653,7 @@ export default { 78 ], "match_maps": [ - 2319 + 2422 ], "value": [ 78 @@ -12468,7 +12689,7 @@ export default { 38 ], "returning": [ - 773 + 793 ], "__typename": [ 78 @@ -12476,10 +12697,10 @@ export default { }, "e_match_map_status_obj_rel_insert_input": { "data": [ - 780 + 800 ], "on_conflict": [ - 785 + 805 ], "__typename": [ 78 @@ -12487,13 +12708,13 @@ export default { }, "e_match_map_status_on_conflict": { "constraint": [ - 777 + 797 ], "update_columns": [ - 792 + 812 ], "where": [ - 776 + 796 ], "__typename": [ 78 @@ -12501,13 +12722,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2660 + 2763 ], "match_maps_aggregate": [ - 2318 + 2421 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -12535,7 +12756,7 @@ export default { }, "e_match_map_status_stream_cursor_input": { "initial_value": [ - 791 + 811 ], "ordering": [ 236 @@ -12558,10 +12779,10 @@ export default { "e_match_map_status_update_column": {}, "e_match_map_status_updates": { "_set": [ - 789 + 809 ], "where": [ - 776 + 796 ], "__typename": [ 78 @@ -12580,10 +12801,10 @@ export default { }, "e_match_mode_aggregate": { "aggregate": [ - 796 + 816 ], "nodes": [ - 794 + 814 ], "__typename": [ 78 @@ -12594,7 +12815,7 @@ export default { 38, { "columns": [ - 808, + 828, "[e_match_mode_select_column!]" ], "distinct": [ @@ -12603,10 +12824,10 @@ export default { } ], "max": [ - 802 + 822 ], "min": [ - 803 + 823 ], "__typename": [ 78 @@ -12614,13 +12835,13 @@ export default { }, "e_match_mode_bool_exp": { "_and": [ - 797 + 817 ], "_not": [ - 797 + 817 ], "_or": [ - 797 + 817 ], "description": [ 80 @@ -12636,19 +12857,19 @@ export default { "e_match_mode_enum": {}, "e_match_mode_enum_comparison_exp": { "_eq": [ - 799 + 819 ], "_in": [ - 799 + 819 ], "_is_null": [ 3 ], "_neq": [ - 799 + 819 ], "_nin": [ - 799 + 819 ], "__typename": [ 78 @@ -12692,7 +12913,7 @@ export default { 38 ], "returning": [ - 794 + 814 ], "__typename": [ 78 @@ -12700,13 +12921,13 @@ export default { }, "e_match_mode_on_conflict": { "constraint": [ - 798 + 818 ], "update_columns": [ - 812 + 832 ], "where": [ - 797 + 817 ], "__typename": [ 78 @@ -12714,10 +12935,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -12745,7 +12966,7 @@ export default { }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 811 + 831 ], "ordering": [ 236 @@ -12768,10 +12989,10 @@ export default { "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 809 + 829 ], "where": [ - 797 + 817 ], "__typename": [ 78 @@ -12782,10 +13003,10 @@ export default { 78 ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -12795,19 +13016,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_aggregate": [ - 2476, + 2579, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -12817,11 +13038,11 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], @@ -12834,10 +13055,10 @@ export default { }, "e_match_status_aggregate": { "aggregate": [ - 816 + 836 ], "nodes": [ - 814 + 834 ], "__typename": [ 78 @@ -12848,7 +13069,7 @@ export default { 38, { "columns": [ - 829, + 849, "[e_match_status_select_column!]" ], "distinct": [ @@ -12857,10 +13078,10 @@ export default { } ], "max": [ - 822 + 842 ], "min": [ - 823 + 843 ], "__typename": [ 78 @@ -12868,22 +13089,22 @@ export default { }, "e_match_status_bool_exp": { "_and": [ - 817 + 837 ], "_not": [ - 817 + 837 ], "_or": [ - 817 + 837 ], "description": [ 80 ], "matches": [ - 2484 + 2587 ], "matches_aggregate": [ - 2477 + 2580 ], "value": [ 80 @@ -12896,19 +13117,19 @@ export default { "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 819 + 839 ], "_in": [ - 819 + 839 ], "_is_null": [ 3 ], "_neq": [ - 819 + 839 ], "_nin": [ - 819 + 839 ], "__typename": [ 78 @@ -12919,7 +13140,7 @@ export default { 78 ], "matches": [ - 2481 + 2584 ], "value": [ 78 @@ -12955,7 +13176,7 @@ export default { 38 ], "returning": [ - 814 + 834 ], "__typename": [ 78 @@ -12963,10 +13184,10 @@ export default { }, "e_match_status_obj_rel_insert_input": { "data": [ - 821 + 841 ], "on_conflict": [ - 826 + 846 ], "__typename": [ 78 @@ -12974,13 +13195,13 @@ export default { }, "e_match_status_on_conflict": { "constraint": [ - 818 + 838 ], "update_columns": [ - 833 + 853 ], "where": [ - 817 + 837 ], "__typename": [ 78 @@ -12988,13 +13209,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2660 + 2763 ], "matches_aggregate": [ - 2480 + 2583 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -13022,7 +13243,7 @@ export default { }, "e_match_status_stream_cursor_input": { "initial_value": [ - 832 + 852 ], "ordering": [ 236 @@ -13045,10 +13266,10 @@ export default { "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 830 + 850 ], "where": [ - 817 + 837 ], "__typename": [ 78 @@ -13059,10 +13280,10 @@ export default { 78 ], "maps": [ - 1993, + 2096, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -13072,19 +13293,19 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], "maps_aggregate": [ - 1994, + 2097, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -13094,11 +13315,11 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], @@ -13111,10 +13332,10 @@ export default { }, "e_match_types_aggregate": { "aggregate": [ - 837 + 857 ], "nodes": [ - 835 + 855 ], "__typename": [ 78 @@ -13125,7 +13346,7 @@ export default { 38, { "columns": [ - 850, + 870, "[e_match_types_select_column!]" ], "distinct": [ @@ -13134,10 +13355,10 @@ export default { } ], "max": [ - 843 + 863 ], "min": [ - 844 + 864 ], "__typename": [ 78 @@ -13145,22 +13366,22 @@ export default { }, "e_match_types_bool_exp": { "_and": [ - 838 + 858 ], "_not": [ - 838 + 858 ], "_or": [ - 838 + 858 ], "description": [ 80 ], "maps": [ - 2002 + 2105 ], "maps_aggregate": [ - 1995 + 2098 ], "value": [ 80 @@ -13173,19 +13394,19 @@ export default { "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 840 + 860 ], "_in": [ - 840 + 860 ], "_is_null": [ 3 ], "_neq": [ - 840 + 860 ], "_nin": [ - 840 + 860 ], "__typename": [ 78 @@ -13196,7 +13417,7 @@ export default { 78 ], "maps": [ - 2001 + 2104 ], "value": [ 78 @@ -13232,7 +13453,7 @@ export default { 38 ], "returning": [ - 835 + 855 ], "__typename": [ 78 @@ -13240,10 +13461,10 @@ export default { }, "e_match_types_obj_rel_insert_input": { "data": [ - 842 + 862 ], "on_conflict": [ - 847 + 867 ], "__typename": [ 78 @@ -13251,13 +13472,13 @@ export default { }, "e_match_types_on_conflict": { "constraint": [ - 839 + 859 ], "update_columns": [ - 854 + 874 ], "where": [ - 838 + 858 ], "__typename": [ 78 @@ -13265,13 +13486,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2660 + 2763 ], "maps_aggregate": [ - 2000 + 2103 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -13299,7 +13520,7 @@ export default { }, "e_match_types_stream_cursor_input": { "initial_value": [ - 853 + 873 ], "ordering": [ 236 @@ -13322,10 +13543,10 @@ export default { "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 851 + 871 ], "where": [ - 838 + 858 ], "__typename": [ 78 @@ -13344,10 +13565,10 @@ export default { }, "e_notification_types_aggregate": { "aggregate": [ - 858 + 878 ], "nodes": [ - 856 + 876 ], "__typename": [ 78 @@ -13358,7 +13579,7 @@ export default { 38, { "columns": [ - 870, + 890, "[e_notification_types_select_column!]" ], "distinct": [ @@ -13367,10 +13588,10 @@ export default { } ], "max": [ - 864 + 884 ], "min": [ - 865 + 885 ], "__typename": [ 78 @@ -13378,13 +13599,13 @@ export default { }, "e_notification_types_bool_exp": { "_and": [ - 859 + 879 ], "_not": [ - 859 + 879 ], "_or": [ - 859 + 879 ], "description": [ 80 @@ -13400,19 +13621,19 @@ export default { "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 861 + 881 ], "_in": [ - 861 + 881 ], "_is_null": [ 3 ], "_neq": [ - 861 + 881 ], "_nin": [ - 861 + 881 ], "__typename": [ 78 @@ -13456,7 +13677,7 @@ export default { 38 ], "returning": [ - 856 + 876 ], "__typename": [ 78 @@ -13464,13 +13685,13 @@ export default { }, "e_notification_types_on_conflict": { "constraint": [ - 860 + 880 ], "update_columns": [ - 874 + 894 ], "where": [ - 859 + 879 ], "__typename": [ 78 @@ -13478,10 +13699,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -13509,7 +13730,7 @@ export default { }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 873 + 893 ], "ordering": [ 236 @@ -13532,10 +13753,10 @@ export default { "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 871 + 891 ], "where": [ - 859 + 879 ], "__typename": [ 78 @@ -13546,10 +13767,10 @@ export default { 78 ], "player_objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -13559,19 +13780,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -13581,11 +13802,11 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], @@ -13598,10 +13819,10 @@ export default { }, "e_objective_types_aggregate": { "aggregate": [ - 878 + 898 ], "nodes": [ - 876 + 896 ], "__typename": [ 78 @@ -13612,7 +13833,7 @@ export default { 38, { "columns": [ - 890, + 910, "[e_objective_types_select_column!]" ], "distinct": [ @@ -13621,10 +13842,10 @@ export default { } ], "max": [ - 884 + 904 ], "min": [ - 885 + 905 ], "__typename": [ 78 @@ -13632,22 +13853,22 @@ export default { }, "e_objective_types_bool_exp": { "_and": [ - 879 + 899 ], "_not": [ - 879 + 899 ], "_or": [ - 879 + 899 ], "description": [ 80 ], "player_objectives": [ - 3225 + 3328 ], "player_objectives_aggregate": [ - 3218 + 3321 ], "value": [ 80 @@ -13660,19 +13881,19 @@ export default { "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 881 + 901 ], "_in": [ - 881 + 901 ], "_is_null": [ 3 ], "_neq": [ - 881 + 901 ], "_nin": [ - 881 + 901 ], "__typename": [ 78 @@ -13683,7 +13904,7 @@ export default { 78 ], "player_objectives": [ - 3222 + 3325 ], "value": [ 78 @@ -13719,7 +13940,7 @@ export default { 38 ], "returning": [ - 876 + 896 ], "__typename": [ 78 @@ -13727,13 +13948,13 @@ export default { }, "e_objective_types_on_conflict": { "constraint": [ - 880 + 900 ], "update_columns": [ - 894 + 914 ], "where": [ - 879 + 899 ], "__typename": [ 78 @@ -13741,13 +13962,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2660 + 2763 ], "player_objectives_aggregate": [ - 3221 + 3324 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -13775,7 +13996,7 @@ export default { }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 893 + 913 ], "ordering": [ 236 @@ -13798,10 +14019,10 @@ export default { "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 891 + 911 ], "where": [ - 879 + 899 ], "__typename": [ 78 @@ -13820,10 +14041,10 @@ export default { }, "e_player_roles_aggregate": { "aggregate": [ - 898 + 918 ], "nodes": [ - 896 + 916 ], "__typename": [ 78 @@ -13834,7 +14055,7 @@ export default { 38, { "columns": [ - 910, + 930, "[e_player_roles_select_column!]" ], "distinct": [ @@ -13843,10 +14064,10 @@ export default { } ], "max": [ - 904 + 924 ], "min": [ - 905 + 925 ], "__typename": [ 78 @@ -13854,13 +14075,13 @@ export default { }, "e_player_roles_bool_exp": { "_and": [ - 899 + 919 ], "_not": [ - 899 + 919 ], "_or": [ - 899 + 919 ], "description": [ 80 @@ -13876,19 +14097,19 @@ export default { "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 901 + 921 ], "_in": [ - 901 + 921 ], "_is_null": [ 3 ], "_neq": [ - 901 + 921 ], "_nin": [ - 901 + 921 ], "__typename": [ 78 @@ -13932,7 +14153,7 @@ export default { 38 ], "returning": [ - 896 + 916 ], "__typename": [ 78 @@ -13940,13 +14161,13 @@ export default { }, "e_player_roles_on_conflict": { "constraint": [ - 900 + 920 ], "update_columns": [ - 914 + 934 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -13954,10 +14175,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -13985,7 +14206,7 @@ export default { }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 913 + 933 ], "ordering": [ 236 @@ -14008,10 +14229,10 @@ export default { "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 911 + 931 ], "where": [ - 899 + 919 ], "__typename": [ 78 @@ -14030,10 +14251,10 @@ export default { }, "e_plugin_runtimes_aggregate": { "aggregate": [ - 918 + 938 ], "nodes": [ - 916 + 936 ], "__typename": [ 78 @@ -14044,7 +14265,7 @@ export default { 38, { "columns": [ - 930, + 950, "[e_plugin_runtimes_select_column!]" ], "distinct": [ @@ -14053,10 +14274,10 @@ export default { } ], "max": [ - 924 + 944 ], "min": [ - 925 + 945 ], "__typename": [ 78 @@ -14064,13 +14285,13 @@ export default { }, "e_plugin_runtimes_bool_exp": { "_and": [ - 919 + 939 ], "_not": [ - 919 + 939 ], "_or": [ - 919 + 939 ], "description": [ 80 @@ -14086,19 +14307,19 @@ export default { "e_plugin_runtimes_enum": {}, "e_plugin_runtimes_enum_comparison_exp": { "_eq": [ - 921 + 941 ], "_in": [ - 921 + 941 ], "_is_null": [ 3 ], "_neq": [ - 921 + 941 ], "_nin": [ - 921 + 941 ], "__typename": [ 78 @@ -14142,7 +14363,7 @@ export default { 38 ], "returning": [ - 916 + 936 ], "__typename": [ 78 @@ -14150,13 +14371,13 @@ export default { }, "e_plugin_runtimes_on_conflict": { "constraint": [ - 920 + 940 ], "update_columns": [ - 934 + 954 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14164,10 +14385,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -14195,7 +14416,7 @@ export default { }, "e_plugin_runtimes_stream_cursor_input": { "initial_value": [ - 933 + 953 ], "ordering": [ 236 @@ -14218,10 +14439,10 @@ export default { "e_plugin_runtimes_update_column": {}, "e_plugin_runtimes_updates": { "_set": [ - 931 + 951 ], "where": [ - 919 + 939 ], "__typename": [ 78 @@ -14240,10 +14461,10 @@ export default { }, "e_ready_settings_aggregate": { "aggregate": [ - 938 + 958 ], "nodes": [ - 936 + 956 ], "__typename": [ 78 @@ -14254,7 +14475,7 @@ export default { 38, { "columns": [ - 950, + 970, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -14263,10 +14484,10 @@ export default { } ], "max": [ - 944 + 964 ], "min": [ - 945 + 965 ], "__typename": [ 78 @@ -14274,13 +14495,13 @@ export default { }, "e_ready_settings_bool_exp": { "_and": [ - 939 + 959 ], "_not": [ - 939 + 959 ], "_or": [ - 939 + 959 ], "description": [ 80 @@ -14296,19 +14517,19 @@ export default { "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 941 + 961 ], "_in": [ - 941 + 961 ], "_is_null": [ 3 ], "_neq": [ - 941 + 961 ], "_nin": [ - 941 + 961 ], "__typename": [ 78 @@ -14352,7 +14573,7 @@ export default { 38 ], "returning": [ - 936 + 956 ], "__typename": [ 78 @@ -14360,13 +14581,13 @@ export default { }, "e_ready_settings_on_conflict": { "constraint": [ - 940 + 960 ], "update_columns": [ - 954 + 974 ], "where": [ - 939 + 959 ], "__typename": [ 78 @@ -14374,10 +14595,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -14405,7 +14626,7 @@ export default { }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 953 + 973 ], "ordering": [ 236 @@ -14428,10 +14649,10 @@ export default { "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 951 + 971 ], "where": [ - 939 + 959 ], "__typename": [ 78 @@ -14450,10 +14671,10 @@ export default { }, "e_sanction_types_aggregate": { "aggregate": [ - 958 + 978 ], "nodes": [ - 956 + 976 ], "__typename": [ 78 @@ -14464,7 +14685,7 @@ export default { 38, { "columns": [ - 971, + 991, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -14473,10 +14694,10 @@ export default { } ], "max": [ - 964 + 984 ], "min": [ - 965 + 985 ], "__typename": [ 78 @@ -14484,13 +14705,13 @@ export default { }, "e_sanction_types_bool_exp": { "_and": [ - 959 + 979 ], "_not": [ - 959 + 979 ], "_or": [ - 959 + 979 ], "description": [ 80 @@ -14506,19 +14727,19 @@ export default { "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 961 + 981 ], "_in": [ - 961 + 981 ], "_is_null": [ 3 ], "_neq": [ - 961 + 981 ], "_nin": [ - 961 + 981 ], "__typename": [ 78 @@ -14562,7 +14783,7 @@ export default { 38 ], "returning": [ - 956 + 976 ], "__typename": [ 78 @@ -14570,10 +14791,10 @@ export default { }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 963 + 983 ], "on_conflict": [ - 968 + 988 ], "__typename": [ 78 @@ -14581,13 +14802,13 @@ export default { }, "e_sanction_types_on_conflict": { "constraint": [ - 960 + 980 ], "update_columns": [ - 975 + 995 ], "where": [ - 959 + 979 ], "__typename": [ 78 @@ -14595,10 +14816,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -14626,7 +14847,7 @@ export default { }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 974 + 994 ], "ordering": [ 236 @@ -14649,10 +14870,10 @@ export default { "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 972 + 992 ], "where": [ - 959 + 979 ], "__typename": [ 78 @@ -14663,10 +14884,10 @@ export default { 78 ], "scrim_requests": [ - 4059, + 4162, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14676,19 +14897,19 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], "scrim_requests_aggregate": [ - 4060, + 4163, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14698,11 +14919,11 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], @@ -14715,10 +14936,10 @@ export default { }, "e_scrim_request_statuses_aggregate": { "aggregate": [ - 979 + 999 ], "nodes": [ - 977 + 997 ], "__typename": [ 78 @@ -14729,7 +14950,7 @@ export default { 38, { "columns": [ - 991, + 1011, "[e_scrim_request_statuses_select_column!]" ], "distinct": [ @@ -14738,10 +14959,10 @@ export default { } ], "max": [ - 985 + 1005 ], "min": [ - 986 + 1006 ], "__typename": [ 78 @@ -14749,22 +14970,22 @@ export default { }, "e_scrim_request_statuses_bool_exp": { "_and": [ - 980 + 1000 ], "_not": [ - 980 + 1000 ], "_or": [ - 980 + 1000 ], "description": [ 80 ], "scrim_requests": [ - 4070 + 4173 ], "scrim_requests_aggregate": [ - 4061 + 4164 ], "value": [ 80 @@ -14777,19 +14998,19 @@ export default { "e_scrim_request_statuses_enum": {}, "e_scrim_request_statuses_enum_comparison_exp": { "_eq": [ - 982 + 1002 ], "_in": [ - 982 + 1002 ], "_is_null": [ 3 ], "_neq": [ - 982 + 1002 ], "_nin": [ - 982 + 1002 ], "__typename": [ 78 @@ -14800,7 +15021,7 @@ export default { 78 ], "scrim_requests": [ - 4067 + 4170 ], "value": [ 78 @@ -14836,7 +15057,7 @@ export default { 38 ], "returning": [ - 977 + 997 ], "__typename": [ 78 @@ -14844,13 +15065,13 @@ export default { }, "e_scrim_request_statuses_on_conflict": { "constraint": [ - 981 + 1001 ], "update_columns": [ - 995 + 1015 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -14858,13 +15079,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2660 + 2763 ], "scrim_requests_aggregate": [ - 4066 + 4169 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -14892,7 +15113,7 @@ export default { }, "e_scrim_request_statuses_stream_cursor_input": { "initial_value": [ - 994 + 1014 ], "ordering": [ 236 @@ -14915,10 +15136,10 @@ export default { "e_scrim_request_statuses_update_column": {}, "e_scrim_request_statuses_updates": { "_set": [ - 992 + 1012 ], "where": [ - 980 + 1000 ], "__typename": [ 78 @@ -14929,10 +15150,10 @@ export default { 78 ], "servers": [ - 3732, + 3835, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -14942,19 +15163,19 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_aggregate": [ - 3733, + 3836, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -14964,11 +15185,11 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], @@ -14981,10 +15202,10 @@ export default { }, "e_server_types_aggregate": { "aggregate": [ - 999 + 1019 ], "nodes": [ - 997 + 1017 ], "__typename": [ 78 @@ -14995,7 +15216,7 @@ export default { 38, { "columns": [ - 1011, + 1031, "[e_server_types_select_column!]" ], "distinct": [ @@ -15004,10 +15225,10 @@ export default { } ], "max": [ - 1005 + 1025 ], "min": [ - 1006 + 1026 ], "__typename": [ 78 @@ -15015,22 +15236,22 @@ export default { }, "e_server_types_bool_exp": { "_and": [ - 1000 + 1020 ], "_not": [ - 1000 + 1020 ], "_or": [ - 1000 + 1020 ], "description": [ 80 ], "servers": [ - 3743 + 3846 ], "servers_aggregate": [ - 3734 + 3837 ], "value": [ 80 @@ -15043,19 +15264,19 @@ export default { "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 1002 + 1022 ], "_in": [ - 1002 + 1022 ], "_is_null": [ 3 ], "_neq": [ - 1002 + 1022 ], "_nin": [ - 1002 + 1022 ], "__typename": [ 78 @@ -15066,7 +15287,7 @@ export default { 78 ], "servers": [ - 3740 + 3843 ], "value": [ 78 @@ -15102,7 +15323,7 @@ export default { 38 ], "returning": [ - 997 + 1017 ], "__typename": [ 78 @@ -15110,13 +15331,13 @@ export default { }, "e_server_types_on_conflict": { "constraint": [ - 1001 + 1021 ], "update_columns": [ - 1015 + 1035 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15124,13 +15345,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2660 + 2763 ], "servers_aggregate": [ - 3739 + 3842 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -15158,7 +15379,7 @@ export default { }, "e_server_types_stream_cursor_input": { "initial_value": [ - 1014 + 1034 ], "ordering": [ 236 @@ -15181,10 +15402,10 @@ export default { "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 1012 + 1032 ], "where": [ - 1000 + 1020 ], "__typename": [ 78 @@ -15195,10 +15416,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -15208,19 +15429,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_map_lineup_1_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -15230,19 +15451,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_map_lineup_2": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -15252,19 +15473,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_map_lineup_2_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -15274,11 +15495,11 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], @@ -15291,10 +15512,10 @@ export default { }, "e_sides_aggregate": { "aggregate": [ - 1019 + 1039 ], "nodes": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15305,7 +15526,7 @@ export default { 38, { "columns": [ - 1031, + 1051, "[e_sides_select_column!]" ], "distinct": [ @@ -15314,10 +15535,10 @@ export default { } ], "max": [ - 1025 + 1045 ], "min": [ - 1026 + 1046 ], "__typename": [ 78 @@ -15325,28 +15546,28 @@ export default { }, "e_sides_bool_exp": { "_and": [ - 1020 + 1040 ], "_not": [ - 1020 + 1040 ], "_or": [ - 1020 + 1040 ], "description": [ 80 ], "match_map_lineup_1": [ - 2322 + 2425 ], "match_map_lineup_1_aggregate": [ - 2315 + 2418 ], "match_map_lineup_2": [ - 2322 + 2425 ], "match_map_lineup_2_aggregate": [ - 2315 + 2418 ], "value": [ 80 @@ -15359,19 +15580,19 @@ export default { "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 1022 + 1042 ], "_in": [ - 1022 + 1042 ], "_is_null": [ 3 ], "_neq": [ - 1022 + 1042 ], "_nin": [ - 1022 + 1042 ], "__typename": [ 78 @@ -15382,10 +15603,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2319 + 2422 ], "match_map_lineup_2": [ - 2319 + 2422 ], "value": [ 78 @@ -15421,7 +15642,7 @@ export default { 38 ], "returning": [ - 1017 + 1037 ], "__typename": [ 78 @@ -15429,13 +15650,13 @@ export default { }, "e_sides_on_conflict": { "constraint": [ - 1021 + 1041 ], "update_columns": [ - 1035 + 1055 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15443,16 +15664,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2660 + 2763 ], "match_map_lineup_1_aggregate": [ - 2318 + 2421 ], "match_map_lineup_2_aggregate": [ - 2318 + 2421 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -15480,7 +15701,7 @@ export default { }, "e_sides_stream_cursor_input": { "initial_value": [ - 1034 + 1054 ], "ordering": [ 236 @@ -15503,10 +15724,10 @@ export default { "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 1032 + 1052 ], "where": [ - 1020 + 1040 ], "__typename": [ 78 @@ -15525,10 +15746,10 @@ export default { }, "e_system_alert_types_aggregate": { "aggregate": [ - 1039 + 1059 ], "nodes": [ - 1037 + 1057 ], "__typename": [ 78 @@ -15539,7 +15760,7 @@ export default { 38, { "columns": [ - 1051, + 1071, "[e_system_alert_types_select_column!]" ], "distinct": [ @@ -15548,10 +15769,10 @@ export default { } ], "max": [ - 1045 + 1065 ], "min": [ - 1046 + 1066 ], "__typename": [ 78 @@ -15559,13 +15780,13 @@ export default { }, "e_system_alert_types_bool_exp": { "_and": [ - 1040 + 1060 ], "_not": [ - 1040 + 1060 ], "_or": [ - 1040 + 1060 ], "description": [ 80 @@ -15581,19 +15802,19 @@ export default { "e_system_alert_types_enum": {}, "e_system_alert_types_enum_comparison_exp": { "_eq": [ - 1042 + 1062 ], "_in": [ - 1042 + 1062 ], "_is_null": [ 3 ], "_neq": [ - 1042 + 1062 ], "_nin": [ - 1042 + 1062 ], "__typename": [ 78 @@ -15637,7 +15858,7 @@ export default { 38 ], "returning": [ - 1037 + 1057 ], "__typename": [ 78 @@ -15645,13 +15866,13 @@ export default { }, "e_system_alert_types_on_conflict": { "constraint": [ - 1041 + 1061 ], "update_columns": [ - 1055 + 1075 ], "where": [ - 1040 + 1060 ], "__typename": [ 78 @@ -15659,10 +15880,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -15690,7 +15911,7 @@ export default { }, "e_system_alert_types_stream_cursor_input": { "initial_value": [ - 1054 + 1074 ], "ordering": [ 236 @@ -15713,10 +15934,10 @@ export default { "e_system_alert_types_update_column": {}, "e_system_alert_types_updates": { "_set": [ - 1052 + 1072 ], "where": [ - 1040 + 1060 ], "__typename": [ 78 @@ -15727,10 +15948,10 @@ export default { 78 ], "team_rosters": [ - 3918, + 4021, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -15740,19 +15961,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_rosters_aggregate": [ - 3919, + 4022, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -15762,19 +15983,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "tournament_team_rosters": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15784,19 +16005,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_team_rosters_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -15806,11 +16027,11 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], @@ -15823,10 +16044,10 @@ export default { }, "e_team_roles_aggregate": { "aggregate": [ - 1059 + 1079 ], "nodes": [ - 1057 + 1077 ], "__typename": [ 78 @@ -15837,7 +16058,7 @@ export default { 38, { "columns": [ - 1072, + 1092, "[e_team_roles_select_column!]" ], "distinct": [ @@ -15846,10 +16067,10 @@ export default { } ], "max": [ - 1065 + 1085 ], "min": [ - 1066 + 1086 ], "__typename": [ 78 @@ -15857,28 +16078,28 @@ export default { }, "e_team_roles_bool_exp": { "_and": [ - 1060 + 1080 ], "_not": [ - 1060 + 1080 ], "_or": [ - 1060 + 1080 ], "description": [ 80 ], "team_rosters": [ - 3929 + 4032 ], "team_rosters_aggregate": [ - 3920 + 4023 ], "tournament_team_rosters": [ - 4434 + 4537 ], "tournament_team_rosters_aggregate": [ - 4427 + 4530 ], "value": [ 80 @@ -15891,19 +16112,19 @@ export default { "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 1062 + 1082 ], "_in": [ - 1062 + 1082 ], "_is_null": [ 3 ], "_neq": [ - 1062 + 1082 ], "_nin": [ - 1062 + 1082 ], "__typename": [ 78 @@ -15914,10 +16135,10 @@ export default { 78 ], "team_rosters": [ - 3926 + 4029 ], "tournament_team_rosters": [ - 4431 + 4534 ], "value": [ 78 @@ -15953,7 +16174,7 @@ export default { 38 ], "returning": [ - 1057 + 1077 ], "__typename": [ 78 @@ -15961,10 +16182,10 @@ export default { }, "e_team_roles_obj_rel_insert_input": { "data": [ - 1064 + 1084 ], "on_conflict": [ - 1069 + 1089 ], "__typename": [ 78 @@ -15972,13 +16193,13 @@ export default { }, "e_team_roles_on_conflict": { "constraint": [ - 1061 + 1081 ], "update_columns": [ - 1076 + 1096 ], "where": [ - 1060 + 1080 ], "__typename": [ 78 @@ -15986,16 +16207,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2660 + 2763 ], "team_rosters_aggregate": [ - 3925 + 4028 ], "tournament_team_rosters_aggregate": [ - 4430 + 4533 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -16023,7 +16244,7 @@ export default { }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 1075 + 1095 ], "ordering": [ 236 @@ -16046,10 +16267,10 @@ export default { "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 1073 + 1093 ], "where": [ - 1060 + 1080 ], "__typename": [ 78 @@ -16068,10 +16289,10 @@ export default { }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 1080 + 1100 ], "nodes": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16082,7 +16303,7 @@ export default { 38, { "columns": [ - 1092, + 1112, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -16091,10 +16312,10 @@ export default { } ], "max": [ - 1086 + 1106 ], "min": [ - 1087 + 1107 ], "__typename": [ 78 @@ -16102,13 +16323,13 @@ export default { }, "e_team_roster_statuses_bool_exp": { "_and": [ - 1081 + 1101 ], "_not": [ - 1081 + 1101 ], "_or": [ - 1081 + 1101 ], "description": [ 80 @@ -16124,19 +16345,19 @@ export default { "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 1083 + 1103 ], "_in": [ - 1083 + 1103 ], "_is_null": [ 3 ], "_neq": [ - 1083 + 1103 ], "_nin": [ - 1083 + 1103 ], "__typename": [ 78 @@ -16180,7 +16401,7 @@ export default { 38 ], "returning": [ - 1078 + 1098 ], "__typename": [ 78 @@ -16188,13 +16409,13 @@ export default { }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 1082 + 1102 ], "update_columns": [ - 1096 + 1116 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16202,10 +16423,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -16233,7 +16454,7 @@ export default { }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 1095 + 1115 ], "ordering": [ 236 @@ -16256,10 +16477,10 @@ export default { "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 1093 + 1113 ], "where": [ - 1081 + 1101 ], "__typename": [ 78 @@ -16278,10 +16499,10 @@ export default { }, "e_timeout_settings_aggregate": { "aggregate": [ - 1100 + 1120 ], "nodes": [ - 1098 + 1118 ], "__typename": [ 78 @@ -16292,7 +16513,7 @@ export default { 38, { "columns": [ - 1112, + 1132, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -16301,10 +16522,10 @@ export default { } ], "max": [ - 1106 + 1126 ], "min": [ - 1107 + 1127 ], "__typename": [ 78 @@ -16312,13 +16533,13 @@ export default { }, "e_timeout_settings_bool_exp": { "_and": [ - 1101 + 1121 ], "_not": [ - 1101 + 1121 ], "_or": [ - 1101 + 1121 ], "description": [ 80 @@ -16334,19 +16555,19 @@ export default { "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 1103 + 1123 ], "_in": [ - 1103 + 1123 ], "_is_null": [ 3 ], "_neq": [ - 1103 + 1123 ], "_nin": [ - 1103 + 1123 ], "__typename": [ 78 @@ -16390,7 +16611,7 @@ export default { 38 ], "returning": [ - 1098 + 1118 ], "__typename": [ 78 @@ -16398,13 +16619,13 @@ export default { }, "e_timeout_settings_on_conflict": { "constraint": [ - 1102 + 1122 ], "update_columns": [ - 1116 + 1136 ], "where": [ - 1101 + 1121 ], "__typename": [ 78 @@ -16412,10 +16633,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -16443,7 +16664,7 @@ export default { }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 1115 + 1135 ], "ordering": [ 236 @@ -16466,10 +16687,10 @@ export default { "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 1113 + 1133 ], "where": [ - 1101 + 1121 ], "__typename": [ 78 @@ -16480,10 +16701,10 @@ export default { 78 ], "tournament_stages": [ - 4333, + 4436, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -16493,19 +16714,19 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "tournament_stages_aggregate": [ - 4334, + 4437, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -16515,11 +16736,11 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], @@ -16532,10 +16753,10 @@ export default { }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 1120 + 1140 ], "nodes": [ - 1118 + 1138 ], "__typename": [ 78 @@ -16546,7 +16767,7 @@ export default { 38, { "columns": [ - 1133, + 1153, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -16555,10 +16776,10 @@ export default { } ], "max": [ - 1126 + 1146 ], "min": [ - 1127 + 1147 ], "__typename": [ 78 @@ -16566,22 +16787,22 @@ export default { }, "e_tournament_stage_types_bool_exp": { "_and": [ - 1121 + 1141 ], "_not": [ - 1121 + 1141 ], "_or": [ - 1121 + 1141 ], "description": [ 80 ], "tournament_stages": [ - 4345 + 4448 ], "tournament_stages_aggregate": [ - 4335 + 4438 ], "value": [ 80 @@ -16594,19 +16815,19 @@ export default { "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 1123 + 1143 ], "_in": [ - 1123 + 1143 ], "_is_null": [ 3 ], "_neq": [ - 1123 + 1143 ], "_nin": [ - 1123 + 1143 ], "__typename": [ 78 @@ -16617,7 +16838,7 @@ export default { 78 ], "tournament_stages": [ - 4342 + 4445 ], "value": [ 78 @@ -16653,7 +16874,7 @@ export default { 38 ], "returning": [ - 1118 + 1138 ], "__typename": [ 78 @@ -16661,10 +16882,10 @@ export default { }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 1125 + 1145 ], "on_conflict": [ - 1130 + 1150 ], "__typename": [ 78 @@ -16672,13 +16893,13 @@ export default { }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 1122 + 1142 ], "update_columns": [ - 1137 + 1157 ], "where": [ - 1121 + 1141 ], "__typename": [ 78 @@ -16686,13 +16907,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2660 + 2763 ], "tournament_stages_aggregate": [ - 4340 + 4443 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -16720,7 +16941,7 @@ export default { }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 1136 + 1156 ], "ordering": [ 236 @@ -16743,10 +16964,10 @@ export default { "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 1134 + 1154 ], "where": [ - 1121 + 1141 ], "__typename": [ 78 @@ -16757,10 +16978,10 @@ export default { 78 ], "tournaments": [ - 4595, + 4698, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -16770,19 +16991,19 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_aggregate": [ - 4596, + 4699, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -16792,11 +17013,11 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], @@ -16809,10 +17030,10 @@ export default { }, "e_tournament_status_aggregate": { "aggregate": [ - 1141 + 1161 ], "nodes": [ - 1139 + 1159 ], "__typename": [ 78 @@ -16823,7 +17044,7 @@ export default { 38, { "columns": [ - 1154, + 1174, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -16832,10 +17053,10 @@ export default { } ], "max": [ - 1147 + 1167 ], "min": [ - 1148 + 1168 ], "__typename": [ 78 @@ -16843,22 +17064,22 @@ export default { }, "e_tournament_status_bool_exp": { "_and": [ - 1142 + 1162 ], "_not": [ - 1142 + 1162 ], "_or": [ - 1142 + 1162 ], "description": [ 80 ], "tournaments": [ - 4606 + 4709 ], "tournaments_aggregate": [ - 4597 + 4700 ], "value": [ 80 @@ -16871,19 +17092,19 @@ export default { "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 1144 + 1164 ], "_in": [ - 1144 + 1164 ], "_is_null": [ 3 ], "_neq": [ - 1144 + 1164 ], "_nin": [ - 1144 + 1164 ], "__typename": [ 78 @@ -16894,7 +17115,7 @@ export default { 78 ], "tournaments": [ - 4603 + 4706 ], "value": [ 78 @@ -16930,7 +17151,7 @@ export default { 38 ], "returning": [ - 1139 + 1159 ], "__typename": [ 78 @@ -16938,10 +17159,10 @@ export default { }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 1146 + 1166 ], "on_conflict": [ - 1151 + 1171 ], "__typename": [ 78 @@ -16949,13 +17170,13 @@ export default { }, "e_tournament_status_on_conflict": { "constraint": [ - 1143 + 1163 ], "update_columns": [ - 1158 + 1178 ], "where": [ - 1142 + 1162 ], "__typename": [ 78 @@ -16963,13 +17184,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2660 + 2763 ], "tournaments_aggregate": [ - 4602 + 4705 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -16997,7 +17218,7 @@ export default { }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 1157 + 1177 ], "ordering": [ 236 @@ -17020,10 +17241,10 @@ export default { "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 1155 + 1175 ], "where": [ - 1142 + 1162 ], "__typename": [ 78 @@ -17034,10 +17255,10 @@ export default { 78 ], "player_utilities": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -17047,19 +17268,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utilities_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -17069,11 +17290,11 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], @@ -17086,10 +17307,10 @@ export default { }, "e_utility_types_aggregate": { "aggregate": [ - 1162 + 1182 ], "nodes": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17100,7 +17321,7 @@ export default { 38, { "columns": [ - 1174, + 1194, "[e_utility_types_select_column!]" ], "distinct": [ @@ -17109,10 +17330,10 @@ export default { } ], "max": [ - 1168 + 1188 ], "min": [ - 1169 + 1189 ], "__typename": [ 78 @@ -17120,22 +17341,22 @@ export default { }, "e_utility_types_bool_exp": { "_and": [ - 1163 + 1183 ], "_not": [ - 1163 + 1183 ], "_or": [ - 1163 + 1183 ], "description": [ 80 ], "player_utilities": [ - 3553 + 3656 ], "player_utilities_aggregate": [ - 3546 + 3649 ], "value": [ 80 @@ -17148,19 +17369,19 @@ export default { "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 1165 + 1185 ], "_in": [ - 1165 + 1185 ], "_is_null": [ 3 ], "_neq": [ - 1165 + 1185 ], "_nin": [ - 1165 + 1185 ], "__typename": [ 78 @@ -17171,7 +17392,7 @@ export default { 78 ], "player_utilities": [ - 3550 + 3653 ], "value": [ 78 @@ -17207,7 +17428,7 @@ export default { 38 ], "returning": [ - 1160 + 1180 ], "__typename": [ 78 @@ -17215,13 +17436,13 @@ export default { }, "e_utility_types_on_conflict": { "constraint": [ - 1164 + 1184 ], "update_columns": [ - 1178 + 1198 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17229,13 +17450,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2660 + 2763 ], "player_utilities_aggregate": [ - 3549 + 3652 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -17263,7 +17484,7 @@ export default { }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 1177 + 1197 ], "ordering": [ 236 @@ -17286,10 +17507,10 @@ export default { "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 1175 + 1195 ], "where": [ - 1163 + 1183 ], "__typename": [ 78 @@ -17300,10 +17521,10 @@ export default { 78 ], "match_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17313,19 +17534,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17335,11 +17556,11 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], @@ -17352,10 +17573,10 @@ export default { }, "e_veto_pick_types_aggregate": { "aggregate": [ - 1182 + 1202 ], "nodes": [ - 1180 + 1200 ], "__typename": [ 78 @@ -17366,7 +17587,7 @@ export default { 38, { "columns": [ - 1194, + 1214, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -17375,10 +17596,10 @@ export default { } ], "max": [ - 1188 + 1208 ], "min": [ - 1189 + 1209 ], "__typename": [ 78 @@ -17386,22 +17607,22 @@ export default { }, "e_veto_pick_types_bool_exp": { "_and": [ - 1183 + 1203 ], "_not": [ - 1183 + 1203 ], "_or": [ - 1183 + 1203 ], "description": [ 80 ], "match_veto_picks": [ - 2296 + 2399 ], "match_veto_picks_aggregate": [ - 2291 + 2394 ], "value": [ 80 @@ -17414,19 +17635,19 @@ export default { "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 1185 + 1205 ], "_in": [ - 1185 + 1205 ], "_is_null": [ 3 ], "_neq": [ - 1185 + 1205 ], "_nin": [ - 1185 + 1205 ], "__typename": [ 78 @@ -17437,7 +17658,7 @@ export default { 78 ], "match_veto_picks": [ - 2295 + 2398 ], "value": [ 78 @@ -17473,7 +17694,7 @@ export default { 38 ], "returning": [ - 1180 + 1200 ], "__typename": [ 78 @@ -17481,13 +17702,13 @@ export default { }, "e_veto_pick_types_on_conflict": { "constraint": [ - 1184 + 1204 ], "update_columns": [ - 1198 + 1218 ], "where": [ - 1183 + 1203 ], "__typename": [ 78 @@ -17495,13 +17716,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2660 + 2763 ], "match_veto_picks_aggregate": [ - 2294 + 2397 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -17529,7 +17750,7 @@ export default { }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 1197 + 1217 ], "ordering": [ 236 @@ -17552,10 +17773,10 @@ export default { "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 1195 + 1215 ], "where": [ - 1183 + 1203 ], "__typename": [ 78 @@ -17574,10 +17795,10 @@ export default { }, "e_winning_reasons_aggregate": { "aggregate": [ - 1202 + 1222 ], "nodes": [ - 1200 + 1220 ], "__typename": [ 78 @@ -17588,7 +17809,7 @@ export default { 38, { "columns": [ - 1214, + 1234, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -17597,10 +17818,10 @@ export default { } ], "max": [ - 1208 + 1228 ], "min": [ - 1209 + 1229 ], "__typename": [ 78 @@ -17608,13 +17829,13 @@ export default { }, "e_winning_reasons_bool_exp": { "_and": [ - 1203 + 1223 ], "_not": [ - 1203 + 1223 ], "_or": [ - 1203 + 1223 ], "description": [ 80 @@ -17630,19 +17851,19 @@ export default { "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 1205 + 1225 ], "_in": [ - 1205 + 1225 ], "_is_null": [ 3 ], "_neq": [ - 1205 + 1225 ], "_nin": [ - 1205 + 1225 ], "__typename": [ 78 @@ -17686,7 +17907,7 @@ export default { 38 ], "returning": [ - 1200 + 1220 ], "__typename": [ 78 @@ -17694,13 +17915,13 @@ export default { }, "e_winning_reasons_on_conflict": { "constraint": [ - 1204 + 1224 ], "update_columns": [ - 1218 + 1238 ], "where": [ - 1203 + 1223 ], "__typename": [ 78 @@ -17708,10 +17929,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -17739,7 +17960,7 @@ export default { }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 1217 + 1237 ], "ordering": [ 236 @@ -17762,63 +17983,122 @@ export default { "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 1215 + 1235 ], "where": [ - 1203 + 1223 ], "__typename": [ 78 ] }, - "event_organizers": { + "event_media": { "created_at": [ - 4203 + 4306 ], "event": [ - 1350 + 1453 ], "event_id": [ - 4641 + 4744 ], - "organizer": [ - 3618 + "filename": [ + 78 ], - "steam_id": [ + "id": [ + 4744 + ], + "mime_type": [ + 78 + ], + "players": [ + 1262, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "players_aggregate": [ + 1263, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "size": [ + 180 + ], + "title": [ + 78 + ], + "uploader": [ + 3721 + ], + "uploader_steam_id": [ 180 ], "__typename": [ 78 ] }, - "event_organizers_aggregate": { + "event_media_aggregate": { "aggregate": [ - 1224 + 1244 ], "nodes": [ - 1220 + 1240 ], "__typename": [ 78 ] }, - "event_organizers_aggregate_bool_exp": { + "event_media_aggregate_bool_exp": { "count": [ - 1223 + 1243 ], "__typename": [ 78 ] }, - "event_organizers_aggregate_bool_exp_count": { + "event_media_aggregate_bool_exp_count": { "arguments": [ - 1241 + 1303 ], "distinct": [ 3 ], "filter": [ - 1229 + 1249 ], "predicate": [ 39 @@ -17827,16 +18107,16 @@ export default { 78 ] }, - "event_organizers_aggregate_fields": { + "event_media_aggregate_fields": { "avg": [ - 1227 + 1247 ], "count": [ 38, { "columns": [ - 1241, - "[event_organizers_select_column!]" + 1303, + "[event_media_select_column!]" ], "distinct": [ 3 @@ -17844,450 +18124,417 @@ export default { } ], "max": [ - 1233 + 1253 ], "min": [ - 1235 + 1255 ], "stddev": [ - 1243 + 1305 ], "stddev_pop": [ - 1245 + 1307 ], "stddev_samp": [ - 1247 + 1309 ], "sum": [ - 1251 + 1313 ], "var_pop": [ - 1255 + 1317 ], "var_samp": [ - 1257 + 1319 ], "variance": [ - 1259 + 1321 ], "__typename": [ 78 ] }, - "event_organizers_aggregate_order_by": { + "event_media_aggregate_order_by": { "avg": [ - 1228 + 1248 ], "count": [ - 2660 + 2763 ], "max": [ - 1234 + 1254 ], "min": [ - 1236 + 1256 ], "stddev": [ - 1244 + 1306 ], "stddev_pop": [ - 1246 + 1308 ], "stddev_samp": [ - 1248 + 1310 ], "sum": [ - 1252 + 1314 ], "var_pop": [ - 1256 + 1318 ], "var_samp": [ - 1258 + 1320 ], "variance": [ - 1260 + 1322 ], "__typename": [ 78 ] }, - "event_organizers_arr_rel_insert_input": { + "event_media_arr_rel_insert_input": { "data": [ - 1232 + 1252 ], "on_conflict": [ - 1238 + 1259 ], "__typename": [ 78 ] }, - "event_organizers_avg_fields": { - "steam_id": [ + "event_media_avg_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ 29 ], "__typename": [ 78 ] }, - "event_organizers_avg_order_by": { - "steam_id": [ - 2660 + "event_media_avg_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 ], "__typename": [ 78 ] }, - "event_organizers_bool_exp": { + "event_media_bool_exp": { "_and": [ - 1229 + 1249 ], "_not": [ - 1229 + 1249 ], "_or": [ - 1229 + 1249 ], "created_at": [ - 4204 + 4307 ], "event": [ - 1354 + 1457 ], "event_id": [ - 4643 + 4746 ], - "organizer": [ - 3622 + "filename": [ + 80 ], - "steam_id": [ + "id": [ + 4746 + ], + "mime_type": [ + 80 + ], + "players": [ + 1271 + ], + "players_aggregate": [ + 1264 + ], + "size": [ + 182 + ], + "title": [ + 80 + ], + "uploader": [ + 3725 + ], + "uploader_steam_id": [ 182 ], "__typename": [ 78 ] }, - "event_organizers_constraint": {}, - "event_organizers_inc_input": { - "steam_id": [ + "event_media_constraint": {}, + "event_media_inc_input": { + "size": [ + 180 + ], + "uploader_steam_id": [ 180 ], "__typename": [ 78 ] }, - "event_organizers_insert_input": { + "event_media_insert_input": { "created_at": [ - 4203 + 4306 ], "event": [ - 1361 + 1464 ], "event_id": [ - 4641 + 4744 ], - "organizer": [ - 3629 + "filename": [ + 78 ], - "steam_id": [ + "id": [ + 4744 + ], + "mime_type": [ + 78 + ], + "players": [ + 1268 + ], + "size": [ 180 ], - "__typename": [ + "title": [ 78 - ] - }, - "event_organizers_max_fields": { - "created_at": [ - 4203 ], - "event_id": [ - 4641 + "uploader": [ + 3732 ], - "steam_id": [ + "uploader_steam_id": [ 180 ], "__typename": [ 78 ] }, - "event_organizers_max_order_by": { + "event_media_max_fields": { "created_at": [ - 2660 + 4306 ], "event_id": [ - 2660 + 4744 ], - "steam_id": [ - 2660 + "filename": [ + 78 ], - "__typename": [ + "id": [ + 4744 + ], + "mime_type": [ 78 - ] - }, - "event_organizers_min_fields": { - "created_at": [ - 4203 ], - "event_id": [ - 4641 + "size": [ + 180 ], - "steam_id": [ + "title": [ + 78 + ], + "uploader_steam_id": [ 180 ], "__typename": [ 78 ] }, - "event_organizers_min_order_by": { + "event_media_max_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], - "steam_id": [ - 2660 + "filename": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_mutation_response": { - "affected_rows": [ - 38 + "id": [ + 2763 ], - "returning": [ - 1220 + "mime_type": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_on_conflict": { - "constraint": [ - 1230 + "size": [ + 2763 ], - "update_columns": [ - 1253 + "title": [ + 2763 ], - "where": [ - 1229 + "uploader_steam_id": [ + 2763 ], "__typename": [ 78 ] }, - "event_organizers_order_by": { + "event_media_min_fields": { "created_at": [ - 2660 - ], - "event": [ - 1363 + 4306 ], "event_id": [ - 2660 + 4744 ], - "organizer": [ - 3631 + "filename": [ + 78 ], - "steam_id": [ - 2660 + "id": [ + 4744 ], - "__typename": [ + "mime_type": [ 78 - ] - }, - "event_organizers_pk_columns_input": { - "event_id": [ - 4641 ], - "steam_id": [ + "size": [ + 180 + ], + "title": [ + 78 + ], + "uploader_steam_id": [ 180 ], "__typename": [ 78 ] }, - "event_organizers_select_column": {}, - "event_organizers_set_input": { + "event_media_min_order_by": { "created_at": [ - 4203 + 2763 ], "event_id": [ - 4641 + 2763 ], - "steam_id": [ - 180 + "filename": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_fields": { - "steam_id": [ - 29 + "id": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_order_by": { - "steam_id": [ - 2660 + "mime_type": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_pop_fields": { - "steam_id": [ - 29 + "size": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_pop_order_by": { - "steam_id": [ - 2660 + "title": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_stddev_samp_fields": { - "steam_id": [ - 29 + "uploader_steam_id": [ + 2763 ], "__typename": [ 78 ] }, - "event_organizers_stddev_samp_order_by": { - "steam_id": [ - 2660 + "event_media_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1240 ], "__typename": [ 78 ] }, - "event_organizers_stream_cursor_input": { - "initial_value": [ - 1250 + "event_media_obj_rel_insert_input": { + "data": [ + 1252 ], - "ordering": [ - 236 + "on_conflict": [ + 1259 ], "__typename": [ 78 ] }, - "event_organizers_stream_cursor_value_input": { - "created_at": [ - 4203 + "event_media_on_conflict": { + "constraint": [ + 1250 ], - "event_id": [ - 4641 + "update_columns": [ + 1315 ], - "steam_id": [ - 180 + "where": [ + 1249 ], "__typename": [ 78 ] }, - "event_organizers_sum_fields": { - "steam_id": [ - 180 + "event_media_order_by": { + "created_at": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_sum_order_by": { - "steam_id": [ - 2660 + "event": [ + 1466 ], - "__typename": [ - 78 - ] - }, - "event_organizers_update_column": {}, - "event_organizers_updates": { - "_inc": [ - 1231 + "event_id": [ + 2763 ], - "_set": [ - 1242 + "filename": [ + 2763 ], - "where": [ - 1229 + "id": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_pop_fields": { - "steam_id": [ - 29 + "mime_type": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_pop_order_by": { - "steam_id": [ - 2660 + "players_aggregate": [ + 1267 ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_samp_fields": { - "steam_id": [ - 29 + "size": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_var_samp_order_by": { - "steam_id": [ - 2660 + "title": [ + 2763 ], - "__typename": [ - 78 - ] - }, - "event_organizers_variance_fields": { - "steam_id": [ - 29 + "uploader": [ + 3734 + ], + "uploader_steam_id": [ + 2763 ], "__typename": [ 78 ] }, - "event_organizers_variance_order_by": { - "steam_id": [ - 2660 + "event_media_pk_columns_input": { + "id": [ + 4744 ], "__typename": [ 78 ] }, - "event_players": { + "event_media_players": { "created_at": [ - 4203 + 4306 ], - "event": [ - 1350 + "media": [ + 1240 ], - "event_id": [ - 4641 + "media_id": [ + 4744 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 @@ -18296,34 +18543,34 @@ export default { 78 ] }, - "event_players_aggregate": { + "event_media_players_aggregate": { "aggregate": [ - 1265 + 1266 ], "nodes": [ - 1261 + 1262 ], "__typename": [ 78 ] }, - "event_players_aggregate_bool_exp": { + "event_media_players_aggregate_bool_exp": { "count": [ - 1264 + 1265 ], "__typename": [ 78 ] }, - "event_players_aggregate_bool_exp_count": { + "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1282 + 1283 ], "distinct": [ 3 ], "filter": [ - 1270 + 1271 ], "predicate": [ 39 @@ -18332,60 +18579,22 @@ export default { 78 ] }, - "event_players_aggregate_fields": { + "event_media_players_aggregate_fields": { "avg": [ - 1268 + 1269 ], "count": [ 38, { "columns": [ - 1282, - "[event_players_select_column!]" + 1283, + "[event_media_players_select_column!]" ], "distinct": [ 3 ] } ], - "max": [ - 1274 - ], - "min": [ - 1276 - ], - "stddev": [ - 1284 - ], - "stddev_pop": [ - 1286 - ], - "stddev_samp": [ - 1288 - ], - "sum": [ - 1292 - ], - "var_pop": [ - 1296 - ], - "var_samp": [ - 1298 - ], - "variance": [ - 1300 - ], - "__typename": [ - 78 - ] - }, - "event_players_aggregate_order_by": { - "avg": [ - 1269 - ], - "count": [ - 2660 - ], "max": [ 1275 ], @@ -18417,12 +18626,1299 @@ export default { 78 ] }, - "event_players_arr_rel_insert_input": { + "event_media_players_aggregate_order_by": { + "avg": [ + 1270 + ], + "count": [ + 2763 + ], + "max": [ + 1276 + ], + "min": [ + 1278 + ], + "stddev": [ + 1286 + ], + "stddev_pop": [ + 1288 + ], + "stddev_samp": [ + 1290 + ], + "sum": [ + 1294 + ], + "var_pop": [ + 1298 + ], + "var_samp": [ + 1300 + ], + "variance": [ + 1302 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_arr_rel_insert_input": { "data": [ + 1274 + ], + "on_conflict": [ + 1280 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_avg_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_avg_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_bool_exp": { + "_and": [ + 1271 + ], + "_not": [ + 1271 + ], + "_or": [ + 1271 + ], + "created_at": [ + 4307 + ], + "media": [ + 1249 + ], + "media_id": [ + 4746 + ], + "player": [ + 3725 + ], + "steam_id": [ + 182 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_constraint": {}, + "event_media_players_inc_input": { + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_insert_input": { + "created_at": [ + 4306 + ], + "media": [ + 1258 + ], + "media_id": [ + 4744 + ], + "player": [ + 3732 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_max_fields": { + "created_at": [ + 4306 + ], + "media_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_max_order_by": { + "created_at": [ + 2763 + ], + "media_id": [ + 2763 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_min_fields": { + "created_at": [ + 4306 + ], + "media_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_min_order_by": { + "created_at": [ + 2763 + ], + "media_id": [ + 2763 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1262 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_on_conflict": { + "constraint": [ + 1272 + ], + "update_columns": [ + 1295 + ], + "where": [ + 1271 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_order_by": { + "created_at": [ + 2763 + ], + "media": [ + 1260 + ], + "media_id": [ + 2763 + ], + "player": [ + 3734 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_pk_columns_input": { + "media_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_select_column": {}, + "event_media_players_set_input": { + "created_at": [ + 4306 + ], + "media_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_pop_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_pop_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_samp_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stddev_samp_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stream_cursor_input": { + "initial_value": [ + 1292 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_stream_cursor_value_input": { + "created_at": [ + 4306 + ], + "media_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_sum_fields": { + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_sum_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_update_column": {}, + "event_media_players_updates": { + "_inc": [ 1273 ], + "_set": [ + 1284 + ], + "where": [ + 1271 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_var_pop_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_var_pop_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_var_samp_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_var_samp_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_variance_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_players_variance_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_select_column": {}, + "event_media_set_input": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "filename": [ + 78 + ], + "id": [ + 4744 + ], + "mime_type": [ + 78 + ], + "size": [ + 180 + ], + "title": [ + 78 + ], + "uploader_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_pop_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_pop_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_samp_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_stddev_samp_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_stream_cursor_input": { + "initial_value": [ + 1312 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_media_stream_cursor_value_input": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "filename": [ + 78 + ], + "id": [ + 4744 + ], + "mime_type": [ + 78 + ], + "size": [ + 180 + ], + "title": [ + 78 + ], + "uploader_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_sum_fields": { + "size": [ + 180 + ], + "uploader_steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_media_sum_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_update_column": {}, + "event_media_updates": { + "_inc": [ + 1251 + ], + "_set": [ + 1304 + ], + "where": [ + 1249 + ], + "__typename": [ + 78 + ] + }, + "event_media_var_pop_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_var_pop_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_var_samp_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_var_samp_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_media_variance_fields": { + "size": [ + 29 + ], + "uploader_steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_media_variance_order_by": { + "size": [ + 2763 + ], + "uploader_steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers": { + "created_at": [ + 4306 + ], + "event": [ + 1453 + ], + "event_id": [ + 4744 + ], + "organizer": [ + 3721 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate": { + "aggregate": [ + 1327 + ], + "nodes": [ + 1323 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_bool_exp": { + "count": [ + 1326 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_bool_exp_count": { + "arguments": [ + 1344 + ], + "distinct": [ + 3 + ], + "filter": [ + 1332 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_fields": { + "avg": [ + 1330 + ], + "count": [ + 38, + { + "columns": [ + 1344, + "[event_organizers_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1336 + ], + "min": [ + 1338 + ], + "stddev": [ + 1346 + ], + "stddev_pop": [ + 1348 + ], + "stddev_samp": [ + 1350 + ], + "sum": [ + 1354 + ], + "var_pop": [ + 1358 + ], + "var_samp": [ + 1360 + ], + "variance": [ + 1362 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_aggregate_order_by": { + "avg": [ + 1331 + ], + "count": [ + 2763 + ], + "max": [ + 1337 + ], + "min": [ + 1339 + ], + "stddev": [ + 1347 + ], + "stddev_pop": [ + 1349 + ], + "stddev_samp": [ + 1351 + ], + "sum": [ + 1355 + ], + "var_pop": [ + 1359 + ], + "var_samp": [ + 1361 + ], + "variance": [ + 1363 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_arr_rel_insert_input": { + "data": [ + 1335 + ], + "on_conflict": [ + 1341 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_avg_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_avg_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_bool_exp": { + "_and": [ + 1332 + ], + "_not": [ + 1332 + ], + "_or": [ + 1332 + ], + "created_at": [ + 4307 + ], + "event": [ + 1457 + ], + "event_id": [ + 4746 + ], + "organizer": [ + 3725 + ], + "steam_id": [ + 182 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_constraint": {}, + "event_organizers_inc_input": { + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_insert_input": { + "created_at": [ + 4306 + ], + "event": [ + 1464 + ], + "event_id": [ + 4744 + ], + "organizer": [ + 3732 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_max_fields": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_max_order_by": { + "created_at": [ + 2763 + ], + "event_id": [ + 2763 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_min_fields": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_min_order_by": { + "created_at": [ + 2763 + ], + "event_id": [ + 2763 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1323 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_on_conflict": { + "constraint": [ + 1333 + ], + "update_columns": [ + 1356 + ], + "where": [ + 1332 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_order_by": { + "created_at": [ + 2763 + ], + "event": [ + 1466 + ], + "event_id": [ + 2763 + ], + "organizer": [ + 3734 + ], + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_pk_columns_input": { + "event_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_select_column": {}, + "event_organizers_set_input": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_pop_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_pop_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_samp_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stddev_samp_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stream_cursor_input": { + "initial_value": [ + 1353 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_stream_cursor_value_input": { + "created_at": [ + 4306 + ], + "event_id": [ + 4744 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_sum_fields": { + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_sum_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_update_column": {}, + "event_organizers_updates": { + "_inc": [ + 1334 + ], + "_set": [ + 1345 + ], + "where": [ + 1332 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_var_pop_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_var_pop_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_var_samp_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_var_samp_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_variance_fields": { + "steam_id": [ + 29 + ], + "__typename": [ + 78 + ] + }, + "event_organizers_variance_order_by": { + "steam_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "event_players": { + "created_at": [ + 4306 + ], + "event": [ + 1453 + ], + "event_id": [ + 4744 + ], + "player": [ + 3721 + ], + "steam_id": [ + 180 + ], + "__typename": [ + 78 + ] + }, + "event_players_aggregate": { + "aggregate": [ + 1368 + ], + "nodes": [ + 1364 + ], + "__typename": [ + 78 + ] + }, + "event_players_aggregate_bool_exp": { + "count": [ + 1367 + ], + "__typename": [ + 78 + ] + }, + "event_players_aggregate_bool_exp_count": { + "arguments": [ + 1385 + ], + "distinct": [ + 3 + ], + "filter": [ + 1373 + ], + "predicate": [ + 39 + ], + "__typename": [ + 78 + ] + }, + "event_players_aggregate_fields": { + "avg": [ + 1371 + ], + "count": [ + 38, + { + "columns": [ + 1385, + "[event_players_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1377 + ], + "min": [ + 1379 + ], + "stddev": [ + 1387 + ], + "stddev_pop": [ + 1389 + ], + "stddev_samp": [ + 1391 + ], + "sum": [ + 1395 + ], + "var_pop": [ + 1399 + ], + "var_samp": [ + 1401 + ], + "variance": [ + 1403 + ], + "__typename": [ + 78 + ] + }, + "event_players_aggregate_order_by": { + "avg": [ + 1372 + ], + "count": [ + 2763 + ], + "max": [ + 1378 + ], + "min": [ + 1380 + ], + "stddev": [ + 1388 + ], + "stddev_pop": [ + 1390 + ], + "stddev_samp": [ + 1392 + ], + "sum": [ + 1396 + ], + "var_pop": [ + 1400 + ], + "var_samp": [ + 1402 + ], + "variance": [ + 1404 + ], + "__typename": [ + 78 + ] + }, + "event_players_arr_rel_insert_input": { + "data": [ + 1376 + ], "on_conflict": [ - 1279 + 1382 ], "__typename": [ 78 @@ -18438,7 +19934,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18446,25 +19942,25 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1270 + 1373 ], "_not": [ - 1270 + 1373 ], "_or": [ - 1270 + 1373 ], "created_at": [ - 4204 + 4307 ], "event": [ - 1354 + 1457 ], "event_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 @@ -18484,16 +19980,16 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4203 + 4306 ], "event": [ - 1361 + 1464 ], "event_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 @@ -18504,10 +20000,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -18518,13 +20014,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18532,10 +20028,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -18546,13 +20042,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18563,7 +20059,7 @@ export default { 38 ], "returning": [ - 1261 + 1364 ], "__typename": [ 78 @@ -18571,13 +20067,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1271 + 1374 ], "update_columns": [ - 1294 + 1397 ], "where": [ - 1270 + 1373 ], "__typename": [ 78 @@ -18585,19 +20081,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2660 + 2763 ], "event": [ - 1363 + 1466 ], "event_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18605,7 +20101,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -18617,10 +20113,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -18639,7 +20135,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18655,7 +20151,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18671,7 +20167,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18679,7 +20175,7 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1291 + 1394 ], "ordering": [ 236 @@ -18690,10 +20186,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -18712,7 +20208,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18721,13 +20217,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1272 + 1375 ], "_set": [ - 1283 + 1386 ], "where": [ - 1270 + 1373 ], "__typename": [ 78 @@ -18743,7 +20239,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18759,7 +20255,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18775,7 +20271,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18783,19 +20279,19 @@ export default { }, "event_teams": { "created_at": [ - 4203 + 4306 ], "event": [ - 1350 + 1453 ], "event_id": [ - 4641 + 4744 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -18803,10 +20299,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1306 + 1409 ], "nodes": [ - 1302 + 1405 ], "__typename": [ 78 @@ -18814,7 +20310,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1305 + 1408 ], "__typename": [ 78 @@ -18822,13 +20318,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1320 + 1423 ], "distinct": [ 3 ], "filter": [ - 1309 + 1412 ], "predicate": [ 39 @@ -18842,7 +20338,7 @@ export default { 38, { "columns": [ - 1320, + 1423, "[event_teams_select_column!]" ], "distinct": [ @@ -18851,10 +20347,10 @@ export default { } ], "max": [ - 1312 + 1415 ], "min": [ - 1314 + 1417 ], "__typename": [ 78 @@ -18862,13 +20358,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 1313 + 1416 ], "min": [ - 1315 + 1418 ], "__typename": [ 78 @@ -18876,10 +20372,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1311 + 1414 ], "on_conflict": [ - 1317 + 1420 ], "__typename": [ 78 @@ -18887,28 +20383,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1309 + 1412 ], "_not": [ - 1309 + 1412 ], "_or": [ - 1309 + 1412 ], "created_at": [ - 4204 + 4307 ], "event": [ - 1354 + 1457 ], "event_id": [ - 4643 + 4746 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -18917,19 +20413,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4203 + 4306 ], "event": [ - 1361 + 1464 ], "event_id": [ - 4641 + 4744 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -18937,13 +20433,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -18951,13 +20447,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18965,13 +20461,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -18979,13 +20475,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -18996,7 +20492,7 @@ export default { 38 ], "returning": [ - 1302 + 1405 ], "__typename": [ 78 @@ -19004,13 +20500,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1310 + 1413 ], "update_columns": [ - 1324 + 1427 ], "where": [ - 1309 + 1412 ], "__typename": [ 78 @@ -19018,19 +20514,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2660 + 2763 ], "event": [ - 1363 + 1466 ], "event_id": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -19038,10 +20534,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19050,13 +20546,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19064,7 +20560,7 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1323 + 1426 ], "ordering": [ 236 @@ -19075,13 +20571,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19090,10 +20586,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1321 + 1424 ], "where": [ - 1309 + 1412 ], "__typename": [ 78 @@ -19101,19 +20597,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4203 + 4306 ], "event": [ - 1350 + 1453 ], "event_id": [ - 4641 + 4744 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19121,10 +20617,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1330 + 1433 ], "nodes": [ - 1326 + 1429 ], "__typename": [ 78 @@ -19132,7 +20628,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1329 + 1432 ], "__typename": [ 78 @@ -19140,13 +20636,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1344 + 1447 ], "distinct": [ 3 ], "filter": [ - 1333 + 1436 ], "predicate": [ 39 @@ -19160,7 +20656,7 @@ export default { 38, { "columns": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "distinct": [ @@ -19169,10 +20665,10 @@ export default { } ], "max": [ - 1336 + 1439 ], "min": [ - 1338 + 1441 ], "__typename": [ 78 @@ -19180,13 +20676,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 1337 + 1440 ], "min": [ - 1339 + 1442 ], "__typename": [ 78 @@ -19194,10 +20690,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1335 + 1438 ], "on_conflict": [ - 1341 + 1444 ], "__typename": [ 78 @@ -19205,28 +20701,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1333 + 1436 ], "_not": [ - 1333 + 1436 ], "_or": [ - 1333 + 1436 ], "created_at": [ - 4204 + 4307 ], "event": [ - 1354 + 1457 ], "event_id": [ - 4643 + 4746 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -19235,19 +20731,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4203 + 4306 ], "event": [ - 1361 + 1464 ], "event_id": [ - 4641 + 4744 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19255,13 +20751,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19269,13 +20765,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -19283,13 +20779,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19297,13 +20793,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -19314,7 +20810,7 @@ export default { 38 ], "returning": [ - 1326 + 1429 ], "__typename": [ 78 @@ -19322,13 +20818,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1334 + 1437 ], "update_columns": [ - 1348 + 1451 ], "where": [ - 1333 + 1436 ], "__typename": [ 78 @@ -19336,19 +20832,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2660 + 2763 ], "event": [ - 1363 + 1466 ], "event_id": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -19356,10 +20852,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19368,13 +20864,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19382,7 +20878,7 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1347 + 1450 ], "ordering": [ 236 @@ -19393,13 +20889,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "event_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -19408,45 +20904,104 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1345 + 1448 ], "where": [ - 1333 + 1436 ], "__typename": [ 78 ] }, "events": { + "banner": [ + 1240 + ], + "banner_media_id": [ + 4744 + ], + "can_upload_media": [ + 3 + ], + "can_view": [ + 3 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "is_organizer": [ 3 ], + "media": [ + 1240, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], + "media_access": [ + 530 + ], + "media_aggregate": [ + 1241, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], "name": [ 78 ], "organizer": [ - 3618 + 3721 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1220, + 1323, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -19456,19 +21011,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "organizers_aggregate": [ - 1221, + 1324, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -19478,19 +21033,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "player_stats": [ - 4644, + 4757, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -19500,19 +21055,19 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "player_stats_aggregate": [ - 4645, + 4758, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -19522,19 +21077,19 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "players": [ - 1261, + 1364, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -19544,19 +21099,19 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "players_aggregate": [ - 1262, + 1365, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -19566,25 +21121,22 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "starts_at": [ - 4203 - ], - "status": [ - 530 + 4306 ], "teams": [ - 1302, + 1405, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -19594,19 +21146,19 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "teams_aggregate": [ - 1303, + 1406, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -19616,19 +21168,19 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "tournaments": [ - 1326, + 1429, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -19638,19 +21190,19 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], "tournaments_aggregate": [ - 1327, + 1430, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -19660,24 +21212,27 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], + "visibility": [ + 550 + ], "__typename": [ 78 ] }, "events_aggregate": { "aggregate": [ - 1352 + 1455 ], "nodes": [ - 1350 + 1453 ], "__typename": [ 78 @@ -19685,13 +21240,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1353 + 1456 ], "count": [ 38, { "columns": [ - 1365, + 1468, "[events_select_column!]" ], "distinct": [ @@ -19700,31 +21255,31 @@ export default { } ], "max": [ - 1358 + 1461 ], "min": [ - 1359 + 1462 ], "stddev": [ - 1367 + 1470 ], "stddev_pop": [ - 1368 + 1471 ], "stddev_samp": [ - 1369 + 1472 ], "sum": [ - 1372 + 1475 ], "var_pop": [ - 1375 + 1478 ], "var_samp": [ - 1376 + 1479 ], "variance": [ - 1377 + 1480 ], "__typename": [ 78 @@ -19740,73 +21295,94 @@ export default { }, "events_bool_exp": { "_and": [ - 1354 + 1457 ], "_not": [ - 1354 + 1457 ], "_or": [ - 1354 + 1457 + ], + "banner": [ + 1249 + ], + "banner_media_id": [ + 4746 + ], + "can_upload_media": [ + 4 + ], + "can_view": [ + 4 ], "created_at": [ - 4204 + 4307 ], "description": [ 80 ], "ends_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "is_organizer": [ 4 ], + "media": [ + 1249 + ], + "media_access": [ + 531 + ], + "media_aggregate": [ + 1242 + ], "name": [ 80 ], "organizer": [ - 3622 + 3725 ], "organizer_steam_id": [ 182 ], "organizers": [ - 1229 + 1332 ], "organizers_aggregate": [ - 1222 + 1325 ], "player_stats": [ - 4663 + 4776 ], "player_stats_aggregate": [ - 4646 + 4759 ], "players": [ - 1270 + 1373 ], "players_aggregate": [ - 1263 + 1366 ], "starts_at": [ - 4204 - ], - "status": [ - 531 + 4307 ], "teams": [ - 1309 + 1412 ], "teams_aggregate": [ - 1304 + 1407 ], "tournaments": [ - 1333 + 1436 ], "tournaments_aggregate": [ - 1328 + 1431 + ], + "visibility": [ + 551 ], "__typename": [ 78 @@ -19822,64 +21398,79 @@ export default { ] }, "events_insert_input": { + "banner": [ + 1258 + ], + "banner_media_id": [ + 4744 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 + ], + "media": [ + 1246 + ], + "media_access": [ + 530 ], "name": [ 78 ], "organizer": [ - 3629 + 3732 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1226 + 1329 ], "player_stats": [ - 4660 + 4773 ], "players": [ - 1267 + 1370 ], "starts_at": [ - 4203 - ], - "status": [ - 530 + 4306 ], "teams": [ - 1308 + 1411 ], "tournaments": [ - 1332 + 1435 + ], + "visibility": [ + 550 ], "__typename": [ 78 ] }, "events_max_fields": { + "banner_media_id": [ + 4744 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -19888,24 +21479,27 @@ export default { 180 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 ] }, "events_min_fields": { + "banner_media_id": [ + 4744 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -19914,7 +21508,7 @@ export default { 180 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -19925,7 +21519,7 @@ export default { 38 ], "returning": [ - 1350 + 1453 ], "__typename": [ 78 @@ -19933,10 +21527,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1357 + 1460 ], "on_conflict": [ - 1362 + 1465 ], "__typename": [ 78 @@ -19944,63 +21538,81 @@ export default { }, "events_on_conflict": { "constraint": [ - 1355 + 1458 ], "update_columns": [ - 1373 + 1476 ], "where": [ - 1354 + 1457 ], "__typename": [ 78 ] }, "events_order_by": { + "banner": [ + 1260 + ], + "banner_media_id": [ + 2763 + ], + "can_upload_media": [ + 2763 + ], + "can_view": [ + 2763 + ], "created_at": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "ends_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 + ], + "media_access": [ + 2763 + ], + "media_aggregate": [ + 1245 ], "name": [ - 2660 + 2763 ], "organizer": [ - 3631 + 3734 ], "organizer_steam_id": [ - 2660 + 2763 ], "organizers_aggregate": [ - 1225 + 1328 ], "player_stats_aggregate": [ - 4659 + 4772 ], "players_aggregate": [ - 1266 + 1369 ], "starts_at": [ - 2660 - ], - "status": [ - 2660 + 2763 ], "teams_aggregate": [ - 1307 + 1410 ], "tournaments_aggregate": [ - 1331 + 1434 + ], + "visibility": [ + 2763 ], "__typename": [ 78 @@ -20008,7 +21620,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -20016,17 +21628,23 @@ export default { }, "events_select_column": {}, "events_set_input": { + "banner_media_id": [ + 4744 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 + ], + "media_access": [ + 530 ], "name": [ 78 @@ -20035,10 +21653,10 @@ export default { 180 ], "starts_at": [ - 4203 + 4306 ], - "status": [ - 530 + "visibility": [ + 550 ], "__typename": [ 78 @@ -20070,7 +21688,7 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1371 + 1474 ], "ordering": [ 236 @@ -20080,17 +21698,23 @@ export default { ] }, "events_stream_cursor_value_input": { + "banner_media_id": [ + 4744 + ], "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 + ], + "media_access": [ + 530 ], "name": [ 78 @@ -20099,10 +21723,10 @@ export default { 180 ], "starts_at": [ - 4203 + 4306 ], - "status": [ - 530 + "visibility": [ + 550 ], "__typename": [ 78 @@ -20119,13 +21743,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1356 + 1459 ], "_set": [ - 1366 + 1469 ], "where": [ - 1354 + 1457 ], "__typename": [ 78 @@ -20158,31 +21782,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1378 + 1481 ], "_gt": [ - 1378 + 1481 ], "_gte": [ - 1378 + 1481 ], "_in": [ - 1378 + 1481 ], "_is_null": [ 3 ], "_lt": [ - 1378 + 1481 ], "_lte": [ - 1378 + 1481 ], "_neq": [ - 1378 + 1481 ], "_nin": [ - 1378 + 1481 ], "__typename": [ 78 @@ -20190,7 +21814,7 @@ export default { }, "friends": { "e_status": [ - 545 + 565 ], "other_player_steam_id": [ 180 @@ -20199,7 +21823,7 @@ export default { 180 ], "status": [ - 550 + 570 ], "__typename": [ 78 @@ -20207,10 +21831,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1382 + 1485 ], "nodes": [ - 1380 + 1483 ], "__typename": [ 78 @@ -20218,13 +21842,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1383 + 1486 ], "count": [ 38, { "columns": [ - 1394, + 1497, "[friends_select_column!]" ], "distinct": [ @@ -20233,31 +21857,31 @@ export default { } ], "max": [ - 1388 + 1491 ], "min": [ - 1389 + 1492 ], "stddev": [ - 1396 + 1499 ], "stddev_pop": [ - 1397 + 1500 ], "stddev_samp": [ - 1398 + 1501 ], "sum": [ - 1401 + 1504 ], "var_pop": [ - 1404 + 1507 ], "var_samp": [ - 1405 + 1508 ], "variance": [ - 1406 + 1509 ], "__typename": [ 78 @@ -20276,16 +21900,16 @@ export default { }, "friends_bool_exp": { "_and": [ - 1384 + 1487 ], "_not": [ - 1384 + 1487 ], "_or": [ - 1384 + 1487 ], "e_status": [ - 548 + 568 ], "other_player_steam_id": [ 182 @@ -20294,7 +21918,7 @@ export default { 182 ], "status": [ - 551 + 571 ], "__typename": [ 78 @@ -20314,7 +21938,7 @@ export default { }, "friends_insert_input": { "e_status": [ - 556 + 576 ], "other_player_steam_id": [ 180 @@ -20323,7 +21947,7 @@ export default { 180 ], "status": [ - 550 + 570 ], "__typename": [ 78 @@ -20356,7 +21980,7 @@ export default { 38 ], "returning": [ - 1380 + 1483 ], "__typename": [ 78 @@ -20364,13 +21988,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1385 + 1488 ], "update_columns": [ - 1402 + 1505 ], "where": [ - 1384 + 1487 ], "__typename": [ 78 @@ -20378,16 +22002,16 @@ export default { }, "friends_order_by": { "e_status": [ - 558 + 578 ], "other_player_steam_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "__typename": [ 78 @@ -20413,7 +22037,7 @@ export default { 180 ], "status": [ - 550 + 570 ], "__typename": [ 78 @@ -20454,7 +22078,7 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1400 + 1503 ], "ordering": [ 236 @@ -20471,7 +22095,7 @@ export default { 180 ], "status": [ - 550 + 570 ], "__typename": [ 78 @@ -20491,13 +22115,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1386 + 1489 ], "_set": [ - 1395 + 1498 ], "where": [ - 1384 + 1487 ], "__typename": [ 78 @@ -20547,7 +22171,7 @@ export default { 38 ], "cpu_frequency_info": [ - 1531, + 1634, { "path": [ 78 @@ -20555,7 +22179,7 @@ export default { } ], "cpu_governor_info": [ - 1531, + 1634, { "path": [ 78 @@ -20569,7 +22193,7 @@ export default { 38 ], "cs2_launch_options": [ - 1531, + 1634, { "path": [ 78 @@ -20577,7 +22201,7 @@ export default { } ], "cs2_video_settings": [ - 1531, + 1634, { "path": [ 78 @@ -20597,10 +22221,10 @@ export default { 38 ], "e_region": [ - 3705 + 3808 ], "e_status": [ - 586 + 606 ], "enabled": [ 3 @@ -20618,7 +22242,7 @@ export default { 3 ], "gpu_info": [ - 1531, + 1634, { "path": [ 78 @@ -20638,13 +22262,13 @@ export default { 78 ], "lan_ip": [ - 1527 + 1630 ], "node_ip": [ - 1527 + 1630 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -20656,22 +22280,22 @@ export default { 78 ], "pinned_version": [ - 1458 + 1561 ], "plugin_supported": [ 3 ], "public_ip": [ - 1527 + 1630 ], "region": [ 78 ], "servers": [ - 3732, + 3835, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -20681,19 +22305,19 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_aggregate": [ - 3733, + 3836, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -20703,16 +22327,16 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -20721,7 +22345,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1531, + 1634, { "path": [ 78 @@ -20732,7 +22356,7 @@ export default { 38 ], "status": [ - 591 + 611 ], "supports_cpu_pinning": [ 3 @@ -20750,7 +22374,7 @@ export default { 78 ], "version": [ - 1458 + 1561 ], "__typename": [ 78 @@ -20758,10 +22382,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1413 + 1516 ], "nodes": [ - 1407 + 1510 ], "__typename": [ 78 @@ -20769,13 +22393,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1410 + 1513 ], "bool_or": [ - 1411 + 1514 ], "count": [ - 1412 + 1515 ], "__typename": [ 78 @@ -20783,13 +22407,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1437 + 1540 ], "distinct": [ 3 ], "filter": [ - 1419 + 1522 ], "predicate": [ 4 @@ -20800,13 +22424,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1438 + 1541 ], "distinct": [ 3 ], "filter": [ - 1419 + 1522 ], "predicate": [ 4 @@ -20817,13 +22441,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1436 + 1539 ], "distinct": [ 3 ], "filter": [ - 1419 + 1522 ], "predicate": [ 39 @@ -20834,13 +22458,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1417 + 1520 ], "count": [ 38, { "columns": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -20849,31 +22473,31 @@ export default { } ], "max": [ - 1426 + 1529 ], "min": [ - 1428 + 1531 ], "stddev": [ - 1440 + 1543 ], "stddev_pop": [ - 1442 + 1545 ], "stddev_samp": [ - 1444 + 1547 ], "sum": [ - 1448 + 1551 ], "var_pop": [ - 1452 + 1555 ], "var_samp": [ - 1454 + 1557 ], "variance": [ - 1456 + 1559 ], "__typename": [ 78 @@ -20881,37 +22505,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1418 + 1521 ], "count": [ - 2660 + 2763 ], "max": [ - 1427 + 1530 ], "min": [ - 1429 + 1532 ], "stddev": [ - 1441 + 1544 ], "stddev_pop": [ - 1443 + 1546 ], "stddev_samp": [ - 1445 + 1548 ], "sum": [ - 1449 + 1552 ], "var_pop": [ - 1453 + 1556 ], "var_samp": [ - 1455 + 1558 ], "variance": [ - 1457 + 1560 ], "__typename": [ 78 @@ -20919,22 +22543,22 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1531 + 1634 ], "cpu_governor_info": [ - 1531 + 1634 ], "cs2_launch_options": [ - 1531 + 1634 ], "cs2_video_settings": [ - 1531 + 1634 ], "gpu_info": [ - 1531 + 1634 ], "shader_bake_status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -20942,10 +22566,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1425 + 1528 ], "on_conflict": [ - 1432 + 1535 ], "__typename": [ 78 @@ -21000,40 +22624,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -21041,13 +22665,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1419 + 1522 ], "_not": [ - 1419 + 1522 ], "_or": [ - 1419 + 1522 ], "available_server_count": [ 39 @@ -21059,10 +22683,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1533 + 1636 ], "cpu_governor_info": [ - 1533 + 1636 ], "cpu_sockets": [ 39 @@ -21071,10 +22695,10 @@ export default { 39 ], "cs2_launch_options": [ - 1533 + 1636 ], "cs2_video_settings": [ - 1533 + 1636 ], "csgo_build_id": [ 39 @@ -21089,10 +22713,10 @@ export default { 39 ], "e_region": [ - 3709 + 3812 ], "e_status": [ - 589 + 609 ], "enabled": [ 4 @@ -21110,7 +22734,7 @@ export default { 4 ], "gpu_info": [ - 1533 + 1636 ], "gpu_rendering_enabled": [ 4 @@ -21125,13 +22749,13 @@ export default { 80 ], "lan_ip": [ - 1528 + 1631 ], "node_ip": [ - 1528 + 1631 ], "offline_at": [ - 4204 + 4307 ], "pin_build_id": [ 39 @@ -21143,25 +22767,25 @@ export default { 80 ], "pinned_version": [ - 1463 + 1566 ], "plugin_supported": [ 4 ], "public_ip": [ - 1528 + 1631 ], "region": [ 80 ], "servers": [ - 3743 + 3846 ], "servers_aggregate": [ - 3734 + 3837 ], "shader_bake_progress": [ - 2659 + 2762 ], "shader_bake_progress_stage": [ 80 @@ -21170,13 +22794,13 @@ export default { 80 ], "shader_bake_status_history": [ - 1533 + 1636 ], "start_port_range": [ 39 ], "status": [ - 592 + 612 ], "supports_cpu_pinning": [ 4 @@ -21194,7 +22818,7 @@ export default { 80 ], "version": [ - 1463 + 1566 ], "__typename": [ 78 @@ -21302,7 +22926,7 @@ export default { 38 ], "shader_bake_progress": [ - 2658 + 2761 ], "start_port_range": [ 38 @@ -21319,10 +22943,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1531 + 1634 ], "cpu_governor_info": [ - 1531 + 1634 ], "cpu_sockets": [ 38 @@ -21331,10 +22955,10 @@ export default { 38 ], "cs2_launch_options": [ - 1531 + 1634 ], "cs2_video_settings": [ - 1531 + 1634 ], "csgo_build_id": [ 38 @@ -21349,10 +22973,10 @@ export default { 38 ], "e_region": [ - 3715 + 3818 ], "e_status": [ - 597 + 617 ], "enabled": [ 3 @@ -21370,7 +22994,7 @@ export default { 3 ], "gpu_info": [ - 1531 + 1634 ], "gpu_rendering_enabled": [ 3 @@ -21385,13 +23009,13 @@ export default { 78 ], "lan_ip": [ - 1527 + 1630 ], "node_ip": [ - 1527 + 1630 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -21403,19 +23027,19 @@ export default { 78 ], "pinned_version": [ - 1473 + 1576 ], "public_ip": [ - 1527 + 1630 ], "region": [ 78 ], "servers": [ - 3740 + 3843 ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -21424,13 +23048,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1531 + 1634 ], "start_port_range": [ 38 ], "status": [ - 591 + 611 ], "supports_cpu_pinning": [ 3 @@ -21445,7 +23069,7 @@ export default { 78 ], "version": [ - 1473 + 1576 ], "__typename": [ 78 @@ -21489,7 +23113,7 @@ export default { 78 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -21504,7 +23128,7 @@ export default { 78 ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -21530,70 +23154,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "pin_plugin_runtime": [ - 2660 + 2763 ], "pin_plugin_version": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "shader_bake_progress_stage": [ - 2660 + 2763 ], "shader_bake_status": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "token": [ - 2660 + 2763 ], "update_status": [ - 2660 + 2763 ], "__typename": [ 78 @@ -21637,7 +23261,7 @@ export default { 78 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -21652,7 +23276,7 @@ export default { 78 ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -21678,70 +23302,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "pin_plugin_runtime": [ - 2660 + 2763 ], "pin_plugin_version": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "shader_bake_progress_stage": [ - 2660 + 2763 ], "shader_bake_status": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "token": [ - 2660 + 2763 ], "update_status": [ - 2660 + 2763 ], "__typename": [ 78 @@ -21752,7 +23376,7 @@ export default { 38 ], "returning": [ - 1407 + 1510 ], "__typename": [ 78 @@ -21760,10 +23384,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1425 + 1528 ], "on_conflict": [ - 1432 + 1535 ], "__typename": [ 78 @@ -21771,13 +23395,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1420 + 1523 ], "update_columns": [ - 1450 + 1553 ], "where": [ - 1419 + 1522 ], "__typename": [ 78 @@ -21785,148 +23409,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2660 + 2763 ], "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_frequency_info": [ - 2660 + 2763 ], "cpu_governor_info": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "cs2_launch_options": [ - 2660 + 2763 ], "cs2_video_settings": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "e_region": [ - 3717 + 3820 ], "e_status": [ - 599 + 619 ], "enabled": [ - 2660 + 2763 ], "enabled_for_match_making": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "gpu": [ - 2660 + 2763 ], "gpu_demos_enabled": [ - 2660 + 2763 ], "gpu_info": [ - 2660 + 2763 ], "gpu_rendering_enabled": [ - 2660 + 2763 ], "gpu_streaming_enabled": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "lan_ip": [ - 2660 + 2763 ], "node_ip": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "pin_plugin_runtime": [ - 2660 + 2763 ], "pin_plugin_version": [ - 2660 + 2763 ], "pinned_version": [ - 1475 + 1578 ], "plugin_supported": [ - 2660 + 2763 ], "public_ip": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "servers_aggregate": [ - 3739 + 3842 ], "shader_bake_progress": [ - 2660 + 2763 ], "shader_bake_progress_stage": [ - 2660 + 2763 ], "shader_bake_status": [ - 2660 + 2763 ], "shader_bake_status_history": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "supports_cpu_pinning": [ - 2660 + 2763 ], "supports_low_latency": [ - 2660 + 2763 ], "token": [ - 2660 + 2763 ], "total_server_count": [ - 2660 + 2763 ], "update_status": [ - 2660 + 2763 ], "version": [ - 1475 + 1578 ], "__typename": [ 78 @@ -21942,22 +23566,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1531 + 1634 ], "cpu_governor_info": [ - 1531 + 1634 ], "cs2_launch_options": [ - 1531 + 1634 ], "cs2_video_settings": [ - 1531 + 1634 ], "gpu_info": [ - 1531 + 1634 ], "shader_bake_status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -21974,10 +23598,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1531 + 1634 ], "cpu_governor_info": [ - 1531 + 1634 ], "cpu_sockets": [ 38 @@ -21986,10 +23610,10 @@ export default { 38 ], "cs2_launch_options": [ - 1531 + 1634 ], "cs2_video_settings": [ - 1531 + 1634 ], "csgo_build_id": [ 38 @@ -22019,7 +23643,7 @@ export default { 3 ], "gpu_info": [ - 1531 + 1634 ], "gpu_rendering_enabled": [ 3 @@ -22034,13 +23658,13 @@ export default { 78 ], "lan_ip": [ - 1527 + 1630 ], "node_ip": [ - 1527 + 1630 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -22052,13 +23676,13 @@ export default { 78 ], "public_ip": [ - 1527 + 1630 ], "region": [ 78 ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -22067,13 +23691,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1531 + 1634 ], "start_port_range": [ 38 ], "status": [ - 591 + 611 ], "supports_cpu_pinning": [ 3 @@ -22140,40 +23764,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22228,40 +23852,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22316,40 +23940,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22357,7 +23981,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1447 + 1550 ], "ordering": [ 236 @@ -22374,10 +23998,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1531 + 1634 ], "cpu_governor_info": [ - 1531 + 1634 ], "cpu_sockets": [ 38 @@ -22386,10 +24010,10 @@ export default { 38 ], "cs2_launch_options": [ - 1531 + 1634 ], "cs2_video_settings": [ - 1531 + 1634 ], "csgo_build_id": [ 38 @@ -22419,7 +24043,7 @@ export default { 3 ], "gpu_info": [ - 1531 + 1634 ], "gpu_rendering_enabled": [ 3 @@ -22434,13 +24058,13 @@ export default { 78 ], "lan_ip": [ - 1527 + 1630 ], "node_ip": [ - 1527 + 1630 ], "offline_at": [ - 4203 + 4306 ], "pin_build_id": [ 38 @@ -22452,13 +24076,13 @@ export default { 78 ], "public_ip": [ - 1527 + 1630 ], "region": [ 78 ], "shader_bake_progress": [ - 2658 + 2761 ], "shader_bake_progress_stage": [ 78 @@ -22467,13 +24091,13 @@ export default { 78 ], "shader_bake_status_history": [ - 1531 + 1634 ], "start_port_range": [ 38 ], "status": [ - 591 + 611 ], "supports_cpu_pinning": [ 3 @@ -22526,7 +24150,7 @@ export default { 38 ], "shader_bake_progress": [ - 2658 + 2761 ], "start_port_range": [ 38 @@ -22540,40 +24164,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22582,28 +24206,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1415 + 1518 ], "_delete_at_path": [ - 1421 + 1524 ], "_delete_elem": [ - 1422 + 1525 ], "_delete_key": [ - 1423 + 1526 ], "_inc": [ - 1424 + 1527 ], "_prepend": [ - 1435 + 1538 ], "_set": [ - 1439 + 1542 ], "where": [ - 1419 + 1522 ], "__typename": [ 78 @@ -22658,40 +24282,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22746,40 +24370,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22834,40 +24458,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2660 + 2763 ], "cpu_cores_per_socket": [ - 2660 + 2763 ], "cpu_sockets": [ - 2660 + 2763 ], "cpu_threads_per_core": [ - 2660 + 2763 ], "csgo_build_id": [ - 2660 + 2763 ], "demo_network_limiter": [ - 2660 + 2763 ], "disk_available_gb": [ - 2660 + 2763 ], "disk_used_percent": [ - 2660 + 2763 ], "end_port_range": [ - 2660 + 2763 ], "pin_build_id": [ - 2660 + 2763 ], "shader_bake_progress": [ - 2660 + 2763 ], "start_port_range": [ - 2660 + 2763 ], "__typename": [ 78 @@ -22887,7 +24511,7 @@ export default { 78 ], "downloads": [ - 1531, + 1634, { "path": [ 78 @@ -22895,7 +24519,7 @@ export default { } ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -22906,10 +24530,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1460 + 1563 ], "nodes": [ - 1458 + 1561 ], "__typename": [ 78 @@ -22917,13 +24541,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1462 + 1565 ], "count": [ 38, { "columns": [ - 1478, + 1581, "[game_versions_select_column!]" ], "distinct": [ @@ -22932,31 +24556,31 @@ export default { } ], "max": [ - 1470 + 1573 ], "min": [ - 1471 + 1574 ], "stddev": [ - 1480 + 1583 ], "stddev_pop": [ - 1481 + 1584 ], "stddev_samp": [ - 1482 + 1585 ], "sum": [ - 1485 + 1588 ], "var_pop": [ - 1488 + 1591 ], "var_samp": [ - 1489 + 1592 ], "variance": [ - 1490 + 1593 ], "__typename": [ 78 @@ -22964,7 +24588,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1531 + 1634 ], "__typename": [ 78 @@ -22980,13 +24604,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1463 + 1566 ], "_not": [ - 1463 + 1566 ], "_or": [ - 1463 + 1566 ], "build_id": [ 39 @@ -23001,10 +24625,10 @@ export default { 80 ], "downloads": [ - 1533 + 1636 ], "updated_at": [ - 4204 + 4307 ], "version": [ 80 @@ -23060,10 +24684,10 @@ export default { 78 ], "downloads": [ - 1531 + 1634 ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -23080,7 +24704,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -23097,7 +24721,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -23111,7 +24735,7 @@ export default { 38 ], "returning": [ - 1458 + 1561 ], "__typename": [ 78 @@ -23119,10 +24743,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1469 + 1572 ], "on_conflict": [ - 1474 + 1577 ], "__typename": [ 78 @@ -23130,13 +24754,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1464 + 1567 ], "update_columns": [ - 1486 + 1589 ], "where": [ - 1463 + 1566 ], "__typename": [ 78 @@ -23144,25 +24768,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2660 + 2763 ], "current": [ - 2660 + 2763 ], "cvars": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "downloads": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "version": [ - 2660 + 2763 ], "__typename": [ 78 @@ -23178,7 +24802,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1531 + 1634 ], "__typename": [ 78 @@ -23199,10 +24823,10 @@ export default { 78 ], "downloads": [ - 1531 + 1634 ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -23237,7 +24861,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1484 + 1587 ], "ordering": [ 236 @@ -23260,10 +24884,10 @@ export default { 78 ], "downloads": [ - 1531 + 1634 ], "updated_at": [ - 4203 + 4306 ], "version": [ 78 @@ -23283,28 +24907,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1461 + 1564 ], "_delete_at_path": [ - 1465 + 1568 ], "_delete_elem": [ - 1466 + 1569 ], "_delete_key": [ - 1467 + 1570 ], "_inc": [ - 1468 + 1571 ], "_prepend": [ - 1477 + 1580 ], "_set": [ - 1479 + 1582 ], "where": [ - 1463 + 1566 ], "__typename": [ 78 @@ -23342,13 +24966,13 @@ export default { 38 ], "game_version": [ - 1458 + 1561 ], "id": [ - 4641 + 4744 ], "results": [ - 1531, + 1634, { "path": [ 78 @@ -23359,7 +24983,7 @@ export default { 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23367,10 +24991,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1493 + 1596 ], "nodes": [ - 1491 + 1594 ], "__typename": [ 78 @@ -23378,13 +25002,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1495 + 1598 ], "count": [ 38, { "columns": [ - 1510, + 1613, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -23393,31 +25017,31 @@ export default { } ], "max": [ - 1503 + 1606 ], "min": [ - 1504 + 1607 ], "stddev": [ - 1512 + 1615 ], "stddev_pop": [ - 1513 + 1616 ], "stddev_samp": [ - 1514 + 1617 ], "sum": [ - 1517 + 1620 ], "var_pop": [ - 1520 + 1623 ], "var_samp": [ - 1521 + 1624 ], "variance": [ - 1522 + 1625 ], "__typename": [ 78 @@ -23425,7 +25049,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1531 + 1634 ], "__typename": [ 78 @@ -23441,13 +25065,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1496 + 1599 ], "_not": [ - 1496 + 1599 ], "_or": [ - 1496 + 1599 ], "branch": [ 80 @@ -23456,19 +25080,19 @@ export default { 39 ], "game_version": [ - 1463 + 1566 ], "id": [ - 4643 + 4746 ], "results": [ - 1533 + 1636 ], "status": [ 80 ], "validated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -23515,19 +25139,19 @@ export default { 38 ], "game_version": [ - 1473 + 1576 ], "id": [ - 4641 + 4744 ], "results": [ - 1531 + 1634 ], "status": [ 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23541,13 +25165,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "status": [ 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23561,13 +25185,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "status": [ 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23578,7 +25202,7 @@ export default { 38 ], "returning": [ - 1491 + 1594 ], "__typename": [ 78 @@ -23586,13 +25210,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1497 + 1600 ], "update_columns": [ - 1518 + 1621 ], "where": [ - 1496 + 1599 ], "__typename": [ 78 @@ -23600,25 +25224,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2660 + 2763 ], "build_id": [ - 2660 + 2763 ], "game_version": [ - 1475 + 1578 ], "id": [ - 2660 + 2763 ], "results": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "validated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -23626,7 +25250,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -23634,7 +25258,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1531 + 1634 ], "__typename": [ 78 @@ -23649,16 +25273,16 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "results": [ - 1531 + 1634 ], "status": [ 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23690,7 +25314,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1516 + 1619 ], "ordering": [ 236 @@ -23707,16 +25331,16 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "results": [ - 1531 + 1634 ], "status": [ 78 ], "validated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -23733,28 +25357,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1494 + 1597 ], "_delete_at_path": [ - 1498 + 1601 ], "_delete_elem": [ - 1499 + 1602 ], "_delete_key": [ - 1500 + 1603 ], "_inc": [ - 1501 + 1604 ], "_prepend": [ - 1509 + 1612 ], "_set": [ - 1511 + 1614 ], "where": [ - 1496 + 1599 ], "__typename": [ 78 @@ -23789,7 +25413,7 @@ export default { 78 ], "_event_id": [ - 4641 + 4744 ], "_match_type": [ 78 @@ -23815,7 +25439,7 @@ export default { 78 ], "_season_id": [ - 4641 + 4744 ], "_window_days": [ 38 @@ -23829,7 +25453,7 @@ export default { 78 ], "_league_season_id": [ - 4641 + 4744 ], "_role": [ 78 @@ -23852,7 +25476,7 @@ export default { 78 ], "_season_id": [ - 4641 + 4744 ], "_window_days": [ 38 @@ -23864,31 +25488,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1527 + 1630 ], "_gt": [ - 1527 + 1630 ], "_gte": [ - 1527 + 1630 ], "_in": [ - 1527 + 1630 ], "_is_null": [ 3 ], "_lt": [ - 1527 + 1630 ], "_lte": [ - 1527 + 1630 ], "_neq": [ - 1527 + 1630 ], "_nin": [ - 1527 + 1630 ], "__typename": [ 78 @@ -23897,31 +25521,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1529 + 1632 ], "_gt": [ - 1529 + 1632 ], "_gte": [ - 1529 + 1632 ], "_in": [ - 1529 + 1632 ], "_is_null": [ 3 ], "_lt": [ - 1529 + 1632 ], "_lte": [ - 1529 + 1632 ], "_neq": [ - 1529 + 1632 ], "_nin": [ - 1529 + 1632 ], "__typename": [ 78 @@ -23938,22 +25562,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1532 + 1635 ], "_contained_in": [ - 1531 + 1634 ], "_contains": [ - 1531 + 1634 ], "_eq": [ - 1531 + 1634 ], "_gt": [ - 1531 + 1634 ], "_gte": [ - 1531 + 1634 ], "_has_key": [ 78 @@ -23965,22 +25589,22 @@ export default { 78 ], "_in": [ - 1531 + 1634 ], "_is_null": [ 3 ], "_lt": [ - 1531 + 1634 ], "_lte": [ - 1531 + 1634 ], "_neq": [ - 1531 + 1634 ], "_nin": [ - 1531 + 1634 ], "__typename": [ 78 @@ -24003,13 +25627,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24017,10 +25641,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1536 + 1639 ], "nodes": [ - 1534 + 1637 ], "__typename": [ 78 @@ -24028,13 +25652,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1537 + 1640 ], "count": [ 38, { "columns": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -24043,31 +25667,31 @@ export default { } ], "max": [ - 1541 + 1644 ], "min": [ - 1542 + 1645 ], "stddev": [ - 1547 + 1650 ], "stddev_pop": [ - 1548 + 1651 ], "stddev_samp": [ - 1549 + 1652 ], "sum": [ - 1552 + 1655 ], "var_pop": [ - 1554 + 1657 ], "var_samp": [ - 1555 + 1658 ], "variance": [ - 1556 + 1659 ], "__typename": [ 78 @@ -24092,13 +25716,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1538 + 1641 ], "_not": [ - 1538 + 1641 ], "_or": [ - 1538 + 1641 ], "matches_played": [ 39 @@ -24116,13 +25740,13 @@ export default { 80 ], "secondary_value": [ - 1379 + 1482 ], "tertiary_value": [ - 1379 + 1482 ], "value": [ - 1379 + 1482 ], "__typename": [ 78 @@ -24133,13 +25757,13 @@ export default { 38 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24162,13 +25786,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24191,13 +25815,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24220,13 +25844,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24237,7 +25861,7 @@ export default { 38 ], "returning": [ - 1534 + 1637 ], "__typename": [ 78 @@ -24245,28 +25869,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2660 + 2763 ], "player_avatar_url": [ - 2660 + 2763 ], "player_country": [ - 2660 + 2763 ], "player_name": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "secondary_value": [ - 2660 + 2763 ], "tertiary_value": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -24290,13 +25914,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24355,7 +25979,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1551 + 1654 ], "ordering": [ 236 @@ -24381,13 +26005,13 @@ export default { 78 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24398,13 +26022,13 @@ export default { 38 ], "secondary_value": [ - 1378 + 1481 ], "tertiary_value": [ - 1378 + 1481 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -24412,13 +26036,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1539 + 1642 ], "_set": [ - 1546 + 1649 ], "where": [ - 1538 + 1641 ], "__typename": [ 78 @@ -24477,10 +26101,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4641 + 4744 ], "_winning_tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -24488,19 +26112,19 @@ export default { }, "league_divisions": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "season_divisions": [ - 1709, + 1812, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -24510,19 +26134,19 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "season_divisions_aggregate": [ - 1710, + 1813, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -24532,16 +26156,16 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24549,10 +26173,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1560 + 1663 ], "nodes": [ - 1558 + 1661 ], "__typename": [ 78 @@ -24560,13 +26184,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1561 + 1664 ], "count": [ 38, { "columns": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "distinct": [ @@ -24575,31 +26199,31 @@ export default { } ], "max": [ - 1566 + 1669 ], "min": [ - 1567 + 1670 ], "stddev": [ - 1575 + 1678 ], "stddev_pop": [ - 1576 + 1679 ], "stddev_samp": [ - 1577 + 1680 ], "sum": [ - 1580 + 1683 ], "var_pop": [ - 1583 + 1686 ], "var_samp": [ - 1584 + 1687 ], "variance": [ - 1585 + 1688 ], "__typename": [ 78 @@ -24615,31 +26239,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1562 + 1665 ], "_not": [ - 1562 + 1665 ], "_or": [ - 1562 + 1665 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "name": [ 80 ], "season_divisions": [ - 1716 + 1819 ], "season_divisions_aggregate": [ - 1711 + 1814 ], "tier": [ - 3797 + 3900 ], "__typename": [ 78 @@ -24648,7 +26272,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24656,19 +26280,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "season_divisions": [ - 1715 + 1818 ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24676,16 +26300,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24693,16 +26317,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24713,7 +26337,7 @@ export default { 38 ], "returning": [ - 1558 + 1661 ], "__typename": [ 78 @@ -24721,10 +26345,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1565 + 1668 ], "on_conflict": [ - 1570 + 1673 ], "__typename": [ 78 @@ -24732,13 +26356,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1563 + 1666 ], "update_columns": [ - 1581 + 1684 ], "where": [ - 1562 + 1665 ], "__typename": [ 78 @@ -24746,19 +26370,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "season_divisions_aggregate": [ - 1714 + 1817 ], "tier": [ - 2660 + 2763 ], "__typename": [ 78 @@ -24766,7 +26390,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -24775,16 +26399,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24816,7 +26440,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1579 + 1682 ], "ordering": [ 236 @@ -24827,16 +26451,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 ], "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24844,7 +26468,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3796 + 3899 ], "__typename": [ 78 @@ -24853,13 +26477,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1564 + 1667 ], "_set": [ - 1574 + 1677 ], "where": [ - 1562 + 1665 ], "__typename": [ 78 @@ -24891,25 +26515,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "season": [ - 1734 + 1837 ], "week_number": [ 38 @@ -24920,10 +26544,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1590 + 1693 ], "nodes": [ - 1586 + 1689 ], "__typename": [ 78 @@ -24931,7 +26555,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1589 + 1692 ], "__typename": [ 78 @@ -24939,13 +26563,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1607 + 1710 ], "distinct": [ 3 ], "filter": [ - 1595 + 1698 ], "predicate": [ 39 @@ -24956,13 +26580,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1593 + 1696 ], "count": [ 38, { "columns": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -24971,31 +26595,31 @@ export default { } ], "max": [ - 1599 + 1702 ], "min": [ - 1601 + 1704 ], "stddev": [ - 1609 + 1712 ], "stddev_pop": [ - 1611 + 1714 ], "stddev_samp": [ - 1613 + 1716 ], "sum": [ - 1617 + 1720 ], "var_pop": [ - 1621 + 1724 ], "var_samp": [ - 1623 + 1726 ], "variance": [ - 1625 + 1728 ], "__typename": [ 78 @@ -25003,37 +26627,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1594 + 1697 ], "count": [ - 2660 + 2763 ], "max": [ - 1600 + 1703 ], "min": [ - 1602 + 1705 ], "stddev": [ - 1610 + 1713 ], "stddev_pop": [ - 1612 + 1715 ], "stddev_samp": [ - 1614 + 1717 ], "sum": [ - 1618 + 1721 ], "var_pop": [ - 1622 + 1725 ], "var_samp": [ - 1624 + 1727 ], "variance": [ - 1626 + 1729 ], "__typename": [ 78 @@ -25041,10 +26665,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1598 + 1701 ], "on_conflict": [ - 1604 + 1707 ], "__typename": [ 78 @@ -25060,7 +26684,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25068,34 +26692,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1595 + 1698 ], "_not": [ - 1595 + 1698 ], "_or": [ - 1595 + 1698 ], "closes_at": [ - 4204 + 4307 ], "created_at": [ - 4204 + 4307 ], "default_match_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "opens_at": [ - 4204 + 4307 ], "season": [ - 1739 + 1842 ], "week_number": [ 39 @@ -25115,25 +26739,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "season": [ - 1749 + 1852 ], "week_number": [ 38 @@ -25144,22 +26768,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "week_number": [ 38 @@ -25170,25 +26794,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25196,22 +26820,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "week_number": [ 38 @@ -25222,25 +26846,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25251,7 +26875,7 @@ export default { 38 ], "returning": [ - 1586 + 1689 ], "__typename": [ 78 @@ -25259,13 +26883,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1596 + 1699 ], "update_columns": [ - 1619 + 1722 ], "where": [ - 1595 + 1698 ], "__typename": [ 78 @@ -25273,28 +26897,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "season": [ - 1751 + 1854 ], "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25302,7 +26926,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25311,22 +26935,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "week_number": [ 38 @@ -25345,7 +26969,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25361,7 +26985,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25377,7 +27001,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25385,7 +27009,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1616 + 1719 ], "ordering": [ 236 @@ -25396,22 +27020,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "week_number": [ 38 @@ -25430,7 +27054,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25439,13 +27063,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1597 + 1700 ], "_set": [ - 1608 + 1711 ], "where": [ - 1595 + 1698 ], "__typename": [ 78 @@ -25461,7 +27085,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25477,7 +27101,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25493,7 +27117,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25501,40 +27125,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4203 + 4306 ], "higher_division": [ - 1558 + 1661 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division": [ - 1558 + 1661 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "season": [ - 1734 + 1837 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25542,10 +27166,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1631 + 1734 ], "nodes": [ - 1627 + 1730 ], "__typename": [ 78 @@ -25553,7 +27177,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1630 + 1733 ], "__typename": [ 78 @@ -25561,13 +27185,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1648 + 1751 ], "distinct": [ 3 ], "filter": [ - 1636 + 1739 ], "predicate": [ 39 @@ -25578,13 +27202,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1634 + 1737 ], "count": [ 38, { "columns": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -25593,31 +27217,31 @@ export default { } ], "max": [ - 1640 + 1743 ], "min": [ - 1642 + 1745 ], "stddev": [ - 1650 + 1753 ], "stddev_pop": [ - 1652 + 1755 ], "stddev_samp": [ - 1654 + 1757 ], "sum": [ - 1658 + 1761 ], "var_pop": [ - 1662 + 1765 ], "var_samp": [ - 1664 + 1767 ], "variance": [ - 1666 + 1769 ], "__typename": [ 78 @@ -25625,37 +27249,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1635 + 1738 ], "count": [ - 2660 + 2763 ], "max": [ - 1641 + 1744 ], "min": [ - 1643 + 1746 ], "stddev": [ - 1651 + 1754 ], "stddev_pop": [ - 1653 + 1756 ], "stddev_samp": [ - 1655 + 1758 ], "sum": [ - 1659 + 1762 ], "var_pop": [ - 1663 + 1766 ], "var_samp": [ - 1665 + 1768 ], "variance": [ - 1667 + 1770 ], "__typename": [ 78 @@ -25663,10 +27287,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1639 + 1742 ], "on_conflict": [ - 1645 + 1748 ], "__typename": [ 78 @@ -25682,7 +27306,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25690,49 +27314,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1636 + 1739 ], "_not": [ - 1636 + 1739 ], "_or": [ - 1636 + 1739 ], "created_at": [ - 4204 + 4307 ], "higher_division": [ - 1562 + 1665 ], "higher_division_id": [ - 4643 + 4746 ], "higher_slots": [ 39 ], "id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "lower_division": [ - 1562 + 1665 ], "lower_division_id": [ - 4643 + 4746 ], "resolved_at": [ - 4204 + 4307 ], "season": [ - 1739 + 1842 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -25749,40 +27373,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4203 + 4306 ], "higher_division": [ - 1569 + 1672 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division": [ - 1569 + 1672 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "season": [ - 1749 + 1852 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25790,28 +27414,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4203 + 4306 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25819,28 +27443,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2660 + 2763 ], "higher_division_id": [ - 2660 + 2763 ], "higher_slots": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "lower_division_id": [ - 2660 + 2763 ], "resolved_at": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25848,28 +27472,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4203 + 4306 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25877,28 +27501,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2660 + 2763 ], "higher_division_id": [ - 2660 + 2763 ], "higher_slots": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "lower_division_id": [ - 2660 + 2763 ], "resolved_at": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25909,7 +27533,7 @@ export default { 38 ], "returning": [ - 1627 + 1730 ], "__typename": [ 78 @@ -25917,13 +27541,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1637 + 1740 ], "update_columns": [ - 1660 + 1763 ], "where": [ - 1636 + 1739 ], "__typename": [ 78 @@ -25931,40 +27555,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2660 + 2763 ], "higher_division": [ - 1571 + 1674 ], "higher_division_id": [ - 2660 + 2763 ], "higher_slots": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "lower_division": [ - 1571 + 1674 ], "lower_division_id": [ - 2660 + 2763 ], "resolved_at": [ - 2660 + 2763 ], "season": [ - 1751 + 1854 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -25972,7 +27596,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -25981,28 +27605,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4203 + 4306 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26018,7 +27642,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26034,7 +27658,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26050,7 +27674,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26058,7 +27682,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1657 + 1760 ], "ordering": [ 236 @@ -26069,28 +27693,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "higher_division_id": [ - 4641 + 4744 ], "higher_slots": [ 38 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "lower_division_id": [ - 4641 + 4744 ], "resolved_at": [ - 4203 + 4306 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26106,7 +27730,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26115,13 +27739,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1638 + 1741 ], "_set": [ - 1649 + 1752 ], "where": [ - 1636 + 1739 ], "__typename": [ 78 @@ -26137,7 +27761,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26153,7 +27777,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26169,7 +27793,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26177,46 +27801,46 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4205 + 4308 ], "created_at": [ - 4203 + 4306 ], "e_proposal_status": [ - 628 + 648 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by": [ - 3618 + 3721 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by": [ - 3618 + 3721 ], "responded_by_steam_id": [ 180 ], "status": [ - 633 + 653 ], "team_season": [ - 1849 + 1952 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26224,10 +27848,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1672 + 1775 ], "nodes": [ - 1668 + 1771 ], "__typename": [ 78 @@ -26235,7 +27859,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1671 + 1774 ], "__typename": [ 78 @@ -26243,13 +27867,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1689 + 1792 ], "distinct": [ 3 ], "filter": [ - 1677 + 1780 ], "predicate": [ 39 @@ -26260,13 +27884,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1675 + 1778 ], "count": [ 38, { "columns": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -26275,31 +27899,31 @@ export default { } ], "max": [ - 1681 + 1784 ], "min": [ - 1683 + 1786 ], "stddev": [ - 1691 + 1794 ], "stddev_pop": [ - 1693 + 1796 ], "stddev_samp": [ - 1695 + 1798 ], "sum": [ - 1699 + 1802 ], "var_pop": [ - 1703 + 1806 ], "var_samp": [ - 1705 + 1808 ], "variance": [ - 1707 + 1810 ], "__typename": [ 78 @@ -26307,37 +27931,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1676 + 1779 ], "count": [ - 2660 + 2763 ], "max": [ - 1682 + 1785 ], "min": [ - 1684 + 1787 ], "stddev": [ - 1692 + 1795 ], "stddev_pop": [ - 1694 + 1797 ], "stddev_samp": [ - 1696 + 1799 ], "sum": [ - 1700 + 1803 ], "var_pop": [ - 1704 + 1807 ], "var_samp": [ - 1706 + 1809 ], "variance": [ - 1708 + 1811 ], "__typename": [ 78 @@ -26345,10 +27969,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1680 + 1783 ], "on_conflict": [ - 1686 + 1789 ], "__typename": [ 78 @@ -26367,10 +27991,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26378,55 +28002,55 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1677 + 1780 ], "_not": [ - 1677 + 1780 ], "_or": [ - 1677 + 1780 ], "bracket": [ - 4216 + 4319 ], "created_at": [ - 4204 + 4307 ], "e_proposal_status": [ - 631 + 651 ], "id": [ - 4643 + 4746 ], "message": [ 80 ], "proposed_by": [ - 3622 + 3725 ], "proposed_by_league_team_season_id": [ - 4643 + 4746 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4204 + 4307 ], "responded_by": [ - 3622 + 3725 ], "responded_by_steam_id": [ 182 ], "status": [ - 634 + 654 ], "team_season": [ - 1858 + 1961 ], "tournament_bracket_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -26446,46 +28070,46 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4225 + 4328 ], "created_at": [ - 4203 + 4306 ], "e_proposal_status": [ - 639 + 659 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by": [ - 3629 + 3732 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by": [ - 3629 + 3732 ], "responded_by_steam_id": [ 180 ], "status": [ - 633 + 653 ], "team_season": [ - 1867 + 1970 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26493,28 +28117,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26522,28 +28146,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "proposed_by_league_team_season_id": [ - 2660 + 2763 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_time": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "tournament_bracket_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26551,28 +28175,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26580,28 +28204,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "proposed_by_league_team_season_id": [ - 2660 + 2763 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_time": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "tournament_bracket_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26612,7 +28236,7 @@ export default { 38 ], "returning": [ - 1668 + 1771 ], "__typename": [ 78 @@ -26620,13 +28244,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1678 + 1781 ], "update_columns": [ - 1701 + 1804 ], "where": [ - 1677 + 1780 ], "__typename": [ 78 @@ -26634,46 +28258,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4227 + 4330 ], "created_at": [ - 2660 + 2763 ], "e_proposal_status": [ - 641 + 661 ], "id": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "proposed_by": [ - 3631 + 3734 ], "proposed_by_league_team_season_id": [ - 2660 + 2763 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_time": [ - 2660 + 2763 ], "responded_by": [ - 3631 + 3734 ], "responded_by_steam_id": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "team_season": [ - 1869 + 1972 ], "tournament_bracket_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26681,7 +28305,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26690,31 +28314,31 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by_steam_id": [ 180 ], "status": [ - 633 + 653 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26733,10 +28357,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26755,10 +28379,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26777,10 +28401,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26788,7 +28412,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1698 + 1801 ], "ordering": [ 236 @@ -26799,31 +28423,31 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4203 + 4306 ], "responded_by_steam_id": [ 180 ], "status": [ - 633 + 653 ], "tournament_bracket_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -26842,10 +28466,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26854,13 +28478,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1679 + 1782 ], "_set": [ - 1690 + 1793 ], "where": [ - 1677 + 1780 ], "__typename": [ 78 @@ -26879,10 +28503,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26901,10 +28525,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26923,10 +28547,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "responded_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -26934,28 +28558,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4203 + 4306 ], "division": [ - 1558 + 1661 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "season": [ - 1734 + 1837 ], "standings": [ - 4713, + 4826, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -26965,19 +28589,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "standings_aggregate": [ - 4714, + 4827, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -26987,19 +28611,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27007,10 +28631,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1713 + 1816 ], "nodes": [ - 1709 + 1812 ], "__typename": [ 78 @@ -27018,7 +28642,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1712 + 1815 ], "__typename": [ 78 @@ -27026,13 +28650,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1728 + 1831 ], "distinct": [ 3 ], "filter": [ - 1716 + 1819 ], "predicate": [ 39 @@ -27046,7 +28670,7 @@ export default { 38, { "columns": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -27055,10 +28679,10 @@ export default { } ], "max": [ - 1719 + 1822 ], "min": [ - 1721 + 1824 ], "__typename": [ 78 @@ -27066,13 +28690,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 1720 + 1823 ], "min": [ - 1722 + 1825 ], "__typename": [ 78 @@ -27080,10 +28704,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1718 + 1821 ], "on_conflict": [ - 1725 + 1828 ], "__typename": [ 78 @@ -27091,43 +28715,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1716 + 1819 ], "_not": [ - 1716 + 1819 ], "_or": [ - 1716 + 1819 ], "created_at": [ - 4204 + 4307 ], "division": [ - 1562 + 1665 ], "id": [ - 4643 + 4746 ], "league_division_id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "season": [ - 1739 + 1842 ], "standings": [ - 4722 + 4835 ], "standings_aggregate": [ - 4715 + 4828 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -27136,31 +28760,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4203 + 4306 ], "division": [ - 1569 + 1672 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "season": [ - 1749 + 1852 ], "standings": [ - 4719 + 4832 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27168,19 +28792,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27188,19 +28812,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -27208,19 +28832,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27228,19 +28852,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -27251,7 +28875,7 @@ export default { 38 ], "returning": [ - 1709 + 1812 ], "__typename": [ 78 @@ -27259,10 +28883,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1718 + 1821 ], "on_conflict": [ - 1725 + 1828 ], "__typename": [ 78 @@ -27270,13 +28894,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1717 + 1820 ], "update_columns": [ - 1732 + 1835 ], "where": [ - 1716 + 1819 ], "__typename": [ 78 @@ -27284,31 +28908,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2660 + 2763 ], "division": [ - 1571 + 1674 ], "id": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "season": [ - 1751 + 1854 ], "standings_aggregate": [ - 4718 + 4831 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -27316,7 +28940,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27325,19 +28949,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27345,7 +28969,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1731 + 1834 ], "ordering": [ 236 @@ -27356,19 +28980,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "league_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -27377,10 +29001,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1729 + 1832 ], "where": [ - 1716 + 1819 ], "__typename": [ 78 @@ -27394,7 +29018,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -27409,13 +29033,13 @@ export default { 38 ], "e_league_season_status": [ - 670 + 690 ], "games_per_week": [ 38 ], "id": [ - 4641 + 4744 ], "is_league_admin": [ 3 @@ -27424,13 +29048,13 @@ export default { 3 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks": [ - 1586, + 1689, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -27440,19 +29064,19 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], "match_weeks_aggregate": [ - 1587, + 1690, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -27462,11 +29086,11 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], @@ -27480,10 +29104,10 @@ export default { 38 ], "movements": [ - 1767, + 1870, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -27493,19 +29117,19 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "movements_aggregate": [ - 1768, + 1871, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -27515,19 +29139,19 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "my_registration": [ - 1849, + 1952, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -27537,11 +29161,11 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], @@ -27549,13 +29173,13 @@ export default { 78 ], "options": [ - 2355 + 2458 ], "player_stats": [ - 4746, + 4859, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -27565,19 +29189,19 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], "player_stats_aggregate": [ - 4747, + 4860, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -27587,11 +29211,11 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], @@ -27599,7 +29223,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1531, + 1634, { "path": [ 78 @@ -27610,7 +29234,7 @@ export default { 38 ], "playoff_stage_type": [ - 1123 + 1143 ], "playoff_third_place_match": [ 3 @@ -27619,7 +29243,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1123 + 1143 ], "relegate_count": [ 38 @@ -27628,10 +29252,10 @@ export default { 38 ], "relegation_playoffs": [ - 1627, + 1730, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -27641,19 +29265,19 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], "relegation_playoffs_aggregate": [ - 1628, + 1731, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -27663,11 +29287,11 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], @@ -27675,13 +29299,13 @@ export default { 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_divisions": [ - 1709, + 1812, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -27691,19 +29315,19 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "season_divisions_aggregate": [ - 1710, + 1813, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -27713,11 +29337,11 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], @@ -27725,16 +29349,16 @@ export default { 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "standings": [ - 4713, + 4826, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -27744,19 +29368,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "standings_aggregate": [ - 4714, + 4827, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -27766,25 +29390,25 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "starts_at": [ - 4203 + 4306 ], "status": [ - 675 + 695 ], "team_seasons": [ - 1849, + 1952, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -27794,19 +29418,19 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "team_seasons_aggregate": [ - 1850, + 1953, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -27816,16 +29440,16 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "week_best_of": [ - 1531, + 1634, { "path": [ 78 @@ -27838,10 +29462,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1736 + 1839 ], "nodes": [ - 1734 + 1837 ], "__typename": [ 78 @@ -27849,13 +29473,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1738 + 1841 ], "count": [ 38, { "columns": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "distinct": [ @@ -27864,31 +29488,31 @@ export default { } ], "max": [ - 1746 + 1849 ], "min": [ - 1747 + 1850 ], "stddev": [ - 1756 + 1859 ], "stddev_pop": [ - 1757 + 1860 ], "stddev_samp": [ - 1758 + 1861 ], "sum": [ - 1761 + 1864 ], "var_pop": [ - 1764 + 1867 ], "var_samp": [ - 1765 + 1868 ], "variance": [ - 1766 + 1869 ], "__typename": [ 78 @@ -27896,10 +29520,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1531 + 1634 ], "week_best_of": [ - 1531 + 1634 ], "__typename": [ 78 @@ -27957,13 +29581,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1739 + 1842 ], "_not": [ - 1739 + 1842 ], "_or": [ - 1739 + 1842 ], "auto_regular_season_format": [ 4 @@ -27972,7 +29596,7 @@ export default { 4 ], "created_at": [ - 4204 + 4307 ], "created_by_steam_id": [ 182 @@ -27987,13 +29611,13 @@ export default { 39 ], "e_league_season_status": [ - 673 + 693 ], "games_per_week": [ 39 ], "id": [ - 4643 + 4746 ], "is_league_admin": [ 4 @@ -28002,13 +29626,13 @@ export default { 4 ], "match_options_id": [ - 4643 + 4746 ], "match_weeks": [ - 1595 + 1698 ], "match_weeks_aggregate": [ - 1588 + 1691 ], "match_weeks_count": [ 39 @@ -28020,37 +29644,37 @@ export default { 39 ], "movements": [ - 1776 + 1879 ], "movements_aggregate": [ - 1769 + 1872 ], "my_registration": [ - 1858 + 1961 ], "name": [ 80 ], "options": [ - 2359 + 2462 ], "player_stats": [ - 4765 + 4878 ], "player_stats_aggregate": [ - 4748 + 4861 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1533 + 1636 ], "playoff_seats": [ 39 ], "playoff_stage_type": [ - 1124 + 1144 ], "playoff_third_place_match": [ 4 @@ -28059,7 +29683,7 @@ export default { 39 ], "regular_season_stage_type": [ - 1124 + 1144 ], "relegate_count": [ 39 @@ -28068,52 +29692,52 @@ export default { 39 ], "relegation_playoffs": [ - 1636 + 1739 ], "relegation_playoffs_aggregate": [ - 1629 + 1732 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4204 + 4307 ], "season_divisions": [ - 1716 + 1819 ], "season_divisions_aggregate": [ - 1711 + 1814 ], "season_number": [ 39 ], "signup_closes_at": [ - 4204 + 4307 ], "signup_opens_at": [ - 4204 + 4307 ], "standings": [ - 4722 + 4835 ], "standings_aggregate": [ - 4715 + 4828 ], "starts_at": [ - 4204 + 4307 ], "status": [ - 676 + 696 ], "team_seasons": [ - 1858 + 1961 ], "team_seasons_aggregate": [ - 1851 + 1954 ], "week_best_of": [ - 1533 + 1636 ], "__typename": [ 78 @@ -28208,7 +29832,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -28223,19 +29847,19 @@ export default { 38 ], "e_league_season_status": [ - 681 + 701 ], "games_per_week": [ 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks": [ - 1592 + 1695 ], "match_weeks_count": [ 38 @@ -28247,28 +29871,28 @@ export default { 38 ], "movements": [ - 1773 + 1876 ], "name": [ 78 ], "options": [ - 2366 + 2469 ], "player_stats": [ - 4762 + 4875 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1531 + 1634 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1123 + 1143 ], "playoff_third_place_match": [ 3 @@ -28277,7 +29901,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1123 + 1143 ], "relegate_count": [ 38 @@ -28286,40 +29910,40 @@ export default { 38 ], "relegation_playoffs": [ - 1633 + 1736 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_divisions": [ - 1715 + 1818 ], "season_number": [ 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "standings": [ - 4719 + 4832 ], "starts_at": [ - 4203 + 4306 ], "status": [ - 675 + 695 ], "team_seasons": [ - 1855 + 1958 ], "week_best_of": [ - 1531 + 1634 ], "__typename": [ 78 @@ -28327,7 +29951,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -28345,10 +29969,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks_count": [ 38 @@ -28381,19 +30005,19 @@ export default { 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_number": [ 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -28401,7 +30025,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -28419,10 +30043,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks_count": [ 38 @@ -28455,19 +30079,19 @@ export default { 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_number": [ 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -28478,7 +30102,7 @@ export default { 38 ], "returning": [ - 1734 + 1837 ], "__typename": [ 78 @@ -28486,10 +30110,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1745 + 1848 ], "on_conflict": [ - 1750 + 1853 ], "__typename": [ 78 @@ -28497,13 +30121,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1740 + 1843 ], "update_columns": [ - 1762 + 1865 ], "where": [ - 1739 + 1842 ], "__typename": [ 78 @@ -28511,133 +30135,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2660 + 2763 ], "can_register": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "created_by_steam_id": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "direct_promote_count": [ - 2660 + 2763 ], "direct_relegate_count": [ - 2660 + 2763 ], "e_league_season_status": [ - 683 + 703 ], "games_per_week": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_league_admin": [ - 2660 + 2763 ], "is_roster_locked": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "match_weeks_aggregate": [ - 1591 + 1694 ], "match_weeks_count": [ - 2660 + 2763 ], "max_roster_size": [ - 2660 + 2763 ], "min_roster_size": [ - 2660 + 2763 ], "movements_aggregate": [ - 1772 + 1875 ], "my_registration_aggregate": [ - 1854 + 1957 ], "name": [ - 2660 + 2763 ], "options": [ - 2368 + 2471 ], "player_stats_aggregate": [ - 4761 + 4874 ], "playoff_best_of": [ - 2660 + 2763 ], "playoff_round_best_of": [ - 2660 + 2763 ], "playoff_seats": [ - 2660 + 2763 ], "playoff_stage_type": [ - 2660 + 2763 ], "playoff_third_place_match": [ - 2660 + 2763 ], "promote_count": [ - 2660 + 2763 ], "regular_season_stage_type": [ - 2660 + 2763 ], "relegate_count": [ - 2660 + 2763 ], "relegation_down_count": [ - 2660 + 2763 ], "relegation_playoffs_aggregate": [ - 1632 + 1735 ], "relegation_up_count": [ - 2660 + 2763 ], "roster_lock_at": [ - 2660 + 2763 ], "season_divisions_aggregate": [ - 1714 + 1817 ], "season_number": [ - 2660 + 2763 ], "signup_closes_at": [ - 2660 + 2763 ], "signup_opens_at": [ - 2660 + 2763 ], "standings_aggregate": [ - 4718 + 4831 ], "starts_at": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "team_seasons_aggregate": [ - 1854 + 1957 ], "week_best_of": [ - 2660 + 2763 ], "__typename": [ 78 @@ -28645,7 +30269,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -28653,10 +30277,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1531 + 1634 ], "week_best_of": [ - 1531 + 1634 ], "__typename": [ 78 @@ -28668,7 +30292,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -28686,10 +30310,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks_count": [ 38 @@ -28707,13 +30331,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1531 + 1634 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1123 + 1143 ], "playoff_third_place_match": [ 3 @@ -28722,7 +30346,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1123 + 1143 ], "relegate_count": [ 38 @@ -28734,25 +30358,25 @@ export default { 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_number": [ 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "starts_at": [ - 4203 + 4306 ], "status": [ - 675 + 695 ], "week_best_of": [ - 1531 + 1634 ], "__typename": [ 78 @@ -28910,7 +30534,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1760 + 1863 ], "ordering": [ 236 @@ -28924,7 +30548,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "created_by_steam_id": [ 180 @@ -28942,10 +30566,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_weeks_count": [ 38 @@ -28963,13 +30587,13 @@ export default { 38 ], "playoff_round_best_of": [ - 1531 + 1634 ], "playoff_seats": [ 38 ], "playoff_stage_type": [ - 1123 + 1143 ], "playoff_third_place_match": [ 3 @@ -28978,7 +30602,7 @@ export default { 38 ], "regular_season_stage_type": [ - 1123 + 1143 ], "relegate_count": [ 38 @@ -28990,25 +30614,25 @@ export default { 38 ], "roster_lock_at": [ - 4203 + 4306 ], "season_number": [ 38 ], "signup_closes_at": [ - 4203 + 4306 ], "signup_opens_at": [ - 4203 + 4306 ], "starts_at": [ - 4203 + 4306 ], "status": [ - 675 + 695 ], "week_best_of": [ - 1531 + 1634 ], "__typename": [ 78 @@ -29067,28 +30691,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1737 + 1840 ], "_delete_at_path": [ - 1741 + 1844 ], "_delete_elem": [ - 1742 + 1845 ], "_delete_key": [ - 1743 + 1846 ], "_inc": [ - 1744 + 1847 ], "_prepend": [ - 1753 + 1856 ], "_set": [ - 1755 + 1858 ], "where": [ - 1739 + 1842 ], "__typename": [ 78 @@ -29246,58 +30870,58 @@ export default { }, "league_team_movements": { "approved_at": [ - 4203 + 4306 ], "approved_by": [ - 3618 + 3721 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1558 + 1661 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "e_movement_type": [ - 607 + 627 ], "final_rank": [ 38 ], "final_to_division": [ - 1558 + 1661 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division": [ - 1558 + 1661 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1891 + 1994 ], "league_team_id": [ - 4641 + 4744 ], "season": [ - 1734 + 1837 ], "type": [ - 612 + 632 ], "__typename": [ 78 @@ -29305,10 +30929,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1771 + 1874 ], "nodes": [ - 1767 + 1870 ], "__typename": [ 78 @@ -29316,7 +30940,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1770 + 1873 ], "__typename": [ 78 @@ -29324,13 +30948,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1788 + 1891 ], "distinct": [ 3 ], "filter": [ - 1776 + 1879 ], "predicate": [ 39 @@ -29341,13 +30965,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1774 + 1877 ], "count": [ 38, { "columns": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "distinct": [ @@ -29356,31 +30980,31 @@ export default { } ], "max": [ - 1780 + 1883 ], "min": [ - 1782 + 1885 ], "stddev": [ - 1790 + 1893 ], "stddev_pop": [ - 1792 + 1895 ], "stddev_samp": [ - 1794 + 1897 ], "sum": [ - 1798 + 1901 ], "var_pop": [ - 1802 + 1905 ], "var_samp": [ - 1804 + 1907 ], "variance": [ - 1806 + 1909 ], "__typename": [ 78 @@ -29388,37 +31012,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1775 + 1878 ], "count": [ - 2660 + 2763 ], "max": [ - 1781 + 1884 ], "min": [ - 1783 + 1886 ], "stddev": [ - 1791 + 1894 ], "stddev_pop": [ - 1793 + 1896 ], "stddev_samp": [ - 1795 + 1898 ], "sum": [ - 1799 + 1902 ], "var_pop": [ - 1803 + 1906 ], "var_samp": [ - 1805 + 1908 ], "variance": [ - 1807 + 1910 ], "__typename": [ 78 @@ -29426,10 +31050,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1779 + 1882 ], "on_conflict": [ - 1785 + 1888 ], "__typename": [ 78 @@ -29448,10 +31072,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29459,67 +31083,67 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1776 + 1879 ], "_not": [ - 1776 + 1879 ], "_or": [ - 1776 + 1879 ], "approved_at": [ - 4204 + 4307 ], "approved_by": [ - 3622 + 3725 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1562 + 1665 ], "computed_to_division_id": [ - 4643 + 4746 ], "created_at": [ - 4204 + 4307 ], "e_movement_type": [ - 610 + 630 ], "final_rank": [ 39 ], "final_to_division": [ - 1562 + 1665 ], "final_to_division_id": [ - 4643 + 4746 ], "from_division": [ - 1562 + 1665 ], "from_division_id": [ - 4643 + 4746 ], "id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "league_team": [ - 1894 + 1997 ], "league_team_id": [ - 4643 + 4746 ], "season": [ - 1739 + 1842 ], "type": [ - 613 + 633 ], "__typename": [ 78 @@ -29539,58 +31163,58 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4203 + 4306 ], "approved_by": [ - 3629 + 3732 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1569 + 1672 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "e_movement_type": [ - 618 + 638 ], "final_rank": [ 38 ], "final_to_division": [ - 1569 + 1672 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division": [ - 1569 + 1672 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1900 + 2003 ], "league_team_id": [ - 4641 + 4744 ], "season": [ - 1749 + 1852 ], "type": [ - 612 + 632 ], "__typename": [ 78 @@ -29598,34 +31222,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4203 + 4306 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -29633,34 +31257,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2660 + 2763 ], "approved_by_steam_id": [ - 2660 + 2763 ], "computed_to_division_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "final_to_division_id": [ - 2660 + 2763 ], "from_division_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29668,34 +31292,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4203 + 4306 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -29703,34 +31327,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2660 + 2763 ], "approved_by_steam_id": [ - 2660 + 2763 ], "computed_to_division_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "final_to_division_id": [ - 2660 + 2763 ], "from_division_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29741,7 +31365,7 @@ export default { 38 ], "returning": [ - 1767 + 1870 ], "__typename": [ 78 @@ -29749,13 +31373,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1777 + 1880 ], "update_columns": [ - 1800 + 1903 ], "where": [ - 1776 + 1879 ], "__typename": [ 78 @@ -29763,58 +31387,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2660 + 2763 ], "approved_by": [ - 3631 + 3734 ], "approved_by_steam_id": [ - 2660 + 2763 ], "computed_to_division": [ - 1571 + 1674 ], "computed_to_division_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "e_movement_type": [ - 620 + 640 ], "final_rank": [ - 2660 + 2763 ], "final_to_division": [ - 1571 + 1674 ], "final_to_division_id": [ - 2660 + 2763 ], "from_division": [ - 1571 + 1674 ], "from_division_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team": [ - 1902 + 2005 ], "league_team_id": [ - 2660 + 2763 ], "season": [ - 1751 + 1854 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29822,7 +31446,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -29831,37 +31455,37 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4203 + 4306 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "type": [ - 612 + 632 ], "__typename": [ 78 @@ -29880,10 +31504,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29902,10 +31526,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29924,10 +31548,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -29935,7 +31559,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1797 + 1900 ], "ordering": [ 236 @@ -29946,37 +31570,37 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4203 + 4306 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4641 + 4744 ], "from_division_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "type": [ - 612 + 632 ], "__typename": [ 78 @@ -29995,10 +31619,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30007,13 +31631,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1778 + 1881 ], "_set": [ - 1789 + 1892 ], "where": [ - 1776 + 1879 ], "__typename": [ 78 @@ -30032,10 +31656,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30054,10 +31678,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30076,10 +31700,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2660 + 2763 ], "final_rank": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30087,28 +31711,28 @@ export default { }, "league_team_rosters": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 ], "status": [ - 1083 + 1103 ], "team_season": [ - 1849 + 1952 ], "__typename": [ 78 @@ -30116,10 +31740,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1812 + 1915 ], "nodes": [ - 1808 + 1911 ], "__typename": [ 78 @@ -30127,7 +31751,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1811 + 1914 ], "__typename": [ 78 @@ -30135,13 +31759,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1829 + 1932 ], "distinct": [ 3 ], "filter": [ - 1817 + 1920 ], "predicate": [ 39 @@ -30152,13 +31776,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1815 + 1918 ], "count": [ 38, { "columns": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -30167,31 +31791,31 @@ export default { } ], "max": [ - 1821 + 1924 ], "min": [ - 1823 + 1926 ], "stddev": [ - 1831 + 1934 ], "stddev_pop": [ - 1833 + 1936 ], "stddev_samp": [ - 1835 + 1938 ], "sum": [ - 1839 + 1942 ], "var_pop": [ - 1843 + 1946 ], "var_samp": [ - 1845 + 1948 ], "variance": [ - 1847 + 1950 ], "__typename": [ 78 @@ -30199,37 +31823,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1816 + 1919 ], "count": [ - 2660 + 2763 ], "max": [ - 1822 + 1925 ], "min": [ - 1824 + 1927 ], "stddev": [ - 1832 + 1935 ], "stddev_pop": [ - 1834 + 1937 ], "stddev_samp": [ - 1836 + 1939 ], "sum": [ - 1840 + 1943 ], "var_pop": [ - 1844 + 1947 ], "var_samp": [ - 1846 + 1949 ], "variance": [ - 1848 + 1951 ], "__typename": [ 78 @@ -30237,10 +31861,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1820 + 1923 ], "on_conflict": [ - 1826 + 1929 ], "__typename": [ 78 @@ -30256,7 +31880,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30264,37 +31888,37 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1817 + 1920 ], "_not": [ - 1817 + 1920 ], "_or": [ - 1817 + 1920 ], "added_at": [ - 4204 + 4307 ], "league_team_season_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "removed_at": [ - 4204 + 4307 ], "removed_reason": [ 80 ], "status": [ - 1084 + 1104 ], "team_season": [ - 1858 + 1961 ], "__typename": [ 78 @@ -30311,28 +31935,28 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 ], "status": [ - 1083 + 1103 ], "team_season": [ - 1867 + 1970 ], "__typename": [ 78 @@ -30340,16 +31964,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 @@ -30360,19 +31984,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "removed_at": [ - 2660 + 2763 ], "removed_reason": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30380,16 +32004,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 @@ -30400,19 +32024,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "removed_at": [ - 2660 + 2763 ], "removed_reason": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30423,7 +32047,7 @@ export default { 38 ], "returning": [ - 1808 + 1911 ], "__typename": [ 78 @@ -30431,13 +32055,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1818 + 1921 ], "update_columns": [ - 1841 + 1944 ], "where": [ - 1817 + 1920 ], "__typename": [ 78 @@ -30445,28 +32069,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "removed_at": [ - 2660 + 2763 ], "removed_reason": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "team_season": [ - 1869 + 1972 ], "__typename": [ 78 @@ -30474,7 +32098,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -30486,22 +32110,22 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 ], "status": [ - 1083 + 1103 ], "__typename": [ 78 @@ -30517,7 +32141,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30533,7 +32157,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30549,7 +32173,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30557,7 +32181,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1838 + 1941 ], "ordering": [ 236 @@ -30568,22 +32192,22 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4203 + 4306 ], "league_team_season_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 ], "removed_at": [ - 4203 + 4306 ], "removed_reason": [ 78 ], "status": [ - 1083 + 1103 ], "__typename": [ 78 @@ -30599,7 +32223,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30608,13 +32232,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1819 + 1922 ], "_set": [ - 1830 + 1933 ], "where": [ - 1817 + 1920 ], "__typename": [ 78 @@ -30630,7 +32254,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30646,7 +32270,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30662,7 +32286,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30670,55 +32294,55 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1558 + 1661 ], "assigned_division_id": [ - 4641 + 4744 ], "captain": [ - 3618 + 3721 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "e_registration_status": [ - 649 + 669 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1891 + 1994 ], "league_team_id": [ - 4641 + 4744 ], "registered_by": [ - 3618 + 3721 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1558 + 1661 ], "requested_division_id": [ - 4641 + 4744 ], "roster": [ - 1808, + 1911, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -30728,19 +32352,19 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "roster_aggregate": [ - 1809, + 1912, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -30750,28 +32374,28 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "season": [ - 1734 + 1837 ], "seed": [ 38 ], "status": [ - 654 + 674 ], "tournament_team": [ - 4466 + 4569 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -30779,10 +32403,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1853 + 1956 ], "nodes": [ - 1849 + 1952 ], "__typename": [ 78 @@ -30790,7 +32414,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1852 + 1955 ], "__typename": [ 78 @@ -30798,13 +32422,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1871 + 1974 ], "distinct": [ 3 ], "filter": [ - 1858 + 1961 ], "predicate": [ 39 @@ -30815,13 +32439,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1856 + 1959 ], "count": [ 38, { "columns": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -30830,31 +32454,31 @@ export default { } ], "max": [ - 1862 + 1965 ], "min": [ - 1864 + 1967 ], "stddev": [ - 1873 + 1976 ], "stddev_pop": [ - 1875 + 1978 ], "stddev_samp": [ - 1877 + 1980 ], "sum": [ - 1881 + 1984 ], "var_pop": [ - 1885 + 1988 ], "var_samp": [ - 1887 + 1990 ], "variance": [ - 1889 + 1992 ], "__typename": [ 78 @@ -30862,37 +32486,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1857 + 1960 ], "count": [ - 2660 + 2763 ], "max": [ - 1863 + 1966 ], "min": [ - 1865 + 1968 ], "stddev": [ - 1874 + 1977 ], "stddev_pop": [ - 1876 + 1979 ], "stddev_samp": [ - 1878 + 1981 ], "sum": [ - 1882 + 1985 ], "var_pop": [ - 1886 + 1989 ], "var_samp": [ - 1888 + 1991 ], "variance": [ - 1890 + 1993 ], "__typename": [ 78 @@ -30900,10 +32524,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1861 + 1964 ], "on_conflict": [ - 1868 + 1971 ], "__typename": [ 78 @@ -30925,13 +32549,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -30939,79 +32563,79 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1858 + 1961 ], "_not": [ - 1858 + 1961 ], "_or": [ - 1858 + 1961 ], "assigned_division": [ - 1562 + 1665 ], "assigned_division_id": [ - 4643 + 4746 ], "captain": [ - 3622 + 3725 ], "captain_steam_id": [ 182 ], "created_at": [ - 4204 + 4307 ], "decline_reason": [ 80 ], "e_registration_status": [ - 652 + 672 ], "id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "league_team": [ - 1894 + 1997 ], "league_team_id": [ - 4643 + 4746 ], "registered_by": [ - 3622 + 3725 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1562 + 1665 ], "requested_division_id": [ - 4643 + 4746 ], "roster": [ - 1817 + 1920 ], "roster_aggregate": [ - 1810 + 1913 ], "season": [ - 1739 + 1842 ], "seed": [ 39 ], "status": [ - 655 + 675 ], "tournament_team": [ - 4475 + 4578 ], "tournament_team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -31034,67 +32658,67 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1569 + 1672 ], "assigned_division_id": [ - 4641 + 4744 ], "captain": [ - 3629 + 3732 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "e_registration_status": [ - 660 + 680 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1900 + 2003 ], "league_team_id": [ - 4641 + 4744 ], "registered_by": [ - 3629 + 3732 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1569 + 1672 ], "requested_division_id": [ - 4641 + 4744 ], "roster": [ - 1814 + 1917 ], "season": [ - 1749 + 1852 ], "seed": [ 38 ], "status": [ - 654 + 674 ], "tournament_team": [ - 4484 + 4587 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31102,37 +32726,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4641 + 4744 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4641 + 4744 ], "seed": [ 38 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31140,37 +32764,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2660 + 2763 ], "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "decline_reason": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "requested_division_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31178,37 +32802,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4641 + 4744 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4641 + 4744 ], "seed": [ 38 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31216,37 +32840,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2660 + 2763 ], "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "decline_reason": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "requested_division_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31257,7 +32881,7 @@ export default { 38 ], "returning": [ - 1849 + 1952 ], "__typename": [ 78 @@ -31265,10 +32889,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1861 + 1964 ], "on_conflict": [ - 1868 + 1971 ], "__typename": [ 78 @@ -31276,13 +32900,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1859 + 1962 ], "update_columns": [ - 1883 + 1986 ], "where": [ - 1858 + 1961 ], "__typename": [ 78 @@ -31290,67 +32914,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1571 + 1674 ], "assigned_division_id": [ - 2660 + 2763 ], "captain": [ - 3631 + 3734 ], "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "decline_reason": [ - 2660 + 2763 ], "e_registration_status": [ - 662 + 682 ], "id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team": [ - 1902 + 2005 ], "league_team_id": [ - 2660 + 2763 ], "registered_by": [ - 3631 + 3734 ], "registered_by_steam_id": [ - 2660 + 2763 ], "requested_division": [ - 1571 + 1674 ], "requested_division_id": [ - 2660 + 2763 ], "roster_aggregate": [ - 1813 + 1916 ], "season": [ - 1751 + 1854 ], "seed": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "tournament_team": [ - 4486 + 4589 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31358,7 +32982,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31367,40 +32991,40 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4641 + 4744 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4641 + 4744 ], "seed": [ 38 ], "status": [ - 654 + 674 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31422,13 +33046,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31450,13 +33074,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31478,13 +33102,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31492,7 +33116,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 1880 + 1983 ], "ordering": [ 236 @@ -31503,40 +33127,40 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4641 + 4744 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "decline_reason": [ 78 ], "id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4641 + 4744 ], "seed": [ 38 ], "status": [ - 654 + 674 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31558,13 +33182,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31573,13 +33197,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1860 + 1963 ], "_set": [ - 1872 + 1975 ], "where": [ - 1858 + 1961 ], "__typename": [ 78 @@ -31601,13 +33225,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31629,13 +33253,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31657,13 +33281,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "registered_by_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -31671,16 +33295,16 @@ export default { }, "league_teams": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "movements": [ - 1767, + 1870, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -31690,19 +33314,19 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "movements_aggregate": [ - 1768, + 1871, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -31712,25 +33336,25 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "team_seasons": [ - 1849, + 1952, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -31740,19 +33364,19 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "team_seasons_aggregate": [ - 1850, + 1953, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -31762,11 +33386,11 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], @@ -31776,10 +33400,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 1893 + 1996 ], "nodes": [ - 1891 + 1994 ], "__typename": [ 78 @@ -31790,7 +33414,7 @@ export default { 38, { "columns": [ - 1904, + 2007, "[league_teams_select_column!]" ], "distinct": [ @@ -31799,10 +33423,10 @@ export default { } ], "max": [ - 1897 + 2000 ], "min": [ - 1898 + 2001 ], "__typename": [ 78 @@ -31810,37 +33434,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 1894 + 1997 ], "_not": [ - 1894 + 1997 ], "_or": [ - 1894 + 1997 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "movements": [ - 1776 + 1879 ], "movements_aggregate": [ - 1769 + 1872 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "team_seasons": [ - 1858 + 1961 ], "team_seasons_aggregate": [ - 1851 + 1954 ], "__typename": [ 78 @@ -31849,22 +33473,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "movements": [ - 1773 + 1876 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "team_seasons": [ - 1855 + 1958 ], "__typename": [ 78 @@ -31872,13 +33496,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31886,13 +33510,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31903,7 +33527,7 @@ export default { 38 ], "returning": [ - 1891 + 1994 ], "__typename": [ 78 @@ -31911,10 +33535,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 1896 + 1999 ], "on_conflict": [ - 1901 + 2004 ], "__typename": [ 78 @@ -31922,13 +33546,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 1895 + 1998 ], "update_columns": [ - 1908 + 2011 ], "where": [ - 1894 + 1997 ], "__typename": [ 78 @@ -31936,22 +33560,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "movements_aggregate": [ - 1772 + 1875 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "team_seasons_aggregate": [ - 1854 + 1957 ], "__typename": [ 78 @@ -31959,7 +33583,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31968,13 +33592,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -31982,7 +33606,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 1907 + 2010 ], "ordering": [ 236 @@ -31993,13 +33617,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32008,10 +33632,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 1905 + 2008 ], "where": [ - 1894 + 1997 ], "__typename": [ 78 @@ -32019,22 +33643,22 @@ export default { }, "lobbies": { "access": [ - 696 + 716 ], "created_at": [ - 4203 + 4306 ], "e_lobby_access": [ - 691 + 711 ], "id": [ - 4641 + 4744 ], "players": [ - 1929, + 2032, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -32044,19 +33668,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "players_aggregate": [ - 1930, + 2033, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -32066,11 +33690,11 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], @@ -32080,10 +33704,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 1912 + 2015 ], "nodes": [ - 1910 + 2013 ], "__typename": [ 78 @@ -32094,7 +33718,7 @@ export default { 38, { "columns": [ - 1923, + 2026, "[lobbies_select_column!]" ], "distinct": [ @@ -32103,10 +33727,10 @@ export default { } ], "max": [ - 1916 + 2019 ], "min": [ - 1917 + 2020 ], "__typename": [ 78 @@ -32114,31 +33738,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 1913 + 2016 ], "_not": [ - 1913 + 2016 ], "_or": [ - 1913 + 2016 ], "access": [ - 697 + 717 ], "created_at": [ - 4204 + 4307 ], "e_lobby_access": [ - 694 + 714 ], "id": [ - 4643 + 4746 ], "players": [ - 1940 + 2043 ], "players_aggregate": [ - 1931 + 2034 ], "__typename": [ 78 @@ -32147,19 +33771,19 @@ export default { "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 696 + 716 ], "created_at": [ - 4203 + 4306 ], "e_lobby_access": [ - 702 + 722 ], "id": [ - 4641 + 4744 ], "players": [ - 1937 + 2040 ], "__typename": [ 78 @@ -32167,10 +33791,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32178,10 +33802,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32192,7 +33816,7 @@ export default { 38 ], "returning": [ - 1910 + 2013 ], "__typename": [ 78 @@ -32200,10 +33824,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 1915 + 2018 ], "on_conflict": [ - 1920 + 2023 ], "__typename": [ 78 @@ -32211,13 +33835,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 1914 + 2017 ], "update_columns": [ - 1927 + 2030 ], "where": [ - 1913 + 2016 ], "__typename": [ 78 @@ -32225,19 +33849,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "e_lobby_access": [ - 704 + 724 ], "id": [ - 2660 + 2763 ], "players_aggregate": [ - 1936 + 2039 ], "__typename": [ 78 @@ -32245,7 +33869,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32254,13 +33878,13 @@ export default { "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 696 + 716 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32268,7 +33892,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 1926 + 2029 ], "ordering": [ 236 @@ -32279,13 +33903,13 @@ export default { }, "lobbies_stream_cursor_value_input": { "access": [ - 696 + 716 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -32294,10 +33918,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 1924 + 2027 ], "where": [ - 1913 + 2016 ], "__typename": [ 78 @@ -32311,16 +33935,16 @@ export default { 180 ], "lobby": [ - 1910 + 2013 ], "lobby_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "status": [ - 717 + 737 ], "steam_id": [ 180 @@ -32331,10 +33955,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 1935 + 2038 ], "nodes": [ - 1929 + 2032 ], "__typename": [ 78 @@ -32342,13 +33966,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 1932 + 2035 ], "bool_or": [ - 1933 + 2036 ], "count": [ - 1934 + 2037 ], "__typename": [ 78 @@ -32356,13 +33980,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1953 + 2056 ], "distinct": [ 3 ], "filter": [ - 1940 + 2043 ], "predicate": [ 4 @@ -32373,13 +33997,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1954 + 2057 ], "distinct": [ 3 ], "filter": [ - 1940 + 2043 ], "predicate": [ 4 @@ -32390,13 +34014,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1952 + 2055 ], "distinct": [ 3 ], "filter": [ - 1940 + 2043 ], "predicate": [ 39 @@ -32407,13 +34031,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 1938 + 2041 ], "count": [ 38, { "columns": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "distinct": [ @@ -32422,31 +34046,31 @@ export default { } ], "max": [ - 1944 + 2047 ], "min": [ - 1946 + 2049 ], "stddev": [ - 1956 + 2059 ], "stddev_pop": [ - 1958 + 2061 ], "stddev_samp": [ - 1960 + 2063 ], "sum": [ - 1964 + 2067 ], "var_pop": [ - 1968 + 2071 ], "var_samp": [ - 1970 + 2073 ], "variance": [ - 1972 + 2075 ], "__typename": [ 78 @@ -32454,37 +34078,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 1939 + 2042 ], "count": [ - 2660 + 2763 ], "max": [ - 1945 + 2048 ], "min": [ - 1947 + 2050 ], "stddev": [ - 1957 + 2060 ], "stddev_pop": [ - 1959 + 2062 ], "stddev_samp": [ - 1961 + 2064 ], "sum": [ - 1965 + 2068 ], "var_pop": [ - 1969 + 2072 ], "var_samp": [ - 1971 + 2074 ], "variance": [ - 1973 + 2076 ], "__typename": [ 78 @@ -32492,10 +34116,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 1943 + 2046 ], "on_conflict": [ - 1949 + 2052 ], "__typename": [ 78 @@ -32514,10 +34138,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32525,13 +34149,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 1940 + 2043 ], "_not": [ - 1940 + 2043 ], "_or": [ - 1940 + 2043 ], "captain": [ 4 @@ -32540,16 +34164,16 @@ export default { 182 ], "lobby": [ - 1913 + 2016 ], "lobby_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "status": [ - 718 + 738 ], "steam_id": [ 182 @@ -32578,16 +34202,16 @@ export default { 180 ], "lobby": [ - 1919 + 2022 ], "lobby_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "status": [ - 717 + 737 ], "steam_id": [ 180 @@ -32601,7 +34225,7 @@ export default { 180 ], "lobby_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -32612,13 +34236,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "lobby_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32629,7 +34253,7 @@ export default { 180 ], "lobby_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -32640,13 +34264,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "lobby_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32657,7 +34281,7 @@ export default { 38 ], "returning": [ - 1929 + 2032 ], "__typename": [ 78 @@ -32665,13 +34289,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 1941 + 2044 ], "update_columns": [ - 1966 + 2069 ], "where": [ - 1940 + 2043 ], "__typename": [ 78 @@ -32679,25 +34303,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "lobby": [ - 1921 + 2024 ], "lobby_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "status": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32705,7 +34329,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -32725,10 +34349,10 @@ export default { 180 ], "lobby_id": [ - 4641 + 4744 ], "status": [ - 717 + 737 ], "steam_id": [ 180 @@ -32750,10 +34374,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32772,10 +34396,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32794,10 +34418,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32805,7 +34429,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1963 + 2066 ], "ordering": [ 236 @@ -32822,10 +34446,10 @@ export default { 180 ], "lobby_id": [ - 4641 + 4744 ], "status": [ - 717 + 737 ], "steam_id": [ 180 @@ -32847,10 +34471,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32859,13 +34483,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1942 + 2045 ], "_set": [ - 1955 + 2058 ], "where": [ - 1940 + 2043 ], "__typename": [ 78 @@ -32884,10 +34508,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32906,10 +34530,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32928,10 +34552,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -32939,19 +34563,19 @@ export default { }, "map_pools": { "e_type": [ - 732 + 752 ], "enabled": [ 3 ], "id": [ - 4641 + 4744 ], "maps": [ - 5283, + 5396, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -32961,19 +34585,19 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], "maps_aggregate": [ - 5284, + 5397, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -32983,11 +34607,11 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], @@ -32995,7 +34619,7 @@ export default { 3 ], "type": [ - 737 + 757 ], "__typename": [ 78 @@ -33003,10 +34627,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 1976 + 2079 ], "nodes": [ - 1974 + 2077 ], "__typename": [ 78 @@ -33017,7 +34641,7 @@ export default { 38, { "columns": [ - 1987, + 2090, "[map_pools_select_column!]" ], "distinct": [ @@ -33026,10 +34650,10 @@ export default { } ], "max": [ - 1980 + 2083 ], "min": [ - 1981 + 2084 ], "__typename": [ 78 @@ -33037,34 +34661,34 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 1977 + 2080 ], "_not": [ - 1977 + 2080 ], "_or": [ - 1977 + 2080 ], "e_type": [ - 735 + 755 ], "enabled": [ 4 ], "id": [ - 4643 + 4746 ], "maps": [ - 5292 + 5405 ], "maps_aggregate": [ - 5285 + 5398 ], "seed": [ 4 ], "type": [ - 738 + 758 ], "__typename": [ 78 @@ -33073,22 +34697,22 @@ export default { "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 743 + 763 ], "enabled": [ 3 ], "id": [ - 4641 + 4744 ], "maps": [ - 5291 + 5404 ], "seed": [ 3 ], "type": [ - 737 + 757 ], "__typename": [ 78 @@ -33096,7 +34720,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -33104,7 +34728,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -33115,7 +34739,7 @@ export default { 38 ], "returning": [ - 1974 + 2077 ], "__typename": [ 78 @@ -33123,10 +34747,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 1979 + 2082 ], "on_conflict": [ - 1984 + 2087 ], "__typename": [ 78 @@ -33134,13 +34758,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 1978 + 2081 ], "update_columns": [ - 1991 + 2094 ], "where": [ - 1977 + 2080 ], "__typename": [ 78 @@ -33148,22 +34772,22 @@ export default { }, "map_pools_order_by": { "e_type": [ - 745 + 765 ], "enabled": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "maps_aggregate": [ - 5290 + 5403 ], "seed": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -33171,7 +34795,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -33183,13 +34807,13 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "seed": [ 3 ], "type": [ - 737 + 757 ], "__typename": [ 78 @@ -33197,7 +34821,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 1990 + 2093 ], "ordering": [ 236 @@ -33211,13 +34835,13 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "seed": [ 3 ], "type": [ - 737 + 757 ], "__typename": [ 78 @@ -33226,10 +34850,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1988 + 2091 ], "where": [ - 1977 + 2080 ], "__typename": [ 78 @@ -33240,22 +34864,22 @@ export default { 3 ], "e_match_type": [ - 835 + 855 ], "enabled": [ 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "match_maps": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -33265,19 +34889,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -33287,19 +34911,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33309,19 +34933,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -33331,11 +34955,11 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], @@ -33349,7 +34973,7 @@ export default { 78 ], "type": [ - 840 + 860 ], "workshop_map_id": [ 78 @@ -33360,10 +34984,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 1999 + 2102 ], "nodes": [ - 1993 + 2096 ], "__typename": [ 78 @@ -33371,13 +34995,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 1996 + 2099 ], "bool_or": [ - 1997 + 2100 ], "count": [ - 1998 + 2101 ], "__typename": [ 78 @@ -33385,13 +35009,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2015 + 2118 ], "distinct": [ 3 ], "filter": [ - 2002 + 2105 ], "predicate": [ 4 @@ -33402,13 +35026,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2016 + 2119 ], "distinct": [ 3 ], "filter": [ - 2002 + 2105 ], "predicate": [ 4 @@ -33419,13 +35043,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2014 + 2117 ], "distinct": [ 3 ], "filter": [ - 2002 + 2105 ], "predicate": [ 39 @@ -33439,7 +35063,7 @@ export default { 38, { "columns": [ - 2014, + 2117, "[maps_select_column!]" ], "distinct": [ @@ -33448,10 +35072,10 @@ export default { } ], "max": [ - 2005 + 2108 ], "min": [ - 2007 + 2110 ], "__typename": [ 78 @@ -33459,13 +35083,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 2006 + 2109 ], "min": [ - 2008 + 2111 ], "__typename": [ 78 @@ -33473,10 +35097,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2004 + 2107 ], "on_conflict": [ - 2011 + 2114 ], "__typename": [ 78 @@ -33484,40 +35108,40 @@ export default { }, "maps_bool_exp": { "_and": [ - 2002 + 2105 ], "_not": [ - 2002 + 2105 ], "_or": [ - 2002 + 2105 ], "active_pool": [ 4 ], "e_match_type": [ - 838 + 858 ], "enabled": [ 4 ], "id": [ - 4643 + 4746 ], "label": [ 80 ], "match_maps": [ - 2322 + 2425 ], "match_maps_aggregate": [ - 2315 + 2418 ], "match_veto_picks": [ - 2296 + 2399 ], "match_veto_picks_aggregate": [ - 2291 + 2394 ], "name": [ 80 @@ -33529,7 +35153,7 @@ export default { 80 ], "type": [ - 841 + 861 ], "workshop_map_id": [ 80 @@ -33544,22 +35168,22 @@ export default { 3 ], "e_match_type": [ - 846 + 866 ], "enabled": [ 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "match_maps": [ - 2319 + 2422 ], "match_veto_picks": [ - 2295 + 2398 ], "name": [ 78 @@ -33571,7 +35195,7 @@ export default { 78 ], "type": [ - 840 + 860 ], "workshop_map_id": [ 78 @@ -33582,7 +35206,7 @@ export default { }, "maps_max_fields": { "id": [ - 4641 + 4744 ], "label": [ 78 @@ -33605,22 +35229,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -33628,7 +35252,7 @@ export default { }, "maps_min_fields": { "id": [ - 4641 + 4744 ], "label": [ 78 @@ -33651,22 +35275,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -33677,7 +35301,7 @@ export default { 38 ], "returning": [ - 1993 + 2096 ], "__typename": [ 78 @@ -33685,10 +35309,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2004 + 2107 ], "on_conflict": [ - 2011 + 2114 ], "__typename": [ 78 @@ -33696,13 +35320,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2003 + 2106 ], "update_columns": [ - 2020 + 2123 ], "where": [ - 2002 + 2105 ], "__typename": [ 78 @@ -33710,40 +35334,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2660 + 2763 ], "e_match_type": [ - 848 + 868 ], "enabled": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "match_maps_aggregate": [ - 2318 + 2421 ], "match_veto_picks_aggregate": [ - 2294 + 2397 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -33751,7 +35375,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -33768,7 +35392,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 @@ -33783,7 +35407,7 @@ export default { 78 ], "type": [ - 840 + 860 ], "workshop_map_id": [ 78 @@ -33794,7 +35418,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2019 + 2122 ], "ordering": [ 236 @@ -33811,7 +35435,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 @@ -33826,7 +35450,7 @@ export default { 78 ], "type": [ - 840 + 860 ], "workshop_map_id": [ 78 @@ -33838,10 +35462,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2017 + 2120 ], "where": [ - 2002 + 2105 ], "__typename": [ 78 @@ -33849,7 +35473,7 @@ export default { }, "match_clips": { "created_at": [ - 4203 + 4306 ], "download_url": [ 78 @@ -33861,22 +35485,22 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map": [ - 2313 + 2416 ], "match_map_demo": [ - 2197 + 2300 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "render_jobs": [ 185, @@ -33929,7 +35553,7 @@ export default { 180 ], "target": [ - 3618 + 3721 ], "target_steam_id": [ 180 @@ -33944,7 +35568,7 @@ export default { 78 ], "user": [ - 3618 + 3721 ], "user_steam_id": [ 180 @@ -33953,7 +35577,7 @@ export default { 38 ], "visibility": [ - 758 + 778 ], "__typename": [ 78 @@ -33961,10 +35585,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2026 + 2129 ], "nodes": [ - 2022 + 2125 ], "__typename": [ 78 @@ -33972,7 +35596,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2025 + 2128 ], "__typename": [ 78 @@ -33980,13 +35604,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2044 + 2147 ], "distinct": [ 3 ], "filter": [ - 2031 + 2134 ], "predicate": [ 39 @@ -33997,13 +35621,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2029 + 2132 ], "count": [ 38, { "columns": [ - 2044, + 2147, "[match_clips_select_column!]" ], "distinct": [ @@ -34012,31 +35636,31 @@ export default { } ], "max": [ - 2035 + 2138 ], "min": [ - 2037 + 2140 ], "stddev": [ - 2046 + 2149 ], "stddev_pop": [ - 2048 + 2151 ], "stddev_samp": [ - 2050 + 2153 ], "sum": [ - 2054 + 2157 ], "var_pop": [ - 2058 + 2161 ], "var_samp": [ - 2060 + 2163 ], "variance": [ - 2062 + 2165 ], "__typename": [ 78 @@ -34044,37 +35668,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2030 + 2133 ], "count": [ - 2660 + 2763 ], "max": [ - 2036 + 2139 ], "min": [ - 2038 + 2141 ], "stddev": [ - 2047 + 2150 ], "stddev_pop": [ - 2049 + 2152 ], "stddev_samp": [ - 2051 + 2154 ], "sum": [ - 2055 + 2158 ], "var_pop": [ - 2059 + 2162 ], "var_samp": [ - 2061 + 2164 ], "variance": [ - 2063 + 2166 ], "__typename": [ 78 @@ -34082,10 +35706,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2034 + 2137 ], "on_conflict": [ - 2041 + 2144 ], "__typename": [ 78 @@ -34119,25 +35743,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34145,16 +35769,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2031 + 2134 ], "_not": [ - 2031 + 2134 ], "_or": [ - 2031 + 2134 ], "created_at": [ - 4204 + 4307 ], "download_url": [ 80 @@ -34166,22 +35790,22 @@ export default { 80 ], "id": [ - 4643 + 4746 ], "kills_count": [ 39 ], "match_map": [ - 2322 + 2425 ], "match_map_demo": [ - 2209 + 2312 ], "match_map_demo_id": [ - 4643 + 4746 ], "match_map_id": [ - 4643 + 4746 ], "render_jobs": [ 197 @@ -34196,7 +35820,7 @@ export default { 182 ], "target": [ - 3622 + 3725 ], "target_steam_id": [ 182 @@ -34211,7 +35835,7 @@ export default { 80 ], "user": [ - 3622 + 3725 ], "user_steam_id": [ 182 @@ -34220,7 +35844,7 @@ export default { 39 ], "visibility": [ - 759 + 779 ], "__typename": [ 78 @@ -34255,7 +35879,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4203 + 4306 ], "duration_ms": [ 38 @@ -34264,22 +35888,22 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map": [ - 2331 + 2434 ], "match_map_demo": [ - 2221 + 2324 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "render_jobs": [ 194 @@ -34291,7 +35915,7 @@ export default { 180 ], "target": [ - 3629 + 3732 ], "target_steam_id": [ 180 @@ -34303,7 +35927,7 @@ export default { 78 ], "user": [ - 3629 + 3732 ], "user_steam_id": [ 180 @@ -34312,7 +35936,7 @@ export default { 38 ], "visibility": [ - 758 + 778 ], "__typename": [ 78 @@ -34320,7 +35944,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4203 + 4306 ], "download_url": [ 78 @@ -34332,16 +35956,16 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -34373,46 +35997,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2660 + 2763 ], "duration_ms": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "thumbnail_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34420,7 +36044,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4203 + 4306 ], "download_url": [ 78 @@ -34432,16 +36056,16 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -34473,46 +36097,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2660 + 2763 ], "duration_ms": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "thumbnail_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34523,7 +36147,7 @@ export default { 38 ], "returning": [ - 2022 + 2125 ], "__typename": [ 78 @@ -34531,10 +36155,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2034 + 2137 ], "on_conflict": [ - 2041 + 2144 ], "__typename": [ 78 @@ -34542,13 +36166,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2032 + 2135 ], "update_columns": [ - 2056 + 2159 ], "where": [ - 2031 + 2134 ], "__typename": [ 78 @@ -34556,70 +36180,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2660 + 2763 ], "download_url": [ - 2660 + 2763 ], "duration_ms": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_demo": [ - 2223 + 2326 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target": [ - 3631 + 3734 ], "target_steam_id": [ - 2660 + 2763 ], "thumbnail_download_url": [ - 2660 + 2763 ], "thumbnail_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "user": [ - 3631 + 3734 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "visibility": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34627,7 +36251,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -34636,7 +36260,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4203 + 4306 ], "duration_ms": [ 38 @@ -34645,16 +36269,16 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -34678,7 +36302,7 @@ export default { 38 ], "visibility": [ - 758 + 778 ], "__typename": [ 78 @@ -34712,25 +36336,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34764,25 +36388,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34816,25 +36440,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34842,7 +36466,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2053 + 2156 ], "ordering": [ 236 @@ -34853,7 +36477,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "duration_ms": [ 38 @@ -34862,16 +36486,16 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -34895,7 +36519,7 @@ export default { 38 ], "visibility": [ - 758 + 778 ], "__typename": [ 78 @@ -34929,25 +36553,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -34956,13 +36580,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2033 + 2136 ], "_set": [ - 2045 + 2148 ], "where": [ - 2031 + 2134 ], "__typename": [ 78 @@ -34996,25 +36620,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35048,25 +36672,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35100,25 +36724,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2660 + 2763 ], "kills_count": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "target_steam_id": [ - 2660 + 2763 ], "user_steam_id": [ - 2660 + 2763 ], "views_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35126,52 +36750,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 ], "game_server_node": [ - 1407 + 1510 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_demo": [ - 2197 + 2300 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 ], "status_history": [ - 1531, + 1634, { "path": [ 78 @@ -35182,7 +36806,7 @@ export default { 78 ], "watcher": [ - 3618 + 3721 ], "watcher_steam_id": [ 180 @@ -35193,10 +36817,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2068 + 2171 ], "nodes": [ - 2064 + 2167 ], "__typename": [ 78 @@ -35204,7 +36828,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2067 + 2170 ], "__typename": [ 78 @@ -35212,13 +36836,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2090 + 2193 ], "distinct": [ 3 ], "filter": [ - 2074 + 2177 ], "predicate": [ 39 @@ -35229,13 +36853,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2072 + 2175 ], "count": [ 38, { "columns": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -35244,31 +36868,31 @@ export default { } ], "max": [ - 2081 + 2184 ], "min": [ - 2083 + 2186 ], "stddev": [ - 2092 + 2195 ], "stddev_pop": [ - 2094 + 2197 ], "stddev_samp": [ - 2096 + 2199 ], "sum": [ - 2100 + 2203 ], "var_pop": [ - 2104 + 2207 ], "var_samp": [ - 2106 + 2209 ], "variance": [ - 2108 + 2211 ], "__typename": [ 78 @@ -35276,37 +36900,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2073 + 2176 ], "count": [ - 2660 + 2763 ], "max": [ - 2082 + 2185 ], "min": [ - 2084 + 2187 ], "stddev": [ - 2093 + 2196 ], "stddev_pop": [ - 2095 + 2198 ], "stddev_samp": [ - 2097 + 2200 ], "sum": [ - 2101 + 2204 ], "var_pop": [ - 2105 + 2208 ], "var_samp": [ - 2107 + 2210 ], "variance": [ - 2109 + 2212 ], "__typename": [ 78 @@ -35314,7 +36938,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -35322,10 +36946,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2080 + 2183 ], "on_conflict": [ - 2086 + 2189 ], "__typename": [ 78 @@ -35341,7 +36965,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35349,67 +36973,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2074 + 2177 ], "_not": [ - 2074 + 2177 ], "_or": [ - 2074 + 2177 ], "created_at": [ - 4204 + 4307 ], "error_message": [ 80 ], "game_server_node": [ - 1419 + 1522 ], "game_server_node_id": [ 80 ], "id": [ - 4643 + 4746 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4204 + 4307 ], "last_status_at": [ - 4204 + 4307 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_demo": [ - 2209 + 2312 ], "match_map_demo_id": [ - 4643 + 4746 ], "match_map_id": [ - 4643 + 4746 ], "status": [ 80 ], "status_history": [ - 1533 + 1636 ], "stream_url": [ 80 ], "watcher": [ - 3622 + 3725 ], "watcher_steam_id": [ 182 @@ -35453,58 +37077,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 ], "game_server_node": [ - 1431 + 1534 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_demo": [ - 2221 + 2324 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 ], "watcher": [ - 3629 + 3732 ], "watcher_steam_id": [ 180 @@ -35515,7 +37139,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -35524,25 +37148,25 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 @@ -35559,43 +37183,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_activity_at": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35603,7 +37227,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -35612,25 +37236,25 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 @@ -35647,43 +37271,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_activity_at": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35694,7 +37318,7 @@ export default { 38 ], "returning": [ - 2064 + 2167 ], "__typename": [ 78 @@ -35702,13 +37326,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2075 + 2178 ], "update_columns": [ - 2102 + 2205 ], "where": [ - 2074 + 2177 ], "__typename": [ 78 @@ -35716,61 +37340,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node": [ - 1433 + 1536 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "last_activity_at": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_demo": [ - 2223 + 2326 ], "match_map_demo_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "status_history": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "watcher": [ - 3631 + 3734 ], "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35778,7 +37402,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -35786,7 +37410,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -35795,7 +37419,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -35804,31 +37428,31 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 @@ -35850,7 +37474,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35866,7 +37490,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35882,7 +37506,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35890,7 +37514,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2099 + 2202 ], "ordering": [ 236 @@ -35901,7 +37525,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "error_message": [ 78 @@ -35910,31 +37534,31 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4203 + 4306 ], "last_status_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "status": [ 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 @@ -35956,7 +37580,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -35965,28 +37589,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2070 + 2173 ], "_delete_at_path": [ - 2076 + 2179 ], "_delete_elem": [ - 2077 + 2180 ], "_delete_key": [ - 2078 + 2181 ], "_inc": [ - 2079 + 2182 ], "_prepend": [ - 2089 + 2192 ], "_set": [ - 2091 + 2194 ], "where": [ - 2074 + 2177 ], "__typename": [ 78 @@ -36002,7 +37626,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36018,7 +37642,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36034,7 +37658,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36051,19 +37675,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 @@ -36074,10 +37698,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2116 + 2219 ], "nodes": [ - 2110 + 2213 ], "__typename": [ 78 @@ -36085,13 +37709,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2113 + 2216 ], "bool_or": [ - 2114 + 2217 ], "count": [ - 2115 + 2218 ], "__typename": [ 78 @@ -36099,13 +37723,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2134 + 2237 ], "distinct": [ 3 ], "filter": [ - 2121 + 2224 ], "predicate": [ 4 @@ -36116,13 +37740,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2135 + 2238 ], "distinct": [ 3 ], "filter": [ - 2121 + 2224 ], "predicate": [ 4 @@ -36133,13 +37757,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2133 + 2236 ], "distinct": [ 3 ], "filter": [ - 2121 + 2224 ], "predicate": [ 39 @@ -36150,13 +37774,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2119 + 2222 ], "count": [ 38, { "columns": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -36165,31 +37789,31 @@ export default { } ], "max": [ - 2125 + 2228 ], "min": [ - 2127 + 2230 ], "stddev": [ - 2137 + 2240 ], "stddev_pop": [ - 2139 + 2242 ], "stddev_samp": [ - 2141 + 2244 ], "sum": [ - 2145 + 2248 ], "var_pop": [ - 2149 + 2252 ], "var_samp": [ - 2151 + 2254 ], "variance": [ - 2153 + 2256 ], "__typename": [ 78 @@ -36197,37 +37821,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2120 + 2223 ], "count": [ - 2660 + 2763 ], "max": [ - 2126 + 2229 ], "min": [ - 2128 + 2231 ], "stddev": [ - 2138 + 2241 ], "stddev_pop": [ - 2140 + 2243 ], "stddev_samp": [ - 2142 + 2245 ], "sum": [ - 2146 + 2249 ], "var_pop": [ - 2150 + 2253 ], "var_samp": [ - 2152 + 2255 ], "variance": [ - 2154 + 2257 ], "__typename": [ 78 @@ -36235,10 +37859,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2124 + 2227 ], "on_conflict": [ - 2130 + 2233 ], "__typename": [ 78 @@ -36254,7 +37878,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36262,13 +37886,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2121 + 2224 ], "_not": [ - 2121 + 2224 ], "_or": [ - 2121 + 2224 ], "captain": [ 4 @@ -36280,19 +37904,19 @@ export default { 80 ], "id": [ - 4643 + 4746 ], "lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "placeholder_name": [ 80 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 @@ -36321,19 +37945,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 @@ -36347,10 +37971,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -36364,19 +37988,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "placeholder_name": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36387,10 +38011,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -36404,19 +38028,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "placeholder_name": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36427,7 +38051,7 @@ export default { 38 ], "returning": [ - 2110 + 2213 ], "__typename": [ 78 @@ -36435,13 +38059,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2122 + 2225 ], "update_columns": [ - 2147 + 2250 ], "where": [ - 2121 + 2224 ], "__typename": [ 78 @@ -36449,31 +38073,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2660 + 2763 ], "checked_in": [ - 2660 + 2763 ], "discord_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "placeholder_name": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36481,7 +38105,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -36501,10 +38125,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -36526,7 +38150,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36542,7 +38166,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36558,7 +38182,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36566,7 +38190,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2144 + 2247 ], "ordering": [ 236 @@ -36586,10 +38210,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -36611,7 +38235,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36620,13 +38244,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2123 + 2226 ], "_set": [ - 2136 + 2239 ], "where": [ - 2121 + 2224 ], "__typename": [ 78 @@ -36642,7 +38266,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36658,7 +38282,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36674,7 +38298,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36691,16 +38315,16 @@ export default { 3 ], "captain": [ - 4797 + 4910 ], "coach": [ - 3618 + 3721 ], "coach_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "is_on_lineup": [ 3 @@ -36715,10 +38339,10 @@ export default { 3 ], "lineup_players": [ - 2110, + 2213, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -36728,19 +38352,19 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "lineup_players_aggregate": [ - 2111, + 2214, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -36750,25 +38374,25 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -36778,19 +38402,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -36800,11 +38424,11 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], @@ -36812,10 +38436,10 @@ export default { 78 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -36826,10 +38450,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2159 + 2262 ], "nodes": [ - 2155 + 2258 ], "__typename": [ 78 @@ -36837,7 +38461,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2158 + 2261 ], "__typename": [ 78 @@ -36845,13 +38469,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2177 + 2280 ], "distinct": [ 3 ], "filter": [ - 2164 + 2267 ], "predicate": [ 39 @@ -36862,13 +38486,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2162 + 2265 ], "count": [ 38, { "columns": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "distinct": [ @@ -36877,31 +38501,31 @@ export default { } ], "max": [ - 2168 + 2271 ], "min": [ - 2170 + 2273 ], "stddev": [ - 2179 + 2282 ], "stddev_pop": [ - 2181 + 2284 ], "stddev_samp": [ - 2183 + 2286 ], "sum": [ - 2187 + 2290 ], "var_pop": [ - 2191 + 2294 ], "var_samp": [ - 2193 + 2296 ], "variance": [ - 2195 + 2298 ], "__typename": [ 78 @@ -36909,37 +38533,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2163 + 2266 ], "count": [ - 2660 + 2763 ], "max": [ - 2169 + 2272 ], "min": [ - 2171 + 2274 ], "stddev": [ - 2180 + 2283 ], "stddev_pop": [ - 2182 + 2285 ], "stddev_samp": [ - 2184 + 2287 ], "sum": [ - 2188 + 2291 ], "var_pop": [ - 2192 + 2295 ], "var_samp": [ - 2194 + 2297 ], "variance": [ - 2196 + 2299 ], "__typename": [ 78 @@ -36947,10 +38571,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2167 + 2270 ], "on_conflict": [ - 2174 + 2277 ], "__typename": [ 78 @@ -36966,7 +38590,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -36974,13 +38598,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2164 + 2267 ], "_not": [ - 2164 + 2267 ], "_or": [ - 2164 + 2267 ], "can_pick_map_veto": [ 4 @@ -36992,16 +38616,16 @@ export default { 4 ], "captain": [ - 4801 + 4914 ], "coach": [ - 3622 + 3725 ], "coach_steam_id": [ 182 ], "id": [ - 4643 + 4746 ], "is_on_lineup": [ 4 @@ -37016,31 +38640,31 @@ export default { 4 ], "lineup_players": [ - 2121 + 2224 ], "lineup_players_aggregate": [ - 2112 + 2215 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_veto_picks": [ - 2296 + 2399 ], "match_veto_picks_aggregate": [ - 2291 + 2394 ], "name": [ 80 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "team_name": [ 80 @@ -37060,34 +38684,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4807 + 4920 ], "coach": [ - 3629 + 3732 ], "coach_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "lineup_players": [ - 2118 + 2221 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_veto_picks": [ - 2295 + 2398 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -37101,16 +38725,16 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "name": [ 78 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -37121,19 +38745,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "team_name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37144,16 +38768,16 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "name": [ 78 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -37164,19 +38788,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "team_name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37187,7 +38811,7 @@ export default { 38 ], "returning": [ - 2155 + 2258 ], "__typename": [ 78 @@ -37195,10 +38819,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2167 + 2270 ], "on_conflict": [ - 2174 + 2277 ], "__typename": [ 78 @@ -37206,13 +38830,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2165 + 2268 ], "update_columns": [ - 2189 + 2292 ], "where": [ - 2164 + 2267 ], "__typename": [ 78 @@ -37220,61 +38844,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2660 + 2763 ], "can_pick_region_veto": [ - 2660 + 2763 ], "can_update_lineup": [ - 2660 + 2763 ], "captain": [ - 4808 + 4921 ], "coach": [ - 3631 + 3734 ], "coach_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_on_lineup": [ - 2660 + 2763 ], "is_picking_map_veto": [ - 2660 + 2763 ], "is_picking_region_veto": [ - 2660 + 2763 ], "is_ready": [ - 2660 + 2763 ], "lineup_players_aggregate": [ - 2117 + 2220 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_veto_picks_aggregate": [ - 2294 + 2397 ], "name": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "team_name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37282,7 +38906,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -37294,13 +38918,13 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -37319,7 +38943,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37335,7 +38959,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37351,7 +38975,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37359,7 +38983,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2186 + 2289 ], "ordering": [ 236 @@ -37373,13 +38997,13 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "team_id": [ - 4641 + 4744 ], "team_name": [ 78 @@ -37398,7 +39022,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37407,13 +39031,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2166 + 2269 ], "_set": [ - 2178 + 2281 ], "where": [ - 2164 + 2267 ], "__typename": [ 78 @@ -37429,7 +39053,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37445,7 +39069,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37461,7 +39085,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37469,7 +39093,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1531, + 1634, { "path": [ 78 @@ -37521,16 +39145,16 @@ export default { } ], "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2064, + 2167, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -37540,19 +39164,19 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], "demo_sessions_aggregate": [ - 2065, + 2168, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -37562,11 +39186,11 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], @@ -37583,10 +39207,10 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "kills": [ - 1531, + 1634, { "path": [ 78 @@ -37597,13 +39221,13 @@ export default { 78 ], "match": [ - 2475 + 2578 ], "match_clips": [ - 2022, + 2125, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -37613,19 +39237,19 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_aggregate": [ - 2023, + 2126, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -37635,25 +39259,25 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -37665,7 +39289,7 @@ export default { 78 ], "players": [ - 1531, + 1634, { "path": [ 78 @@ -37673,7 +39297,7 @@ export default { } ], "round_ticks": [ - 1531, + 1634, { "path": [ 78 @@ -37698,10 +39322,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2203 + 2306 ], "nodes": [ - 2197 + 2300 ], "__typename": [ 78 @@ -37709,13 +39333,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2200 + 2303 ], "bool_or": [ - 2201 + 2304 ], "count": [ - 2202 + 2305 ], "__typename": [ 78 @@ -37723,13 +39347,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2227 + 2330 ], "distinct": [ 3 ], "filter": [ - 2209 + 2312 ], "predicate": [ 4 @@ -37740,13 +39364,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2228 + 2331 ], "distinct": [ 3 ], "filter": [ - 2209 + 2312 ], "predicate": [ 4 @@ -37757,13 +39381,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2226 + 2329 ], "distinct": [ 3 ], "filter": [ - 2209 + 2312 ], "predicate": [ 39 @@ -37774,13 +39398,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2207 + 2310 ], "count": [ 38, { "columns": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "distinct": [ @@ -37789,31 +39413,31 @@ export default { } ], "max": [ - 2216 + 2319 ], "min": [ - 2218 + 2321 ], "stddev": [ - 2230 + 2333 ], "stddev_pop": [ - 2232 + 2335 ], "stddev_samp": [ - 2234 + 2337 ], "sum": [ - 2238 + 2341 ], "var_pop": [ - 2242 + 2345 ], "var_samp": [ - 2244 + 2347 ], "variance": [ - 2246 + 2349 ], "__typename": [ 78 @@ -37821,37 +39445,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2208 + 2311 ], "count": [ - 2660 + 2763 ], "max": [ - 2217 + 2320 ], "min": [ - 2219 + 2322 ], "stddev": [ - 2231 + 2334 ], "stddev_pop": [ - 2233 + 2336 ], "stddev_samp": [ - 2235 + 2338 ], "sum": [ - 2239 + 2342 ], "var_pop": [ - 2243 + 2346 ], "var_samp": [ - 2245 + 2348 ], "variance": [ - 2247 + 2350 ], "__typename": [ 78 @@ -37859,16 +39483,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1531 + 1634 ], "kills": [ - 1531 + 1634 ], "players": [ - 1531 + 1634 ], "round_ticks": [ - 1531 + 1634 ], "__typename": [ 78 @@ -37876,10 +39500,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2215 + 2318 ], "on_conflict": [ - 2222 + 2325 ], "__typename": [ 78 @@ -37907,19 +39531,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -37927,16 +39551,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2209 + 2312 ], "_not": [ - 2209 + 2312 ], "_or": [ - 2209 + 2312 ], "bombs": [ - 1533 + 1636 ], "clip_render_jobs": [ 197 @@ -37945,16 +39569,16 @@ export default { 187 ], "created_at": [ - 4204 + 4307 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2074 + 2177 ], "demo_sessions_aggregate": [ - 2066 + 2169 ], "download_url": [ 80 @@ -37969,34 +39593,34 @@ export default { 4 ], "id": [ - 4643 + 4746 ], "kills": [ - 1533 + 1636 ], "map_name": [ 80 ], "match": [ - 2484 + 2587 ], "match_clips": [ - 2031 + 2134 ], "match_clips_aggregate": [ - 2024 + 2127 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "metadata_parsed_at": [ - 4204 + 4307 ], "playback_file": [ 80 @@ -38008,10 +39632,10 @@ export default { 80 ], "players": [ - 1533 + 1636 ], "round_ticks": [ - 1533 + 1636 ], "size": [ 39 @@ -38100,19 +39724,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1531 + 1634 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2071 + 2174 ], "file": [ 78 @@ -38121,31 +39745,31 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "kills": [ - 1531 + 1634 ], "map_name": [ 78 ], "match": [ - 2493 + 2596 ], "match_clips": [ - 2028 + 2131 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -38154,10 +39778,10 @@ export default { 38 ], "players": [ - 1531 + 1634 ], "round_ticks": [ - 1531 + 1634 ], "size": [ 38 @@ -38177,7 +39801,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 @@ -38192,19 +39816,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "map_name": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -38233,49 +39857,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2660 + 2763 ], "cs2_build": [ - 2660 + 2763 ], "duration_seconds": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map_name": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "metadata_parsed_at": [ - 2660 + 2763 ], "playback_file": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "workshop_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38283,7 +39907,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 @@ -38298,19 +39922,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "map_name": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -38339,49 +39963,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2660 + 2763 ], "cs2_build": [ - 2660 + 2763 ], "duration_seconds": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map_name": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "metadata_parsed_at": [ - 2660 + 2763 ], "playback_file": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "workshop_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38392,7 +40016,7 @@ export default { 38 ], "returning": [ - 2197 + 2300 ], "__typename": [ 78 @@ -38400,10 +40024,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2215 + 2318 ], "on_conflict": [ - 2222 + 2325 ], "__typename": [ 78 @@ -38411,13 +40035,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2210 + 2313 ], "update_columns": [ - 2240 + 2343 ], "where": [ - 2209 + 2312 ], "__typename": [ 78 @@ -38425,85 +40049,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2660 + 2763 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2660 + 2763 ], "cs2_build": [ - 2660 + 2763 ], "demo_sessions_aggregate": [ - 2069 + 2172 ], "download_url": [ - 2660 + 2763 ], "duration_seconds": [ - 2660 + 2763 ], "file": [ - 2660 + 2763 ], "geometry_validated": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_name": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_clips_aggregate": [ - 2027 + 2130 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "metadata_parsed_at": [ - 2660 + 2763 ], "playback_file": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "playback_url": [ - 2660 + 2763 ], "players": [ - 2660 + 2763 ], "round_ticks": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "workshop_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38511,7 +40135,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -38519,16 +40143,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1531 + 1634 ], "kills": [ - 1531 + 1634 ], "players": [ - 1531 + 1634 ], "round_ticks": [ - 1531 + 1634 ], "__typename": [ 78 @@ -38539,10 +40163,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1531 + 1634 ], "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 @@ -38554,22 +40178,22 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "kills": [ - 1531 + 1634 ], "map_name": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -38578,10 +40202,10 @@ export default { 38 ], "players": [ - 1531 + 1634 ], "round_ticks": [ - 1531 + 1634 ], "size": [ 38 @@ -38621,19 +40245,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38661,19 +40285,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38701,19 +40325,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38721,7 +40345,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2237 + 2340 ], "ordering": [ 236 @@ -38732,10 +40356,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1531 + 1634 ], "created_at": [ - 4203 + 4306 ], "cs2_build": [ 78 @@ -38750,22 +40374,22 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "kills": [ - 1531 + 1634 ], "map_name": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "metadata_parsed_at": [ - 4203 + 4306 ], "playback_file": [ 78 @@ -38774,10 +40398,10 @@ export default { 38 ], "players": [ - 1531 + 1634 ], "round_ticks": [ - 1531 + 1634 ], "size": [ 38 @@ -38817,19 +40441,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38838,28 +40462,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2205 + 2308 ], "_delete_at_path": [ - 2211 + 2314 ], "_delete_elem": [ - 2212 + 2315 ], "_delete_key": [ - 2213 + 2316 ], "_inc": [ - 2214 + 2317 ], "_prepend": [ - 2225 + 2328 ], "_set": [ - 2229 + 2332 ], "where": [ - 2209 + 2312 ], "__typename": [ 78 @@ -38887,19 +40511,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38927,19 +40551,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38967,19 +40591,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2660 + 2763 ], "playback_size": [ - 2660 + 2763 ], "size": [ - 2660 + 2763 ], "tick_rate": [ - 2660 + 2763 ], "total_ticks": [ - 2660 + 2763 ], "__typename": [ 78 @@ -38987,10 +40611,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -39000,19 +40624,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -39022,11 +40646,11 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], @@ -39034,22 +40658,22 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "has_backup_file": [ 3 ], "id": [ - 4641 + 4744 ], "kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -39059,19 +40683,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -39081,11 +40705,11 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], @@ -39096,7 +40720,7 @@ export default { 38 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -39108,25 +40732,25 @@ export default { 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_reason": [ - 1205 + 1225 ], "winning_side": [ 78 @@ -39137,10 +40761,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2252 + 2355 ], "nodes": [ - 2248 + 2351 ], "__typename": [ 78 @@ -39148,7 +40772,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2251 + 2354 ], "__typename": [ 78 @@ -39156,13 +40780,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2269 + 2372 ], "distinct": [ 3 ], "filter": [ - 2257 + 2360 ], "predicate": [ 39 @@ -39173,13 +40797,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2255 + 2358 ], "count": [ 38, { "columns": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -39188,31 +40812,31 @@ export default { } ], "max": [ - 2261 + 2364 ], "min": [ - 2263 + 2366 ], "stddev": [ - 2271 + 2374 ], "stddev_pop": [ - 2273 + 2376 ], "stddev_samp": [ - 2275 + 2378 ], "sum": [ - 2279 + 2382 ], "var_pop": [ - 2283 + 2386 ], "var_samp": [ - 2285 + 2388 ], "variance": [ - 2287 + 2390 ], "__typename": [ 78 @@ -39220,37 +40844,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2256 + 2359 ], "count": [ - 2660 + 2763 ], "max": [ - 2262 + 2365 ], "min": [ - 2264 + 2367 ], "stddev": [ - 2272 + 2375 ], "stddev_pop": [ - 2274 + 2377 ], "stddev_samp": [ - 2276 + 2379 ], "sum": [ - 2280 + 2383 ], "var_pop": [ - 2284 + 2387 ], "var_samp": [ - 2286 + 2389 ], "variance": [ - 2288 + 2391 ], "__typename": [ 78 @@ -39258,10 +40882,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2260 + 2363 ], "on_conflict": [ - 2266 + 2369 ], "__typename": [ 78 @@ -39295,25 +40919,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39321,40 +40945,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2257 + 2360 ], "_not": [ - 2257 + 2360 ], "_or": [ - 2257 + 2360 ], "assists": [ - 2809 + 2912 ], "assists_aggregate": [ - 2800 + 2903 ], "backup_file": [ 80 ], "created_at": [ - 4204 + 4307 ], "deleted_at": [ - 4204 + 4307 ], "has_backup_file": [ 4 ], "id": [ - 4643 + 4746 ], "kills": [ - 3026 + 3129 ], "kills_aggregate": [ - 3017 + 3120 ], "lineup_1_money": [ 39 @@ -39363,7 +40987,7 @@ export default { 39 ], "lineup_1_side": [ - 1023 + 1043 ], "lineup_1_timeouts_available": [ 39 @@ -39375,25 +40999,25 @@ export default { 39 ], "lineup_2_side": [ - 1023 + 1043 ], "lineup_2_timeouts_available": [ 39 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "round": [ 39 ], "time": [ - 4204 + 4307 ], "winning_reason": [ - 1206 + 1226 ], "winning_side": [ 80 @@ -39431,22 +41055,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2806 + 2909 ], "backup_file": [ 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "kills": [ - 3023 + 3126 ], "lineup_1_money": [ 38 @@ -39455,7 +41079,7 @@ export default { 38 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -39467,25 +41091,25 @@ export default { 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_reason": [ - 1205 + 1225 ], "winning_side": [ 78 @@ -39499,13 +41123,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "lineup_1_money": [ 38 @@ -39526,13 +41150,13 @@ export default { 38 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_side": [ 78 @@ -39543,46 +41167,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "winning_side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39593,13 +41217,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "lineup_1_money": [ 38 @@ -39620,13 +41244,13 @@ export default { 38 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_side": [ 78 @@ -39637,46 +41261,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "winning_side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39687,7 +41311,7 @@ export default { 38 ], "returning": [ - 2248 + 2351 ], "__typename": [ 78 @@ -39695,13 +41319,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2258 + 2361 ], "update_columns": [ - 2281 + 2384 ], "where": [ - 2257 + 2360 ], "__typename": [ 78 @@ -39709,67 +41333,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2805 + 2908 ], "backup_file": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "has_backup_file": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "kills_aggregate": [ - 3022 + 3125 ], "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_side": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_side": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "winning_reason": [ - 2660 + 2763 ], "winning_side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39777,7 +41401,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -39789,13 +41413,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "lineup_1_money": [ 38 @@ -39804,7 +41428,7 @@ export default { 38 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -39816,22 +41440,22 @@ export default { 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_reason": [ - 1205 + 1225 ], "winning_side": [ 78 @@ -39868,25 +41492,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39920,25 +41544,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39972,25 +41596,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -39998,7 +41622,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2278 + 2381 ], "ordering": [ 236 @@ -40012,13 +41636,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "lineup_1_money": [ 38 @@ -40027,7 +41651,7 @@ export default { 38 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -40039,22 +41663,22 @@ export default { 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "winning_reason": [ - 1205 + 1225 ], "winning_side": [ 78 @@ -40091,25 +41715,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40118,13 +41742,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2259 + 2362 ], "_set": [ - 2270 + 2373 ], "where": [ - 2257 + 2360 ], "__typename": [ 78 @@ -40158,25 +41782,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40210,25 +41834,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40262,25 +41886,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_money": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40288,34 +41912,34 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -40323,10 +41947,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2293 + 2396 ], "nodes": [ - 2289 + 2392 ], "__typename": [ 78 @@ -40334,7 +41958,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2292 + 2395 ], "__typename": [ 78 @@ -40342,13 +41966,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2307 + 2410 ], "distinct": [ 3 ], "filter": [ - 2296 + 2399 ], "predicate": [ 39 @@ -40362,7 +41986,7 @@ export default { 38, { "columns": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -40371,10 +41995,10 @@ export default { } ], "max": [ - 2299 + 2402 ], "min": [ - 2301 + 2404 ], "__typename": [ 78 @@ -40382,13 +42006,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 2300 + 2403 ], "min": [ - 2302 + 2405 ], "__typename": [ 78 @@ -40396,10 +42020,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2298 + 2401 ], "on_conflict": [ - 2304 + 2407 ], "__typename": [ 78 @@ -40407,43 +42031,43 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2296 + 2399 ], "_not": [ - 2296 + 2399 ], "_or": [ - 2296 + 2399 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "side": [ 80 ], "type": [ - 1186 + 1206 ], "__typename": [ 78 @@ -40452,34 +42076,34 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map": [ - 2010 + 2113 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -40487,19 +42111,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 @@ -40510,22 +42134,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40533,19 +42157,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 @@ -40556,22 +42180,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40582,7 +42206,7 @@ export default { 38 ], "returning": [ - 2289 + 2392 ], "__typename": [ 78 @@ -40590,13 +42214,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2297 + 2400 ], "update_columns": [ - 2311 + 2414 ], "where": [ - 2296 + 2399 ], "__typename": [ 78 @@ -40604,34 +42228,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -40639,7 +42263,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -40648,25 +42272,25 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -40674,7 +42298,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2310 + 2413 ], "ordering": [ 236 @@ -40685,25 +42309,25 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "side": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -40712,10 +42336,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2308 + 2411 ], "where": [ - 2296 + 2399 ], "__typename": [ 78 @@ -40726,13 +42350,13 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "demos": [ - 2197, + 2300, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -40742,19 +42366,19 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "demos_aggregate": [ - 2198, + 2301, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -40764,11 +42388,11 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], @@ -40779,16 +42403,16 @@ export default { 38 ], "e_match_map_status": [ - 773 + 793 ], "ended_at": [ - 4203 + 4306 ], "flashes": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -40798,19 +42422,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "flashes_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -40820,28 +42444,28 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "id": [ - 4641 + 4744 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_score": [ 38 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 @@ -40850,25 +42474,25 @@ export default { 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_clips": [ - 2022, + 2125, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -40878,19 +42502,19 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_aggregate": [ - 2023, + 2126, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -40900,22 +42524,22 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_id": [ - 4641 + 4744 ], "objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -40925,19 +42549,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -40947,11 +42571,11 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], @@ -40959,10 +42583,10 @@ export default { 38 ], "player_assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -40972,19 +42596,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -40994,19 +42618,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_damages": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -41016,19 +42640,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -41038,19 +42662,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -41060,19 +42684,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -41082,19 +42706,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_unused_utilities": [ - 3503, + 3606, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -41104,19 +42728,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utilities_aggregate": [ - 3504, + 3607, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -41126,11 +42750,11 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], @@ -41138,13 +42762,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "rounds": [ - 2248, + 2351, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -41154,19 +42778,19 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "rounds_aggregate": [ - 2249, + 2352, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -41176,25 +42800,25 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "started_at": [ - 4203 + 4306 ], "status": [ - 778 + 798 ], "utility": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -41204,19 +42828,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "utility_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -41226,19 +42850,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "vetos": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -41248,19 +42872,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "vetos_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -41270,16 +42894,16 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -41287,10 +42911,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2317 + 2420 ], "nodes": [ - 2313 + 2416 ], "__typename": [ 78 @@ -41298,7 +42922,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2316 + 2419 ], "__typename": [ 78 @@ -41306,13 +42930,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2335 + 2438 ], "distinct": [ 3 ], "filter": [ - 2322 + 2425 ], "predicate": [ 39 @@ -41323,13 +42947,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2320 + 2423 ], "count": [ 38, { "columns": [ - 2335, + 2438, "[match_maps_select_column!]" ], "distinct": [ @@ -41338,31 +42962,31 @@ export default { } ], "max": [ - 2326 + 2429 ], "min": [ - 2328 + 2431 ], "stddev": [ - 2337 + 2440 ], "stddev_pop": [ - 2339 + 2442 ], "stddev_samp": [ - 2341 + 2444 ], "sum": [ - 2345 + 2448 ], "var_pop": [ - 2349 + 2452 ], "var_samp": [ - 2351 + 2454 ], "variance": [ - 2353 + 2456 ], "__typename": [ 78 @@ -41370,37 +42994,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2321 + 2424 ], "count": [ - 2660 + 2763 ], "max": [ - 2327 + 2430 ], "min": [ - 2329 + 2432 ], "stddev": [ - 2338 + 2441 ], "stddev_pop": [ - 2340 + 2443 ], "stddev_samp": [ - 2342 + 2445 ], "sum": [ - 2346 + 2449 ], "var_pop": [ - 2350 + 2453 ], "var_samp": [ - 2352 + 2455 ], "variance": [ - 2354 + 2457 ], "__typename": [ 78 @@ -41408,10 +43032,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2325 + 2428 ], "on_conflict": [ - 2332 + 2435 ], "__typename": [ 78 @@ -41448,19 +43072,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -41468,25 +43092,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2322 + 2425 ], "_not": [ - 2322 + 2425 ], "_or": [ - 2322 + 2425 ], "clips_count": [ 39 ], "created_at": [ - 4204 + 4307 ], "demos": [ - 2209 + 2312 ], "demos_aggregate": [ - 2199 + 2302 ], "demos_download_url": [ 80 @@ -41495,31 +43119,31 @@ export default { 39 ], "e_match_map_status": [ - 776 + 796 ], "ended_at": [ - 4204 + 4307 ], "flashes": [ - 2981 + 3084 ], "flashes_aggregate": [ - 2972 + 3075 ], "id": [ - 4643 + 4746 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4204 + 4307 ], "lineup_1_score": [ 39 ], "lineup_1_side": [ - 1023 + 1043 ], "lineup_1_timeouts_available": [ 39 @@ -41528,94 +43152,94 @@ export default { 39 ], "lineup_2_side": [ - 1023 + 1043 ], "lineup_2_timeouts_available": [ 39 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_clips": [ - 2031 + 2134 ], "match_clips_aggregate": [ - 2024 + 2127 ], "match_id": [ - 4643 + 4746 ], "objectives": [ - 3225 + 3328 ], "objectives_aggregate": [ - 3218 + 3321 ], "order": [ 39 ], "player_assists": [ - 2809 + 2912 ], "player_assists_aggregate": [ - 2800 + 2903 ], "player_damages": [ - 2870 + 2973 ], "player_damages_aggregate": [ - 2863 + 2966 ], "player_kills": [ - 3026 + 3129 ], "player_kills_aggregate": [ - 3017 + 3120 ], "player_unused_utilities": [ - 3512 + 3615 ], "player_unused_utilities_aggregate": [ - 3505 + 3608 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4204 + 4307 ], "rounds": [ - 2257 + 2360 ], "rounds_aggregate": [ - 2250 + 2353 ], "started_at": [ - 4204 + 4307 ], "status": [ - 779 + 799 ], "utility": [ - 3553 + 3656 ], "utility_aggregate": [ - 3546 + 3649 ], "vetos": [ - 2296 + 2399 ], "vetos_aggregate": [ - 2291 + 2394 ], "winning_lineup_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -41647,94 +43271,94 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "demos": [ - 2206 + 2309 ], "e_match_map_status": [ - 784 + 804 ], "ended_at": [ - 4203 + 4306 ], "flashes": [ - 2978 + 3081 ], "id": [ - 4641 + 4744 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map": [ - 2010 + 2113 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_clips": [ - 2028 + 2131 ], "match_id": [ - 4641 + 4744 ], "objectives": [ - 3222 + 3325 ], "order": [ 38 ], "player_assists": [ - 2806 + 2909 ], "player_damages": [ - 2867 + 2970 ], "player_kills": [ - 3023 + 3126 ], "player_unused_utilities": [ - 3509 + 3612 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "rounds": [ - 2254 + 2357 ], "started_at": [ - 4203 + 4306 ], "status": [ - 778 + 798 ], "utility": [ - 3550 + 3653 ], "vetos": [ - 2295 + 2398 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -41745,7 +43369,7 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "demos_download_url": [ 78 @@ -41754,13 +43378,13 @@ export default { 38 ], "ended_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_score": [ 38 @@ -41775,10 +43399,10 @@ export default { 38 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "order": [ 38 @@ -41787,13 +43411,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "started_at": [ - 4203 + 4306 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -41801,46 +43425,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "ended_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "latest_clip_at": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "public_latest_clip_at": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -41851,7 +43475,7 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "demos_download_url": [ 78 @@ -41860,13 +43484,13 @@ export default { 38 ], "ended_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_score": [ 38 @@ -41881,10 +43505,10 @@ export default { 38 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "order": [ 38 @@ -41893,13 +43517,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "started_at": [ - 4203 + 4306 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -41907,46 +43531,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "ended_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "latest_clip_at": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "public_latest_clip_at": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -41957,7 +43581,7 @@ export default { 38 ], "returning": [ - 2313 + 2416 ], "__typename": [ 78 @@ -41965,10 +43589,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2325 + 2428 ], "on_conflict": [ - 2332 + 2435 ], "__typename": [ 78 @@ -41976,13 +43600,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2323 + 2426 ], "update_columns": [ - 2347 + 2450 ], "where": [ - 2322 + 2425 ], "__typename": [ 78 @@ -41990,112 +43614,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "demos_aggregate": [ - 2204 + 2307 ], "demos_download_url": [ - 2660 + 2763 ], "demos_total_size": [ - 2660 + 2763 ], "e_match_map_status": [ - 786 + 806 ], "ended_at": [ - 2660 + 2763 ], "flashes_aggregate": [ - 2977 + 3080 ], "id": [ - 2660 + 2763 ], "is_current_map": [ - 2660 + 2763 ], "latest_clip_at": [ - 2660 + 2763 ], "lineup_1_score": [ - 2660 + 2763 ], "lineup_1_side": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_score": [ - 2660 + 2763 ], "lineup_2_side": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_clips_aggregate": [ - 2027 + 2130 ], "match_id": [ - 2660 + 2763 ], "objectives_aggregate": [ - 3221 + 3324 ], "order": [ - 2660 + 2763 ], "player_assists_aggregate": [ - 2805 + 2908 ], "player_damages_aggregate": [ - 2866 + 2969 ], "player_kills_aggregate": [ - 3022 + 3125 ], "player_unused_utilities_aggregate": [ - 3508 + 3611 ], "public_clips_count": [ - 2660 + 2763 ], "public_latest_clip_at": [ - 2660 + 2763 ], "rounds_aggregate": [ - 2253 + 2356 ], "started_at": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "utility_aggregate": [ - 3549 + 3652 ], "vetos_aggregate": [ - 2294 + 2397 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42103,7 +43727,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -42115,34 +43739,34 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "order": [ 38 @@ -42151,16 +43775,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "started_at": [ - 4203 + 4306 ], "status": [ - 778 + 798 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -42197,19 +43821,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42246,19 +43870,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42295,19 +43919,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42315,7 +43939,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2344 + 2447 ], "ordering": [ 236 @@ -42329,34 +43953,34 @@ export default { 38 ], "created_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "latest_clip_at": [ - 4203 + 4306 ], "lineup_1_side": [ - 1022 + 1042 ], "lineup_1_timeouts_available": [ 38 ], "lineup_2_side": [ - 1022 + 1042 ], "lineup_2_timeouts_available": [ 38 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "order": [ 38 @@ -42365,16 +43989,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4203 + 4306 ], "started_at": [ - 4203 + 4306 ], "status": [ - 778 + 798 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -42411,19 +44035,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42432,13 +44056,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2324 + 2427 ], "_set": [ - 2336 + 2439 ], "where": [ - 2322 + 2425 ], "__typename": [ 78 @@ -42475,19 +44099,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42524,19 +44148,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42573,19 +44197,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2660 + 2763 ], "lineup_1_timeouts_available": [ - 2660 + 2763 ], "lineup_2_timeouts_available": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "public_clips_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -42614,7 +44238,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -42626,22 +44250,22 @@ export default { 38 ], "map_pool": [ - 1974 + 2077 ], "map_pool_id": [ - 4641 + 4744 ], "map_veto": [ 3 ], "match_mode": [ - 799 + 819 ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -42651,19 +44275,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_aggregate": [ - 2476, + 2579, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -42673,11 +44297,11 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], @@ -42694,7 +44318,7 @@ export default { 3 ], "ready_setting": [ - 941 + 961 ], "region_veto": [ 3 @@ -42703,25 +44327,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1103 + 1123 ], "timeout_setting": [ - 1103 + 1123 ], "tournament": [ - 4595 + 4698 ], "tournament_bracket": [ - 4205 + 4308 ], "tournament_stage": [ - 4333 + 4436 ], "tv_delay": [ 38 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -42729,10 +44353,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2357 + 2460 ], "nodes": [ - 2355 + 2458 ], "__typename": [ 78 @@ -42740,13 +44364,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2358 + 2461 ], "count": [ 38, { "columns": [ - 2370, + 2473, "[match_options_select_column!]" ], "distinct": [ @@ -42755,31 +44379,31 @@ export default { } ], "max": [ - 2363 + 2466 ], "min": [ - 2364 + 2467 ], "stddev": [ - 2372 + 2475 ], "stddev_pop": [ - 2373 + 2476 ], "stddev_samp": [ - 2374 + 2477 ], "sum": [ - 2377 + 2480 ], "var_pop": [ - 2380 + 2483 ], "var_samp": [ - 2381 + 2484 ], "variance": [ - 2382 + 2485 ], "__typename": [ 78 @@ -42810,13 +44434,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2359 + 2462 ], "_not": [ - 2359 + 2462 ], "_or": [ - 2359 + 2462 ], "auto_cancel_duration": [ 39 @@ -42840,7 +44464,7 @@ export default { 4 ], "id": [ - 4643 + 4746 ], "invite_code": [ 80 @@ -42852,22 +44476,22 @@ export default { 39 ], "map_pool": [ - 1977 + 2080 ], "map_pool_id": [ - 4643 + 4746 ], "map_veto": [ 4 ], "match_mode": [ - 800 + 820 ], "matches": [ - 2484 + 2587 ], "matches_aggregate": [ - 2477 + 2580 ], "mr": [ 39 @@ -42882,7 +44506,7 @@ export default { 4 ], "ready_setting": [ - 942 + 962 ], "region_veto": [ 4 @@ -42891,25 +44515,25 @@ export default { 79 ], "tech_timeout_setting": [ - 1104 + 1124 ], "timeout_setting": [ - 1104 + 1124 ], "tournament": [ - 4606 + 4709 ], "tournament_bracket": [ - 4216 + 4319 ], "tournament_stage": [ - 4345 + 4448 ], "tv_delay": [ 39 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -42959,7 +44583,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -42971,19 +44595,19 @@ export default { 38 ], "map_pool": [ - 1983 + 2086 ], "map_pool_id": [ - 4641 + 4744 ], "map_veto": [ 3 ], "match_mode": [ - 799 + 819 ], "matches": [ - 2481 + 2584 ], "mr": [ 38 @@ -42998,7 +44622,7 @@ export default { 3 ], "ready_setting": [ - 941 + 961 ], "region_veto": [ 3 @@ -43007,25 +44631,25 @@ export default { 78 ], "tech_timeout_setting": [ - 1103 + 1123 ], "timeout_setting": [ - 1103 + 1123 ], "tournament": [ - 4615 + 4718 ], "tournament_bracket": [ - 4225 + 4328 ], "tournament_stage": [ - 4357 + 4460 ], "tv_delay": [ 38 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -43039,7 +44663,7 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -43048,7 +44672,7 @@ export default { 38 ], "map_pool_id": [ - 4641 + 4744 ], "mr": [ 38 @@ -43074,7 +44698,7 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -43083,7 +44707,7 @@ export default { 38 ], "map_pool_id": [ - 4641 + 4744 ], "mr": [ 38 @@ -43106,7 +44730,7 @@ export default { 38 ], "returning": [ - 2355 + 2458 ], "__typename": [ 78 @@ -43114,10 +44738,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2362 + 2465 ], "on_conflict": [ - 2367 + 2470 ], "__typename": [ 78 @@ -43125,13 +44749,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2360 + 2463 ], "update_columns": [ - 2378 + 2481 ], "where": [ - 2359 + 2462 ], "__typename": [ 78 @@ -43139,94 +44763,94 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2660 + 2763 ], "auto_cancellation": [ - 2660 + 2763 ], "best_of": [ - 2660 + 2763 ], "check_in_setting": [ - 2660 + 2763 ], "coaches": [ - 2660 + 2763 ], "default_models": [ - 2660 + 2763 ], "has_active_matches": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invite_code": [ - 2660 + 2763 ], "knife_round": [ - 2660 + 2763 ], "live_match_timeout": [ - 2660 + 2763 ], "map_pool": [ - 1985 + 2088 ], "map_pool_id": [ - 2660 + 2763 ], "map_veto": [ - 2660 + 2763 ], "match_mode": [ - 2660 + 2763 ], "matches_aggregate": [ - 2480 + 2583 ], "mr": [ - 2660 + 2763 ], "number_of_substitutes": [ - 2660 + 2763 ], "overtime": [ - 2660 + 2763 ], "prefer_dedicated_server": [ - 2660 + 2763 ], "ready_setting": [ - 2660 + 2763 ], "region_veto": [ - 2660 + 2763 ], "regions": [ - 2660 + 2763 ], "tech_timeout_setting": [ - 2660 + 2763 ], "timeout_setting": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_bracket": [ - 4227 + 4330 ], "tournament_stage": [ - 4359 + 4462 ], "tv_delay": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -43234,7 +44858,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -43261,7 +44885,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -43273,13 +44897,13 @@ export default { 38 ], "map_pool_id": [ - 4641 + 4744 ], "map_veto": [ 3 ], "match_mode": [ - 799 + 819 ], "mr": [ 38 @@ -43294,7 +44918,7 @@ export default { 3 ], "ready_setting": [ - 941 + 961 ], "region_veto": [ 3 @@ -43303,16 +44927,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1103 + 1123 ], "timeout_setting": [ - 1103 + 1123 ], "tv_delay": [ 38 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -43389,7 +45013,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2376 + 2479 ], "ordering": [ 236 @@ -43418,7 +45042,7 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -43430,13 +45054,13 @@ export default { 38 ], "map_pool_id": [ - 4641 + 4744 ], "map_veto": [ 3 ], "match_mode": [ - 799 + 819 ], "mr": [ 38 @@ -43451,7 +45075,7 @@ export default { 3 ], "ready_setting": [ - 941 + 961 ], "region_veto": [ 3 @@ -43460,16 +45084,16 @@ export default { 78 ], "tech_timeout_setting": [ - 1103 + 1123 ], "timeout_setting": [ - 1103 + 1123 ], "tv_delay": [ 38 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -43501,13 +45125,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2361 + 2464 ], "_set": [ - 2371 + 2474 ], "where": [ - 2359 + 2462 ], "__typename": [ 78 @@ -43584,28 +45208,28 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -43613,10 +45237,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2387 + 2490 ], "nodes": [ - 2383 + 2486 ], "__typename": [ 78 @@ -43624,7 +45248,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2386 + 2489 ], "__typename": [ 78 @@ -43632,13 +45256,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2401 + 2504 ], "distinct": [ 3 ], "filter": [ - 2390 + 2493 ], "predicate": [ 39 @@ -43652,7 +45276,7 @@ export default { 38, { "columns": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -43661,10 +45285,10 @@ export default { } ], "max": [ - 2393 + 2496 ], "min": [ - 2395 + 2498 ], "__typename": [ 78 @@ -43672,13 +45296,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 2394 + 2497 ], "min": [ - 2396 + 2499 ], "__typename": [ 78 @@ -43686,10 +45310,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2392 + 2495 ], "on_conflict": [ - 2398 + 2501 ], "__typename": [ 78 @@ -43697,37 +45321,37 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2390 + 2493 ], "_not": [ - 2390 + 2493 ], "_or": [ - 2390 + 2493 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "region": [ 80 ], "type": [ - 1186 + 1206 ], "__typename": [ 78 @@ -43736,28 +45360,28 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -43765,16 +45389,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 @@ -43785,19 +45409,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "__typename": [ 78 @@ -43805,16 +45429,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 @@ -43825,19 +45449,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "__typename": [ 78 @@ -43848,7 +45472,7 @@ export default { 38 ], "returning": [ - 2383 + 2486 ], "__typename": [ 78 @@ -43856,13 +45480,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2391 + 2494 ], "update_columns": [ - 2405 + 2508 ], "where": [ - 2390 + 2493 ], "__typename": [ 78 @@ -43870,28 +45494,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -43899,7 +45523,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -43908,22 +45532,22 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -43931,7 +45555,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2404 + 2507 ], "ordering": [ 236 @@ -43942,22 +45566,22 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "region": [ 78 ], "type": [ - 1185 + 1205 ], "__typename": [ 78 @@ -43966,10 +45590,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2402 + 2505 ], "where": [ - 2390 + 2493 ], "__typename": [ 78 @@ -43983,13 +45607,13 @@ export default { 78 ], "game_server_node": [ - 1407 + 1510 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_game_streamer": [ 3 @@ -44001,16 +45625,16 @@ export default { 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44022,7 +45646,7 @@ export default { 78 ], "status_history": [ - 1531, + 1634, { "path": [ 78 @@ -44041,10 +45665,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2413 + 2516 ], "nodes": [ - 2407 + 2510 ], "__typename": [ 78 @@ -44052,13 +45676,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2410 + 2513 ], "bool_or": [ - 2411 + 2514 ], "count": [ - 2412 + 2515 ], "__typename": [ 78 @@ -44066,13 +45690,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2436 + 2539 ], "distinct": [ 3 ], "filter": [ - 2419 + 2522 ], "predicate": [ 4 @@ -44083,13 +45707,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2437 + 2540 ], "distinct": [ 3 ], "filter": [ - 2419 + 2522 ], "predicate": [ 4 @@ -44100,13 +45724,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2435 + 2538 ], "distinct": [ 3 ], "filter": [ - 2419 + 2522 ], "predicate": [ 39 @@ -44117,13 +45741,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2417 + 2520 ], "count": [ 38, { "columns": [ - 2435, + 2538, "[match_streams_select_column!]" ], "distinct": [ @@ -44132,31 +45756,31 @@ export default { } ], "max": [ - 2426 + 2529 ], "min": [ - 2428 + 2531 ], "stddev": [ - 2439 + 2542 ], "stddev_pop": [ - 2441 + 2544 ], "stddev_samp": [ - 2443 + 2546 ], "sum": [ - 2447 + 2550 ], "var_pop": [ - 2451 + 2554 ], "var_samp": [ - 2453 + 2556 ], "variance": [ - 2455 + 2558 ], "__typename": [ 78 @@ -44164,37 +45788,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2418 + 2521 ], "count": [ - 2660 + 2763 ], "max": [ - 2427 + 2530 ], "min": [ - 2429 + 2532 ], "stddev": [ - 2440 + 2543 ], "stddev_pop": [ - 2442 + 2545 ], "stddev_samp": [ - 2444 + 2547 ], "sum": [ - 2448 + 2551 ], "var_pop": [ - 2452 + 2555 ], "var_samp": [ - 2454 + 2557 ], "variance": [ - 2456 + 2559 ], "__typename": [ 78 @@ -44202,7 +45826,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -44210,10 +45834,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2425 + 2528 ], "on_conflict": [ - 2431 + 2534 ], "__typename": [ 78 @@ -44229,7 +45853,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44237,13 +45861,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2419 + 2522 ], "_not": [ - 2419 + 2522 ], "_or": [ - 2419 + 2522 ], "autodirector": [ 4 @@ -44252,13 +45876,13 @@ export default { 80 ], "game_server_node": [ - 1419 + 1522 ], "game_server_node_id": [ 80 ], "id": [ - 4643 + 4746 ], "is_game_streamer": [ 4 @@ -44270,16 +45894,16 @@ export default { 80 ], "last_status_at": [ - 4204 + 4307 ], "link": [ 80 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "mode": [ 80 @@ -44291,7 +45915,7 @@ export default { 80 ], "status_history": [ - 1533 + 1636 ], "stream_url": [ 80 @@ -44344,13 +45968,13 @@ export default { 78 ], "game_server_node": [ - 1431 + 1534 ], "game_server_node_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_game_streamer": [ 3 @@ -44362,16 +45986,16 @@ export default { 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44383,7 +46007,7 @@ export default { 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 @@ -44403,19 +46027,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44438,40 +46062,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_service_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "link": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "mode": [ - 2660 + 2763 ], "priority": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44485,19 +46109,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44520,40 +46144,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_service_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "link": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "mode": [ - 2660 + 2763 ], "priority": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44564,7 +46188,7 @@ export default { 38 ], "returning": [ - 2407 + 2510 ], "__typename": [ 78 @@ -44572,13 +46196,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2420 + 2523 ], "update_columns": [ - 2449 + 2552 ], "where": [ - 2419 + 2522 ], "__typename": [ 78 @@ -44586,58 +46210,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2660 + 2763 ], "error_message": [ - 2660 + 2763 ], "game_server_node": [ - 1433 + 1536 ], "game_server_node_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_game_streamer": [ - 2660 + 2763 ], "is_live": [ - 2660 + 2763 ], "k8s_service_name": [ - 2660 + 2763 ], "last_status_at": [ - 2660 + 2763 ], "link": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "mode": [ - 2660 + 2763 ], "priority": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "status_history": [ - 2660 + 2763 ], "stream_url": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44645,7 +46269,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -44653,7 +46277,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1531 + 1634 ], "__typename": [ 78 @@ -44673,7 +46297,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_game_streamer": [ 3 @@ -44685,13 +46309,13 @@ export default { 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44703,7 +46327,7 @@ export default { 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 @@ -44725,7 +46349,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44741,7 +46365,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44757,7 +46381,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44765,7 +46389,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2446 + 2549 ], "ordering": [ 236 @@ -44785,7 +46409,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_game_streamer": [ 3 @@ -44797,13 +46421,13 @@ export default { 78 ], "last_status_at": [ - 4203 + 4306 ], "link": [ 78 ], "match_id": [ - 4641 + 4744 ], "mode": [ 78 @@ -44815,7 +46439,7 @@ export default { 78 ], "status_history": [ - 1531 + 1634 ], "stream_url": [ 78 @@ -44837,7 +46461,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44846,28 +46470,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2415 + 2518 ], "_delete_at_path": [ - 2421 + 2524 ], "_delete_elem": [ - 2422 + 2525 ], "_delete_key": [ - 2423 + 2526 ], "_inc": [ - 2424 + 2527 ], "_prepend": [ - 2434 + 2537 ], "_set": [ - 2438 + 2541 ], "where": [ - 2419 + 2522 ], "__typename": [ 78 @@ -44883,7 +46507,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44899,7 +46523,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44915,7 +46539,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2660 + 2763 ], "__typename": [ 78 @@ -44926,7 +46550,7 @@ export default { 78 ], "type": [ - 571 + 591 ], "__typename": [ 78 @@ -44934,10 +46558,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2459 + 2562 ], "nodes": [ - 2457 + 2560 ], "__typename": [ 78 @@ -44948,7 +46572,7 @@ export default { 38, { "columns": [ - 2469, + 2572, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -44957,10 +46581,10 @@ export default { } ], "max": [ - 2463 + 2566 ], "min": [ - 2464 + 2567 ], "__typename": [ 78 @@ -44968,19 +46592,19 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2460 + 2563 ], "_not": [ - 2460 + 2563 ], "_or": [ - 2460 + 2563 ], "cfg": [ 80 ], "type": [ - 572 + 592 ], "__typename": [ 78 @@ -44992,7 +46616,7 @@ export default { 78 ], "type": [ - 571 + 591 ], "__typename": [ 78 @@ -45019,7 +46643,7 @@ export default { 38 ], "returning": [ - 2457 + 2560 ], "__typename": [ 78 @@ -45027,13 +46651,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2461 + 2564 ], "update_columns": [ - 2473 + 2576 ], "where": [ - 2460 + 2563 ], "__typename": [ 78 @@ -45041,10 +46665,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -45052,7 +46676,7 @@ export default { }, "match_type_cfgs_pk_columns_input": { "type": [ - 571 + 591 ], "__typename": [ 78 @@ -45064,7 +46688,7 @@ export default { 78 ], "type": [ - 571 + 591 ], "__typename": [ 78 @@ -45072,7 +46696,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2472 + 2575 ], "ordering": [ 236 @@ -45086,7 +46710,7 @@ export default { 78 ], "type": [ - 571 + 591 ], "__typename": [ 78 @@ -45095,10 +46719,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2470 + 2573 ], "where": [ - 2460 + 2563 ], "__typename": [ 78 @@ -45130,13 +46754,13 @@ export default { 3 ], "cancels_at": [ - 4203 + 4306 ], "clutches": [ - 4821, + 4934, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -45146,19 +46770,19 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], "clutches_aggregate": [ - 4822, + 4935, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -45168,11 +46792,11 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], @@ -45183,16 +46807,16 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_match_map_id": [ - 4641 + 4744 ], "demos": [ - 2197, + 2300, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -45202,19 +46826,19 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "demos_aggregate": [ - 2198, + 2301, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -45224,11 +46848,11 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], @@ -45277,19 +46901,19 @@ export default { } ], "e_match_status": [ - 814 + 834 ], "e_region": [ - 3705 + 3808 ], "effective_at": [ - 4203 + 4306 ], "elo_changes": [ - 5018, + 5131, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -45299,19 +46923,19 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "elo_changes_aggregate": [ - 5019, + 5132, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -45321,22 +46945,22 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -45369,19 +46993,19 @@ export default { 78 ], "lineup_1": [ - 2155 + 2258 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2": [ - 2155 + 2258 ], "lineup_2_id": [ - 4641 + 4744 ], "lineup_counts": [ - 1529, + 1632, { "path": [ 78 @@ -45389,13 +47013,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4641 + 4744 ], "map_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -45405,19 +47029,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "map_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -45427,11 +47051,11 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], @@ -45439,10 +47063,10 @@ export default { 78 ], "match_maps": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -45452,19 +47076,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -45474,16 +47098,16 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -45492,10 +47116,10 @@ export default { 38 ], "opening_duels": [ - 4949, + 5062, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -45505,19 +47129,19 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "opening_duels_aggregate": [ - 4950, + 5063, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -45527,19 +47151,19 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "options": [ - 2355 + 2458 ], "organizer": [ - 3618 + 3721 ], "organizer_steam_id": [ 180 @@ -45548,10 +47172,10 @@ export default { 78 ], "player_assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -45561,19 +47185,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -45583,19 +47207,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_damages": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -45605,19 +47229,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -45627,19 +47251,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_flashes": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -45649,19 +47273,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_flashes_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -45671,19 +47295,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -45693,19 +47317,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -45715,19 +47339,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -45737,19 +47361,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -45759,19 +47383,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_unused_utilities": [ - 3503, + 3606, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -45781,19 +47405,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utilities_aggregate": [ - 3504, + 3607, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -45803,19 +47427,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_utility": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -45825,19 +47449,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utility_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -45847,11 +47471,11 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], @@ -45859,13 +47483,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4641 + 4744 ], "region_veto_picks": [ - 2383, + 2486, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -45875,19 +47499,19 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], "region_veto_picks_aggregate": [ - 2384, + 2487, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -45897,11 +47521,11 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], @@ -45909,16 +47533,16 @@ export default { 3 ], "scheduled_at": [ - 4203 + 4306 ], "server": [ - 3732 + 3835 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "server_region": [ 78 @@ -45930,16 +47554,16 @@ export default { 78 ], "started_at": [ - 4203 + 4306 ], "status": [ - 819 + 839 ], "streams": [ - 2407, + 2510, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -45949,19 +47573,19 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "streams_aggregate": [ - 2408, + 2511, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -45971,19 +47595,19 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "teams": [ - 4160, + 4263, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -45993,19 +47617,19 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "tournament_brackets": [ - 4205, + 4308, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -46015,19 +47639,19 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "tournament_brackets_aggregate": [ - 4206, + 4309, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -46037,11 +47661,11 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], @@ -46049,10 +47673,10 @@ export default { 78 ], "winner": [ - 2155 + 2258 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -46060,10 +47684,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2479 + 2582 ], "nodes": [ - 2475 + 2578 ], "__typename": [ 78 @@ -46071,7 +47695,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2478 + 2581 ], "__typename": [ 78 @@ -46079,13 +47703,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2497 + 2600 ], "distinct": [ 3 ], "filter": [ - 2484 + 2587 ], "predicate": [ 39 @@ -46096,13 +47720,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2482 + 2585 ], "count": [ 38, { "columns": [ - 2497, + 2600, "[matches_select_column!]" ], "distinct": [ @@ -46111,31 +47735,31 @@ export default { } ], "max": [ - 2488 + 2591 ], "min": [ - 2490 + 2593 ], "stddev": [ - 2499 + 2602 ], "stddev_pop": [ - 2501 + 2604 ], "stddev_samp": [ - 2503 + 2606 ], "sum": [ - 2507 + 2610 ], "var_pop": [ - 2511 + 2614 ], "var_samp": [ - 2513 + 2616 ], "variance": [ - 2515 + 2618 ], "__typename": [ 78 @@ -46143,37 +47767,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2483 + 2586 ], "count": [ - 2660 + 2763 ], "max": [ - 2489 + 2592 ], "min": [ - 2491 + 2594 ], "stddev": [ - 2500 + 2603 ], "stddev_pop": [ - 2502 + 2605 ], "stddev_samp": [ - 2504 + 2607 ], "sum": [ - 2508 + 2611 ], "var_pop": [ - 2512 + 2615 ], "var_samp": [ - 2514 + 2617 ], "variance": [ - 2516 + 2619 ], "__typename": [ 78 @@ -46181,10 +47805,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2487 + 2590 ], "on_conflict": [ - 2494 + 2597 ], "__typename": [ 78 @@ -46206,7 +47830,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -46214,13 +47838,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2484 + 2587 ], "_not": [ - 2484 + 2587 ], "_or": [ - 2484 + 2587 ], "can_assign_server": [ 4 @@ -46247,13 +47871,13 @@ export default { 4 ], "cancels_at": [ - 4204 + 4307 ], "clutches": [ - 4830 + 4943 ], "clutches_aggregate": [ - 4823 + 4936 ], "connection_link": [ 80 @@ -46262,16 +47886,16 @@ export default { 80 ], "created_at": [ - 4204 + 4307 ], "current_match_map_id": [ - 4643 + 4746 ], "demos": [ - 2209 + 2312 ], "demos_aggregate": [ - 2199 + 2302 ], "draft_games": [ 365 @@ -46280,28 +47904,28 @@ export default { 356 ], "e_match_status": [ - 817 + 837 ], "e_region": [ - 3709 + 3812 ], "effective_at": [ - 4204 + 4307 ], "elo_changes": [ - 5037 + 5150 ], "elo_changes_aggregate": [ - 5020 + 5133 ], "ended_at": [ - 4204 + 4307 ], "external_id": [ 80 ], "id": [ - 4643 + 4746 ], "invite_code": [ 80 @@ -46334,40 +47958,40 @@ export default { 80 ], "lineup_1": [ - 2164 + 2267 ], "lineup_1_id": [ - 4643 + 4746 ], "lineup_2": [ - 2164 + 2267 ], "lineup_2_id": [ - 4643 + 4746 ], "lineup_counts": [ - 1530 + 1633 ], "map_veto_picking_lineup_id": [ - 4643 + 4746 ], "map_veto_picks": [ - 2296 + 2399 ], "map_veto_picks_aggregate": [ - 2291 + 2394 ], "map_veto_type": [ 80 ], "match_maps": [ - 2322 + 2425 ], "match_maps_aggregate": [ - 2315 + 2418 ], "match_options_id": [ - 4643 + 4746 ], "max_players_per_lineup": [ 39 @@ -46376,16 +48000,16 @@ export default { 39 ], "opening_duels": [ - 4958 + 5071 ], "opening_duels_aggregate": [ - 4951 + 5064 ], "options": [ - 2359 + 2462 ], "organizer": [ - 3622 + 3725 ], "organizer_steam_id": [ 182 @@ -46394,73 +48018,73 @@ export default { 80 ], "player_assists": [ - 2809 + 2912 ], "player_assists_aggregate": [ - 2800 + 2903 ], "player_damages": [ - 2870 + 2973 ], "player_damages_aggregate": [ - 2863 + 2966 ], "player_flashes": [ - 2981 + 3084 ], "player_flashes_aggregate": [ - 2972 + 3075 ], "player_kills": [ - 3026 + 3129 ], "player_kills_aggregate": [ - 3017 + 3120 ], "player_objectives": [ - 3225 + 3328 ], "player_objectives_aggregate": [ - 3218 + 3321 ], "player_unused_utilities": [ - 3512 + 3615 ], "player_unused_utilities_aggregate": [ - 3505 + 3608 ], "player_utility": [ - 3553 + 3656 ], "player_utility_aggregate": [ - 3546 + 3649 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4643 + 4746 ], "region_veto_picks": [ - 2390 + 2493 ], "region_veto_picks_aggregate": [ - 2385 + 2488 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4204 + 4307 ], "server": [ - 3743 + 3846 ], "server_error": [ 80 ], "server_id": [ - 4643 + 4746 ], "server_region": [ 80 @@ -46472,34 +48096,34 @@ export default { 80 ], "started_at": [ - 4204 + 4307 ], "status": [ - 820 + 840 ], "streams": [ - 2419 + 2522 ], "streams_aggregate": [ - 2409 + 2512 ], "teams": [ - 4169 + 4272 ], "tournament_brackets": [ - 4216 + 4319 ], "tournament_brackets_aggregate": [ - 4207 + 4310 ], "tv_connection_string": [ 80 ], "winner": [ - 2164 + 2267 ], "winning_lineup_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -46516,70 +48140,70 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4203 + 4306 ], "clutches": [ - 4827 + 4940 ], "created_at": [ - 4203 + 4306 ], "demos": [ - 2206 + 2309 ], "draft_games": [ 362 ], "e_match_status": [ - 825 + 845 ], "e_region": [ - 3715 + 3818 ], "elo_changes": [ - 5034 + 5147 ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "lineup_1": [ - 2173 + 2276 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2": [ - 2173 + 2276 ], "lineup_2_id": [ - 4641 + 4744 ], "map_veto_picks": [ - 2295 + 2398 ], "match_maps": [ - 2319 + 2422 ], "match_options_id": [ - 4641 + 4744 ], "opening_duels": [ - 4955 + 5068 ], "options": [ - 2366 + 2469 ], "organizer": [ - 3629 + 3732 ], "organizer_steam_id": [ 180 @@ -46588,64 +48212,64 @@ export default { 78 ], "player_assists": [ - 2806 + 2909 ], "player_damages": [ - 2867 + 2970 ], "player_flashes": [ - 2978 + 3081 ], "player_kills": [ - 3023 + 3126 ], "player_objectives": [ - 3222 + 3325 ], "player_unused_utilities": [ - 3509 + 3612 ], "player_utility": [ - 3550 + 3653 ], "region": [ 78 ], "region_veto_picks": [ - 2389 + 2492 ], "scheduled_at": [ - 4203 + 4306 ], "server": [ - 3752 + 3855 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "source": [ 78 ], "started_at": [ - 4203 + 4306 ], "status": [ - 819 + 839 ], "streams": [ - 2416 + 2519 ], "tournament_brackets": [ - 4213 + 4316 ], "winner": [ - 2173 + 2276 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -46653,7 +48277,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4203 + 4306 ], "connection_link": [ 78 @@ -46662,22 +48286,22 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_match_map_id": [ - 4641 + 4744 ], "effective_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -46686,19 +48310,19 @@ export default { 78 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2_id": [ - 4641 + 4744 ], "map_veto_picking_lineup_id": [ - 4641 + 4744 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -46716,16 +48340,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4641 + 4744 ], "scheduled_at": [ - 4203 + 4306 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "server_region": [ 78 @@ -46737,13 +48361,13 @@ export default { 78 ], "started_at": [ - 4203 + 4306 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -46751,61 +48375,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "effective_at": [ - 2660 + 2763 ], "ended_at": [ - 2660 + 2763 ], "external_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "lineup_1_id": [ - 2660 + 2763 ], "lineup_2_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "organizer_steam_id": [ - 2660 + 2763 ], "password": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "server_error": [ - 2660 + 2763 ], "server_id": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -46813,7 +48437,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4203 + 4306 ], "connection_link": [ 78 @@ -46822,22 +48446,22 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_match_map_id": [ - 4641 + 4744 ], "effective_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "invite_code": [ 78 @@ -46846,19 +48470,19 @@ export default { 78 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2_id": [ - 4641 + 4744 ], "map_veto_picking_lineup_id": [ - 4641 + 4744 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -46876,16 +48500,16 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4641 + 4744 ], "scheduled_at": [ - 4203 + 4306 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "server_region": [ 78 @@ -46897,13 +48521,13 @@ export default { 78 ], "started_at": [ - 4203 + 4306 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -46911,61 +48535,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "effective_at": [ - 2660 + 2763 ], "ended_at": [ - 2660 + 2763 ], "external_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "lineup_1_id": [ - 2660 + 2763 ], "lineup_2_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "organizer_steam_id": [ - 2660 + 2763 ], "password": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "server_error": [ - 2660 + 2763 ], "server_id": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -46976,7 +48600,7 @@ export default { 38 ], "returning": [ - 2475 + 2578 ], "__typename": [ 78 @@ -46984,10 +48608,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2487 + 2590 ], "on_conflict": [ - 2494 + 2597 ], "__typename": [ 78 @@ -46995,13 +48619,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2485 + 2588 ], "update_columns": [ - 2509 + 2612 ], "where": [ - 2484 + 2587 ], "__typename": [ 78 @@ -47009,232 +48633,232 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2660 + 2763 ], "can_cancel": [ - 2660 + 2763 ], "can_check_in": [ - 2660 + 2763 ], "can_reassign_winner": [ - 2660 + 2763 ], "can_schedule": [ - 2660 + 2763 ], "can_start": [ - 2660 + 2763 ], "can_stream_live": [ - 2660 + 2763 ], "can_stream_tv": [ - 2660 + 2763 ], "cancels_at": [ - 2660 + 2763 ], "clutches_aggregate": [ - 4826 + 4939 ], "connection_link": [ - 2660 + 2763 ], "connection_string": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current_match_map_id": [ - 2660 + 2763 ], "demos_aggregate": [ - 2204 + 2307 ], "draft_games_aggregate": [ 361 ], "e_match_status": [ - 827 + 847 ], "e_region": [ - 3717 + 3820 ], "effective_at": [ - 2660 + 2763 ], "elo_changes_aggregate": [ - 5033 + 5146 ], "ended_at": [ - 2660 + 2763 ], "external_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invite_code": [ - 2660 + 2763 ], "is_captain": [ - 2660 + 2763 ], "is_coach": [ - 2660 + 2763 ], "is_friend_in_match_lineup": [ - 2660 + 2763 ], "is_in_lineup": [ - 2660 + 2763 ], "is_match_server_available": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 ], "is_server_online": [ - 2660 + 2763 ], "is_tournament_match": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "lineup_1": [ - 2175 + 2278 ], "lineup_1_id": [ - 2660 + 2763 ], "lineup_2": [ - 2175 + 2278 ], "lineup_2_id": [ - 2660 + 2763 ], "lineup_counts": [ - 2660 + 2763 ], "map_veto_picking_lineup_id": [ - 2660 + 2763 ], "map_veto_picks_aggregate": [ - 2294 + 2397 ], "map_veto_type": [ - 2660 + 2763 ], "match_maps_aggregate": [ - 2318 + 2421 ], "match_options_id": [ - 2660 + 2763 ], "max_players_per_lineup": [ - 2660 + 2763 ], "min_players_per_lineup": [ - 2660 + 2763 ], "opening_duels_aggregate": [ - 4954 + 5067 ], "options": [ - 2368 + 2471 ], "organizer": [ - 3631 + 3734 ], "organizer_steam_id": [ - 2660 + 2763 ], "password": [ - 2660 + 2763 ], "player_assists_aggregate": [ - 2805 + 2908 ], "player_damages_aggregate": [ - 2866 + 2969 ], "player_flashes_aggregate": [ - 2977 + 3080 ], "player_kills_aggregate": [ - 3022 + 3125 ], "player_objectives_aggregate": [ - 3221 + 3324 ], "player_unused_utilities_aggregate": [ - 3508 + 3611 ], "player_utility_aggregate": [ - 3549 + 3652 ], "region": [ - 2660 + 2763 ], "region_veto_picking_lineup_id": [ - 2660 + 2763 ], "region_veto_picks_aggregate": [ - 2388 + 2491 ], "requested_organizer": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "server": [ - 3754 + 3857 ], "server_error": [ - 2660 + 2763 ], "server_id": [ - 2660 + 2763 ], "server_region": [ - 2660 + 2763 ], "server_type": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "streams_aggregate": [ - 2414 + 2517 ], "teams_aggregate": [ - 4165 + 4268 ], "tournament_brackets_aggregate": [ - 4212 + 4315 ], "tv_connection_string": [ - 2660 + 2763 ], "winner": [ - 2175 + 2278 ], "winning_lineup_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47242,7 +48866,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -47251,31 +48875,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "organizer_steam_id": [ 180 @@ -47287,25 +48911,25 @@ export default { 78 ], "scheduled_at": [ - 4203 + 4306 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "source": [ 78 ], "started_at": [ - 4203 + 4306 ], "status": [ - 819 + 839 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -47327,7 +48951,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47349,7 +48973,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47371,7 +48995,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47379,7 +49003,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2506 + 2609 ], "ordering": [ 236 @@ -47390,34 +49014,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "effective_at": [ - 4203 + 4306 ], "ended_at": [ - 4203 + 4306 ], "external_id": [ 78 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "lineup_1_id": [ - 4641 + 4744 ], "lineup_2_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "organizer_steam_id": [ 180 @@ -47429,25 +49053,25 @@ export default { 78 ], "scheduled_at": [ - 4203 + 4306 ], "server_error": [ 78 ], "server_id": [ - 4641 + 4744 ], "source": [ 78 ], "started_at": [ - 4203 + 4306 ], "status": [ - 819 + 839 ], "winning_lineup_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -47469,7 +49093,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47478,13 +49102,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2486 + 2589 ], "_set": [ - 2498 + 2601 ], "where": [ - 2484 + 2587 ], "__typename": [ 78 @@ -47506,7 +49130,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47528,7 +49152,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47550,7 +49174,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47569,10 +49193,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2519 + 2622 ], "nodes": [ - 2517 + 2620 ], "__typename": [ 78 @@ -47583,7 +49207,7 @@ export default { 38, { "columns": [ - 2529, + 2632, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -47592,10 +49216,10 @@ export default { } ], "max": [ - 2523 + 2626 ], "min": [ - 2524 + 2627 ], "__typename": [ 78 @@ -47603,13 +49227,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2520 + 2623 ], "_not": [ - 2520 + 2623 ], "_or": [ - 2520 + 2623 ], "hash": [ 80 @@ -47660,7 +49284,7 @@ export default { 38 ], "returning": [ - 2517 + 2620 ], "__typename": [ 78 @@ -47668,13 +49292,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2521 + 2624 ], "update_columns": [ - 2533 + 2636 ], "where": [ - 2520 + 2623 ], "__typename": [ 78 @@ -47682,10 +49306,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -47713,7 +49337,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2532 + 2635 ], "ordering": [ 236 @@ -47736,10 +49360,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2530 + 2633 ], "where": [ - 2520 + 2623 ], "__typename": [ 78 @@ -47753,7 +49377,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -47765,7 +49389,7 @@ export default { 78 ], "elo": [ - 1531, + 1634, { "path": [ 78 @@ -47785,7 +49409,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -47803,7 +49427,7 @@ export default { 78 ], "last_presence_state": [ - 1531, + 1634, { "path": [ 78 @@ -47811,10 +49435,10 @@ export default { } ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -47823,16 +49447,16 @@ export default { 3 ], "player": [ - 3618 + 3721 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -47850,7 +49474,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -47867,10 +49491,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2541 + 2644 ], "nodes": [ - 2535 + 2638 ], "__typename": [ 78 @@ -47878,13 +49502,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2538 + 2641 ], "bool_or": [ - 2539 + 2642 ], "count": [ - 2540 + 2643 ], "__typename": [ 78 @@ -47892,13 +49516,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2561 + 2664 ], "distinct": [ 3 ], "filter": [ - 2547 + 2650 ], "predicate": [ 4 @@ -47909,13 +49533,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2562 + 2665 ], "distinct": [ 3 ], "filter": [ - 2547 + 2650 ], "predicate": [ 4 @@ -47926,13 +49550,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2560 + 2663 ], "distinct": [ 3 ], "filter": [ - 2547 + 2650 ], "predicate": [ 39 @@ -47943,13 +49567,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2545 + 2648 ], "count": [ 38, { "columns": [ - 2560, + 2663, "[my_friends_select_column!]" ], "distinct": [ @@ -47958,31 +49582,31 @@ export default { } ], "max": [ - 2553 + 2656 ], "min": [ - 2555 + 2658 ], "stddev": [ - 2564 + 2667 ], "stddev_pop": [ - 2566 + 2669 ], "stddev_samp": [ - 2568 + 2671 ], "sum": [ - 2572 + 2675 ], "var_pop": [ - 2575 + 2678 ], "var_samp": [ - 2577 + 2680 ], "variance": [ - 2579 + 2682 ], "__typename": [ 78 @@ -47990,37 +49614,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2546 + 2649 ], "count": [ - 2660 + 2763 ], "max": [ - 2554 + 2657 ], "min": [ - 2556 + 2659 ], "stddev": [ - 2565 + 2668 ], "stddev_pop": [ - 2567 + 2670 ], "stddev_samp": [ - 2569 + 2672 ], "sum": [ - 2573 + 2676 ], "var_pop": [ - 2576 + 2679 ], "var_samp": [ - 2578 + 2681 ], "variance": [ - 2580 + 2683 ], "__typename": [ 78 @@ -48028,10 +49652,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1531 + 1634 ], "last_presence_state": [ - 1531 + 1634 ], "__typename": [ 78 @@ -48039,7 +49663,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2552 + 2655 ], "__typename": [ 78 @@ -48079,31 +49703,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -48111,13 +49735,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2547 + 2650 ], "_not": [ - 2547 + 2650 ], "_or": [ - 2547 + 2650 ], "avatar_url": [ 80 @@ -48126,7 +49750,7 @@ export default { 80 ], "created_at": [ - 4204 + 4307 ], "custom_avatar_url": [ 80 @@ -48138,7 +49762,7 @@ export default { 80 ], "elo": [ - 1533 + 1636 ], "faceit_elo": [ 39 @@ -48153,7 +49777,7 @@ export default { 39 ], "faceit_updated_at": [ - 4204 + 4307 ], "faceit_url": [ 80 @@ -48171,13 +49795,13 @@ export default { 80 ], "last_presence_state": [ - 1533 + 1636 ], "last_read_news_at": [ - 4204 + 4307 ], "last_sign_in_at": [ - 4204 + 4307 ], "name": [ 80 @@ -48186,16 +49810,16 @@ export default { 4 ], "player": [ - 3622 + 3725 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4204 + 4307 ], "presence_updated_at": [ - 4204 + 4307 ], "profile_url": [ 80 @@ -48213,7 +49837,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4204 + 4307 ], "steam_id": [ 182 @@ -48301,7 +49925,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -48313,7 +49937,7 @@ export default { 78 ], "elo": [ - 1531 + 1634 ], "faceit_elo": [ 38 @@ -48328,7 +49952,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -48346,13 +49970,13 @@ export default { 78 ], "last_presence_state": [ - 1531 + 1634 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -48361,16 +49985,16 @@ export default { 3 ], "player": [ - 3629 + 3732 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -48388,7 +50012,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -48411,7 +50035,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -48435,7 +50059,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -48453,10 +50077,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -48465,10 +50089,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -48483,7 +50107,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -48497,91 +50121,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2660 + 2763 ], "country": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "custom_avatar_url": [ - 2660 + 2763 ], "days_since_last_ban": [ - 2660 + 2763 ], "discord_id": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_nickname": [ - 2660 + 2763 ], "faceit_player_id": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "faceit_updated_at": [ - 2660 + 2763 ], "faceit_url": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "language": [ - 2660 + 2763 ], "last_read_news_at": [ - 2660 + 2763 ], "last_sign_in_at": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "premier_rank_updated_at": [ - 2660 + 2763 ], "presence_updated_at": [ - 2660 + 2763 ], "profile_url": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "steam_bans_checked_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -48595,7 +50219,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -48619,7 +50243,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -48637,10 +50261,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -48649,10 +50273,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -48667,7 +50291,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -48681,91 +50305,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2660 + 2763 ], "country": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "custom_avatar_url": [ - 2660 + 2763 ], "days_since_last_ban": [ - 2660 + 2763 ], "discord_id": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_nickname": [ - 2660 + 2763 ], "faceit_player_id": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "faceit_updated_at": [ - 2660 + 2763 ], "faceit_url": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "language": [ - 2660 + 2763 ], "last_read_news_at": [ - 2660 + 2763 ], "last_sign_in_at": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "premier_rank_updated_at": [ - 2660 + 2763 ], "presence_updated_at": [ - 2660 + 2763 ], "profile_url": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "steam_bans_checked_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -48776,7 +50400,7 @@ export default { 38 ], "returning": [ - 2535 + 2638 ], "__typename": [ 78 @@ -48784,109 +50408,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2660 + 2763 ], "country": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "custom_avatar_url": [ - 2660 + 2763 ], "days_since_last_ban": [ - 2660 + 2763 ], "discord_id": [ - 2660 + 2763 ], "elo": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_nickname": [ - 2660 + 2763 ], "faceit_player_id": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "faceit_updated_at": [ - 2660 + 2763 ], "faceit_url": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "language": [ - 2660 + 2763 ], "last_presence_state": [ - 2660 + 2763 ], "last_read_news_at": [ - 2660 + 2763 ], "last_sign_in_at": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "name_registered": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "premier_rank": [ - 2660 + 2763 ], "premier_rank_updated_at": [ - 2660 + 2763 ], "presence_updated_at": [ - 2660 + 2763 ], "profile_url": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "show_match_ready_modal": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "steam_bans_checked_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "vac_banned": [ - 2660 + 2763 ], "__typename": [ 78 @@ -48894,10 +50518,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1531 + 1634 ], "last_presence_state": [ - 1531 + 1634 ], "__typename": [ 78 @@ -48914,7 +50538,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -48926,7 +50550,7 @@ export default { 78 ], "elo": [ - 1531 + 1634 ], "faceit_elo": [ 38 @@ -48941,7 +50565,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -48959,13 +50583,13 @@ export default { 78 ], "last_presence_state": [ - 1531 + 1634 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -48977,10 +50601,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -48998,7 +50622,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -49047,31 +50671,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49111,31 +50735,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49175,31 +50799,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49207,7 +50831,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2571 + 2674 ], "ordering": [ 236 @@ -49224,7 +50848,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -49236,7 +50860,7 @@ export default { 78 ], "elo": [ - 1531 + 1634 ], "faceit_elo": [ 38 @@ -49251,7 +50875,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -49269,13 +50893,13 @@ export default { 78 ], "last_presence_state": [ - 1531 + 1634 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -49287,10 +50911,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "presence_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -49308,7 +50932,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -49357,31 +50981,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49389,28 +51013,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2543 + 2646 ], "_delete_at_path": [ - 2548 + 2651 ], "_delete_elem": [ - 2549 + 2652 ], "_delete_key": [ - 2550 + 2653 ], "_inc": [ - 2551 + 2654 ], "_prepend": [ - 2559 + 2662 ], "_set": [ - 2563 + 2666 ], "where": [ - 2547 + 2650 ], "__typename": [ 78 @@ -49450,31 +51074,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49514,31 +51138,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49578,31 +51202,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2660 + 2763 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_skill_level": [ - 2660 + 2763 ], "friend_steam_id": [ - 2660 + 2763 ], "game_ban_count": [ - 2660 + 2763 ], "invited_by_steam_id": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "vac_ban_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49610,7 +51234,7 @@ export default { }, "news_articles": { "author": [ - 3618 + 3721 ], "author_steam_id": [ 180 @@ -49622,13 +51246,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -49643,7 +51267,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -49654,10 +51278,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2583 + 2686 ], "nodes": [ - 2581 + 2684 ], "__typename": [ 78 @@ -49665,13 +51289,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2584 + 2687 ], "count": [ 38, { "columns": [ - 2595, + 2698, "[news_articles_select_column!]" ], "distinct": [ @@ -49680,31 +51304,31 @@ export default { } ], "max": [ - 2589 + 2692 ], "min": [ - 2590 + 2693 ], "stddev": [ - 2597 + 2700 ], "stddev_pop": [ - 2598 + 2701 ], "stddev_samp": [ - 2599 + 2702 ], "sum": [ - 2602 + 2705 ], "var_pop": [ - 2605 + 2708 ], "var_samp": [ - 2606 + 2709 ], "variance": [ - 2607 + 2710 ], "__typename": [ 78 @@ -49723,16 +51347,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2585 + 2688 ], "_not": [ - 2585 + 2688 ], "_or": [ - 2585 + 2688 ], "author": [ - 3622 + 3725 ], "author_steam_id": [ 182 @@ -49744,13 +51368,13 @@ export default { 80 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "published_at": [ - 4204 + 4307 ], "slug": [ 80 @@ -49765,7 +51389,7 @@ export default { 80 ], "updated_at": [ - 4204 + 4307 ], "view_count": [ 182 @@ -49788,7 +51412,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3629 + 3732 ], "author_steam_id": [ 180 @@ -49800,13 +51424,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -49821,7 +51445,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -49841,13 +51465,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -49862,7 +51486,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -49882,13 +51506,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -49903,7 +51527,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -49917,7 +51541,7 @@ export default { 38 ], "returning": [ - 2581 + 2684 ], "__typename": [ 78 @@ -49925,13 +51549,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2586 + 2689 ], "update_columns": [ - 2603 + 2706 ], "where": [ - 2585 + 2688 ], "__typename": [ 78 @@ -49939,43 +51563,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3631 + 3734 ], "author_steam_id": [ - 2660 + 2763 ], "content_markdown": [ - 2660 + 2763 ], "cover_image_url": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "published_at": [ - 2660 + 2763 ], "slug": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "teaser": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "view_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -49983,7 +51607,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -50001,13 +51625,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -50022,7 +51646,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -50066,7 +51690,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2601 + 2704 ], "ordering": [ 236 @@ -50086,13 +51710,13 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "published_at": [ - 4203 + 4306 ], "slug": [ 78 @@ -50107,7 +51731,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "view_count": [ 180 @@ -50130,13 +51754,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2587 + 2690 ], "_set": [ - 2596 + 2699 ], "where": [ - 2585 + 2688 ], "__typename": [ 78 @@ -50177,7 +51801,7 @@ export default { }, "notifications": { "actions": [ - 1531, + 1634, { "path": [ 78 @@ -50185,19 +51809,19 @@ export default { } ], "created_at": [ - 4203 + 4306 ], "deletable": [ 3 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_read": [ 3 @@ -50206,10 +51830,10 @@ export default { 78 ], "player": [ - 3618 + 3721 ], "role": [ - 901 + 921 ], "steam_id": [ 180 @@ -50218,7 +51842,7 @@ export default { 78 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -50226,10 +51850,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2614 + 2717 ], "nodes": [ - 2608 + 2711 ], "__typename": [ 78 @@ -50237,13 +51861,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2611 + 2714 ], "bool_or": [ - 2612 + 2715 ], "count": [ - 2613 + 2716 ], "__typename": [ 78 @@ -50251,13 +51875,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2637 + 2740 ], "distinct": [ 3 ], "filter": [ - 2620 + 2723 ], "predicate": [ 4 @@ -50268,13 +51892,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2638 + 2741 ], "distinct": [ 3 ], "filter": [ - 2620 + 2723 ], "predicate": [ 4 @@ -50285,13 +51909,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2636 + 2739 ], "distinct": [ 3 ], "filter": [ - 2620 + 2723 ], "predicate": [ 39 @@ -50302,13 +51926,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2618 + 2721 ], "count": [ 38, { "columns": [ - 2636, + 2739, "[notifications_select_column!]" ], "distinct": [ @@ -50317,31 +51941,31 @@ export default { } ], "max": [ - 2627 + 2730 ], "min": [ - 2629 + 2732 ], "stddev": [ - 2640 + 2743 ], "stddev_pop": [ - 2642 + 2745 ], "stddev_samp": [ - 2644 + 2747 ], "sum": [ - 2648 + 2751 ], "var_pop": [ - 2652 + 2755 ], "var_samp": [ - 2654 + 2757 ], "variance": [ - 2656 + 2759 ], "__typename": [ 78 @@ -50349,37 +51973,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2619 + 2722 ], "count": [ - 2660 + 2763 ], "max": [ - 2628 + 2731 ], "min": [ - 2630 + 2733 ], "stddev": [ - 2641 + 2744 ], "stddev_pop": [ - 2643 + 2746 ], "stddev_samp": [ - 2645 + 2748 ], "sum": [ - 2649 + 2752 ], "var_pop": [ - 2653 + 2756 ], "var_samp": [ - 2655 + 2758 ], "variance": [ - 2657 + 2760 ], "__typename": [ 78 @@ -50387,7 +52011,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1531 + 1634 ], "__typename": [ 78 @@ -50395,10 +52019,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2626 + 2729 ], "on_conflict": [ - 2632 + 2735 ], "__typename": [ 78 @@ -50414,7 +52038,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50422,31 +52046,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2620 + 2723 ], "_not": [ - 2620 + 2723 ], "_or": [ - 2620 + 2723 ], "actions": [ - 1533 + 1636 ], "created_at": [ - 4204 + 4307 ], "deletable": [ 4 ], "deleted_at": [ - 4204 + 4307 ], "entity_id": [ 80 ], "id": [ - 4643 + 4746 ], "is_read": [ 4 @@ -50455,10 +52079,10 @@ export default { 80 ], "player": [ - 3622 + 3725 ], "role": [ - 902 + 922 ], "steam_id": [ 182 @@ -50467,7 +52091,7 @@ export default { 80 ], "type": [ - 862 + 882 ], "__typename": [ 78 @@ -50508,22 +52132,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1531 + 1634 ], "created_at": [ - 4203 + 4306 ], "deletable": [ 3 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_read": [ 3 @@ -50532,10 +52156,10 @@ export default { 78 ], "player": [ - 3629 + 3732 ], "role": [ - 901 + 921 ], "steam_id": [ 180 @@ -50544,7 +52168,7 @@ export default { 78 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -50552,16 +52176,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "message": [ 78 @@ -50578,25 +52202,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "entity_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50604,16 +52228,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "message": [ 78 @@ -50630,25 +52254,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "entity_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50659,7 +52283,7 @@ export default { 38 ], "returning": [ - 2608 + 2711 ], "__typename": [ 78 @@ -50667,13 +52291,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2621 + 2724 ], "update_columns": [ - 2650 + 2753 ], "where": [ - 2620 + 2723 ], "__typename": [ 78 @@ -50681,43 +52305,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "deletable": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "entity_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_read": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "role": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50725,7 +52349,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -50733,7 +52357,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1531 + 1634 ], "__typename": [ 78 @@ -50744,22 +52368,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1531 + 1634 ], "created_at": [ - 4203 + 4306 ], "deletable": [ 3 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_read": [ 3 @@ -50768,7 +52392,7 @@ export default { 78 ], "role": [ - 901 + 921 ], "steam_id": [ 180 @@ -50777,7 +52401,7 @@ export default { 78 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -50793,7 +52417,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50809,7 +52433,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50825,7 +52449,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50833,7 +52457,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2647 + 2750 ], "ordering": [ 236 @@ -50844,22 +52468,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1531 + 1634 ], "created_at": [ - 4203 + 4306 ], "deletable": [ 3 ], "deleted_at": [ - 4203 + 4306 ], "entity_id": [ 78 ], "id": [ - 4641 + 4744 ], "is_read": [ 3 @@ -50868,7 +52492,7 @@ export default { 78 ], "role": [ - 901 + 921 ], "steam_id": [ 180 @@ -50877,7 +52501,7 @@ export default { 78 ], "type": [ - 861 + 881 ], "__typename": [ 78 @@ -50893,7 +52517,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50902,28 +52526,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2616 + 2719 ], "_delete_at_path": [ - 2622 + 2725 ], "_delete_elem": [ - 2623 + 2726 ], "_delete_key": [ - 2624 + 2727 ], "_inc": [ - 2625 + 2728 ], "_prepend": [ - 2635 + 2738 ], "_set": [ - 2639 + 2742 ], "where": [ - 2620 + 2723 ], "__typename": [ 78 @@ -50939,7 +52563,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50955,7 +52579,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50971,7 +52595,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -50980,31 +52604,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2658 + 2761 ], "_gt": [ - 2658 + 2761 ], "_gte": [ - 2658 + 2761 ], "_in": [ - 2658 + 2761 ], "_is_null": [ 3 ], "_lt": [ - 2658 + 2761 ], "_lte": [ - 2658 + 2761 ], "_neq": [ - 2658 + 2761 ], "_nin": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51013,19 +52637,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4203 + 4306 ], "pending_match_import": [ - 2702 + 2805 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51033,10 +52657,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2665 + 2768 ], "nodes": [ - 2661 + 2764 ], "__typename": [ 78 @@ -51044,7 +52668,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2664 + 2767 ], "__typename": [ 78 @@ -51052,13 +52676,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2682 + 2785 ], "distinct": [ 3 ], "filter": [ - 2670 + 2773 ], "predicate": [ 39 @@ -51069,13 +52693,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2668 + 2771 ], "count": [ 38, { "columns": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -51084,31 +52708,31 @@ export default { } ], "max": [ - 2674 + 2777 ], "min": [ - 2676 + 2779 ], "stddev": [ - 2684 + 2787 ], "stddev_pop": [ - 2686 + 2789 ], "stddev_samp": [ - 2688 + 2791 ], "sum": [ - 2692 + 2795 ], "var_pop": [ - 2696 + 2799 ], "var_samp": [ - 2698 + 2801 ], "variance": [ - 2700 + 2803 ], "__typename": [ 78 @@ -51116,37 +52740,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2669 + 2772 ], "count": [ - 2660 + 2763 ], "max": [ - 2675 + 2778 ], "min": [ - 2677 + 2780 ], "stddev": [ - 2685 + 2788 ], "stddev_pop": [ - 2687 + 2790 ], "stddev_samp": [ - 2689 + 2792 ], "sum": [ - 2693 + 2796 ], "var_pop": [ - 2697 + 2800 ], "var_samp": [ - 2699 + 2802 ], "variance": [ - 2701 + 2804 ], "__typename": [ 78 @@ -51154,10 +52778,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2673 + 2776 ], "on_conflict": [ - 2679 + 2782 ], "__typename": [ 78 @@ -51176,10 +52800,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51187,28 +52811,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2670 + 2773 ], "_not": [ - 2670 + 2773 ], "_or": [ - 2670 + 2773 ], "created_at": [ - 4204 + 4307 ], "pending_match_import": [ - 2706 + 2809 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 ], "valve_match_id": [ - 2659 + 2762 ], "__typename": [ 78 @@ -51220,7 +52844,7 @@ export default { 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51228,19 +52852,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4203 + 4306 ], "pending_match_import": [ - 2713 + 2816 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51248,13 +52872,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51262,13 +52886,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51276,13 +52900,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51290,13 +52914,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51307,7 +52931,7 @@ export default { 38 ], "returning": [ - 2661 + 2764 ], "__typename": [ 78 @@ -51315,13 +52939,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2671 + 2774 ], "update_columns": [ - 2694 + 2797 ], "where": [ - 2670 + 2773 ], "__typename": [ 78 @@ -51329,19 +52953,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2660 + 2763 ], "pending_match_import": [ - 2715 + 2818 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51352,7 +52976,7 @@ export default { 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51361,13 +52985,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51386,10 +53010,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51408,10 +53032,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51430,10 +53054,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51441,7 +53065,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2691 + 2794 ], "ordering": [ 236 @@ -51452,13 +53076,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51469,7 +53093,7 @@ export default { 180 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51477,10 +53101,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51489,13 +53113,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2672 + 2775 ], "_set": [ - 2683 + 2786 ], "where": [ - 2670 + 2773 ], "__typename": [ 78 @@ -51514,10 +53138,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51536,10 +53160,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51558,10 +53182,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51569,7 +53193,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -51581,13 +53205,13 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "players": [ - 2661, + 2764, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -51597,19 +53221,19 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "players_aggregate": [ - 2662, + 2765, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -51619,11 +53243,11 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], @@ -51634,10 +53258,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51645,10 +53269,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2704 + 2807 ], "nodes": [ - 2702 + 2805 ], "__typename": [ 78 @@ -51656,13 +53280,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2705 + 2808 ], "count": [ 38, { "columns": [ - 2717, + 2820, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -51671,31 +53295,31 @@ export default { } ], "max": [ - 2710 + 2813 ], "min": [ - 2711 + 2814 ], "stddev": [ - 2719 + 2822 ], "stddev_pop": [ - 2720 + 2823 ], "stddev_samp": [ - 2721 + 2824 ], "sum": [ - 2724 + 2827 ], "var_pop": [ - 2727 + 2830 ], "var_samp": [ - 2728 + 2831 ], "variance": [ - 2729 + 2832 ], "__typename": [ 78 @@ -51711,16 +53335,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2706 + 2809 ], "_not": [ - 2706 + 2809 ], "_or": [ - 2706 + 2809 ], "created_at": [ - 4204 + 4307 ], "demo_url": [ 80 @@ -51732,13 +53356,13 @@ export default { 80 ], "match_start_time": [ - 4204 + 4307 ], "players": [ - 2670 + 2773 ], "players_aggregate": [ - 2663 + 2766 ], "share_code": [ 80 @@ -51747,10 +53371,10 @@ export default { 80 ], "updated_at": [ - 4204 + 4307 ], "valve_match_id": [ - 2659 + 2762 ], "__typename": [ 78 @@ -51759,7 +53383,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51767,7 +53391,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -51779,10 +53403,10 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "players": [ - 2667 + 2770 ], "share_code": [ 78 @@ -51791,10 +53415,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51802,7 +53426,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -51814,7 +53438,7 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "share_code": [ 78 @@ -51823,10 +53447,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51834,7 +53458,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -51846,7 +53470,7 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "share_code": [ 78 @@ -51855,10 +53479,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51869,7 +53493,7 @@ export default { 38 ], "returning": [ - 2702 + 2805 ], "__typename": [ 78 @@ -51877,10 +53501,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2709 + 2812 ], "on_conflict": [ - 2714 + 2817 ], "__typename": [ 78 @@ -51888,13 +53512,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2707 + 2810 ], "update_columns": [ - 2725 + 2828 ], "where": [ - 2706 + 2809 ], "__typename": [ 78 @@ -51902,34 +53526,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2660 + 2763 ], "demo_url": [ - 2660 + 2763 ], "error": [ - 2660 + 2763 ], "map_name": [ - 2660 + 2763 ], "match_start_time": [ - 2660 + 2763 ], "players_aggregate": [ - 2666 + 2769 ], "share_code": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "valve_match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -51937,7 +53561,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -51946,7 +53570,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -51958,7 +53582,7 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "share_code": [ 78 @@ -51967,10 +53591,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -52002,7 +53626,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2723 + 2826 ], "ordering": [ 236 @@ -52013,7 +53637,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "demo_url": [ 78 @@ -52025,7 +53649,7 @@ export default { 78 ], "match_start_time": [ - 4203 + 4306 ], "share_code": [ 78 @@ -52034,10 +53658,10 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -52045,7 +53669,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2658 + 2761 ], "__typename": [ 78 @@ -52054,13 +53678,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2708 + 2811 ], "_set": [ - 2718 + 2821 ], "where": [ - 2706 + 2809 ], "__typename": [ 78 @@ -52092,7 +53716,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3618 + 3721 ], "attacker_steam_id": [ 180 @@ -52107,7 +53731,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52125,16 +53749,16 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -52155,7 +53779,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52166,10 +53790,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2732 + 2835 ], "nodes": [ - 2730 + 2833 ], "__typename": [ 78 @@ -52177,13 +53801,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2733 + 2836 ], "count": [ 38, { "columns": [ - 2744, + 2847, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -52192,31 +53816,31 @@ export default { } ], "max": [ - 2738 + 2841 ], "min": [ - 2739 + 2842 ], "stddev": [ - 2746 + 2849 ], "stddev_pop": [ - 2747 + 2850 ], "stddev_samp": [ - 2748 + 2851 ], "sum": [ - 2751 + 2854 ], "var_pop": [ - 2754 + 2857 ], "var_samp": [ - 2755 + 2858 ], "variance": [ - 2756 + 2859 ], "__typename": [ 78 @@ -52283,16 +53907,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2734 + 2837 ], "_not": [ - 2734 + 2837 ], "_or": [ - 2734 + 2837 ], "attacker": [ - 3622 + 3725 ], "attacker_steam_id": [ 182 @@ -52307,7 +53931,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2659 + 2762 ], "first_bullet_hits": [ 39 @@ -52325,16 +53949,16 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "non_awp_hits": [ 39 @@ -52355,7 +53979,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2659 + 2762 ], "total_engagement_frames": [ 39 @@ -52379,7 +54003,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52415,7 +54039,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52426,7 +54050,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3629 + 3732 ], "attacker_steam_id": [ 180 @@ -52441,7 +54065,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52459,16 +54083,16 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -52489,7 +54113,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52512,7 +54136,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52530,10 +54154,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -52554,7 +54178,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52577,7 +54201,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52595,10 +54219,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -52619,7 +54243,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52633,7 +54257,7 @@ export default { 38 ], "returning": [ - 2730 + 2833 ], "__typename": [ 78 @@ -52641,13 +54265,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2735 + 2838 ], "update_columns": [ - 2752 + 2855 ], "where": [ - 2734 + 2837 ], "__typename": [ 78 @@ -52655,73 +54279,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3631 + 3734 ], "attacker_steam_id": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "__typename": [ 78 @@ -52732,7 +54356,7 @@ export default { 180 ], "match_map_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -52753,7 +54377,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -52771,10 +54395,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -52795,7 +54419,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -52983,7 +54607,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2750 + 2853 ], "ordering": [ 236 @@ -53006,7 +54630,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -53024,10 +54648,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "non_awp_hits": [ 38 @@ -53048,7 +54672,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -53071,7 +54695,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "first_bullet_hits": [ 38 @@ -53107,7 +54731,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -53119,13 +54743,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2736 + 2839 ], "_set": [ - 2745 + 2848 ], "where": [ - 2734 + 2837 ], "__typename": [ 78 @@ -53322,19 +54946,19 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "shots": [ 38 @@ -53354,10 +54978,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2761 + 2864 ], "nodes": [ - 2757 + 2860 ], "__typename": [ 78 @@ -53365,7 +54989,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2760 + 2863 ], "__typename": [ 78 @@ -53373,13 +54997,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2778 + 2881 ], "distinct": [ 3 ], "filter": [ - 2766 + 2869 ], "predicate": [ 39 @@ -53390,13 +55014,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2764 + 2867 ], "count": [ 38, { "columns": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -53405,31 +55029,31 @@ export default { } ], "max": [ - 2770 + 2873 ], "min": [ - 2772 + 2875 ], "stddev": [ - 2780 + 2883 ], "stddev_pop": [ - 2782 + 2885 ], "stddev_samp": [ - 2784 + 2887 ], "sum": [ - 2788 + 2891 ], "var_pop": [ - 2792 + 2895 ], "var_samp": [ - 2794 + 2897 ], "variance": [ - 2796 + 2899 ], "__typename": [ 78 @@ -53437,37 +55061,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2765 + 2868 ], "count": [ - 2660 + 2763 ], "max": [ - 2771 + 2874 ], "min": [ - 2773 + 2876 ], "stddev": [ - 2781 + 2884 ], "stddev_pop": [ - 2783 + 2886 ], "stddev_samp": [ - 2785 + 2888 ], "sum": [ - 2789 + 2892 ], "var_pop": [ - 2793 + 2896 ], "var_samp": [ - 2795 + 2898 ], "variance": [ - 2797 + 2900 ], "__typename": [ 78 @@ -53475,10 +55099,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2769 + 2872 ], "on_conflict": [ - 2775 + 2878 ], "__typename": [ 78 @@ -53512,25 +55136,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -53538,13 +55162,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2766 + 2869 ], "_not": [ - 2766 + 2869 ], "_or": [ - 2766 + 2869 ], "first_bullet_hits": [ 39 @@ -53559,19 +55183,19 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "shots": [ 39 @@ -53630,19 +55254,19 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "shots": [ 38 @@ -53674,10 +55298,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -53697,34 +55321,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -53744,10 +55368,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -53767,34 +55391,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -53805,7 +55429,7 @@ export default { 38 ], "returning": [ - 2757 + 2860 ], "__typename": [ 78 @@ -53813,13 +55437,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2767 + 2870 ], "update_columns": [ - 2790 + 2893 ], "where": [ - 2766 + 2869 ], "__typename": [ 78 @@ -53827,43 +55451,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -53871,7 +55495,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -53898,10 +55522,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -53947,25 +55571,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -53999,25 +55623,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54051,25 +55675,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54077,7 +55701,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2787 + 2890 ], "ordering": [ 236 @@ -54100,10 +55724,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -54149,25 +55773,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54176,13 +55800,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2768 + 2871 ], "_set": [ - 2779 + 2882 ], "where": [ - 2766 + 2869 ], "__typename": [ 78 @@ -54216,25 +55840,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54268,25 +55892,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54320,25 +55944,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54346,7 +55970,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3618 + 3721 ], "attacked_steam_id": [ 180 @@ -54361,7 +55985,7 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "flash": [ 3 @@ -54370,25 +55994,25 @@ export default { 3 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54396,10 +56020,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2804 + 2907 ], "nodes": [ - 2798 + 2901 ], "__typename": [ 78 @@ -54407,13 +56031,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2801 + 2904 ], "bool_or": [ - 2802 + 2905 ], "count": [ - 2803 + 2906 ], "__typename": [ 78 @@ -54421,13 +56045,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2822 + 2925 ], "distinct": [ 3 ], "filter": [ - 2809 + 2912 ], "predicate": [ 4 @@ -54438,13 +56062,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2823 + 2926 ], "distinct": [ 3 ], "filter": [ - 2809 + 2912 ], "predicate": [ 4 @@ -54455,13 +56079,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2821 + 2924 ], "distinct": [ 3 ], "filter": [ - 2809 + 2912 ], "predicate": [ 39 @@ -54472,13 +56096,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2807 + 2910 ], "count": [ 38, { "columns": [ - 2821, + 2924, "[player_assists_select_column!]" ], "distinct": [ @@ -54487,31 +56111,31 @@ export default { } ], "max": [ - 2813 + 2916 ], "min": [ - 2815 + 2918 ], "stddev": [ - 2825 + 2928 ], "stddev_pop": [ - 2827 + 2930 ], "stddev_samp": [ - 2829 + 2932 ], "sum": [ - 2833 + 2936 ], "var_pop": [ - 2837 + 2940 ], "var_samp": [ - 2839 + 2942 ], "variance": [ - 2841 + 2944 ], "__typename": [ 78 @@ -54519,37 +56143,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2808 + 2911 ], "count": [ - 2660 + 2763 ], "max": [ - 2814 + 2917 ], "min": [ - 2816 + 2919 ], "stddev": [ - 2826 + 2929 ], "stddev_pop": [ - 2828 + 2931 ], "stddev_samp": [ - 2830 + 2933 ], "sum": [ - 2834 + 2937 ], "var_pop": [ - 2838 + 2941 ], "var_samp": [ - 2840 + 2943 ], "variance": [ - 2842 + 2945 ], "__typename": [ 78 @@ -54557,10 +56181,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2812 + 2915 ], "on_conflict": [ - 2818 + 2921 ], "__typename": [ 78 @@ -54582,13 +56206,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54596,16 +56220,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2809 + 2912 ], "_not": [ - 2809 + 2912 ], "_or": [ - 2809 + 2912 ], "attacked_player": [ - 3622 + 3725 ], "attacked_steam_id": [ 182 @@ -54620,7 +56244,7 @@ export default { 80 ], "deleted_at": [ - 4204 + 4307 ], "flash": [ 4 @@ -54629,25 +56253,25 @@ export default { 4 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "round": [ 39 ], "time": [ - 4204 + 4307 ], "__typename": [ 78 @@ -54670,7 +56294,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3629 + 3732 ], "attacked_steam_id": [ 180 @@ -54685,31 +56309,31 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "flash": [ 3 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54729,19 +56353,19 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54749,31 +56373,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54793,19 +56417,19 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54813,31 +56437,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54848,7 +56472,7 @@ export default { 38 ], "returning": [ - 2798 + 2901 ], "__typename": [ 78 @@ -54856,13 +56480,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2810 + 2913 ], "update_columns": [ - 2835 + 2938 ], "where": [ - 2809 + 2912 ], "__typename": [ 78 @@ -54870,49 +56494,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3631 + 3734 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "flash": [ - 2660 + 2763 ], "is_team_assist": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -54926,10 +56550,10 @@ export default { 180 ], "match_map_id": [ - 4641 + 4744 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54952,22 +56576,22 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "flash": [ 3 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -54989,13 +56613,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55017,13 +56641,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55045,13 +56669,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55059,7 +56683,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2832 + 2935 ], "ordering": [ 236 @@ -55082,22 +56706,22 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "flash": [ 3 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -55119,13 +56743,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55134,13 +56758,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2811 + 2914 ], "_set": [ - 2824 + 2927 ], "where": [ - 2809 + 2912 ], "__typename": [ 78 @@ -55162,13 +56786,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55190,13 +56814,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55218,13 +56842,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55232,28 +56856,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "counter_strafe_pct": [ - 2658 + 2761 ], "crosshair_deg": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "maps": [ 38 @@ -55268,16 +56892,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "time_to_damage_s": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "__typename": [ 78 @@ -55285,10 +56909,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2845 + 2948 ], "nodes": [ - 2843 + 2946 ], "__typename": [ 78 @@ -55296,13 +56920,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2846 + 2949 ], "count": [ 38, { "columns": [ - 2851, + 2954, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -55311,31 +56935,31 @@ export default { } ], "max": [ - 2848 + 2951 ], "min": [ - 2849 + 2952 ], "stddev": [ - 2852 + 2955 ], "stddev_pop": [ - 2853 + 2956 ], "stddev_samp": [ - 2854 + 2957 ], "sum": [ - 2857 + 2960 ], "var_pop": [ - 2858 + 2961 ], "var_samp": [ - 2859 + 2962 ], "variance": [ - 2860 + 2963 ], "__typename": [ 78 @@ -55396,37 +57020,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2847 + 2950 ], "_not": [ - 2847 + 2950 ], "_or": [ - 2847 + 2950 ], "accuracy": [ - 2659 + 2762 ], "accuracy_spotted": [ - 2659 + 2762 ], "counter_strafe_pct": [ - 2659 + 2762 ], "crosshair_deg": [ - 2659 + 2762 ], "enemy_blind_pr": [ - 2659 + 2762 ], "flash_assists_pr": [ - 2659 + 2762 ], "hs_pct": [ - 2659 + 2762 ], "kast_pct": [ - 2659 + 2762 ], "maps": [ 39 @@ -55441,16 +57065,16 @@ export default { 182 ], "survival_pct": [ - 2659 + 2762 ], "time_to_damage_s": [ - 2659 + 2762 ], "traded_death_pct": [ - 2659 + 2762 ], "util_efficiency": [ - 2659 + 2762 ], "__typename": [ 78 @@ -55458,28 +57082,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "counter_strafe_pct": [ - 2658 + 2761 ], "crosshair_deg": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "maps": [ 38 @@ -55494,16 +57118,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "time_to_damage_s": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "__typename": [ 78 @@ -55511,28 +57135,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "counter_strafe_pct": [ - 2658 + 2761 ], "crosshair_deg": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "maps": [ 38 @@ -55547,16 +57171,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "time_to_damage_s": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "__typename": [ 78 @@ -55564,52 +57188,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2660 + 2763 ], "accuracy_spotted": [ - 2660 + 2763 ], "counter_strafe_pct": [ - 2660 + 2763 ], "crosshair_deg": [ - 2660 + 2763 ], "enemy_blind_pr": [ - 2660 + 2763 ], "flash_assists_pr": [ - 2660 + 2763 ], "hs_pct": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "maps": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "survival_pct": [ - 2660 + 2763 ], "time_to_damage_s": [ - 2660 + 2763 ], "traded_death_pct": [ - 2660 + 2763 ], "util_efficiency": [ - 2660 + 2763 ], "__typename": [ 78 @@ -55777,7 +57401,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2856 + 2959 ], "ordering": [ 236 @@ -55788,28 +57412,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "counter_strafe_pct": [ - 2658 + 2761 ], "crosshair_deg": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "maps": [ 38 @@ -55824,16 +57448,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "time_to_damage_s": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "__typename": [ 78 @@ -55841,28 +57465,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "counter_strafe_pct": [ - 2658 + 2761 ], "crosshair_deg": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "maps": [ 38 @@ -55877,16 +57501,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "time_to_damage_s": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "__typename": [ 78 @@ -56062,7 +57686,7 @@ export default { 78 ], "attacked_player": [ - 3618 + 3721 ], "attacked_steam_id": [ 180 @@ -56089,7 +57713,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -56098,31 +57722,31 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "round": [ - 2658 + 2761 ], "team_damage": [ 3 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -56133,10 +57757,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2865 + 2968 ], "nodes": [ - 2861 + 2964 ], "__typename": [ 78 @@ -56144,7 +57768,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2864 + 2967 ], "__typename": [ 78 @@ -56152,13 +57776,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2882 + 2985 ], "distinct": [ 3 ], "filter": [ - 2870 + 2973 ], "predicate": [ 39 @@ -56169,13 +57793,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2868 + 2971 ], "count": [ 38, { "columns": [ - 2882, + 2985, "[player_damages_select_column!]" ], "distinct": [ @@ -56184,31 +57808,31 @@ export default { } ], "max": [ - 2874 + 2977 ], "min": [ - 2876 + 2979 ], "stddev": [ - 2884 + 2987 ], "stddev_pop": [ - 2886 + 2989 ], "stddev_samp": [ - 2888 + 2991 ], "sum": [ - 2892 + 2995 ], "var_pop": [ - 2896 + 2999 ], "var_samp": [ - 2898 + 3001 ], "variance": [ - 2900 + 3003 ], "__typename": [ 78 @@ -56216,37 +57840,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2869 + 2972 ], "count": [ - 2660 + 2763 ], "max": [ - 2875 + 2978 ], "min": [ - 2877 + 2980 ], "stddev": [ - 2885 + 2988 ], "stddev_pop": [ - 2887 + 2990 ], "stddev_samp": [ - 2889 + 2992 ], "sum": [ - 2893 + 2996 ], "var_pop": [ - 2897 + 3000 ], "var_samp": [ - 2899 + 3002 ], "variance": [ - 2901 + 3004 ], "__typename": [ 78 @@ -56254,10 +57878,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2873 + 2976 ], "on_conflict": [ - 2879 + 2982 ], "__typename": [ 78 @@ -56291,25 +57915,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -56317,13 +57941,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2870 + 2973 ], "_not": [ - 2870 + 2973 ], "_or": [ - 2870 + 2973 ], "armor": [ 39 @@ -56335,7 +57959,7 @@ export default { 80 ], "attacked_player": [ - 3622 + 3725 ], "attacked_steam_id": [ 182 @@ -56362,7 +57986,7 @@ export default { 39 ], "deleted_at": [ - 4204 + 4307 ], "health": [ 39 @@ -56371,31 +57995,31 @@ export default { 80 ], "id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "round": [ - 2659 + 2762 ], "team_damage": [ 4 ], "time": [ - 4204 + 4307 ], "with": [ 80 @@ -56425,7 +58049,7 @@ export default { 38 ], "round": [ - 2658 + 2761 ], "__typename": [ 78 @@ -56442,7 +58066,7 @@ export default { 78 ], "attacked_player": [ - 3629 + 3732 ], "attacked_steam_id": [ 180 @@ -56469,7 +58093,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -56478,28 +58102,28 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "round": [ - 2658 + 2761 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -56543,7 +58167,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -56552,19 +58176,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ - 2658 + 2761 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -56575,64 +58199,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2660 + 2763 ], "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -56673,7 +58297,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -56682,19 +58306,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ - 2658 + 2761 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -56705,64 +58329,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2660 + 2763 ], "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -56773,7 +58397,7 @@ export default { 38 ], "returning": [ - 2861 + 2964 ], "__typename": [ 78 @@ -56781,13 +58405,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2871 + 2974 ], "update_columns": [ - 2894 + 2997 ], "where": [ - 2870 + 2973 ], "__typename": [ 78 @@ -56795,79 +58419,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2660 + 2763 ], "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_player": [ - 3631 + 3734 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "round": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -56875,13 +58499,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -56923,7 +58547,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -56932,19 +58556,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ - 2658 + 2761 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -56981,25 +58605,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57033,25 +58657,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57085,25 +58709,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57111,7 +58735,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2891 + 2994 ], "ordering": [ 236 @@ -57155,7 +58779,7 @@ export default { 38 ], "deleted_at": [ - 4203 + 4306 ], "health": [ 38 @@ -57164,19 +58788,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ - 2658 + 2761 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -57205,7 +58829,7 @@ export default { 38 ], "round": [ - 2658 + 2761 ], "__typename": [ 78 @@ -57213,25 +58837,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57240,13 +58864,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2872 + 2975 ], "_set": [ - 2883 + 2986 ], "where": [ - 2870 + 2973 ], "__typename": [ 78 @@ -57280,25 +58904,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57332,25 +58956,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57384,25 +59008,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_armor": [ - 2660 + 2763 ], "health": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -57410,40 +59034,40 @@ export default { }, "player_elo": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -57455,28 +59079,28 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player": [ - 3618 + 3721 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season": [ - 3677 + 3780 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -57485,10 +59109,10 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -57496,10 +59120,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 2904 + 3007 ], "nodes": [ - 2902 + 3005 ], "__typename": [ 78 @@ -57507,13 +59131,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 2905 + 3008 ], "count": [ 38, { "columns": [ - 2916, + 3019, "[player_elo_select_column!]" ], "distinct": [ @@ -57522,31 +59146,31 @@ export default { } ], "max": [ - 2910 + 3013 ], "min": [ - 2911 + 3014 ], "stddev": [ - 2918 + 3021 ], "stddev_pop": [ - 2919 + 3022 ], "stddev_samp": [ - 2920 + 3023 ], "sum": [ - 2923 + 3026 ], "var_pop": [ - 2926 + 3029 ], "var_samp": [ - 2927 + 3030 ], "variance": [ - 2928 + 3031 ], "__typename": [ 78 @@ -57619,49 +59243,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 2906 + 3009 ], "_not": [ - 2906 + 3009 ], "_or": [ - 2906 + 3009 ], "actual_score": [ - 1379 + 1482 ], "assists": [ 39 ], "change": [ - 2659 + 2762 ], "created_at": [ - 4204 + 4307 ], "current": [ - 2659 + 2762 ], "damage": [ 39 ], "damage_percent": [ - 1379 + 1482 ], "deaths": [ 39 ], "expected_score": [ - 1379 + 1482 ], "impact": [ - 2659 + 2762 ], "k_factor": [ 39 ], "kda": [ - 1379 + 1482 ], "kills": [ 39 @@ -57673,28 +59297,28 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "opponent_team_elo_avg": [ - 1379 + 1482 ], "performance_multiplier": [ - 1379 + 1482 ], "player": [ - 3622 + 3725 ], "player_team_elo_avg": [ - 1379 + 1482 ], "season": [ - 3681 + 3784 ], "season_id": [ - 4643 + 4746 ], "series_multiplier": [ 39 @@ -57703,10 +59327,10 @@ export default { 182 ], "team_avg_kda": [ - 1379 + 1482 ], "type": [ - 841 + 861 ], "__typename": [ 78 @@ -57715,37 +59339,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -57757,13 +59381,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "series_multiplier": [ 38 @@ -57772,7 +59396,7 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "__typename": [ 78 @@ -57780,40 +59404,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -57825,28 +59449,28 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player": [ - 3629 + 3732 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season": [ - 3688 + 3791 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -57855,10 +59479,10 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -57866,40 +59490,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -57911,19 +59535,19 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -57932,7 +59556,7 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "__typename": [ 78 @@ -57940,40 +59564,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -57985,19 +59609,19 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -58006,7 +59630,7 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "__typename": [ 78 @@ -58017,7 +59641,7 @@ export default { 38 ], "returning": [ - 2902 + 3005 ], "__typename": [ 78 @@ -58025,13 +59649,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 2907 + 3010 ], "update_columns": [ - 2924 + 3027 ], "where": [ - 2906 + 3009 ], "__typename": [ 78 @@ -58039,85 +59663,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "change": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_team_elo_avg": [ - 2660 + 2763 ], "season": [ - 3690 + 3793 ], "season_id": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -58125,13 +59749,13 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4641 + 4744 ], "steam_id": [ 180 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -58140,40 +59764,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -58185,19 +59809,19 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -58206,10 +59830,10 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -58412,7 +60036,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 2922 + 3025 ], "ordering": [ 236 @@ -58423,40 +60047,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "created_at": [ - 4203 + 4306 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -58468,19 +60092,19 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 @@ -58489,10 +60113,10 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ - 840 + 860 ], "__typename": [ 78 @@ -58500,37 +60124,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 ], "change": [ - 2658 + 2761 ], "current": [ - 2658 + 2761 ], "damage": [ 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 2658 + 2761 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -58542,13 +60166,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_team_elo_avg": [ - 1378 + 1481 ], "series_multiplier": [ 38 @@ -58557,7 +60181,7 @@ export default { 180 ], "team_avg_kda": [ - 1378 + 1481 ], "__typename": [ 78 @@ -58566,13 +60190,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 2908 + 3011 ], "_set": [ - 2917 + 3020 ], "where": [ - 2906 + 3009 ], "__typename": [ 78 @@ -58778,19 +60402,19 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "player": [ - 3618 + 3721 ], "previous_rank": [ 38 @@ -58807,10 +60431,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2933 + 3036 ], "nodes": [ - 2929 + 3032 ], "__typename": [ 78 @@ -58818,7 +60442,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2932 + 3035 ], "__typename": [ 78 @@ -58826,13 +60450,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2950 + 3053 ], "distinct": [ 3 ], "filter": [ - 2938 + 3041 ], "predicate": [ 39 @@ -58843,13 +60467,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2936 + 3039 ], "count": [ 38, { "columns": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -58858,31 +60482,31 @@ export default { } ], "max": [ - 2942 + 3045 ], "min": [ - 2944 + 3047 ], "stddev": [ - 2952 + 3055 ], "stddev_pop": [ - 2954 + 3057 ], "stddev_samp": [ - 2956 + 3059 ], "sum": [ - 2960 + 3063 ], "var_pop": [ - 2964 + 3067 ], "var_samp": [ - 2966 + 3069 ], "variance": [ - 2968 + 3071 ], "__typename": [ 78 @@ -58890,37 +60514,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2937 + 3040 ], "count": [ - 2660 + 2763 ], "max": [ - 2943 + 3046 ], "min": [ - 2945 + 3048 ], "stddev": [ - 2953 + 3056 ], "stddev_pop": [ - 2955 + 3058 ], "stddev_samp": [ - 2957 + 3060 ], "sum": [ - 2961 + 3064 ], "var_pop": [ - 2965 + 3068 ], "var_samp": [ - 2967 + 3070 ], "variance": [ - 2969 + 3072 ], "__typename": [ 78 @@ -58928,10 +60552,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2941 + 3044 ], "on_conflict": [ - 2947 + 3050 ], "__typename": [ 78 @@ -58956,16 +60580,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -58973,31 +60597,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2938 + 3041 ], "_not": [ - 2938 + 3041 ], "_or": [ - 2938 + 3041 ], "elo": [ 39 ], "id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "observed_at": [ - 4204 + 4307 ], "player": [ - 3622 + 3725 ], "previous_rank": [ 39 @@ -59035,19 +60659,19 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "player": [ - 3629 + 3732 ], "previous_rank": [ 38 @@ -59067,13 +60691,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -59090,25 +60714,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59119,13 +60743,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -59142,25 +60766,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59171,7 +60795,7 @@ export default { 38 ], "returning": [ - 2929 + 3032 ], "__typename": [ 78 @@ -59179,13 +60803,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2939 + 3042 ], "update_columns": [ - 2962 + 3065 ], "where": [ - 2938 + 3041 ], "__typename": [ 78 @@ -59193,31 +60817,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59225,7 +60849,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -59237,13 +60861,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -59277,16 +60901,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59311,16 +60935,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59345,16 +60969,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59362,7 +60986,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2959 + 3062 ], "ordering": [ 236 @@ -59376,13 +61000,13 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -59416,16 +61040,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59434,13 +61058,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2940 + 3043 ], "_set": [ - 2951 + 3054 ], "where": [ - 2938 + 3041 ], "__typename": [ 78 @@ -59465,16 +61089,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59499,16 +61123,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59533,16 +61157,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "skill_level": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59556,25 +61180,25 @@ export default { 180 ], "blinded": [ - 3618 + 3721 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -59583,10 +61207,10 @@ export default { 3 ], "thrown_by": [ - 3618 + 3721 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -59594,10 +61218,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 2976 + 3079 ], "nodes": [ - 2970 + 3073 ], "__typename": [ 78 @@ -59605,13 +61229,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2973 + 3076 ], "bool_or": [ - 2974 + 3077 ], "count": [ - 2975 + 3078 ], "__typename": [ 78 @@ -59619,13 +61243,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2994 + 3097 ], "distinct": [ 3 ], "filter": [ - 2981 + 3084 ], "predicate": [ 4 @@ -59636,13 +61260,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2995 + 3098 ], "distinct": [ 3 ], "filter": [ - 2981 + 3084 ], "predicate": [ 4 @@ -59653,13 +61277,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2993 + 3096 ], "distinct": [ 3 ], "filter": [ - 2981 + 3084 ], "predicate": [ 39 @@ -59670,13 +61294,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 2979 + 3082 ], "count": [ 38, { "columns": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "distinct": [ @@ -59685,31 +61309,31 @@ export default { } ], "max": [ - 2985 + 3088 ], "min": [ - 2987 + 3090 ], "stddev": [ - 2997 + 3100 ], "stddev_pop": [ - 2999 + 3102 ], "stddev_samp": [ - 3001 + 3104 ], "sum": [ - 3005 + 3108 ], "var_pop": [ - 3009 + 3112 ], "var_samp": [ - 3011 + 3114 ], "variance": [ - 3013 + 3116 ], "__typename": [ 78 @@ -59717,37 +61341,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 2980 + 3083 ], "count": [ - 2660 + 2763 ], "max": [ - 2986 + 3089 ], "min": [ - 2988 + 3091 ], "stddev": [ - 2998 + 3101 ], "stddev_pop": [ - 3000 + 3103 ], "stddev_samp": [ - 3002 + 3105 ], "sum": [ - 3006 + 3109 ], "var_pop": [ - 3010 + 3113 ], "var_samp": [ - 3012 + 3115 ], "variance": [ - 3014 + 3117 ], "__typename": [ 78 @@ -59755,10 +61379,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 2984 + 3087 ], "on_conflict": [ - 2990 + 3093 ], "__typename": [ 78 @@ -59783,16 +61407,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59800,13 +61424,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 2981 + 3084 ], "_not": [ - 2981 + 3084 ], "_or": [ - 2981 + 3084 ], "attacked_steam_id": [ 182 @@ -59815,25 +61439,25 @@ export default { 182 ], "blinded": [ - 3622 + 3725 ], "deleted_at": [ - 4204 + 4307 ], "duration": [ - 2659 + 2762 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "round": [ 39 @@ -59842,10 +61466,10 @@ export default { 4 ], "thrown_by": [ - 3622 + 3725 ], "time": [ - 4204 + 4307 ], "__typename": [ 78 @@ -59860,7 +61484,7 @@ export default { 180 ], "duration": [ - 2658 + 2761 ], "round": [ 38 @@ -59877,25 +61501,25 @@ export default { 180 ], "blinded": [ - 3629 + 3732 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -59904,10 +61528,10 @@ export default { 3 ], "thrown_by": [ - 3629 + 3732 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -59921,22 +61545,22 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -59944,28 +61568,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -59979,22 +61603,22 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -60002,28 +61626,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60034,7 +61658,7 @@ export default { 38 ], "returning": [ - 2970 + 3073 ], "__typename": [ 78 @@ -60042,13 +61666,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 2982 + 3085 ], "update_columns": [ - 3007 + 3110 ], "where": [ - 2981 + 3084 ], "__typename": [ 78 @@ -60056,43 +61680,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "blinded": [ - 3631 + 3734 ], "deleted_at": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_flash": [ - 2660 + 2763 ], "thrown_by": [ - 3631 + 3734 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60106,10 +61730,10 @@ export default { 180 ], "match_map_id": [ - 4641 + 4744 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -60126,16 +61750,16 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -60144,7 +61768,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -60169,16 +61793,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60203,16 +61827,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60237,16 +61861,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60254,7 +61878,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3004 + 3107 ], "ordering": [ 236 @@ -60271,16 +61895,16 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "duration": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -60289,7 +61913,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -60303,7 +61927,7 @@ export default { 180 ], "duration": [ - 2658 + 2761 ], "round": [ 38 @@ -60314,16 +61938,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60332,13 +61956,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2983 + 3086 ], "_set": [ - 2996 + 3099 ], "where": [ - 2981 + 3084 ], "__typename": [ 78 @@ -60363,16 +61987,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60397,16 +62021,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60431,16 +62055,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "duration": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60457,7 +62081,7 @@ export default { 78 ], "attacked_player": [ - 3618 + 3721 ], "attacked_steam_id": [ 180 @@ -60481,7 +62105,7 @@ export default { 3 ], "deleted_at": [ - 4203 + 4306 ], "headshot": [ 3 @@ -60496,22 +62120,22 @@ export default { 3 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "no_scope": [ 3 ], "player": [ - 3618 + 3721 ], "round": [ 38 @@ -60526,7 +62150,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -60537,10 +62161,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3021 + 3124 ], "nodes": [ - 3015 + 3118 ], "__typename": [ 78 @@ -60548,13 +62172,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3018 + 3121 ], "bool_or": [ - 3019 + 3122 ], "count": [ - 3020 + 3123 ], "__typename": [ 78 @@ -60562,13 +62186,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3080 + 3183 ], "distinct": [ 3 ], "filter": [ - 3026 + 3129 ], "predicate": [ 4 @@ -60579,13 +62203,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3081 + 3184 ], "distinct": [ 3 ], "filter": [ - 3026 + 3129 ], "predicate": [ 4 @@ -60596,13 +62220,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3079 + 3182 ], "distinct": [ 3 ], "filter": [ - 3026 + 3129 ], "predicate": [ 39 @@ -60613,13 +62237,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3024 + 3127 ], "count": [ 38, { "columns": [ - 3079, + 3182, "[player_kills_select_column!]" ], "distinct": [ @@ -60628,31 +62252,31 @@ export default { } ], "max": [ - 3071 + 3174 ], "min": [ - 3073 + 3176 ], "stddev": [ - 3083 + 3186 ], "stddev_pop": [ - 3085 + 3188 ], "stddev_samp": [ - 3087 + 3190 ], "sum": [ - 3091 + 3194 ], "var_pop": [ - 3095 + 3198 ], "var_samp": [ - 3097 + 3200 ], "variance": [ - 3099 + 3202 ], "__typename": [ 78 @@ -60660,37 +62284,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3025 + 3128 ], "count": [ - 2660 + 2763 ], "max": [ - 3072 + 3175 ], "min": [ - 3074 + 3177 ], "stddev": [ - 3084 + 3187 ], "stddev_pop": [ - 3086 + 3189 ], "stddev_samp": [ - 3088 + 3191 ], "sum": [ - 3092 + 3195 ], "var_pop": [ - 3096 + 3199 ], "var_samp": [ - 3098 + 3201 ], "variance": [ - 3100 + 3203 ], "__typename": [ 78 @@ -60698,10 +62322,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3070 + 3173 ], "on_conflict": [ - 3076 + 3179 ], "__typename": [ 78 @@ -60723,13 +62347,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -60737,13 +62361,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3026 + 3129 ], "_not": [ - 3026 + 3129 ], "_or": [ - 3026 + 3129 ], "assisted": [ 4 @@ -60755,7 +62379,7 @@ export default { 80 ], "attacked_player": [ - 3622 + 3725 ], "attacked_steam_id": [ 182 @@ -60779,7 +62403,7 @@ export default { 4 ], "deleted_at": [ - 4204 + 4307 ], "headshot": [ 4 @@ -60794,22 +62418,22 @@ export default { 4 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "no_scope": [ 4 ], "player": [ - 3622 + 3725 ], "round": [ 39 @@ -60824,7 +62448,7 @@ export default { 4 ], "time": [ - 4204 + 4307 ], "with": [ 80 @@ -60838,7 +62462,7 @@ export default { 180 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -60852,10 +62476,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3031 + 3134 ], "nodes": [ - 3027 + 3130 ], "__typename": [ 78 @@ -60863,7 +62487,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3030 + 3133 ], "__typename": [ 78 @@ -60871,13 +62495,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3048 + 3151 ], "distinct": [ 3 ], "filter": [ - 3036 + 3139 ], "predicate": [ 39 @@ -60888,13 +62512,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3034 + 3137 ], "count": [ 38, { "columns": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -60903,31 +62527,31 @@ export default { } ], "max": [ - 3040 + 3143 ], "min": [ - 3042 + 3145 ], "stddev": [ - 3050 + 3153 ], "stddev_pop": [ - 3052 + 3155 ], "stddev_samp": [ - 3054 + 3157 ], "sum": [ - 3058 + 3161 ], "var_pop": [ - 3062 + 3165 ], "var_samp": [ - 3064 + 3167 ], "variance": [ - 3066 + 3169 ], "__typename": [ 78 @@ -60935,37 +62559,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3035 + 3138 ], "count": [ - 2660 + 2763 ], "max": [ - 3041 + 3144 ], "min": [ - 3043 + 3146 ], "stddev": [ - 3051 + 3154 ], "stddev_pop": [ - 3053 + 3156 ], "stddev_samp": [ - 3055 + 3158 ], "sum": [ - 3059 + 3162 ], "var_pop": [ - 3063 + 3166 ], "var_samp": [ - 3065 + 3168 ], "variance": [ - 3067 + 3170 ], "__typename": [ 78 @@ -60973,10 +62597,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3039 + 3142 ], "on_conflict": [ - 3045 + 3148 ], "__typename": [ 78 @@ -60995,10 +62619,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61006,19 +62630,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3036 + 3139 ], "_not": [ - 3036 + 3139 ], "_or": [ - 3036 + 3139 ], "kill_count": [ 182 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -61047,7 +62671,7 @@ export default { 180 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -61075,13 +62699,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61103,13 +62727,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61120,7 +62744,7 @@ export default { 38 ], "returning": [ - 3027 + 3130 ], "__typename": [ 78 @@ -61128,13 +62752,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3037 + 3140 ], "update_columns": [ - 3060 + 3163 ], "where": [ - 3036 + 3139 ], "__typename": [ 78 @@ -61142,16 +62766,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61196,10 +62820,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61218,10 +62842,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61240,10 +62864,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61251,7 +62875,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3057 + 3160 ], "ordering": [ 236 @@ -61287,10 +62911,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61299,13 +62923,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3038 + 3141 ], "_set": [ - 3049 + 3152 ], "where": [ - 3036 + 3139 ], "__typename": [ 78 @@ -61324,10 +62948,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61346,10 +62970,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61368,10 +62992,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61403,7 +63027,7 @@ export default { 78 ], "attacked_player": [ - 3629 + 3732 ], "attacked_steam_id": [ 180 @@ -61427,7 +63051,7 @@ export default { 3 ], "deleted_at": [ - 4203 + 4306 ], "headshot": [ 3 @@ -61439,22 +63063,22 @@ export default { 3 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "no_scope": [ 3 ], "player": [ - 3629 + 3732 ], "round": [ 38 @@ -61466,7 +63090,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -61501,22 +63125,22 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "hitgroup": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -61527,49 +63151,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61601,22 +63225,22 @@ export default { 78 ], "deleted_at": [ - 4203 + 4306 ], "hitgroup": [ 78 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -61627,49 +63251,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61680,7 +63304,7 @@ export default { 38 ], "returning": [ - 3015 + 3118 ], "__typename": [ 78 @@ -61688,13 +63312,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3068 + 3171 ], "update_columns": [ - 3093 + 3196 ], "where": [ - 3026 + 3129 ], "__typename": [ 78 @@ -61702,88 +63326,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2660 + 2763 ], "attacked_location": [ - 2660 + 2763 ], "attacked_location_coordinates": [ - 2660 + 2763 ], "attacked_player": [ - 3631 + 3734 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacked_team": [ - 2660 + 2763 ], "attacker_location": [ - 2660 + 2763 ], "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "attacker_team": [ - 2660 + 2763 ], "blinded": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "headshot": [ - 2660 + 2763 ], "hitgroup": [ - 2660 + 2763 ], "in_air": [ - 2660 + 2763 ], "is_suicide": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "no_scope": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "round": [ - 2660 + 2763 ], "team_kill": [ - 2660 + 2763 ], "thru_smoke": [ - 2660 + 2763 ], "thru_wall": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61797,10 +63421,10 @@ export default { 180 ], "match_map_id": [ - 4641 + 4744 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -61841,7 +63465,7 @@ export default { 3 ], "deleted_at": [ - 4203 + 4306 ], "headshot": [ 3 @@ -61853,10 +63477,10 @@ export default { 3 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "no_scope": [ 3 @@ -61871,7 +63495,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -61896,13 +63520,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61924,13 +63548,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61952,13 +63576,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -61966,7 +63590,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3090 + 3193 ], "ordering": [ 236 @@ -62007,7 +63631,7 @@ export default { 3 ], "deleted_at": [ - 4203 + 4306 ], "headshot": [ 3 @@ -62019,10 +63643,10 @@ export default { 3 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "no_scope": [ 3 @@ -62037,7 +63661,7 @@ export default { 3 ], "time": [ - 4203 + 4306 ], "with": [ 78 @@ -62062,13 +63686,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -62077,13 +63701,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3069 + 3172 ], "_set": [ - 3082 + 3185 ], "where": [ - 3026 + 3129 ], "__typename": [ 78 @@ -62105,13 +63729,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -62133,13 +63757,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -62161,13 +63785,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -62184,7 +63808,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62192,10 +63816,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3103 + 3206 ], "nodes": [ - 3101 + 3204 ], "__typename": [ 78 @@ -62203,13 +63827,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3104 + 3207 ], "count": [ 38, { "columns": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -62218,31 +63842,31 @@ export default { } ], "max": [ - 3108 + 3211 ], "min": [ - 3109 + 3212 ], "stddev": [ - 3114 + 3217 ], "stddev_pop": [ - 3115 + 3218 ], "stddev_samp": [ - 3116 + 3219 ], "sum": [ - 3119 + 3222 ], "var_pop": [ - 3121 + 3224 ], "var_samp": [ - 3122 + 3225 ], "variance": [ - 3123 + 3226 ], "__typename": [ 78 @@ -62264,13 +63888,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3105 + 3208 ], "_not": [ - 3105 + 3208 ], "_or": [ - 3105 + 3208 ], "player_steam_id": [ 80 @@ -62282,7 +63906,7 @@ export default { 39 ], "value": [ - 1379 + 1482 ], "__typename": [ 78 @@ -62296,7 +63920,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62313,7 +63937,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62330,7 +63954,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62347,7 +63971,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62358,7 +63982,7 @@ export default { 38 ], "returning": [ - 3101 + 3204 ], "__typename": [ 78 @@ -62366,16 +63990,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "total": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -62393,7 +64017,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62443,7 +64067,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3118 + 3221 ], "ordering": [ 236 @@ -62463,7 +64087,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62477,7 +64101,7 @@ export default { 38 ], "value": [ - 1378 + 1481 ], "__typename": [ 78 @@ -62485,13 +64109,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3106 + 3209 ], "_set": [ - 3113 + 3216 ], "where": [ - 3105 + 3208 ], "__typename": [ 78 @@ -62559,7 +64183,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -62601,7 +64225,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -62655,16 +64279,16 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -62679,7 +64303,7 @@ export default { 38 ], "player": [ - 3618 + 3721 ], "rounds_ct": [ 38 @@ -62727,7 +64351,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -62757,7 +64381,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -62777,10 +64401,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3128 + 3231 ], "nodes": [ - 3124 + 3227 ], "__typename": [ 78 @@ -62788,7 +64412,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3127 + 3230 ], "__typename": [ 78 @@ -62796,13 +64420,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3145 + 3248 ], "distinct": [ 3 ], "filter": [ - 3133 + 3236 ], "predicate": [ 39 @@ -62813,13 +64437,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3131 + 3234 ], "count": [ 38, { "columns": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -62828,31 +64452,31 @@ export default { } ], "max": [ - 3137 + 3240 ], "min": [ - 3139 + 3242 ], "stddev": [ - 3147 + 3250 ], "stddev_pop": [ - 3149 + 3252 ], "stddev_samp": [ - 3151 + 3254 ], "sum": [ - 3155 + 3258 ], "var_pop": [ - 3159 + 3262 ], "var_samp": [ - 3161 + 3264 ], "variance": [ - 3163 + 3266 ], "__typename": [ 78 @@ -62860,37 +64484,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3132 + 3235 ], "count": [ - 2660 + 2763 ], "max": [ - 3138 + 3241 ], "min": [ - 3140 + 3243 ], "stddev": [ - 3148 + 3251 ], "stddev_pop": [ - 3150 + 3253 ], "stddev_samp": [ - 3152 + 3255 ], "sum": [ - 3156 + 3259 ], "var_pop": [ - 3160 + 3263 ], "var_samp": [ - 3162 + 3265 ], "variance": [ - 3164 + 3267 ], "__typename": [ 78 @@ -62898,10 +64522,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3136 + 3239 ], "on_conflict": [ - 3142 + 3245 ], "__typename": [ 78 @@ -63127,217 +64751,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -63345,13 +64969,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3133 + 3236 ], "_not": [ - 3133 + 3236 ], "_or": [ - 3133 + 3236 ], "assists": [ 39 @@ -63372,7 +64996,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2659 + 2762 ], "damage": [ 39 @@ -63414,7 +65038,7 @@ export default { 39 ], "flash_duration_sum": [ - 2659 + 2762 ], "flashes_thrown": [ 39 @@ -63468,16 +65092,16 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "molotov_damage": [ 39 @@ -63492,7 +65116,7 @@ export default { 39 ], "player": [ - 3622 + 3725 ], "rounds_ct": [ 39 @@ -63540,7 +65164,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2659 + 2762 ], "total_engagement_frames": [ 39 @@ -63570,7 +65194,7 @@ export default { 39 ], "updated_at": [ - 4204 + 4307 ], "util_on_death_count": [ 39 @@ -63609,7 +65233,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -63651,7 +65275,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -63762,7 +65386,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -63827,7 +65451,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -63869,7 +65493,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -63923,16 +65547,16 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -63947,7 +65571,7 @@ export default { 38 ], "player": [ - 3629 + 3732 ], "rounds_ct": [ 38 @@ -63995,7 +65619,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -64025,7 +65649,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -64063,7 +65687,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -64105,7 +65729,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -64159,10 +65783,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -64222,7 +65846,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -64252,7 +65876,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -64272,226 +65896,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -64517,7 +66141,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -64559,7 +66183,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -64613,10 +66237,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -64676,7 +66300,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -64706,7 +66330,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -64726,226 +66350,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -64956,7 +66580,7 @@ export default { 38 ], "returning": [ - 3124 + 3227 ], "__typename": [ 78 @@ -64964,13 +66588,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3134 + 3237 ], "update_columns": [ - 3157 + 3260 ], "where": [ - 3133 + 3236 ], "__typename": [ 78 @@ -64978,235 +66602,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -65214,7 +66838,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4641 + 4744 ], "steam_id": [ 180 @@ -65244,7 +66868,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -65286,7 +66910,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -65340,10 +66964,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -65403,7 +67027,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -65433,7 +67057,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -65671,217 +67295,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -66107,217 +67731,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -66543,217 +68167,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -66761,7 +68385,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3154 + 3257 ], "ordering": [ 236 @@ -66790,7 +68414,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -66832,7 +68456,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -66886,10 +68510,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -66949,7 +68573,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -66979,7 +68603,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "util_on_death_count": [ 38 @@ -67017,7 +68641,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2658 + 2761 ], "damage": [ 38 @@ -67059,7 +68683,7 @@ export default { 38 ], "flash_duration_sum": [ - 2658 + 2761 ], "flashes_thrown": [ 38 @@ -67170,7 +68794,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2658 + 2761 ], "total_engagement_frames": [ 38 @@ -67217,217 +68841,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -67436,13 +69060,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3135 + 3238 ], "_set": [ - 3146 + 3249 ], "where": [ - 3133 + 3236 ], "__typename": [ 78 @@ -67668,217 +69292,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -68104,217 +69728,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -68540,217 +70164,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "crosshair_angle_count": [ - 2660 + 2763 ], "crosshair_angle_sum_deg": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flash_duration_count": [ - 2660 + 2763 ], "flash_duration_sum": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kast_rounds": [ - 2660 + 2763 ], "kast_total_rounds": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "time_to_damage_count": [ - 2660 + 2763 ], "time_to_damage_sum_s": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "util_on_death_count": [ - 2660 + 2763 ], "util_on_death_sum": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -68758,40 +70382,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "aim_rating": [ - 1378 + 1481 ], "counter_strafe_pct": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "overall_rating": [ - 1378 + 1481 ], "played_at": [ - 4203 + 4306 ], "positioning_rating": [ - 1378 + 1481 ], "rounds": [ 38 @@ -68803,16 +70427,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -68820,10 +70444,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3167 + 3270 ], "nodes": [ - 3165 + 3268 ], "__typename": [ 78 @@ -68831,13 +70455,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3168 + 3271 ], "count": [ 38, { "columns": [ - 3173, + 3276, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -68846,31 +70470,31 @@ export default { } ], "max": [ - 3170 + 3273 ], "min": [ - 3171 + 3274 ], "stddev": [ - 3174 + 3277 ], "stddev_pop": [ - 3175 + 3278 ], "stddev_samp": [ - 3176 + 3279 ], "sum": [ - 3179 + 3282 ], "var_pop": [ - 3180 + 3283 ], "var_samp": [ - 3181 + 3284 ], "variance": [ - 3182 + 3285 ], "__typename": [ 78 @@ -68931,49 +70555,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3169 + 3272 ], "_not": [ - 3169 + 3272 ], "_or": [ - 3169 + 3272 ], "accuracy": [ - 2659 + 2762 ], "accuracy_spotted": [ - 2659 + 2762 ], "aim_rating": [ - 1379 + 1482 ], "counter_strafe_pct": [ - 2659 + 2762 ], "enemy_blind_pr": [ - 2659 + 2762 ], "flash_assists_pr": [ - 2659 + 2762 ], "hs_pct": [ - 2659 + 2762 ], "kast_pct": [ - 2659 + 2762 ], "match_id": [ - 4643 + 4746 ], "overall_rating": [ - 1379 + 1482 ], "played_at": [ - 4204 + 4307 ], "positioning_rating": [ - 1379 + 1482 ], "rounds": [ 39 @@ -68985,16 +70609,16 @@ export default { 182 ], "survival_pct": [ - 2659 + 2762 ], "traded_death_pct": [ - 2659 + 2762 ], "util_efficiency": [ - 2659 + 2762 ], "utility_rating": [ - 1379 + 1482 ], "__typename": [ 78 @@ -69002,40 +70626,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "aim_rating": [ - 1378 + 1481 ], "counter_strafe_pct": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "overall_rating": [ - 1378 + 1481 ], "played_at": [ - 4203 + 4306 ], "positioning_rating": [ - 1378 + 1481 ], "rounds": [ 38 @@ -69047,16 +70671,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -69064,40 +70688,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "aim_rating": [ - 1378 + 1481 ], "counter_strafe_pct": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "overall_rating": [ - 1378 + 1481 ], "played_at": [ - 4203 + 4306 ], "positioning_rating": [ - 1378 + 1481 ], "rounds": [ 38 @@ -69109,16 +70733,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -69126,61 +70750,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2660 + 2763 ], "accuracy_spotted": [ - 2660 + 2763 ], "aim_rating": [ - 2660 + 2763 ], "counter_strafe_pct": [ - 2660 + 2763 ], "enemy_blind_pr": [ - 2660 + 2763 ], "flash_assists_pr": [ - 2660 + 2763 ], "hs_pct": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "overall_rating": [ - 2660 + 2763 ], "played_at": [ - 2660 + 2763 ], "positioning_rating": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "survival_pct": [ - 2660 + 2763 ], "traded_death_pct": [ - 2660 + 2763 ], "util_efficiency": [ - 2660 + 2763 ], "utility_rating": [ - 2660 + 2763 ], "__typename": [ 78 @@ -69348,7 +70972,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3178 + 3281 ], "ordering": [ 236 @@ -69359,40 +70983,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "aim_rating": [ - 1378 + 1481 ], "counter_strafe_pct": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "overall_rating": [ - 1378 + 1481 ], "played_at": [ - 4203 + 4306 ], "positioning_rating": [ - 1378 + 1481 ], "rounds": [ 38 @@ -69404,16 +71028,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -69421,34 +71045,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2658 + 2761 ], "accuracy_spotted": [ - 2658 + 2761 ], "aim_rating": [ - 1378 + 1481 ], "counter_strafe_pct": [ - 2658 + 2761 ], "enemy_blind_pr": [ - 2658 + 2761 ], "flash_assists_pr": [ - 2658 + 2761 ], "hs_pct": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "overall_rating": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "rounds": [ 38 @@ -69457,16 +71081,16 @@ export default { 180 ], "survival_pct": [ - 2658 + 2761 ], "traded_death_pct": [ - 2658 + 2761 ], "util_efficiency": [ - 2658 + 2761 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -69642,13 +71266,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -69738,7 +71362,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -69822,7 +71446,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -69836,10 +71460,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3187 + 3290 ], "nodes": [ - 3183 + 3286 ], "__typename": [ 78 @@ -69847,7 +71471,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3186 + 3289 ], "__typename": [ 78 @@ -69855,13 +71479,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3199 + 3302 ], "distinct": [ 3 ], "filter": [ - 3192 + 3295 ], "predicate": [ 39 @@ -69872,13 +71496,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3190 + 3293 ], "count": [ 38, { "columns": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -69887,31 +71511,31 @@ export default { } ], "max": [ - 3194 + 3297 ], "min": [ - 3196 + 3299 ], "stddev": [ - 3200 + 3303 ], "stddev_pop": [ - 3202 + 3305 ], "stddev_samp": [ - 3204 + 3307 ], "sum": [ - 3208 + 3311 ], "var_pop": [ - 3210 + 3313 ], "var_samp": [ - 3212 + 3315 ], "variance": [ - 3214 + 3317 ], "__typename": [ 78 @@ -69919,37 +71543,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3191 + 3294 ], "count": [ - 2660 + 2763 ], "max": [ - 3195 + 3298 ], "min": [ - 3197 + 3300 ], "stddev": [ - 3201 + 3304 ], "stddev_pop": [ - 3203 + 3306 ], "stddev_samp": [ - 3205 + 3308 ], "sum": [ - 3209 + 3312 ], "var_pop": [ - 3211 + 3314 ], "var_samp": [ - 3213 + 3316 ], "variance": [ - 3215 + 3318 ], "__typename": [ 78 @@ -69957,7 +71581,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3193 + 3296 ], "__typename": [ 78 @@ -70165,199 +71789,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -70365,13 +71989,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3192 + 3295 ], "_not": [ - 3192 + 3295 ], "_or": [ - 3192 + 3295 ], "assists": [ 39 @@ -70383,13 +72007,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2659 + 2762 ], "avg_flash_duration": [ - 2659 + 2762 ], "avg_time_to_damage_s": [ - 2659 + 2762 ], "counter_strafe_eligible_shots": [ 39 @@ -70479,7 +72103,7 @@ export default { 39 ], "match_id": [ - 4643 + 4746 ], "molotov_damage": [ 39 @@ -70563,7 +72187,7 @@ export default { 39 ], "utility_on_death": [ - 2659 + 2762 ], "wasted_magazine_shots": [ 39 @@ -70586,13 +72210,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -70682,7 +72306,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -70766,7 +72390,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -70789,13 +72413,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -70885,7 +72509,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -70969,7 +72593,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -70983,202 +72607,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -71195,13 +72819,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -71291,7 +72915,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -71375,7 +72999,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -71389,202 +73013,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -71592,202 +73216,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -71996,199 +73620,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -72396,199 +74020,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -72796,199 +74420,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -72996,7 +74620,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3207 + 3310 ], "ordering": [ 236 @@ -73016,13 +74640,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -73112,7 +74736,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "molotov_damage": [ 38 @@ -73196,7 +74820,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -73219,13 +74843,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2658 + 2761 ], "avg_flash_duration": [ - 2658 + 2761 ], "avg_time_to_damage_s": [ - 2658 + 2761 ], "counter_strafe_eligible_shots": [ 38 @@ -73396,7 +75020,7 @@ export default { 38 ], "utility_on_death": [ - 2658 + 2761 ], "wasted_magazine_shots": [ 38 @@ -73410,199 +75034,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -73810,199 +75434,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -74210,199 +75834,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -74610,199 +76234,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2660 + 2763 ], "assists_ct": [ - 2660 + 2763 ], "assists_t": [ - 2660 + 2763 ], "avg_crosshair_angle_deg": [ - 2660 + 2763 ], "avg_flash_duration": [ - 2660 + 2763 ], "avg_time_to_damage_s": [ - 2660 + 2763 ], "counter_strafe_eligible_shots": [ - 2660 + 2763 ], "counter_strafed_shots": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_ct": [ - 2660 + 2763 ], "damage_t": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "deaths_ct": [ - 2660 + 2763 ], "deaths_t": [ - 2660 + 2763 ], "decoy_throws": [ - 2660 + 2763 ], "enemies_flashed": [ - 2660 + 2763 ], "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "five_kill_rounds": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "flashes_thrown": [ - 2660 + 2763 ], "four_kill_rounds": [ - 2660 + 2763 ], "he_damage": [ - 2660 + 2763 ], "he_team_damage": [ - 2660 + 2763 ], "he_throws": [ - 2660 + 2763 ], "headshot_hits": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_at_spotted": [ - 2660 + 2763 ], "hs_kills": [ - 2660 + 2763 ], "hs_kills_ct": [ - 2660 + 2763 ], "hs_kills_t": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kills_ct": [ - 2660 + 2763 ], "kills_t": [ - 2660 + 2763 ], "knife_kills": [ - 2660 + 2763 ], "molotov_damage": [ - 2660 + 2763 ], "molotov_throws": [ - 2660 + 2763 ], "non_awp_hits": [ - 2660 + 2763 ], "on_target_frames": [ - 2660 + 2763 ], "rounds_ct": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "rounds_t": [ - 2660 + 2763 ], "shots_at_spotted": [ - 2660 + 2763 ], "shots_fired": [ - 2660 + 2763 ], "smoke_throws": [ - 2660 + 2763 ], "spotted_count": [ - 2660 + 2763 ], "spotted_with_damage_count": [ - 2660 + 2763 ], "spray_hits": [ - 2660 + 2763 ], "spray_shots": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_damage": [ - 2660 + 2763 ], "team_flashed": [ - 2660 + 2763 ], "three_kill_rounds": [ - 2660 + 2763 ], "total_engagement_frames": [ - 2660 + 2763 ], "trade_kill_attempts": [ - 2660 + 2763 ], "trade_kill_opportunities": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_attempts": [ - 2660 + 2763 ], "traded_death_opportunities": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "two_kill_rounds": [ - 2660 + 2763 ], "unused_utility_value": [ - 2660 + 2763 ], "utility_on_death": [ - 2660 + 2763 ], "wasted_magazine_shots": [ - 2660 + 2763 ], "zeus_kills": [ - 2660 + 2763 ], "__typename": [ 78 @@ -74810,22 +76434,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4203 + 4306 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -74834,10 +76458,10 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "type": [ - 881 + 901 ], "__typename": [ 78 @@ -74845,10 +76469,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3220 + 3323 ], "nodes": [ - 3216 + 3319 ], "__typename": [ 78 @@ -74856,7 +76480,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3219 + 3322 ], "__typename": [ 78 @@ -74864,13 +76488,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3237 + 3340 ], "distinct": [ 3 ], "filter": [ - 3225 + 3328 ], "predicate": [ 39 @@ -74881,13 +76505,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3223 + 3326 ], "count": [ 38, { "columns": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "distinct": [ @@ -74896,31 +76520,31 @@ export default { } ], "max": [ - 3229 + 3332 ], "min": [ - 3231 + 3334 ], "stddev": [ - 3239 + 3342 ], "stddev_pop": [ - 3241 + 3344 ], "stddev_samp": [ - 3243 + 3346 ], "sum": [ - 3247 + 3350 ], "var_pop": [ - 3251 + 3354 ], "var_samp": [ - 3253 + 3356 ], "variance": [ - 3255 + 3358 ], "__typename": [ 78 @@ -74928,37 +76552,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3224 + 3327 ], "count": [ - 2660 + 2763 ], "max": [ - 3230 + 3333 ], "min": [ - 3232 + 3335 ], "stddev": [ - 3240 + 3343 ], "stddev_pop": [ - 3242 + 3345 ], "stddev_samp": [ - 3244 + 3347 ], "sum": [ - 3248 + 3351 ], "var_pop": [ - 3252 + 3355 ], "var_samp": [ - 3254 + 3357 ], "variance": [ - 3256 + 3359 ], "__typename": [ 78 @@ -74966,10 +76590,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3228 + 3331 ], "on_conflict": [ - 3234 + 3337 ], "__typename": [ 78 @@ -74988,10 +76612,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -74999,31 +76623,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3225 + 3328 ], "_not": [ - 3225 + 3328 ], "_or": [ - 3225 + 3328 ], "deleted_at": [ - 4204 + 4307 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -75032,10 +76656,10 @@ export default { 39 ], "time": [ - 4204 + 4307 ], "type": [ - 882 + 902 ], "__typename": [ 78 @@ -75055,22 +76679,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4203 + 4306 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -75079,10 +76703,10 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "type": [ - 881 + 901 ], "__typename": [ 78 @@ -75090,13 +76714,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -75105,7 +76729,7 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -75113,22 +76737,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75136,13 +76760,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -75151,7 +76775,7 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -75159,22 +76783,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75185,7 +76809,7 @@ export default { 38 ], "returning": [ - 3216 + 3319 ], "__typename": [ 78 @@ -75193,13 +76817,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3226 + 3329 ], "update_columns": [ - 3249 + 3352 ], "where": [ - 3225 + 3328 ], "__typename": [ 78 @@ -75207,34 +76831,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75242,13 +76866,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -75257,13 +76881,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -75272,10 +76896,10 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "type": [ - 881 + 901 ], "__typename": [ 78 @@ -75294,10 +76918,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75316,10 +76940,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75338,10 +76962,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75349,7 +76973,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3246 + 3349 ], "ordering": [ 236 @@ -75360,13 +76984,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -75375,10 +76999,10 @@ export default { 38 ], "time": [ - 4203 + 4306 ], "type": [ - 881 + 901 ], "__typename": [ 78 @@ -75397,10 +77021,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75409,13 +77033,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3227 + 3330 ], "_set": [ - 3238 + 3341 ], "where": [ - 3225 + 3328 ], "__typename": [ 78 @@ -75434,10 +77058,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75456,10 +77080,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75478,10 +77102,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -75489,13 +77113,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1378 + 1481 ], "aim_goal": [ - 1378 + 1481 ], "aim_rating": [ - 1378 + 1481 ], "band": [ 38 @@ -75504,31 +77128,31 @@ export default { 180 ], "blind_score": [ - 1378 + 1481 ], "counter_strafe_score": [ - 1378 + 1481 ], "crosshair_score": [ - 1378 + 1481 ], "flash_assists_score": [ - 1378 + 1481 ], "hs_score": [ - 1378 + 1481 ], "kast_score": [ - 1378 + 1481 ], "maps": [ 38 ], "positioning_goal": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "premier_rank": [ 38 @@ -75537,28 +77161,28 @@ export default { 38 ], "spotted_score": [ - 1378 + 1481 ], "steam_id": [ 180 ], "survival_score": [ - 1378 + 1481 ], "traded_score": [ - 1378 + 1481 ], "ttd_score": [ - 1378 + 1481 ], "util_eff_score": [ - 1378 + 1481 ], "utility_goal": [ - 1378 + 1481 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -75566,10 +77190,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3259 + 3362 ], "nodes": [ - 3257 + 3360 ], "__typename": [ 78 @@ -75577,13 +77201,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3260 + 3363 ], "count": [ 38, { "columns": [ - 3265, + 3368, "[player_performance_v_select_column!]" ], "distinct": [ @@ -75592,31 +77216,31 @@ export default { } ], "max": [ - 3262 + 3365 ], "min": [ - 3263 + 3366 ], "stddev": [ - 3266 + 3369 ], "stddev_pop": [ - 3267 + 3370 ], "stddev_samp": [ - 3268 + 3371 ], "sum": [ - 3271 + 3374 ], "var_pop": [ - 3272 + 3375 ], "var_samp": [ - 3273 + 3376 ], "variance": [ - 3274 + 3377 ], "__typename": [ 78 @@ -75701,22 +77325,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3261 + 3364 ], "_not": [ - 3261 + 3364 ], "_or": [ - 3261 + 3364 ], "accuracy_score": [ - 1379 + 1482 ], "aim_goal": [ - 1379 + 1482 ], "aim_rating": [ - 1379 + 1482 ], "band": [ 39 @@ -75725,31 +77349,31 @@ export default { 182 ], "blind_score": [ - 1379 + 1482 ], "counter_strafe_score": [ - 1379 + 1482 ], "crosshair_score": [ - 1379 + 1482 ], "flash_assists_score": [ - 1379 + 1482 ], "hs_score": [ - 1379 + 1482 ], "kast_score": [ - 1379 + 1482 ], "maps": [ 39 ], "positioning_goal": [ - 1379 + 1482 ], "positioning_rating": [ - 1379 + 1482 ], "premier_rank": [ 39 @@ -75758,28 +77382,28 @@ export default { 39 ], "spotted_score": [ - 1379 + 1482 ], "steam_id": [ 182 ], "survival_score": [ - 1379 + 1482 ], "traded_score": [ - 1379 + 1482 ], "ttd_score": [ - 1379 + 1482 ], "util_eff_score": [ - 1379 + 1482 ], "utility_goal": [ - 1379 + 1482 ], "utility_rating": [ - 1379 + 1482 ], "__typename": [ 78 @@ -75787,13 +77411,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1378 + 1481 ], "aim_goal": [ - 1378 + 1481 ], "aim_rating": [ - 1378 + 1481 ], "band": [ 38 @@ -75802,31 +77426,31 @@ export default { 180 ], "blind_score": [ - 1378 + 1481 ], "counter_strafe_score": [ - 1378 + 1481 ], "crosshair_score": [ - 1378 + 1481 ], "flash_assists_score": [ - 1378 + 1481 ], "hs_score": [ - 1378 + 1481 ], "kast_score": [ - 1378 + 1481 ], "maps": [ 38 ], "positioning_goal": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "premier_rank": [ 38 @@ -75835,28 +77459,28 @@ export default { 38 ], "spotted_score": [ - 1378 + 1481 ], "steam_id": [ 180 ], "survival_score": [ - 1378 + 1481 ], "traded_score": [ - 1378 + 1481 ], "ttd_score": [ - 1378 + 1481 ], "util_eff_score": [ - 1378 + 1481 ], "utility_goal": [ - 1378 + 1481 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -75864,13 +77488,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1378 + 1481 ], "aim_goal": [ - 1378 + 1481 ], "aim_rating": [ - 1378 + 1481 ], "band": [ 38 @@ -75879,31 +77503,31 @@ export default { 180 ], "blind_score": [ - 1378 + 1481 ], "counter_strafe_score": [ - 1378 + 1481 ], "crosshair_score": [ - 1378 + 1481 ], "flash_assists_score": [ - 1378 + 1481 ], "hs_score": [ - 1378 + 1481 ], "kast_score": [ - 1378 + 1481 ], "maps": [ 38 ], "positioning_goal": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "premier_rank": [ 38 @@ -75912,28 +77536,28 @@ export default { 38 ], "spotted_score": [ - 1378 + 1481 ], "steam_id": [ 180 ], "survival_score": [ - 1378 + 1481 ], "traded_score": [ - 1378 + 1481 ], "ttd_score": [ - 1378 + 1481 ], "util_eff_score": [ - 1378 + 1481 ], "utility_goal": [ - 1378 + 1481 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -75941,76 +77565,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2660 + 2763 ], "aim_goal": [ - 2660 + 2763 ], "aim_rating": [ - 2660 + 2763 ], "band": [ - 2660 + 2763 ], "band_sample": [ - 2660 + 2763 ], "blind_score": [ - 2660 + 2763 ], "counter_strafe_score": [ - 2660 + 2763 ], "crosshair_score": [ - 2660 + 2763 ], "flash_assists_score": [ - 2660 + 2763 ], "hs_score": [ - 2660 + 2763 ], "kast_score": [ - 2660 + 2763 ], "maps": [ - 2660 + 2763 ], "positioning_goal": [ - 2660 + 2763 ], "positioning_rating": [ - 2660 + 2763 ], "premier_rank": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "spotted_score": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "survival_score": [ - 2660 + 2763 ], "traded_score": [ - 2660 + 2763 ], "ttd_score": [ - 2660 + 2763 ], "util_eff_score": [ - 2660 + 2763 ], "utility_goal": [ - 2660 + 2763 ], "utility_rating": [ - 2660 + 2763 ], "__typename": [ 78 @@ -76250,7 +77874,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3270 + 3373 ], "ordering": [ 236 @@ -76261,13 +77885,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1378 + 1481 ], "aim_goal": [ - 1378 + 1481 ], "aim_rating": [ - 1378 + 1481 ], "band": [ 38 @@ -76276,31 +77900,31 @@ export default { 180 ], "blind_score": [ - 1378 + 1481 ], "counter_strafe_score": [ - 1378 + 1481 ], "crosshair_score": [ - 1378 + 1481 ], "flash_assists_score": [ - 1378 + 1481 ], "hs_score": [ - 1378 + 1481 ], "kast_score": [ - 1378 + 1481 ], "maps": [ 38 ], "positioning_goal": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "premier_rank": [ 38 @@ -76309,28 +77933,28 @@ export default { 38 ], "spotted_score": [ - 1378 + 1481 ], "steam_id": [ 180 ], "survival_score": [ - 1378 + 1481 ], "traded_score": [ - 1378 + 1481 ], "ttd_score": [ - 1378 + 1481 ], "util_eff_score": [ - 1378 + 1481 ], "utility_goal": [ - 1378 + 1481 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -76338,13 +77962,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1378 + 1481 ], "aim_goal": [ - 1378 + 1481 ], "aim_rating": [ - 1378 + 1481 ], "band": [ 38 @@ -76353,31 +77977,31 @@ export default { 180 ], "blind_score": [ - 1378 + 1481 ], "counter_strafe_score": [ - 1378 + 1481 ], "crosshair_score": [ - 1378 + 1481 ], "flash_assists_score": [ - 1378 + 1481 ], "hs_score": [ - 1378 + 1481 ], "kast_score": [ - 1378 + 1481 ], "maps": [ 38 ], "positioning_goal": [ - 1378 + 1481 ], "positioning_rating": [ - 1378 + 1481 ], "premier_rank": [ 38 @@ -76386,28 +78010,28 @@ export default { 38 ], "spotted_score": [ - 1378 + 1481 ], "steam_id": [ 180 ], "survival_score": [ - 1378 + 1481 ], "traded_score": [ - 1378 + 1481 ], "ttd_score": [ - 1378 + 1481 ], "util_eff_score": [ - 1378 + 1481 ], "utility_goal": [ - 1378 + 1481 ], "utility_rating": [ - 1378 + 1481 ], "__typename": [ 78 @@ -76646,25 +78270,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4641 + 4744 ], "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "player": [ - 3618 + 3721 ], "previous_rank": [ 38 @@ -76684,10 +78308,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3279 + 3382 ], "nodes": [ - 3275 + 3378 ], "__typename": [ 78 @@ -76695,7 +78319,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3278 + 3381 ], "__typename": [ 78 @@ -76703,13 +78327,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3296 + 3399 ], "distinct": [ 3 ], "filter": [ - 3284 + 3387 ], "predicate": [ 39 @@ -76720,13 +78344,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3282 + 3385 ], "count": [ 38, { "columns": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -76735,31 +78359,31 @@ export default { } ], "max": [ - 3288 + 3391 ], "min": [ - 3290 + 3393 ], "stddev": [ - 3298 + 3401 ], "stddev_pop": [ - 3300 + 3403 ], "stddev_samp": [ - 3302 + 3405 ], "sum": [ - 3306 + 3409 ], "var_pop": [ - 3310 + 3413 ], "var_samp": [ - 3312 + 3415 ], "variance": [ - 3314 + 3417 ], "__typename": [ 78 @@ -76767,37 +78391,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3283 + 3386 ], "count": [ - 2660 + 2763 ], "max": [ - 3289 + 3392 ], "min": [ - 3291 + 3394 ], "stddev": [ - 3299 + 3402 ], "stddev_pop": [ - 3301 + 3404 ], "stddev_samp": [ - 3303 + 3406 ], "sum": [ - 3307 + 3410 ], "var_pop": [ - 3311 + 3414 ], "var_samp": [ - 3313 + 3416 ], "variance": [ - 3315 + 3418 ], "__typename": [ 78 @@ -76805,10 +78429,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3287 + 3390 ], "on_conflict": [ - 3293 + 3396 ], "__typename": [ 78 @@ -76833,16 +78457,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -76850,34 +78474,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3284 + 3387 ], "_not": [ - 3284 + 3387 ], "_or": [ - 3284 + 3387 ], "id": [ - 4643 + 4746 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "observed_at": [ - 4204 + 4307 ], "player": [ - 3622 + 3725 ], "previous_rank": [ 39 @@ -76915,25 +78539,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4641 + 4744 ], "map": [ - 2010 + 2113 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "player": [ - 3629 + 3732 ], "previous_rank": [ 38 @@ -76953,16 +78577,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -76982,28 +78606,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77011,16 +78635,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -77040,28 +78664,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2660 + 2763 ], "map_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77072,7 +78696,7 @@ export default { 38 ], "returning": [ - 3275 + 3378 ], "__typename": [ 78 @@ -77080,13 +78704,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3285 + 3388 ], "update_columns": [ - 3308 + 3411 ], "where": [ - 3284 + 3387 ], "__typename": [ 78 @@ -77094,37 +78718,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2660 + 2763 ], "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "observed_at": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77132,7 +78756,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -77141,16 +78765,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -77187,16 +78811,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77221,16 +78845,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77255,16 +78879,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77272,7 +78896,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3305 + 3408 ], "ordering": [ 236 @@ -77283,16 +78907,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4641 + 4744 ], "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "observed_at": [ - 4203 + 4306 ], "previous_rank": [ 38 @@ -77329,16 +78953,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77347,13 +78971,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3286 + 3389 ], "_set": [ - 3297 + 3400 ], "where": [ - 3284 + 3387 ], "__typename": [ 78 @@ -77378,16 +79002,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77412,16 +79036,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77446,16 +79070,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rank_type": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77463,19 +79087,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "e_sanction_type": [ - 956 + 976 ], "id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -77484,16 +79108,16 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by": [ - 3618 + 3721 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 961 + 981 ], "__typename": [ 78 @@ -77501,10 +79125,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3320 + 3423 ], "nodes": [ - 3316 + 3419 ], "__typename": [ 78 @@ -77512,7 +79136,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3319 + 3422 ], "__typename": [ 78 @@ -77520,13 +79144,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3337 + 3440 ], "distinct": [ 3 ], "filter": [ - 3325 + 3428 ], "predicate": [ 39 @@ -77537,13 +79161,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3323 + 3426 ], "count": [ 38, { "columns": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "distinct": [ @@ -77552,31 +79176,31 @@ export default { } ], "max": [ - 3329 + 3432 ], "min": [ - 3331 + 3434 ], "stddev": [ - 3339 + 3442 ], "stddev_pop": [ - 3341 + 3444 ], "stddev_samp": [ - 3343 + 3446 ], "sum": [ - 3347 + 3450 ], "var_pop": [ - 3351 + 3454 ], "var_samp": [ - 3353 + 3456 ], "variance": [ - 3355 + 3458 ], "__typename": [ 78 @@ -77584,37 +79208,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3324 + 3427 ], "count": [ - 2660 + 2763 ], "max": [ - 3330 + 3433 ], "min": [ - 3332 + 3435 ], "stddev": [ - 3340 + 3443 ], "stddev_pop": [ - 3342 + 3445 ], "stddev_samp": [ - 3344 + 3447 ], "sum": [ - 3348 + 3451 ], "var_pop": [ - 3352 + 3455 ], "var_samp": [ - 3354 + 3457 ], "variance": [ - 3356 + 3459 ], "__typename": [ 78 @@ -77622,10 +79246,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3328 + 3431 ], "on_conflict": [ - 3334 + 3437 ], "__typename": [ 78 @@ -77644,10 +79268,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77655,28 +79279,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3325 + 3428 ], "_not": [ - 3325 + 3428 ], "_or": [ - 3325 + 3428 ], "created_at": [ - 4204 + 4307 ], "deleted_at": [ - 4204 + 4307 ], "e_sanction_type": [ - 959 + 979 ], "id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -77685,16 +79309,16 @@ export default { 80 ], "remove_sanction_date": [ - 4204 + 4307 ], "sanctioned_by": [ - 3622 + 3725 ], "sanctioned_by_steam_id": [ 182 ], "type": [ - 962 + 982 ], "__typename": [ 78 @@ -77714,19 +79338,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "e_sanction_type": [ - 967 + 987 ], "id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -77735,16 +79359,16 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by": [ - 3629 + 3732 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 961 + 981 ], "__typename": [ 78 @@ -77752,13 +79376,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -77767,7 +79391,7 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by_steam_id": [ 180 @@ -77778,25 +79402,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "reason": [ - 2660 + 2763 ], "remove_sanction_date": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77804,13 +79428,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -77819,7 +79443,7 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by_steam_id": [ 180 @@ -77830,25 +79454,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "reason": [ - 2660 + 2763 ], "remove_sanction_date": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77859,7 +79483,7 @@ export default { 38 ], "returning": [ - 3316 + 3419 ], "__typename": [ 78 @@ -77867,13 +79491,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3326 + 3429 ], "update_columns": [ - 3349 + 3452 ], "where": [ - 3325 + 3428 ], "__typename": [ 78 @@ -77881,37 +79505,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "e_sanction_type": [ - 969 + 989 ], "id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "reason": [ - 2660 + 2763 ], "remove_sanction_date": [ - 2660 + 2763 ], "sanctioned_by": [ - 3631 + 3734 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77919,10 +79543,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -77931,13 +79555,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -77946,13 +79570,13 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 961 + 981 ], "__typename": [ 78 @@ -77971,10 +79595,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -77993,10 +79617,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78015,10 +79639,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78026,7 +79650,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3346 + 3449 ], "ordering": [ 236 @@ -78037,13 +79661,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "deleted_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -78052,13 +79676,13 @@ export default { 78 ], "remove_sanction_date": [ - 4203 + 4306 ], "sanctioned_by_steam_id": [ 180 ], "type": [ - 961 + 981 ], "__typename": [ 78 @@ -78077,10 +79701,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78089,13 +79713,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3327 + 3430 ], "_set": [ - 3338 + 3441 ], "where": [ - 3325 + 3428 ], "__typename": [ 78 @@ -78114,10 +79738,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78136,10 +79760,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78158,10 +79782,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "sanctioned_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78175,7 +79799,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78184,16 +79808,16 @@ export default { 180 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "season": [ - 3677 + 3780 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78201,10 +79825,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3371 + 3474 ], "nodes": [ - 3357 + 3460 ], "__typename": [ 78 @@ -78212,31 +79836,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3360 + 3463 ], "corr": [ - 3361 + 3464 ], "count": [ - 3363 + 3466 ], "covar_samp": [ - 3364 + 3467 ], "max": [ - 3366 + 3469 ], "min": [ - 3367 + 3470 ], "stddev_samp": [ - 3368 + 3471 ], "sum": [ - 3369 + 3472 ], "var_samp": [ - 3370 + 3473 ], "__typename": [ 78 @@ -78244,16 +79868,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3389 + 3492 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78261,16 +79885,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3362 + 3465 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78278,10 +79902,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3390 + 3493 ], "Y": [ - 3390 + 3493 ], "__typename": [ 78 @@ -78289,13 +79913,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3388 + 3491 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ 39 @@ -78306,16 +79930,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3365 + 3468 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78323,10 +79947,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3391 + 3494 ], "Y": [ - 3391 + 3494 ], "__typename": [ 78 @@ -78334,16 +79958,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3392 + 3495 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78351,16 +79975,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3393 + 3496 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78368,16 +79992,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3394 + 3497 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78385,16 +80009,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3395 + 3498 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78402,16 +80026,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3396 + 3499 ], "distinct": [ 3 ], "filter": [ - 3376 + 3479 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -78419,13 +80043,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3374 + 3477 ], "count": [ 38, { "columns": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "distinct": [ @@ -78434,31 +80058,31 @@ export default { } ], "max": [ - 3380 + 3483 ], "min": [ - 3382 + 3485 ], "stddev": [ - 3398 + 3501 ], "stddev_pop": [ - 3400 + 3503 ], "stddev_samp": [ - 3402 + 3505 ], "sum": [ - 3406 + 3509 ], "var_pop": [ - 3410 + 3513 ], "var_samp": [ - 3412 + 3515 ], "variance": [ - 3414 + 3517 ], "__typename": [ 78 @@ -78466,37 +80090,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3375 + 3478 ], "count": [ - 2660 + 2763 ], "max": [ - 3381 + 3484 ], "min": [ - 3383 + 3486 ], "stddev": [ - 3399 + 3502 ], "stddev_pop": [ - 3401 + 3504 ], "stddev_samp": [ - 3403 + 3506 ], "sum": [ - 3407 + 3510 ], "var_pop": [ - 3411 + 3514 ], "var_samp": [ - 3413 + 3516 ], "variance": [ - 3415 + 3518 ], "__typename": [ 78 @@ -78504,10 +80128,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3379 + 3482 ], "on_conflict": [ - 3385 + 3488 ], "__typename": [ 78 @@ -78538,22 +80162,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78561,13 +80185,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3376 + 3479 ], "_not": [ - 3376 + 3479 ], "_or": [ - 3376 + 3479 ], "assists": [ 182 @@ -78576,7 +80200,7 @@ export default { 182 ], "headshot_percentage": [ - 1379 + 1482 ], "headshots": [ 182 @@ -78585,16 +80209,16 @@ export default { 182 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "season": [ - 3681 + 3784 ], "season_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -78609,7 +80233,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78632,7 +80256,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78641,16 +80265,16 @@ export default { 180 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "season": [ - 3688 + 3791 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78664,7 +80288,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78676,7 +80300,7 @@ export default { 180 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78684,25 +80308,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "season_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78716,7 +80340,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78728,7 +80352,7 @@ export default { 180 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78736,25 +80360,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "season_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78765,7 +80389,7 @@ export default { 38 ], "returning": [ - 3357 + 3460 ], "__typename": [ 78 @@ -78773,13 +80397,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3377 + 3480 ], "update_columns": [ - 3408 + 3511 ], "where": [ - 3376 + 3479 ], "__typename": [ 78 @@ -78787,31 +80411,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "season": [ - 3690 + 3793 ], "season_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78822,7 +80446,7 @@ export default { 180 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78845,7 +80469,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -78857,7 +80481,7 @@ export default { 180 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -78888,22 +80512,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78934,22 +80558,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -78980,22 +80604,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79003,7 +80627,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3405 + 3508 ], "ordering": [ 236 @@ -79020,7 +80644,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79032,7 +80656,7 @@ export default { 180 ], "season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -79046,7 +80670,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79063,22 +80687,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79087,13 +80711,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3378 + 3481 ], "_set": [ - 3397 + 3500 ], "where": [ - 3376 + 3479 ], "__typename": [ 78 @@ -79124,22 +80748,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79170,22 +80794,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79216,22 +80840,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79245,7 +80869,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79254,7 +80878,7 @@ export default { 180 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -79265,10 +80889,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3418 + 3521 ], "nodes": [ - 3416 + 3519 ], "__typename": [ 78 @@ -79276,13 +80900,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3419 + 3522 ], "count": [ 38, { "columns": [ - 3431, + 3534, "[player_stats_select_column!]" ], "distinct": [ @@ -79291,31 +80915,31 @@ export default { } ], "max": [ - 3424 + 3527 ], "min": [ - 3425 + 3528 ], "stddev": [ - 3433 + 3536 ], "stddev_pop": [ - 3434 + 3537 ], "stddev_samp": [ - 3435 + 3538 ], "sum": [ - 3438 + 3541 ], "var_pop": [ - 3441 + 3544 ], "var_samp": [ - 3442 + 3545 ], "variance": [ - 3443 + 3546 ], "__typename": [ 78 @@ -79346,13 +80970,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3420 + 3523 ], "_not": [ - 3420 + 3523 ], "_or": [ - 3420 + 3523 ], "assists": [ 182 @@ -79361,7 +80985,7 @@ export default { 182 ], "headshot_percentage": [ - 1379 + 1482 ], "headshots": [ 182 @@ -79370,7 +80994,7 @@ export default { 182 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -79388,7 +81012,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79411,7 +81035,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79420,7 +81044,7 @@ export default { 180 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -79437,7 +81061,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79460,7 +81084,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79480,7 +81104,7 @@ export default { 38 ], "returning": [ - 3416 + 3519 ], "__typename": [ 78 @@ -79488,10 +81112,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3423 + 3526 ], "on_conflict": [ - 3428 + 3531 ], "__typename": [ 78 @@ -79499,13 +81123,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3421 + 3524 ], "update_columns": [ - 3439 + 3542 ], "where": [ - 3420 + 3523 ], "__typename": [ 78 @@ -79513,25 +81137,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -79554,7 +81178,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79640,7 +81264,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3437 + 3540 ], "ordering": [ 236 @@ -79657,7 +81281,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79680,7 +81304,7 @@ export default { 180 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 180 @@ -79698,13 +81322,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3422 + 3525 ], "_set": [ - 3432 + 3535 ], "where": [ - 3420 + 3523 ], "__typename": [ 78 @@ -79781,19 +81405,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "last_presence_state": [ - 1531, + 1634, { "path": [ 78 @@ -79801,7 +81425,7 @@ export default { } ], "player": [ - 3618 + 3721 ], "status": [ 78 @@ -79810,7 +81434,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -79818,10 +81442,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3446 + 3549 ], "nodes": [ - 3444 + 3547 ], "__typename": [ 78 @@ -79829,13 +81453,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3448 + 3551 ], "count": [ 38, { "columns": [ - 3463, + 3566, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -79844,31 +81468,31 @@ export default { } ], "max": [ - 3456 + 3559 ], "min": [ - 3457 + 3560 ], "stddev": [ - 3465 + 3568 ], "stddev_pop": [ - 3466 + 3569 ], "stddev_samp": [ - 3467 + 3570 ], "sum": [ - 3470 + 3573 ], "var_pop": [ - 3473 + 3576 ], "var_samp": [ - 3474 + 3577 ], "variance": [ - 3475 + 3578 ], "__typename": [ 78 @@ -79876,7 +81500,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1531 + 1634 ], "__typename": [ 78 @@ -79895,31 +81519,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3449 + 3552 ], "_not": [ - 3449 + 3552 ], "_or": [ - 3449 + 3552 ], "bot_steam_account_id": [ - 4643 + 4746 ], "bot_steamid64": [ 182 ], "created_at": [ - 4204 + 4307 ], "friended_at": [ - 4204 + 4307 ], "last_presence_state": [ - 1533 + 1636 ], "player": [ - 3622 + 3725 ], "status": [ 80 @@ -79928,7 +81552,7 @@ export default { 182 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -79972,22 +81596,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "last_presence_state": [ - 1531 + 1634 ], "player": [ - 3629 + 3732 ], "status": [ 78 @@ -79996,7 +81620,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80004,16 +81628,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "status": [ 78 @@ -80022,7 +81646,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80030,16 +81654,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "status": [ 78 @@ -80048,7 +81672,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80059,7 +81683,7 @@ export default { 38 ], "returning": [ - 3444 + 3547 ], "__typename": [ 78 @@ -80067,13 +81691,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3450 + 3553 ], "update_columns": [ - 3471 + 3574 ], "where": [ - 3449 + 3552 ], "__typename": [ 78 @@ -80081,31 +81705,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2660 + 2763 ], "bot_steamid64": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "friended_at": [ - 2660 + 2763 ], "last_presence_state": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "status": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -80121,7 +81745,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1531 + 1634 ], "__typename": [ 78 @@ -80130,19 +81754,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "last_presence_state": [ - 1531 + 1634 ], "status": [ 78 @@ -80151,7 +81775,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80192,7 +81816,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3469 + 3572 ], "ordering": [ 236 @@ -80203,19 +81827,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4641 + 4744 ], "bot_steamid64": [ 180 ], "created_at": [ - 4203 + 4306 ], "friended_at": [ - 4203 + 4306 ], "last_presence_state": [ - 1531 + 1634 ], "status": [ 78 @@ -80224,7 +81848,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80244,28 +81868,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3447 + 3550 ], "_delete_at_path": [ - 3451 + 3554 ], "_delete_elem": [ - 3452 + 3555 ], "_delete_key": [ - 3453 + 3556 ], "_inc": [ - 3454 + 3557 ], "_prepend": [ - 3462 + 3565 ], "_set": [ - 3464 + 3567 ], "where": [ - 3449 + 3552 ], "__typename": [ 78 @@ -80309,7 +81933,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80318,16 +81942,16 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80335,10 +81959,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3478 + 3581 ], "nodes": [ - 3476 + 3579 ], "__typename": [ 78 @@ -80346,13 +81970,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3479 + 3582 ], "count": [ 38, { "columns": [ - 3490, + 3593, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -80361,31 +81985,31 @@ export default { } ], "max": [ - 3484 + 3587 ], "min": [ - 3485 + 3588 ], "stddev": [ - 3492 + 3595 ], "stddev_pop": [ - 3493 + 3596 ], "stddev_samp": [ - 3494 + 3597 ], "sum": [ - 3497 + 3600 ], "var_pop": [ - 3500 + 3603 ], "var_samp": [ - 3501 + 3604 ], "variance": [ - 3502 + 3605 ], "__typename": [ 78 @@ -80401,19 +82025,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3480 + 3583 ], "_not": [ - 3480 + 3583 ], "_or": [ - 3480 + 3583 ], "auth_code": [ 80 ], "created_at": [ - 4204 + 4307 ], "last_error": [ 80 @@ -80422,16 +82046,16 @@ export default { 80 ], "last_polled_at": [ - 4204 + 4307 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -80451,7 +82075,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80460,16 +82084,16 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80480,7 +82104,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80489,13 +82113,13 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80506,7 +82130,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80515,13 +82139,13 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80532,7 +82156,7 @@ export default { 38 ], "returning": [ - 3476 + 3579 ], "__typename": [ 78 @@ -80540,13 +82164,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3481 + 3584 ], "update_columns": [ - 3498 + 3601 ], "where": [ - 3480 + 3583 ], "__typename": [ 78 @@ -80554,28 +82178,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "last_error": [ - 2660 + 2763 ], "last_known_share_code": [ - 2660 + 2763 ], "last_polled_at": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -80595,7 +82219,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80604,13 +82228,13 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80642,7 +82266,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3496 + 3599 ], "ordering": [ 236 @@ -80656,7 +82280,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "last_error": [ 78 @@ -80665,13 +82289,13 @@ export default { 78 ], "last_polled_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -80688,13 +82312,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3482 + 3585 ], "_set": [ - 3491 + 3594 ], "where": [ - 3480 + 3583 ], "__typename": [ 78 @@ -80726,22 +82350,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4203 + 4306 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -80758,10 +82382,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3507 + 3610 ], "nodes": [ - 3503 + 3606 ], "__typename": [ 78 @@ -80769,7 +82393,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3506 + 3609 ], "__typename": [ 78 @@ -80777,13 +82401,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3524 + 3627 ], "distinct": [ 3 ], "filter": [ - 3512 + 3615 ], "predicate": [ 39 @@ -80794,13 +82418,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3510 + 3613 ], "count": [ 38, { "columns": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -80809,31 +82433,31 @@ export default { } ], "max": [ - 3516 + 3619 ], "min": [ - 3518 + 3621 ], "stddev": [ - 3526 + 3629 ], "stddev_pop": [ - 3528 + 3631 ], "stddev_samp": [ - 3530 + 3633 ], "sum": [ - 3534 + 3637 ], "var_pop": [ - 3538 + 3641 ], "var_samp": [ - 3540 + 3643 ], "variance": [ - 3542 + 3645 ], "__typename": [ 78 @@ -80841,37 +82465,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3511 + 3614 ], "count": [ - 2660 + 2763 ], "max": [ - 3517 + 3620 ], "min": [ - 3519 + 3622 ], "stddev": [ - 3527 + 3630 ], "stddev_pop": [ - 3529 + 3632 ], "stddev_samp": [ - 3531 + 3634 ], "sum": [ - 3535 + 3638 ], "var_pop": [ - 3539 + 3642 ], "var_samp": [ - 3541 + 3644 ], "variance": [ - 3543 + 3646 ], "__typename": [ 78 @@ -80879,10 +82503,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3515 + 3618 ], "on_conflict": [ - 3521 + 3624 ], "__typename": [ 78 @@ -80904,13 +82528,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -80918,31 +82542,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3512 + 3615 ], "_not": [ - 3512 + 3615 ], "_or": [ - 3512 + 3615 ], "deleted_at": [ - 4204 + 4307 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -80974,22 +82598,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4203 + 4306 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -81006,13 +82630,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -81029,22 +82653,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81052,13 +82676,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -81075,22 +82699,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81101,7 +82725,7 @@ export default { 38 ], "returning": [ - 3503 + 3606 ], "__typename": [ 78 @@ -81109,13 +82733,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3513 + 3616 ], "update_columns": [ - 3536 + 3639 ], "where": [ - 3512 + 3615 ], "__typename": [ 78 @@ -81123,31 +82747,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81155,7 +82779,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -81167,13 +82791,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -81204,13 +82828,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81232,13 +82856,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81260,13 +82884,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81274,7 +82898,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3533 + 3636 ], "ordering": [ 236 @@ -81285,13 +82909,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "player_steam_id": [ 180 @@ -81322,13 +82946,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81337,13 +82961,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3514 + 3617 ], "_set": [ - 3525 + 3628 ], "where": [ - 3512 + 3615 ], "__typename": [ 78 @@ -81365,13 +82989,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81393,13 +83017,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81421,13 +83045,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "unused": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81441,31 +83065,31 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -81473,10 +83097,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3548 + 3651 ], "nodes": [ - 3544 + 3647 ], "__typename": [ 78 @@ -81484,7 +83108,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3547 + 3650 ], "__typename": [ 78 @@ -81492,13 +83116,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3565 + 3668 ], "distinct": [ 3 ], "filter": [ - 3553 + 3656 ], "predicate": [ 39 @@ -81509,13 +83133,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3551 + 3654 ], "count": [ 38, { "columns": [ - 3565, + 3668, "[player_utility_select_column!]" ], "distinct": [ @@ -81524,31 +83148,31 @@ export default { } ], "max": [ - 3557 + 3660 ], "min": [ - 3559 + 3662 ], "stddev": [ - 3567 + 3670 ], "stddev_pop": [ - 3569 + 3672 ], "stddev_samp": [ - 3571 + 3674 ], "sum": [ - 3575 + 3678 ], "var_pop": [ - 3579 + 3682 ], "var_samp": [ - 3581 + 3684 ], "variance": [ - 3583 + 3686 ], "__typename": [ 78 @@ -81556,37 +83180,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3552 + 3655 ], "count": [ - 2660 + 2763 ], "max": [ - 3558 + 3661 ], "min": [ - 3560 + 3663 ], "stddev": [ - 3568 + 3671 ], "stddev_pop": [ - 3570 + 3673 ], "stddev_samp": [ - 3572 + 3675 ], "sum": [ - 3576 + 3679 ], "var_pop": [ - 3580 + 3683 ], "var_samp": [ - 3582 + 3685 ], "variance": [ - 3584 + 3687 ], "__typename": [ 78 @@ -81594,10 +83218,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3556 + 3659 ], "on_conflict": [ - 3562 + 3665 ], "__typename": [ 78 @@ -81616,10 +83240,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81627,13 +83251,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3553 + 3656 ], "_not": [ - 3553 + 3656 ], "_or": [ - 3553 + 3656 ], "attacker_location_coordinates": [ 80 @@ -81642,31 +83266,31 @@ export default { 182 ], "deleted_at": [ - 4204 + 4307 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "round": [ 39 ], "time": [ - 4204 + 4307 ], "type": [ - 1166 + 1186 ], "__typename": [ 78 @@ -81692,31 +83316,31 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -81730,19 +83354,19 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -81750,25 +83374,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81782,19 +83406,19 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -81802,25 +83426,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81831,7 +83455,7 @@ export default { 38 ], "returning": [ - 3544 + 3647 ], "__typename": [ 78 @@ -81839,13 +83463,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3554 + 3657 ], "update_columns": [ - 3577 + 3680 ], "where": [ - 3553 + 3656 ], "__typename": [ 78 @@ -81853,37 +83477,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2660 + 2763 ], "attacker_steam_id": [ - 2660 + 2763 ], "deleted_at": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "round": [ - 2660 + 2763 ], "time": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81894,10 +83518,10 @@ export default { 180 ], "match_map_id": [ - 4641 + 4744 ], "time": [ - 4203 + 4306 ], "__typename": [ 78 @@ -81912,22 +83536,22 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -81946,10 +83570,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81968,10 +83592,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -81990,10 +83614,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82001,7 +83625,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3574 + 3677 ], "ordering": [ 236 @@ -82018,22 +83642,22 @@ export default { 180 ], "deleted_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 ], "time": [ - 4203 + 4306 ], "type": [ - 1165 + 1185 ], "__typename": [ 78 @@ -82052,10 +83676,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82064,13 +83688,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3555 + 3658 ], "_set": [ - 3566 + 3669 ], "where": [ - 3553 + 3656 ], "__typename": [ 78 @@ -82089,10 +83713,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82111,10 +83735,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82133,10 +83757,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82156,7 +83780,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -82176,10 +83800,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3589 + 3692 ], "nodes": [ - 3585 + 3688 ], "__typename": [ 78 @@ -82187,7 +83811,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3588 + 3691 ], "__typename": [ 78 @@ -82195,13 +83819,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3601 + 3704 ], "distinct": [ 3 ], "filter": [ - 3594 + 3697 ], "predicate": [ 39 @@ -82212,13 +83836,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3592 + 3695 ], "count": [ 38, { "columns": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -82227,31 +83851,31 @@ export default { } ], "max": [ - 3596 + 3699 ], "min": [ - 3598 + 3701 ], "stddev": [ - 3602 + 3705 ], "stddev_pop": [ - 3604 + 3707 ], "stddev_samp": [ - 3606 + 3709 ], "sum": [ - 3610 + 3713 ], "var_pop": [ - 3612 + 3715 ], "var_samp": [ - 3614 + 3717 ], "variance": [ - 3616 + 3719 ], "__typename": [ 78 @@ -82259,37 +83883,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3593 + 3696 ], "count": [ - 2660 + 2763 ], "max": [ - 3597 + 3700 ], "min": [ - 3599 + 3702 ], "stddev": [ - 3603 + 3706 ], "stddev_pop": [ - 3605 + 3708 ], "stddev_samp": [ - 3607 + 3710 ], "sum": [ - 3611 + 3714 ], "var_pop": [ - 3613 + 3716 ], "var_samp": [ - 3615 + 3718 ], "variance": [ - 3617 + 3720 ], "__typename": [ 78 @@ -82297,7 +83921,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3595 + 3698 ], "__typename": [ 78 @@ -82331,25 +83955,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82357,13 +83981,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3594 + 3697 ], "_not": [ - 3594 + 3697 ], "_or": [ - 3594 + 3697 ], "first_bullet_hits": [ 39 @@ -82378,7 +84002,7 @@ export default { 39 ], "match_id": [ - 4643 + 4746 ], "shots": [ 39 @@ -82410,7 +84034,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -82442,7 +84066,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -82462,31 +84086,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82506,7 +84130,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -82526,31 +84150,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82558,31 +84182,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "weapon_class": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82617,25 +84241,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82669,25 +84293,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82721,25 +84345,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82747,7 +84371,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3609 + 3712 ], "ordering": [ 236 @@ -82770,7 +84394,7 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "shots": [ 38 @@ -82816,25 +84440,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82868,25 +84492,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82920,25 +84544,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -82972,25 +84596,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2660 + 2763 ], "first_bullet_shots": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "hits_spotted": [ - 2660 + 2763 ], "shots": [ - 2660 + 2763 ], "shots_spotted": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -83042,10 +84666,10 @@ export default { } ], "aim_weapon_stats": [ - 2757, + 2860, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -83055,19 +84679,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "aim_weapon_stats_aggregate": [ - 2758, + 2861, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -83077,19 +84701,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -83099,19 +84723,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -83121,19 +84745,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "assited_by_players": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -83143,19 +84767,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "assited_by_players_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -83165,11 +84789,11 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], @@ -83177,10 +84801,10 @@ export default { 78 ], "coach_lineups": [ - 2155, + 2258, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -83190,19 +84814,19 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "coach_lineups_aggregate": [ - 2156, + 2259, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -83212,11 +84836,11 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], @@ -83224,19 +84848,19 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_lobby_id": [ - 4641 + 4744 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -83246,19 +84870,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "damage_dealt_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -83268,19 +84892,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "damage_taken": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -83290,19 +84914,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "damage_taken_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -83312,11 +84936,11 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], @@ -83324,10 +84948,10 @@ export default { 38 ], "deaths": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -83337,19 +84961,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "deaths_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -83359,11 +84983,11 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], @@ -83415,7 +85039,7 @@ export default { } ], "elo": [ - 1531, + 1634, { "path": [ 78 @@ -83423,10 +85047,10 @@ export default { } ], "elo_history": [ - 5018, + 5131, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -83436,19 +85060,19 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "elo_history_aggregate": [ - 5019, + 5132, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -83458,11 +85082,11 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], @@ -83476,10 +85100,10 @@ export default { 78 ], "faceit_rank_history": [ - 2929, + 3032, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -83489,19 +85113,19 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], "faceit_rank_history_aggregate": [ - 2930, + 3033, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -83511,11 +85135,11 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], @@ -83523,16 +85147,16 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -83542,19 +85166,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "flashed_by_players_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -83564,19 +85188,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "flashed_players": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -83586,19 +85210,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "flashed_players_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -83608,19 +85232,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "friends": [ - 2535, + 2638, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -83630,19 +85254,19 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], "friends_aggregate": [ - 2536, + 2639, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -83652,11 +85276,11 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], @@ -83664,10 +85288,10 @@ export default { 38 ], "invited_players": [ - 3877, + 3980, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -83677,19 +85301,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "invited_players_aggregate": [ - 3878, + 3981, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -83699,11 +85323,11 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], @@ -83726,10 +85350,10 @@ export default { 3 ], "kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -83739,19 +85363,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -83761,19 +85385,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "kills_by_weapons": [ - 3027, + 3130, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -83783,19 +85407,19 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], "kills_by_weapons_aggregate": [ - 3028, + 3131, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -83805,11 +85429,11 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], @@ -83817,16 +85441,16 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "lobby_players": [ - 1929, + 2032, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -83836,19 +85460,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "lobby_players_aggregate": [ - 1930, + 2033, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -83858,11 +85482,11 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], @@ -83879,10 +85503,10 @@ export default { 38 ], "match_map_hltv": [ - 5123, + 5236, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -83892,19 +85516,19 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "match_map_hltv_aggregate": [ - 5124, + 5237, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -83914,19 +85538,19 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "match_map_stats": [ - 3124, + 3227, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -83936,19 +85560,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "match_map_stats_aggregate": [ - 3125, + 3228, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -83958,19 +85582,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "match_stats": [ - 3183, + 3286, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -83980,19 +85604,19 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "match_stats_aggregate": [ - 3184, + 3287, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -84002,19 +85626,19 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -84024,22 +85648,22 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matchmaking_cooldown": [ - 4203 + 4306 ], "multi_kills": [ - 5214, + 5327, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -84049,19 +85673,19 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], "multi_kills_aggregate": [ - 5215, + 5328, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -84071,11 +85695,11 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], @@ -84086,10 +85710,10 @@ export default { 3 ], "notifications": [ - 2608, + 2711, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -84099,19 +85723,19 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "notifications_aggregate": [ - 2609, + 2712, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -84121,19 +85745,19 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -84143,19 +85767,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -84165,19 +85789,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "owned_teams": [ - 4160, + 4263, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -84187,19 +85811,19 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "owned_teams_aggregate": [ - 4161, + 4264, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -84209,16 +85833,16 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "peak_elo": [ - 1531, + 1634, { "path": [ 78 @@ -84226,10 +85850,10 @@ export default { } ], "pending_match_imports": [ - 2661, + 2764, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -84239,19 +85863,19 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "pending_match_imports_aggregate": [ - 2662, + 2765, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -84261,19 +85885,19 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "player_lineup": [ - 2110, + 2213, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -84283,19 +85907,19 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "player_lineup_aggregate": [ - 2111, + 2214, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -84305,19 +85929,19 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "player_unused_utilities": [ - 3503, + 3606, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -84327,19 +85951,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utilities_aggregate": [ - 3504, + 3607, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -84349,11 +85973,11 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], @@ -84361,10 +85985,10 @@ export default { 38 ], "premier_rank_history": [ - 3275, + 3378, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -84374,19 +85998,19 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "premier_rank_history_aggregate": [ - 3276, + 3379, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -84396,31 +86020,31 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 ], "role": [ - 901 + 921 ], "roster_image_url": [ 78 ], "sanctions": [ - 3316, + 3419, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -84430,19 +86054,19 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "sanctions_aggregate": [ - 3317, + 3420, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -84452,19 +86076,19 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "season_stats": [ - 3357, + 3460, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -84474,19 +86098,19 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "season_stats_aggregate": [ - 3358, + 3461, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -84496,11 +86120,11 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], @@ -84508,19 +86132,19 @@ export default { 3 ], "stats": [ - 3416 + 3519 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "team_invites": [ - 3877, + 3980, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -84530,19 +86154,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_invites_aggregate": [ - 3878, + 3981, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -84552,19 +86176,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_members": [ - 3918, + 4021, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -84574,19 +86198,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_members_aggregate": [ - 3919, + 4022, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -84596,19 +86220,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "teams": [ - 4160, + 4263, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -84618,11 +86242,11 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], @@ -84630,10 +86254,10 @@ export default { 38 ], "tournament_organizers": [ - 4251, + 4354, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -84643,19 +86267,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_organizers_aggregate": [ - 4252, + 4355, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -84665,19 +86289,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_rosters": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -84687,19 +86311,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_rosters_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -84709,19 +86333,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_trophies": [ - 4508, + 4611, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -84731,19 +86355,19 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophies_aggregate": [ - 4509, + 4612, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -84753,19 +86377,19 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournaments": [ - 4595, + 4698, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -84775,19 +86399,19 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_aggregate": [ - 4596, + 4699, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -84797,19 +86421,19 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "utility_thrown": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -84819,19 +86443,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "utility_thrown_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -84841,11 +86465,11 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], @@ -84856,10 +86480,10 @@ export default { 3 ], "weapon_stats": [ - 3585, + 3688, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -84869,19 +86493,19 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], "weapon_stats_aggregate": [ - 3586, + 3689, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -84891,11 +86515,11 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], @@ -84917,10 +86541,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3620 + 3723 ], "nodes": [ - 3618 + 3721 ], "__typename": [ 78 @@ -84928,13 +86552,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3621 + 3724 ], "count": [ 38, { "columns": [ - 3633, + 3736, "[players_select_column!]" ], "distinct": [ @@ -84943,31 +86567,31 @@ export default { } ], "max": [ - 3626 + 3729 ], "min": [ - 3627 + 3730 ], "stddev": [ - 3635 + 3738 ], "stddev_pop": [ - 3636 + 3739 ], "stddev_samp": [ - 3637 + 3740 ], "sum": [ - 3640 + 3743 ], "var_pop": [ - 3643 + 3746 ], "var_samp": [ - 3644 + 3747 ], "variance": [ - 3645 + 3748 ], "__typename": [ 78 @@ -85028,13 +86652,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3622 + 3725 ], "_not": [ - 3622 + 3725 ], "_or": [ - 3622 + 3725 ], "abandoned_matches": [ 120 @@ -85043,64 +86667,64 @@ export default { 113 ], "aim_weapon_stats": [ - 2766 + 2869 ], "aim_weapon_stats_aggregate": [ - 2759 + 2862 ], "assists": [ - 2809 + 2912 ], "assists_aggregate": [ - 2800 + 2903 ], "assited_by_players": [ - 2809 + 2912 ], "assited_by_players_aggregate": [ - 2800 + 2903 ], "avatar_url": [ 80 ], "coach_lineups": [ - 2164 + 2267 ], "coach_lineups_aggregate": [ - 2157 + 2260 ], "country": [ 80 ], "created_at": [ - 4204 + 4307 ], "current_lobby_id": [ - 4643 + 4746 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2870 + 2973 ], "damage_dealt_aggregate": [ - 2863 + 2966 ], "damage_taken": [ - 2870 + 2973 ], "damage_taken_aggregate": [ - 2863 + 2966 ], "days_since_last_ban": [ 39 ], "deaths": [ - 3026 + 3129 ], "deaths_aggregate": [ - 3017 + 3120 ], "discord_id": [ 80 @@ -85112,13 +86736,13 @@ export default { 311 ], "elo": [ - 1533 + 1636 ], "elo_history": [ - 5037 + 5150 ], "elo_history_aggregate": [ - 5020 + 5133 ], "faceit_elo": [ 39 @@ -85130,46 +86754,46 @@ export default { 80 ], "faceit_rank_history": [ - 2938 + 3041 ], "faceit_rank_history_aggregate": [ - 2931 + 3034 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4204 + 4307 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 2981 + 3084 ], "flashed_by_players_aggregate": [ - 2972 + 3075 ], "flashed_players": [ - 2981 + 3084 ], "flashed_players_aggregate": [ - 2972 + 3075 ], "friends": [ - 2547 + 2650 ], "friends_aggregate": [ - 2537 + 2640 ], "game_ban_count": [ 39 ], "invited_players": [ - 3886 + 3989 ], "invited_players_aggregate": [ - 3879 + 3982 ], "is_banned": [ 4 @@ -85190,31 +86814,31 @@ export default { 4 ], "kills": [ - 3026 + 3129 ], "kills_aggregate": [ - 3017 + 3120 ], "kills_by_weapons": [ - 3036 + 3139 ], "kills_by_weapons_aggregate": [ - 3029 + 3132 ], "language": [ 80 ], "last_read_news_at": [ - 4204 + 4307 ], "last_sign_in_at": [ - 4204 + 4307 ], "lobby_players": [ - 1940 + 2043 ], "lobby_players_aggregate": [ - 1931 + 2034 ], "losses": [ 39 @@ -85229,34 +86853,34 @@ export default { 39 ], "match_map_hltv": [ - 5132 + 5245 ], "match_map_hltv_aggregate": [ - 5125 + 5238 ], "match_map_stats": [ - 3133 + 3236 ], "match_map_stats_aggregate": [ - 3126 + 3229 ], "match_stats": [ - 3192 + 3295 ], "match_stats_aggregate": [ - 3185 + 3288 ], "matches": [ - 2484 + 2587 ], "matchmaking_cooldown": [ - 4204 + 4307 ], "multi_kills": [ - 5223 + 5336 ], "multi_kills_aggregate": [ - 5216 + 5329 ], "name": [ 80 @@ -85265,136 +86889,136 @@ export default { 4 ], "notifications": [ - 2620 + 2723 ], "notifications_aggregate": [ - 2610 + 2713 ], "objectives": [ - 3225 + 3328 ], "objectives_aggregate": [ - 3218 + 3321 ], "owned_teams": [ - 4169 + 4272 ], "owned_teams_aggregate": [ - 4162 + 4265 ], "peak_elo": [ - 1533 + 1636 ], "pending_match_imports": [ - 2670 + 2773 ], "pending_match_imports_aggregate": [ - 2663 + 2766 ], "player_lineup": [ - 2121 + 2224 ], "player_lineup_aggregate": [ - 2112 + 2215 ], "player_unused_utilities": [ - 3512 + 3615 ], "player_unused_utilities_aggregate": [ - 3505 + 3608 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3284 + 3387 ], "premier_rank_history_aggregate": [ - 3277 + 3380 ], "premier_rank_updated_at": [ - 4204 + 4307 ], "profile_url": [ 80 ], "role": [ - 902 + 922 ], "roster_image_url": [ 80 ], "sanctions": [ - 3325 + 3428 ], "sanctions_aggregate": [ - 3318 + 3421 ], "season_stats": [ - 3376 + 3479 ], "season_stats_aggregate": [ - 3359 + 3462 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3420 + 3523 ], "steam_bans_checked_at": [ - 4204 + 4307 ], "steam_id": [ 182 ], "team_invites": [ - 3886 + 3989 ], "team_invites_aggregate": [ - 3879 + 3982 ], "team_members": [ - 3929 + 4032 ], "team_members_aggregate": [ - 3920 + 4023 ], "teams": [ - 4169 + 4272 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4260 + 4363 ], "tournament_organizers_aggregate": [ - 4253 + 4356 ], "tournament_rosters": [ - 4434 + 4537 ], "tournament_rosters_aggregate": [ - 4427 + 4530 ], "tournament_trophies": [ - 4519 + 4622 ], "tournament_trophies_aggregate": [ - 4510 + 4613 ], "tournaments": [ - 4606 + 4709 ], "tournaments_aggregate": [ - 4597 + 4700 ], "utility_thrown": [ - 3553 + 3656 ], "utility_thrown_aggregate": [ - 3546 + 3649 ], "vac_ban_count": [ 39 @@ -85403,10 +87027,10 @@ export default { 4 ], "weapon_stats": [ - 3594 + 3697 ], "weapon_stats_aggregate": [ - 3587 + 3690 ], "wins": [ 39 @@ -85456,40 +87080,40 @@ export default { 117 ], "aim_weapon_stats": [ - 2763 + 2866 ], "assists": [ - 2806 + 2909 ], "assited_by_players": [ - 2806 + 2909 ], "avatar_url": [ 78 ], "coach_lineups": [ - 2161 + 2264 ], "country": [ 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2867 + 2970 ], "damage_taken": [ - 2867 + 2970 ], "days_since_last_ban": [ 38 ], "deaths": [ - 3023 + 3126 ], "discord_id": [ 78 @@ -85498,7 +87122,7 @@ export default { 317 ], "elo_history": [ - 5034 + 5147 ], "faceit_elo": [ 38 @@ -85510,61 +87134,61 @@ export default { 78 ], "faceit_rank_history": [ - 2935 + 3038 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 2978 + 3081 ], "flashed_players": [ - 2978 + 3081 ], "friends": [ - 2544 + 2647 ], "game_ban_count": [ 38 ], "invited_players": [ - 3883 + 3986 ], "kills": [ - 3023 + 3126 ], "kills_by_weapons": [ - 3033 + 3136 ], "language": [ 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "lobby_players": [ - 1937 + 2040 ], "match_map_hltv": [ - 5129 + 5242 ], "match_map_stats": [ - 3130 + 3233 ], "match_stats": [ - 3189 + 3292 ], "multi_kills": [ - 5220 + 5333 ], "name": [ 78 @@ -85573,79 +87197,79 @@ export default { 3 ], "notifications": [ - 2617 + 2720 ], "objectives": [ - 3222 + 3325 ], "owned_teams": [ - 4166 + 4269 ], "pending_match_imports": [ - 2667 + 2770 ], "player_lineup": [ - 2118 + 2221 ], "player_unused_utilities": [ - 3509 + 3612 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3281 + 3384 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 ], "role": [ - 901 + 921 ], "roster_image_url": [ 78 ], "sanctions": [ - 3322 + 3425 ], "season_stats": [ - 3373 + 3476 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3427 + 3530 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 ], "team_invites": [ - 3883 + 3986 ], "team_members": [ - 3926 + 4029 ], "tournament_organizers": [ - 4257 + 4360 ], "tournament_rosters": [ - 4431 + 4534 ], "tournament_trophies": [ - 4516 + 4619 ], "tournaments": [ - 4603 + 4706 ], "utility_thrown": [ - 3550 + 3653 ], "vac_ban_count": [ 38 @@ -85654,7 +87278,7 @@ export default { 3 ], "weapon_stats": [ - 3591 + 3694 ], "__typename": [ 78 @@ -85668,10 +87292,10 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_lobby_id": [ - 4641 + 4744 ], "custom_avatar_url": [ 78 @@ -85695,7 +87319,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -85707,10 +87331,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "losses": [ 38 @@ -85725,7 +87349,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4203 + 4306 ], "name": [ 78 @@ -85734,7 +87358,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -85743,7 +87367,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -85778,10 +87402,10 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "current_lobby_id": [ - 4641 + 4744 ], "custom_avatar_url": [ 78 @@ -85805,7 +87429,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -85817,10 +87441,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "losses": [ 38 @@ -85835,7 +87459,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4203 + 4306 ], "name": [ 78 @@ -85844,7 +87468,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 @@ -85853,7 +87477,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -85885,7 +87509,7 @@ export default { 38 ], "returning": [ - 3618 + 3721 ], "__typename": [ 78 @@ -85893,10 +87517,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3625 + 3728 ], "on_conflict": [ - 3630 + 3733 ], "__typename": [ 78 @@ -85904,13 +87528,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3623 + 3726 ], "update_columns": [ - 3641 + 3744 ], "where": [ - 3622 + 3725 ], "__typename": [ 78 @@ -85921,268 +87545,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2762 + 2865 ], "assists_aggregate": [ - 2805 + 2908 ], "assited_by_players_aggregate": [ - 2805 + 2908 ], "avatar_url": [ - 2660 + 2763 ], "coach_lineups_aggregate": [ - 2160 + 2263 ], "country": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "current_lobby_id": [ - 2660 + 2763 ], "custom_avatar_url": [ - 2660 + 2763 ], "damage_dealt_aggregate": [ - 2866 + 2969 ], "damage_taken_aggregate": [ - 2866 + 2969 ], "days_since_last_ban": [ - 2660 + 2763 ], "deaths_aggregate": [ - 3022 + 3125 ], "discord_id": [ - 2660 + 2763 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2660 + 2763 ], "elo_history_aggregate": [ - 5033 + 5146 ], "faceit_elo": [ - 2660 + 2763 ], "faceit_nickname": [ - 2660 + 2763 ], "faceit_player_id": [ - 2660 + 2763 ], "faceit_rank_history_aggregate": [ - 2934 + 3037 ], "faceit_skill_level": [ - 2660 + 2763 ], "faceit_updated_at": [ - 2660 + 2763 ], "faceit_url": [ - 2660 + 2763 ], "flashed_by_players_aggregate": [ - 2977 + 3080 ], "flashed_players_aggregate": [ - 2977 + 3080 ], "friends_aggregate": [ - 2542 + 2645 ], "game_ban_count": [ - 2660 + 2763 ], "invited_players_aggregate": [ - 3882 + 3985 ], "is_banned": [ - 2660 + 2763 ], "is_gagged": [ - 2660 + 2763 ], "is_in_another_match": [ - 2660 + 2763 ], "is_in_draft": [ - 2660 + 2763 ], "is_in_lobby": [ - 2660 + 2763 ], "is_muted": [ - 2660 + 2763 ], "kills_aggregate": [ - 3022 + 3125 ], "kills_by_weapons_aggregate": [ - 3032 + 3135 ], "language": [ - 2660 + 2763 ], "last_read_news_at": [ - 2660 + 2763 ], "last_sign_in_at": [ - 2660 + 2763 ], "lobby_players_aggregate": [ - 1936 + 2039 ], "losses": [ - 2660 + 2763 ], "losses_competitive": [ - 2660 + 2763 ], "losses_duel": [ - 2660 + 2763 ], "losses_wingman": [ - 2660 + 2763 ], "match_map_hltv_aggregate": [ - 5128 + 5241 ], "match_map_stats_aggregate": [ - 3129 + 3232 ], "match_stats_aggregate": [ - 3188 + 3291 ], "matches_aggregate": [ - 2480 + 2583 ], "matchmaking_cooldown": [ - 2660 + 2763 ], "multi_kills_aggregate": [ - 5219 + 5332 ], "name": [ - 2660 + 2763 ], "name_registered": [ - 2660 + 2763 ], "notifications_aggregate": [ - 2615 + 2718 ], "objectives_aggregate": [ - 3221 + 3324 ], "owned_teams_aggregate": [ - 4165 + 4268 ], "peak_elo": [ - 2660 + 2763 ], "pending_match_imports_aggregate": [ - 2666 + 2769 ], "player_lineup_aggregate": [ - 2117 + 2220 ], "player_unused_utilities_aggregate": [ - 3508 + 3611 ], "premier_rank": [ - 2660 + 2763 ], "premier_rank_history_aggregate": [ - 3280 + 3383 ], "premier_rank_updated_at": [ - 2660 + 2763 ], "profile_url": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "sanctions_aggregate": [ - 3321 + 3424 ], "season_stats_aggregate": [ - 3372 + 3475 ], "show_match_ready_modal": [ - 2660 + 2763 ], "stats": [ - 3429 + 3532 ], "steam_bans_checked_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_invites_aggregate": [ - 3882 + 3985 ], "team_members_aggregate": [ - 3925 + 4028 ], "teams_aggregate": [ - 4165 + 4268 ], "total_matches": [ - 2660 + 2763 ], "tournament_organizers_aggregate": [ - 4256 + 4359 ], "tournament_rosters_aggregate": [ - 4430 + 4533 ], "tournament_trophies_aggregate": [ - 4515 + 4618 ], "tournaments_aggregate": [ - 4602 + 4705 ], "utility_thrown_aggregate": [ - 3549 + 3652 ], "vac_ban_count": [ - 2660 + 2763 ], "vac_banned": [ - 2660 + 2763 ], "weapon_stats_aggregate": [ - 3590 + 3693 ], "wins": [ - 2660 + 2763 ], "wins_competitive": [ - 2660 + 2763 ], "wins_duel": [ - 2660 + 2763 ], "wins_wingman": [ - 2660 + 2763 ], "__typename": [ 78 @@ -86205,7 +87829,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -86229,7 +87853,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -86241,10 +87865,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -86256,13 +87880,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 ], "role": [ - 901 + 921 ], "roster_image_url": [ 78 @@ -86271,7 +87895,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -86447,7 +88071,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3639 + 3742 ], "ordering": [ 236 @@ -86464,7 +88088,7 @@ export default { 78 ], "created_at": [ - 4203 + 4306 ], "custom_avatar_url": [ 78 @@ -86488,7 +88112,7 @@ export default { 38 ], "faceit_updated_at": [ - 4203 + 4306 ], "faceit_url": [ 78 @@ -86500,10 +88124,10 @@ export default { 78 ], "last_read_news_at": [ - 4203 + 4306 ], "last_sign_in_at": [ - 4203 + 4306 ], "name": [ 78 @@ -86515,13 +88139,13 @@ export default { 38 ], "premier_rank_updated_at": [ - 4203 + 4306 ], "profile_url": [ 78 ], "role": [ - 901 + 921 ], "roster_image_url": [ 78 @@ -86530,7 +88154,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -86601,13 +88225,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3624 + 3727 ], "_set": [ - 3634 + 3737 ], "where": [ - 3622 + 3725 ], "__typename": [ 78 @@ -86777,10 +88401,10 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "runtime": [ - 921 + 941 ], "version": [ 78 @@ -86791,10 +88415,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3648 + 3751 ], "nodes": [ - 3646 + 3749 ], "__typename": [ 78 @@ -86802,13 +88426,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3649 + 3752 ], "count": [ 38, { "columns": [ - 3660, + 3763, "[plugin_versions_select_column!]" ], "distinct": [ @@ -86817,31 +88441,31 @@ export default { } ], "max": [ - 3654 + 3757 ], "min": [ - 3655 + 3758 ], "stddev": [ - 3662 + 3765 ], "stddev_pop": [ - 3663 + 3766 ], "stddev_samp": [ - 3664 + 3767 ], "sum": [ - 3667 + 3770 ], "var_pop": [ - 3670 + 3773 ], "var_samp": [ - 3671 + 3774 ], "variance": [ - 3672 + 3775 ], "__typename": [ 78 @@ -86857,22 +88481,22 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3650 + 3753 ], "_not": [ - 3650 + 3753 ], "_or": [ - 3650 + 3753 ], "min_game_build_id": [ 39 ], "published_at": [ - 4204 + 4307 ], "runtime": [ - 922 + 942 ], "version": [ 80 @@ -86895,10 +88519,10 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "runtime": [ - 921 + 941 ], "version": [ 78 @@ -86912,7 +88536,7 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "version": [ 78 @@ -86926,7 +88550,7 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "version": [ 78 @@ -86940,7 +88564,7 @@ export default { 38 ], "returning": [ - 3646 + 3749 ], "__typename": [ 78 @@ -86948,13 +88572,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3651 + 3754 ], "update_columns": [ - 3668 + 3771 ], "where": [ - 3650 + 3753 ], "__typename": [ 78 @@ -86962,16 +88586,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2660 + 2763 ], "published_at": [ - 2660 + 2763 ], "runtime": [ - 2660 + 2763 ], "version": [ - 2660 + 2763 ], "__typename": [ 78 @@ -86979,7 +88603,7 @@ export default { }, "plugin_versions_pk_columns_input": { "runtime": [ - 921 + 941 ], "version": [ 78 @@ -86994,10 +88618,10 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "runtime": [ - 921 + 941 ], "version": [ 78 @@ -87032,7 +88656,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3666 + 3769 ], "ordering": [ 236 @@ -87046,10 +88670,10 @@ export default { 38 ], "published_at": [ - 4203 + 4306 ], "runtime": [ - 921 + 941 ], "version": [ 78 @@ -87069,13 +88693,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3652 + 3755 ], "_set": [ - 3661 + 3764 ], "where": [ - 3650 + 3753 ], "__typename": [ 78 @@ -87107,7 +88731,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -87115,7 +88739,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -87131,7 +88755,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -87139,16 +88763,16 @@ export default { }, "seasons": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "needs_rebuild": [ 3 @@ -87157,10 +88781,10 @@ export default { 38 ], "player_season_stats": [ - 3357, + 3460, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -87170,19 +88794,19 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "player_season_stats_aggregate": [ - 3358, + 3461, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -87192,16 +88816,16 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87209,10 +88833,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3679 + 3782 ], "nodes": [ - 3677 + 3780 ], "__typename": [ 78 @@ -87220,13 +88844,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3680 + 3783 ], "count": [ 38, { "columns": [ - 3692, + 3795, "[seasons_select_column!]" ], "distinct": [ @@ -87235,31 +88859,31 @@ export default { } ], "max": [ - 3685 + 3788 ], "min": [ - 3686 + 3789 ], "stddev": [ - 3694 + 3797 ], "stddev_pop": [ - 3695 + 3798 ], "stddev_samp": [ - 3696 + 3799 ], "sum": [ - 3699 + 3802 ], "var_pop": [ - 3702 + 3805 ], "var_samp": [ - 3703 + 3806 ], "variance": [ - 3704 + 3807 ], "__typename": [ 78 @@ -87275,25 +88899,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3681 + 3784 ], "_not": [ - 3681 + 3784 ], "_or": [ - 3681 + 3784 ], "created_at": [ - 4204 + 4307 ], "description": [ 80 ], "ends_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "needs_rebuild": [ 4 @@ -87302,13 +88926,13 @@ export default { 39 ], "player_season_stats": [ - 3376 + 3479 ], "player_season_stats_aggregate": [ - 3359 + 3462 ], "starts_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -87325,16 +88949,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "needs_rebuild": [ 3 @@ -87343,10 +88967,10 @@ export default { 38 ], "player_season_stats": [ - 3373 + 3476 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87354,22 +88978,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "number": [ 38 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87377,22 +89001,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "number": [ 38 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87403,7 +89027,7 @@ export default { 38 ], "returning": [ - 3677 + 3780 ], "__typename": [ 78 @@ -87411,10 +89035,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3684 + 3787 ], "on_conflict": [ - 3689 + 3792 ], "__typename": [ 78 @@ -87422,13 +89046,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3682 + 3785 ], "update_columns": [ - 3700 + 3803 ], "where": [ - 3681 + 3784 ], "__typename": [ 78 @@ -87436,28 +89060,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "ends_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "needs_rebuild": [ - 2660 + 2763 ], "number": [ - 2660 + 2763 ], "player_season_stats_aggregate": [ - 3372 + 3475 ], "starts_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -87465,7 +89089,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -87474,16 +89098,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "needs_rebuild": [ 3 @@ -87492,7 +89116,7 @@ export default { 38 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87524,7 +89148,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3698 + 3801 ], "ordering": [ 236 @@ -87535,16 +89159,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "description": [ 78 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "needs_rebuild": [ 3 @@ -87553,7 +89177,7 @@ export default { 38 ], "starts_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -87570,13 +89194,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3683 + 3786 ], "_set": [ - 3693 + 3796 ], "where": [ - 3681 + 3784 ], "__typename": [ 78 @@ -87614,10 +89238,10 @@ export default { 78 ], "game_server_nodes": [ - 1407, + 1510, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -87627,19 +89251,19 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], "game_server_nodes_aggregate": [ - 1408, + 1511, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -87649,11 +89273,11 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], @@ -87681,10 +89305,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3707 + 3810 ], "nodes": [ - 3705 + 3808 ], "__typename": [ 78 @@ -87692,13 +89316,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3708 + 3811 ], "count": [ 38, { "columns": [ - 3719, + 3822, "[server_regions_select_column!]" ], "distinct": [ @@ -87707,31 +89331,31 @@ export default { } ], "max": [ - 3712 + 3815 ], "min": [ - 3713 + 3816 ], "stddev": [ - 3721 + 3824 ], "stddev_pop": [ - 3722 + 3825 ], "stddev_samp": [ - 3723 + 3826 ], "sum": [ - 3726 + 3829 ], "var_pop": [ - 3729 + 3832 ], "var_samp": [ - 3730 + 3833 ], "variance": [ - 3731 + 3834 ], "__typename": [ 78 @@ -87750,13 +89374,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3709 + 3812 ], "_not": [ - 3709 + 3812 ], "_or": [ - 3709 + 3812 ], "available_server_count": [ 39 @@ -87765,10 +89389,10 @@ export default { 80 ], "game_server_nodes": [ - 1419 + 1522 ], "game_server_nodes_aggregate": [ - 1409 + 1512 ], "has_node": [ 4 @@ -87798,7 +89422,7 @@ export default { 78 ], "game_server_nodes": [ - 1416 + 1519 ], "is_lan": [ 3 @@ -87858,7 +89482,7 @@ export default { 38 ], "returning": [ - 3705 + 3808 ], "__typename": [ 78 @@ -87866,10 +89490,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3711 + 3814 ], "on_conflict": [ - 3716 + 3819 ], "__typename": [ 78 @@ -87877,13 +89501,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3710 + 3813 ], "update_columns": [ - 3727 + 3830 ], "where": [ - 3709 + 3812 ], "__typename": [ 78 @@ -87891,31 +89515,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "game_server_nodes_aggregate": [ - 1414 + 1517 ], "has_node": [ - 2660 + 2763 ], "is_lan": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "steam_relay": [ - 2660 + 2763 ], "total_server_count": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -87982,7 +89606,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3725 + 3828 ], "ordering": [ 236 @@ -88022,10 +89646,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3720 + 3823 ], "where": [ - 3709 + 3812 ], "__typename": [ 78 @@ -88066,7 +89690,7 @@ export default { }, "servers": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -88087,7 +89711,7 @@ export default { 78 ], "current_match": [ - 2475 + 2578 ], "enabled": [ 3 @@ -88096,7 +89720,7 @@ export default { 78 ], "game_server_node": [ - 1407 + 1510 ], "game_server_node_id": [ 78 @@ -88105,7 +89729,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_dedicated": [ 3 @@ -88114,10 +89738,10 @@ export default { 78 ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -88127,19 +89751,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_aggregate": [ - 2476, + 2579, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -88149,11 +89773,11 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], @@ -88161,10 +89785,10 @@ export default { 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_runtime": [ - 921 + 941 ], "plugin_version": [ 78 @@ -88182,10 +89806,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "server_region": [ - 3705 + 3808 ], "steam_relay": [ 78 @@ -88194,10 +89818,10 @@ export default { 38 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -88205,10 +89829,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3738 + 3841 ], "nodes": [ - 3732 + 3835 ], "__typename": [ 78 @@ -88216,13 +89840,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3735 + 3838 ], "bool_or": [ - 3736 + 3839 ], "count": [ - 3737 + 3840 ], "__typename": [ 78 @@ -88230,13 +89854,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3757 + 3860 ], "distinct": [ 3 ], "filter": [ - 3743 + 3846 ], "predicate": [ 4 @@ -88247,13 +89871,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3758 + 3861 ], "distinct": [ 3 ], "filter": [ - 3743 + 3846 ], "predicate": [ 4 @@ -88264,13 +89888,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3756 + 3859 ], "distinct": [ 3 ], "filter": [ - 3743 + 3846 ], "predicate": [ 39 @@ -88281,13 +89905,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3741 + 3844 ], "count": [ 38, { "columns": [ - 3756, + 3859, "[servers_select_column!]" ], "distinct": [ @@ -88296,31 +89920,31 @@ export default { } ], "max": [ - 3747 + 3850 ], "min": [ - 3749 + 3852 ], "stddev": [ - 3760 + 3863 ], "stddev_pop": [ - 3762 + 3865 ], "stddev_samp": [ - 3764 + 3867 ], "sum": [ - 3768 + 3871 ], "var_pop": [ - 3772 + 3875 ], "var_samp": [ - 3774 + 3877 ], "variance": [ - 3776 + 3879 ], "__typename": [ 78 @@ -88328,37 +89952,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3742 + 3845 ], "count": [ - 2660 + 2763 ], "max": [ - 3748 + 3851 ], "min": [ - 3750 + 3853 ], "stddev": [ - 3761 + 3864 ], "stddev_pop": [ - 3763 + 3866 ], "stddev_samp": [ - 3765 + 3868 ], "sum": [ - 3769 + 3872 ], "var_pop": [ - 3773 + 3876 ], "var_samp": [ - 3775 + 3878 ], "variance": [ - 3777 + 3880 ], "__typename": [ 78 @@ -88366,10 +89990,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3746 + 3849 ], "on_conflict": [ - 3753 + 3856 ], "__typename": [ 78 @@ -88391,13 +90015,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -88405,16 +90029,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3743 + 3846 ], "_not": [ - 3743 + 3846 ], "_or": [ - 3743 + 3846 ], "api_password": [ - 4643 + 4746 ], "boot_status": [ 80 @@ -88435,7 +90059,7 @@ export default { 80 ], "current_match": [ - 2484 + 2587 ], "enabled": [ 4 @@ -88444,7 +90068,7 @@ export default { 80 ], "game_server_node": [ - 1419 + 1522 ], "game_server_node_id": [ 80 @@ -88453,7 +90077,7 @@ export default { 80 ], "id": [ - 4643 + 4746 ], "is_dedicated": [ 4 @@ -88462,19 +90086,19 @@ export default { 80 ], "matches": [ - 2484 + 2587 ], "matches_aggregate": [ - 2477 + 2580 ], "max_players": [ 39 ], "offline_at": [ - 4204 + 4307 ], "plugin_runtime": [ - 922 + 942 ], "plugin_version": [ 80 @@ -88492,10 +90116,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4643 + 4746 ], "server_region": [ - 3709 + 3812 ], "steam_relay": [ 80 @@ -88504,10 +90128,10 @@ export default { 39 ], "type": [ - 1003 + 1023 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -88530,7 +90154,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -88545,7 +90169,7 @@ export default { 3 ], "current_match": [ - 2493 + 2596 ], "enabled": [ 3 @@ -88554,7 +90178,7 @@ export default { 78 ], "game_server_node": [ - 1431 + 1534 ], "game_server_node_id": [ 78 @@ -88563,7 +90187,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_dedicated": [ 3 @@ -88572,16 +90196,16 @@ export default { 78 ], "matches": [ - 2481 + 2584 ], "max_players": [ 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_runtime": [ - 921 + 941 ], "plugin_version": [ 78 @@ -88599,10 +90223,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "server_region": [ - 3715 + 3818 ], "steam_relay": [ 78 @@ -88611,10 +90235,10 @@ export default { 38 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -88622,7 +90246,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -88649,7 +90273,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "label": [ 78 @@ -88658,7 +90282,7 @@ export default { 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_version": [ 78 @@ -88670,7 +90294,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "steam_relay": [ 78 @@ -88679,7 +90303,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -88687,58 +90311,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2660 + 2763 ], "boot_status": [ - 2660 + 2763 ], "boot_status_detail": [ - 2660 + 2763 ], "connect_password": [ - 2660 + 2763 ], "game": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "host": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "max_players": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "plugin_version": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "reserved_by_match_id": [ - 2660 + 2763 ], "steam_relay": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -88746,7 +90370,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -88773,7 +90397,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "label": [ 78 @@ -88782,7 +90406,7 @@ export default { 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_version": [ 78 @@ -88794,7 +90418,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "steam_relay": [ 78 @@ -88803,7 +90427,7 @@ export default { 38 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -88811,58 +90435,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2660 + 2763 ], "boot_status": [ - 2660 + 2763 ], "boot_status_detail": [ - 2660 + 2763 ], "connect_password": [ - 2660 + 2763 ], "game": [ - 2660 + 2763 ], "game_server_node_id": [ - 2660 + 2763 ], "host": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "max_players": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "plugin_version": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "reserved_by_match_id": [ - 2660 + 2763 ], "steam_relay": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -88873,7 +90497,7 @@ export default { 38 ], "returning": [ - 3732 + 3835 ], "__typename": [ 78 @@ -88881,10 +90505,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3746 + 3849 ], "on_conflict": [ - 3753 + 3856 ], "__typename": [ 78 @@ -88892,13 +90516,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3744 + 3847 ], "update_columns": [ - 3770 + 3873 ], "where": [ - 3743 + 3846 ], "__typename": [ 78 @@ -88906,97 +90530,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2660 + 2763 ], "boot_status": [ - 2660 + 2763 ], "boot_status_detail": [ - 2660 + 2763 ], "connect_password": [ - 2660 + 2763 ], "connected": [ - 2660 + 2763 ], "connection_link": [ - 2660 + 2763 ], "connection_string": [ - 2660 + 2763 ], "current_match": [ - 2495 + 2598 ], "enabled": [ - 2660 + 2763 ], "game": [ - 2660 + 2763 ], "game_server_node": [ - 1433 + 1536 ], "game_server_node_id": [ - 2660 + 2763 ], "host": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_dedicated": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "matches_aggregate": [ - 2480 + 2583 ], "max_players": [ - 2660 + 2763 ], "offline_at": [ - 2660 + 2763 ], "plugin_runtime": [ - 2660 + 2763 ], "plugin_version": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "rcon_password": [ - 2660 + 2763 ], "rcon_status": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "reserved_by_match_id": [ - 2660 + 2763 ], "server_region": [ - 3717 + 3820 ], "steam_relay": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89004,7 +90628,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89015,7 +90639,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -89042,7 +90666,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_dedicated": [ 3 @@ -89054,10 +90678,10 @@ export default { 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_runtime": [ - 921 + 941 ], "plugin_version": [ 78 @@ -89075,7 +90699,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "steam_relay": [ 78 @@ -89084,10 +90708,10 @@ export default { 38 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -89109,13 +90733,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89137,13 +90761,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89165,13 +90789,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89179,7 +90803,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3767 + 3870 ], "ordering": [ 236 @@ -89190,7 +90814,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4641 + 4744 ], "boot_status": [ 78 @@ -89217,7 +90841,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_dedicated": [ 3 @@ -89229,10 +90853,10 @@ export default { 38 ], "offline_at": [ - 4203 + 4306 ], "plugin_runtime": [ - 921 + 941 ], "plugin_version": [ 78 @@ -89250,7 +90874,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4641 + 4744 ], "steam_relay": [ 78 @@ -89259,10 +90883,10 @@ export default { 38 ], "type": [ - 1002 + 1022 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -89284,13 +90908,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89299,13 +90923,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3745 + 3848 ], "_set": [ - 3759 + 3862 ], "where": [ - 3743 + 3846 ], "__typename": [ 78 @@ -89327,13 +90951,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89355,13 +90979,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89383,13 +91007,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2660 + 2763 ], "port": [ - 2660 + 2763 ], "tv_port": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89408,10 +91032,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3780 + 3883 ], "nodes": [ - 3778 + 3881 ], "__typename": [ 78 @@ -89422,7 +91046,7 @@ export default { 38, { "columns": [ - 3790, + 3893, "[settings_select_column!]" ], "distinct": [ @@ -89431,10 +91055,10 @@ export default { } ], "max": [ - 3784 + 3887 ], "min": [ - 3785 + 3888 ], "__typename": [ 78 @@ -89442,13 +91066,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3781 + 3884 ], "_not": [ - 3781 + 3884 ], "_or": [ - 3781 + 3884 ], "name": [ 80 @@ -89499,7 +91123,7 @@ export default { 38 ], "returning": [ - 3778 + 3881 ], "__typename": [ 78 @@ -89507,13 +91131,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3782 + 3885 ], "update_columns": [ - 3794 + 3897 ], "where": [ - 3781 + 3884 ], "__typename": [ 78 @@ -89521,10 +91145,10 @@ export default { }, "settings_order_by": { "name": [ - 2660 + 2763 ], "value": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89552,7 +91176,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3793 + 3896 ], "ordering": [ 236 @@ -89575,10 +91199,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3791 + 3894 ], "where": [ - 3781 + 3884 ], "__typename": [ 78 @@ -89587,31 +91211,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3796 + 3899 ], "_gt": [ - 3796 + 3899 ], "_gte": [ - 3796 + 3899 ], "_in": [ - 3796 + 3899 ], "_is_null": [ 3 ], "_lt": [ - 3796 + 3899 ], "_lte": [ - 3796 + 3899 ], "_neq": [ - 3796 + 3899 ], "_nin": [ - 3796 + 3899 ], "__typename": [ 78 @@ -89619,16 +91243,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "node": [ - 1407 + 1510 ], "node_id": [ 78 @@ -89637,10 +91261,10 @@ export default { 78 ], "steam_account": [ - 3822 + 3925 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89648,10 +91272,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3802 + 3905 ], "nodes": [ - 3798 + 3901 ], "__typename": [ 78 @@ -89659,7 +91283,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3801 + 3904 ], "__typename": [ 78 @@ -89667,13 +91291,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3816 + 3919 ], "distinct": [ 3 ], "filter": [ - 3805 + 3908 ], "predicate": [ 39 @@ -89687,7 +91311,7 @@ export default { 38, { "columns": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -89696,10 +91320,10 @@ export default { } ], "max": [ - 3808 + 3911 ], "min": [ - 3810 + 3913 ], "__typename": [ 78 @@ -89707,13 +91331,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 3809 + 3912 ], "min": [ - 3811 + 3914 ], "__typename": [ 78 @@ -89721,10 +91345,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3807 + 3910 ], "on_conflict": [ - 3813 + 3916 ], "__typename": [ 78 @@ -89732,25 +91356,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3805 + 3908 ], "_not": [ - 3805 + 3908 ], "_or": [ - 3805 + 3908 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "k8s_job_name": [ 80 ], "node": [ - 1419 + 1522 ], "node_id": [ 80 @@ -89759,10 +91383,10 @@ export default { 80 ], "steam_account": [ - 3826 + 3929 ], "steam_account_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -89771,16 +91395,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 ], "node": [ - 1431 + 1534 ], "node_id": [ 78 @@ -89789,10 +91413,10 @@ export default { 78 ], "steam_account": [ - 3833 + 3936 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89800,10 +91424,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 @@ -89815,7 +91439,7 @@ export default { 78 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89823,22 +91447,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "node_id": [ - 2660 + 2763 ], "purpose": [ - 2660 + 2763 ], "steam_account_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89846,10 +91470,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 @@ -89861,7 +91485,7 @@ export default { 78 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89869,22 +91493,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "node_id": [ - 2660 + 2763 ], "purpose": [ - 2660 + 2763 ], "steam_account_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89895,7 +91519,7 @@ export default { 38 ], "returning": [ - 3798 + 3901 ], "__typename": [ 78 @@ -89903,13 +91527,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3806 + 3909 ], "update_columns": [ - 3820 + 3923 ], "where": [ - 3805 + 3908 ], "__typename": [ 78 @@ -89917,28 +91541,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "k8s_job_name": [ - 2660 + 2763 ], "node": [ - 1433 + 1536 ], "node_id": [ - 2660 + 2763 ], "purpose": [ - 2660 + 2763 ], "steam_account": [ - 3835 + 3938 ], "steam_account_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -89946,7 +91570,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89955,10 +91579,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 @@ -89970,7 +91594,7 @@ export default { 78 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -89978,7 +91602,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3819 + 3922 ], "ordering": [ 236 @@ -89989,10 +91613,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "k8s_job_name": [ 78 @@ -90004,7 +91628,7 @@ export default { 78 ], "steam_account_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -90013,10 +91637,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3817 + 3920 ], "where": [ - 3805 + 3908 ], "__typename": [ 78 @@ -90024,10 +91648,10 @@ export default { }, "steam_accounts": { "claims": [ - 3798, + 3901, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -90037,19 +91661,19 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "claims_aggregate": [ - 3799, + 3902, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -90059,25 +91683,25 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node": [ - 1407 + 1510 ], "last_node_id": [ 78 @@ -90095,7 +91719,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90106,10 +91730,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3824 + 3927 ], "nodes": [ - 3822 + 3925 ], "__typename": [ 78 @@ -90117,13 +91741,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3825 + 3928 ], "count": [ 38, { "columns": [ - 3837, + 3940, "[steam_accounts_select_column!]" ], "distinct": [ @@ -90132,31 +91756,31 @@ export default { } ], "max": [ - 3830 + 3933 ], "min": [ - 3831 + 3934 ], "stddev": [ - 3839 + 3942 ], "stddev_pop": [ - 3840 + 3943 ], "stddev_samp": [ - 3841 + 3944 ], "sum": [ - 3844 + 3947 ], "var_pop": [ - 3847 + 3950 ], "var_samp": [ - 3848 + 3951 ], "variance": [ - 3849 + 3952 ], "__typename": [ 78 @@ -90178,31 +91802,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3826 + 3929 ], "_not": [ - 3826 + 3929 ], "_or": [ - 3826 + 3929 ], "claims": [ - 3805 + 3908 ], "claims_aggregate": [ - 3800 + 3903 ], "created_at": [ - 4204 + 4307 ], "friend_capacity": [ 39 ], "id": [ - 4643 + 4746 ], "last_node": [ - 1419 + 1522 ], "last_node_id": [ 80 @@ -90220,7 +91844,7 @@ export default { 182 ], "updated_at": [ - 4204 + 4307 ], "username": [ 80 @@ -90246,19 +91870,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3804 + 3907 ], "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node": [ - 1431 + 1534 ], "last_node_id": [ 78 @@ -90276,7 +91900,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90287,13 +91911,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node_id": [ 78 @@ -90311,7 +91935,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90322,13 +91946,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node_id": [ 78 @@ -90346,7 +91970,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90360,7 +91984,7 @@ export default { 38 ], "returning": [ - 3822 + 3925 ], "__typename": [ 78 @@ -90368,10 +91992,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3829 + 3932 ], "on_conflict": [ - 3834 + 3937 ], "__typename": [ 78 @@ -90379,13 +92003,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3827 + 3930 ], "update_columns": [ - 3845 + 3948 ], "where": [ - 3826 + 3929 ], "__typename": [ 78 @@ -90393,40 +92017,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3803 + 3906 ], "created_at": [ - 2660 + 2763 ], "friend_capacity": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "last_node": [ - 1433 + 1536 ], "last_node_id": [ - 2660 + 2763 ], "password": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "steam_level": [ - 2660 + 2763 ], "steamid64": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "username": [ - 2660 + 2763 ], "__typename": [ 78 @@ -90434,7 +92058,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -90443,13 +92067,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node_id": [ 78 @@ -90467,7 +92091,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90520,7 +92144,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3843 + 3946 ], "ordering": [ 236 @@ -90531,13 +92155,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "friend_capacity": [ 38 ], "id": [ - 4641 + 4744 ], "last_node_id": [ 78 @@ -90555,7 +92179,7 @@ export default { 180 ], "updated_at": [ - 4203 + 4306 ], "username": [ 78 @@ -90581,13 +92205,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3828 + 3931 ], "_set": [ - 3838 + 3941 ], "where": [ - 3826 + 3929 ], "__typename": [ 78 @@ -90637,7 +92261,7 @@ export default { }, "system_alerts": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 @@ -90646,10 +92270,10 @@ export default { 3 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "is_active": [ 3 @@ -90661,10 +92285,10 @@ export default { 78 ], "type": [ - 1042 + 1062 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -90672,10 +92296,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3852 + 3955 ], "nodes": [ - 3850 + 3953 ], "__typename": [ 78 @@ -90683,13 +92307,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3853 + 3956 ], "count": [ 38, { "columns": [ - 3864, + 3967, "[system_alerts_select_column!]" ], "distinct": [ @@ -90698,31 +92322,31 @@ export default { } ], "max": [ - 3858 + 3961 ], "min": [ - 3859 + 3962 ], "stddev": [ - 3866 + 3969 ], "stddev_pop": [ - 3867 + 3970 ], "stddev_samp": [ - 3868 + 3971 ], "sum": [ - 3871 + 3974 ], "var_pop": [ - 3874 + 3977 ], "var_samp": [ - 3875 + 3978 ], "variance": [ - 3876 + 3979 ], "__typename": [ 78 @@ -90738,16 +92362,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3854 + 3957 ], "_not": [ - 3854 + 3957 ], "_or": [ - 3854 + 3957 ], "created_at": [ - 4204 + 4307 ], "created_by": [ 182 @@ -90756,10 +92380,10 @@ export default { 4 ], "expires_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "is_active": [ 4 @@ -90771,10 +92395,10 @@ export default { 80 ], "type": [ - 1043 + 1063 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -90791,7 +92415,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 @@ -90800,10 +92424,10 @@ export default { 3 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "is_active": [ 3 @@ -90815,10 +92439,10 @@ export default { 78 ], "type": [ - 1042 + 1062 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -90826,16 +92450,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 @@ -90844,7 +92468,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -90852,16 +92476,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "message": [ 78 @@ -90870,7 +92494,7 @@ export default { 78 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -90881,7 +92505,7 @@ export default { 38 ], "returning": [ - 3850 + 3953 ], "__typename": [ 78 @@ -90889,13 +92513,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3855 + 3958 ], "update_columns": [ - 3872 + 3975 ], "where": [ - 3854 + 3957 ], "__typename": [ 78 @@ -90903,34 +92527,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2660 + 2763 ], "created_by": [ - 2660 + 2763 ], "dismissible": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_active": [ - 2660 + 2763 ], "message": [ - 2660 + 2763 ], "title": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -90938,7 +92562,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -90947,7 +92571,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 @@ -90956,10 +92580,10 @@ export default { 3 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "is_active": [ 3 @@ -90971,10 +92595,10 @@ export default { 78 ], "type": [ - 1042 + 1062 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -91006,7 +92630,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3870 + 3973 ], "ordering": [ 236 @@ -91017,7 +92641,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "created_by": [ 180 @@ -91026,10 +92650,10 @@ export default { 3 ], "expires_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "is_active": [ 3 @@ -91041,10 +92665,10 @@ export default { 78 ], "type": [ - 1042 + 1062 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -91061,13 +92685,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3856 + 3959 ], "_set": [ - 3865 + 3968 ], "where": [ - 3854 + 3957 ], "__typename": [ 78 @@ -91099,28 +92723,28 @@ export default { }, "team_invites": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by": [ - 3618 + 3721 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91128,10 +92752,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3881 + 3984 ], "nodes": [ - 3877 + 3980 ], "__typename": [ 78 @@ -91139,7 +92763,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3880 + 3983 ], "__typename": [ 78 @@ -91147,13 +92771,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 3898 + 4001 ], "distinct": [ 3 ], "filter": [ - 3886 + 3989 ], "predicate": [ 39 @@ -91164,13 +92788,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3884 + 3987 ], "count": [ 38, { "columns": [ - 3898, + 4001, "[team_invites_select_column!]" ], "distinct": [ @@ -91179,31 +92803,31 @@ export default { } ], "max": [ - 3890 + 3993 ], "min": [ - 3892 + 3995 ], "stddev": [ - 3900 + 4003 ], "stddev_pop": [ - 3902 + 4005 ], "stddev_samp": [ - 3904 + 4007 ], "sum": [ - 3908 + 4011 ], "var_pop": [ - 3912 + 4015 ], "var_samp": [ - 3914 + 4017 ], "variance": [ - 3916 + 4019 ], "__typename": [ 78 @@ -91211,37 +92835,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3885 + 3988 ], "count": [ - 2660 + 2763 ], "max": [ - 3891 + 3994 ], "min": [ - 3893 + 3996 ], "stddev": [ - 3901 + 4004 ], "stddev_pop": [ - 3903 + 4006 ], "stddev_samp": [ - 3905 + 4008 ], "sum": [ - 3909 + 4012 ], "var_pop": [ - 3913 + 4016 ], "var_samp": [ - 3915 + 4018 ], "variance": [ - 3917 + 4020 ], "__typename": [ 78 @@ -91249,10 +92873,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3889 + 3992 ], "on_conflict": [ - 3895 + 3998 ], "__typename": [ 78 @@ -91271,10 +92895,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91282,37 +92906,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3886 + 3989 ], "_not": [ - 3886 + 3989 ], "_or": [ - 3886 + 3989 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "invited_by": [ - 3622 + 3725 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -91332,28 +92956,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by": [ - 3629 + 3732 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91361,10 +92985,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -91373,7 +92997,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91381,19 +93005,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91401,10 +93025,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -91413,7 +93037,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91421,19 +93045,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91444,7 +93068,7 @@ export default { 38 ], "returning": [ - 3877 + 3980 ], "__typename": [ 78 @@ -91452,13 +93076,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3887 + 3990 ], "update_columns": [ - 3910 + 4013 ], "where": [ - 3886 + 3989 ], "__typename": [ 78 @@ -91466,28 +93090,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by": [ - 3631 + 3734 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91495,7 +93119,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91504,10 +93128,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -91516,7 +93140,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91535,10 +93159,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91557,10 +93181,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91579,10 +93203,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91590,7 +93214,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 3907 + 4010 ], "ordering": [ 236 @@ -91601,10 +93225,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -91613,7 +93237,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91632,10 +93256,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91644,13 +93268,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3888 + 3991 ], "_set": [ - 3899 + 4002 ], "where": [ - 3886 + 3989 ], "__typename": [ 78 @@ -91669,10 +93293,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91691,10 +93315,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91713,10 +93337,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91727,25 +93351,25 @@ export default { 3 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "role": [ - 1062 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1083 + 1103 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -91753,10 +93377,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 3924 + 4027 ], "nodes": [ - 3918 + 4021 ], "__typename": [ 78 @@ -91764,13 +93388,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 3921 + 4024 ], "bool_or": [ - 3922 + 4025 ], "count": [ - 3923 + 4026 ], "__typename": [ 78 @@ -91778,13 +93402,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 3942 + 4045 ], "distinct": [ 3 ], "filter": [ - 3929 + 4032 ], "predicate": [ 4 @@ -91795,13 +93419,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 3943 + 4046 ], "distinct": [ 3 ], "filter": [ - 3929 + 4032 ], "predicate": [ 4 @@ -91812,13 +93436,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 3941 + 4044 ], "distinct": [ 3 ], "filter": [ - 3929 + 4032 ], "predicate": [ 39 @@ -91829,13 +93453,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 3927 + 4030 ], "count": [ 38, { "columns": [ - 3941, + 4044, "[team_roster_select_column!]" ], "distinct": [ @@ -91844,31 +93468,31 @@ export default { } ], "max": [ - 3933 + 4036 ], "min": [ - 3935 + 4038 ], "stddev": [ - 3945 + 4048 ], "stddev_pop": [ - 3947 + 4050 ], "stddev_samp": [ - 3949 + 4052 ], "sum": [ - 3953 + 4056 ], "var_pop": [ - 3957 + 4060 ], "var_samp": [ - 3959 + 4062 ], "variance": [ - 3961 + 4064 ], "__typename": [ 78 @@ -91876,37 +93500,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 3928 + 4031 ], "count": [ - 2660 + 2763 ], "max": [ - 3934 + 4037 ], "min": [ - 3936 + 4039 ], "stddev": [ - 3946 + 4049 ], "stddev_pop": [ - 3948 + 4051 ], "stddev_samp": [ - 3950 + 4053 ], "sum": [ - 3954 + 4057 ], "var_pop": [ - 3958 + 4061 ], "var_samp": [ - 3960 + 4063 ], "variance": [ - 3962 + 4065 ], "__typename": [ 78 @@ -91914,10 +93538,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 3932 + 4035 ], "on_conflict": [ - 3938 + 4041 ], "__typename": [ 78 @@ -91933,7 +93557,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -91941,37 +93565,37 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 3929 + 4032 ], "_not": [ - 3929 + 4032 ], "_or": [ - 3929 + 4032 ], "coach": [ 4 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "role": [ - 1063 + 1083 ], "roster_image_url": [ 80 ], "status": [ - 1084 + 1104 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -91991,25 +93615,25 @@ export default { 3 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "role": [ - 1062 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1083 + 1103 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92023,7 +93647,7 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92031,13 +93655,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92051,7 +93675,7 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92059,13 +93683,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92076,7 +93700,7 @@ export default { 38 ], "returning": [ - 3918 + 4021 ], "__typename": [ 78 @@ -92084,13 +93708,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 3930 + 4033 ], "update_columns": [ - 3955 + 4058 ], "where": [ - 3929 + 4032 ], "__typename": [ 78 @@ -92098,28 +93722,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "roster_image_url": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92130,7 +93754,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92147,16 +93771,16 @@ export default { 180 ], "role": [ - 1062 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1083 + 1103 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92172,7 +93796,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92188,7 +93812,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92204,7 +93828,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92212,7 +93836,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 3952 + 4055 ], "ordering": [ 236 @@ -92229,16 +93853,16 @@ export default { 180 ], "role": [ - 1062 + 1082 ], "roster_image_url": [ 78 ], "status": [ - 1083 + 1103 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92254,7 +93878,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92263,13 +93887,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 3931 + 4034 ], "_set": [ - 3944 + 4047 ], "where": [ - 3929 + 4032 ], "__typename": [ 78 @@ -92285,7 +93909,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92301,7 +93925,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92317,7 +93941,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92325,7 +93949,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92337,19 +93961,19 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92357,10 +93981,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 3965 + 4068 ], "nodes": [ - 3963 + 4066 ], "__typename": [ 78 @@ -92368,13 +93992,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 3966 + 4069 ], "count": [ 38, { "columns": [ - 3977, + 4080, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -92383,31 +94007,31 @@ export default { } ], "max": [ - 3971 + 4074 ], "min": [ - 3972 + 4075 ], "stddev": [ - 3979 + 4082 ], "stddev_pop": [ - 3980 + 4083 ], "stddev_samp": [ - 3981 + 4084 ], "sum": [ - 3984 + 4087 ], "var_pop": [ - 3987 + 4090 ], "var_samp": [ - 3988 + 4091 ], "variance": [ - 3989 + 4092 ], "__typename": [ 78 @@ -92426,16 +94050,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 3967 + 4070 ], "_not": [ - 3967 + 4070 ], "_or": [ - 3967 + 4070 ], "created_at": [ - 4204 + 4307 ], "elo_max": [ 39 @@ -92447,19 +94071,19 @@ export default { 4 ], "id": [ - 4643 + 4746 ], "last_notified_at": [ - 4204 + 4307 ], "regions": [ 79 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -92479,7 +94103,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92491,19 +94115,19 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92511,7 +94135,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92520,16 +94144,16 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92537,7 +94161,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92546,16 +94170,16 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92566,7 +94190,7 @@ export default { 38 ], "returning": [ - 3963 + 4066 ], "__typename": [ 78 @@ -92574,13 +94198,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 3968 + 4071 ], "update_columns": [ - 3985 + 4088 ], "where": [ - 3967 + 4070 ], "__typename": [ 78 @@ -92588,31 +94212,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2660 + 2763 ], "elo_max": [ - 2660 + 2763 ], "elo_min": [ - 2660 + 2763 ], "enabled": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "last_notified_at": [ - 2660 + 2763 ], "regions": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -92620,7 +94244,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92629,7 +94253,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92641,16 +94265,16 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92691,7 +94315,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 3983 + 4086 ], "ordering": [ 236 @@ -92702,7 +94326,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -92714,16 +94338,16 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "regions": [ 78 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92743,13 +94367,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 3969 + 4072 ], "_set": [ - 3978 + 4081 ], "where": [ - 3967 + 4070 ], "__typename": [ 78 @@ -92790,25 +94414,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4203 + 4306 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -92816,10 +94440,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 3996 + 4099 ], "nodes": [ - 3990 + 4093 ], "__typename": [ 78 @@ -92827,13 +94451,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 3993 + 4096 ], "bool_or": [ - 3994 + 4097 ], "count": [ - 3995 + 4098 ], "__typename": [ 78 @@ -92841,13 +94465,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4011 + 4114 ], "distinct": [ 3 ], "filter": [ - 3999 + 4102 ], "predicate": [ 4 @@ -92858,13 +94482,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4012 + 4115 ], "distinct": [ 3 ], "filter": [ - 3999 + 4102 ], "predicate": [ 4 @@ -92875,13 +94499,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4010 + 4113 ], "distinct": [ 3 ], "filter": [ - 3999 + 4102 ], "predicate": [ 39 @@ -92895,7 +94519,7 @@ export default { 38, { "columns": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -92904,10 +94528,10 @@ export default { } ], "max": [ - 4002 + 4105 ], "min": [ - 4004 + 4107 ], "__typename": [ 78 @@ -92915,13 +94539,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 4003 + 4106 ], "min": [ - 4005 + 4108 ], "__typename": [ 78 @@ -92929,10 +94553,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4001 + 4104 ], "on_conflict": [ - 4007 + 4110 ], "__typename": [ 78 @@ -92940,34 +94564,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 3999 + 4102 ], "_not": [ - 3999 + 4102 ], "_or": [ - 3999 + 4102 ], "created_at": [ - 4204 + 4307 ], "ends_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4204 + 4307 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -92976,25 +94600,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4203 + 4306 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93002,19 +94626,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "starts_at": [ - 4203 + 4306 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93022,19 +94646,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2660 + 2763 ], "ends_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "starts_at": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93042,19 +94666,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "starts_at": [ - 4203 + 4306 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93062,19 +94686,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2660 + 2763 ], "ends_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "starts_at": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93085,7 +94709,7 @@ export default { 38 ], "returning": [ - 3990 + 4093 ], "__typename": [ 78 @@ -93093,13 +94717,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4000 + 4103 ], "update_columns": [ - 4016 + 4119 ], "where": [ - 3999 + 4102 ], "__typename": [ 78 @@ -93107,25 +94731,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2660 + 2763 ], "ends_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "recurring_weekly": [ - 2660 + 2763 ], "starts_at": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93133,7 +94757,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93144,22 +94768,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4203 + 4306 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93167,7 +94791,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4015 + 4118 ], "ordering": [ 236 @@ -93178,22 +94802,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "ends_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4203 + 4306 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93202,10 +94826,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4013 + 4116 ], "where": [ - 3999 + 4102 ], "__typename": [ 78 @@ -93213,31 +94837,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by": [ - 3618 + 3721 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4160 + 4263 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request": [ - 4059 + 4162 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93245,10 +94869,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4022 + 4125 ], "nodes": [ - 4018 + 4121 ], "__typename": [ 78 @@ -93256,7 +94880,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4021 + 4124 ], "__typename": [ 78 @@ -93264,13 +94888,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4039 + 4142 ], "distinct": [ 3 ], "filter": [ - 4027 + 4130 ], "predicate": [ 39 @@ -93281,13 +94905,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4025 + 4128 ], "count": [ 38, { "columns": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -93296,31 +94920,31 @@ export default { } ], "max": [ - 4031 + 4134 ], "min": [ - 4033 + 4136 ], "stddev": [ - 4041 + 4144 ], "stddev_pop": [ - 4043 + 4146 ], "stddev_samp": [ - 4045 + 4148 ], "sum": [ - 4049 + 4152 ], "var_pop": [ - 4053 + 4156 ], "var_samp": [ - 4055 + 4158 ], "variance": [ - 4057 + 4160 ], "__typename": [ 78 @@ -93328,37 +94952,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4026 + 4129 ], "count": [ - 2660 + 2763 ], "max": [ - 4032 + 4135 ], "min": [ - 4034 + 4137 ], "stddev": [ - 4042 + 4145 ], "stddev_pop": [ - 4044 + 4147 ], "stddev_samp": [ - 4046 + 4149 ], "sum": [ - 4050 + 4153 ], "var_pop": [ - 4054 + 4157 ], "var_samp": [ - 4056 + 4159 ], "variance": [ - 4058 + 4161 ], "__typename": [ 78 @@ -93366,10 +94990,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4030 + 4133 ], "on_conflict": [ - 4036 + 4139 ], "__typename": [ 78 @@ -93385,7 +95009,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93393,40 +95017,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4027 + 4130 ], "_not": [ - 4027 + 4130 ], "_or": [ - 4027 + 4130 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "proposed_by": [ - 3622 + 3725 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 4169 + 4272 ], "proposed_by_team_id": [ - 4643 + 4746 ], "proposed_scheduled_at": [ - 4204 + 4307 ], "request": [ - 4070 + 4173 ], "request_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -93443,31 +95067,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by": [ - 3629 + 3732 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4178 + 4281 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request": [ - 4079 + 4182 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93475,22 +95099,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93498,22 +95122,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_by_team_id": [ - 2660 + 2763 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "request_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93521,22 +95145,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93544,22 +95168,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_by_team_id": [ - 2660 + 2763 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "request_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93570,7 +95194,7 @@ export default { 38 ], "returning": [ - 4018 + 4121 ], "__typename": [ 78 @@ -93578,13 +95202,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4028 + 4131 ], "update_columns": [ - 4051 + 4154 ], "where": [ - 4027 + 4130 ], "__typename": [ 78 @@ -93592,31 +95216,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "proposed_by": [ - 3631 + 3734 ], "proposed_by_steam_id": [ - 2660 + 2763 ], "proposed_by_team": [ - 4180 + 4283 ], "proposed_by_team_id": [ - 2660 + 2763 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "request": [ - 4081 + 4184 ], "request_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93624,7 +95248,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93633,22 +95257,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93664,7 +95288,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93680,7 +95304,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93696,7 +95320,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93704,7 +95328,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4048 + 4151 ], "ordering": [ 236 @@ -93715,22 +95339,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4641 + 4744 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "request_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93746,7 +95370,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93755,13 +95379,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4029 + 4132 ], "_set": [ - 4040 + 4143 ], "where": [ - 4027 + 4130 ], "__typename": [ 78 @@ -93777,7 +95401,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93793,7 +95417,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93809,7 +95433,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -93820,55 +95444,55 @@ export default { 3 ], "awaiting_team": [ - 4160 + 4263 ], "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "canceled_late": [ 3 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team": [ - 4160 + 4263 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_options": [ - 2355 + 2458 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposals": [ - 4018, + 4121, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -93878,19 +95502,19 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "proposals_aggregate": [ - 4019, + 4122, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -93900,40 +95524,40 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 ], "requested_by": [ - 3618 + 3721 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4203 + 4306 ], "status": [ - 982 + 1002 ], "to_team": [ - 4160 + 4263 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -93941,10 +95565,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4065 + 4168 ], "nodes": [ - 4059 + 4162 ], "__typename": [ 78 @@ -93952,13 +95576,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4062 + 4165 ], "bool_or": [ - 4063 + 4166 ], "count": [ - 4064 + 4167 ], "__typename": [ 78 @@ -93966,13 +95590,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4084 + 4187 ], "distinct": [ 3 ], "filter": [ - 4070 + 4173 ], "predicate": [ 4 @@ -93983,13 +95607,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4085 + 4188 ], "distinct": [ 3 ], "filter": [ - 4070 + 4173 ], "predicate": [ 4 @@ -94000,13 +95624,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4083 + 4186 ], "distinct": [ 3 ], "filter": [ - 4070 + 4173 ], "predicate": [ 39 @@ -94017,13 +95641,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4068 + 4171 ], "count": [ 38, { "columns": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -94032,31 +95656,31 @@ export default { } ], "max": [ - 4074 + 4177 ], "min": [ - 4076 + 4179 ], "stddev": [ - 4087 + 4190 ], "stddev_pop": [ - 4089 + 4192 ], "stddev_samp": [ - 4091 + 4194 ], "sum": [ - 4095 + 4198 ], "var_pop": [ - 4099 + 4202 ], "var_samp": [ - 4101 + 4204 ], "variance": [ - 4103 + 4206 ], "__typename": [ 78 @@ -94064,37 +95688,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4069 + 4172 ], "count": [ - 2660 + 2763 ], "max": [ - 4075 + 4178 ], "min": [ - 4077 + 4180 ], "stddev": [ - 4088 + 4191 ], "stddev_pop": [ - 4090 + 4193 ], "stddev_samp": [ - 4092 + 4195 ], "sum": [ - 4096 + 4199 ], "var_pop": [ - 4100 + 4203 ], "var_samp": [ - 4102 + 4205 ], "variance": [ - 4104 + 4207 ], "__typename": [ 78 @@ -94102,10 +95726,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4073 + 4176 ], "on_conflict": [ - 4080 + 4183 ], "__typename": [ 78 @@ -94121,7 +95745,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94129,94 +95753,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4070 + 4173 ], "_not": [ - 4070 + 4173 ], "_or": [ - 4070 + 4173 ], "auto_generated": [ 4 ], "awaiting_team": [ - 4169 + 4272 ], "awaiting_team_id": [ - 4643 + 4746 ], "canceled_by_team_id": [ - 4643 + 4746 ], "canceled_late": [ 4 ], "created_at": [ - 4204 + 4307 ], "expires_at": [ - 4204 + 4307 ], "from_team": [ - 4169 + 4272 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4643 + 4746 ], "id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_options": [ - 2359 + 2462 ], "match_options_id": [ - 4643 + 4746 ], "match_outcome": [ 80 ], "proposals": [ - 4027 + 4130 ], "proposals_aggregate": [ - 4020 + 4123 ], "proposed_scheduled_at": [ - 4204 + 4307 ], "region": [ 80 ], "requested_by": [ - 3622 + 3725 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4204 + 4307 ], "status": [ - 983 + 1003 ], "to_team": [ - 4169 + 4272 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -94236,79 +95860,79 @@ export default { 3 ], "awaiting_team": [ - 4178 + 4281 ], "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "canceled_late": [ 3 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team": [ - 4178 + 4281 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_options": [ - 2366 + 2469 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposals": [ - 4024 + 4127 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 ], "requested_by": [ - 3629 + 3732 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4203 + 4306 ], "status": [ - 982 + 1002 ], "to_team": [ - 4178 + 4281 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94316,34 +95940,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 @@ -94352,10 +95976,10 @@ export default { 180 ], "responded_at": [ - 4203 + 4306 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94363,46 +95987,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2660 + 2763 ], "canceled_by_team_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "from_team_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "match_outcome": [ - 2660 + 2763 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "requested_by_steam_id": [ - 2660 + 2763 ], "responded_at": [ - 2660 + 2763 ], "to_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94410,34 +96034,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 @@ -94446,10 +96070,10 @@ export default { 180 ], "responded_at": [ - 4203 + 4306 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94457,46 +96081,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2660 + 2763 ], "canceled_by_team_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "from_team_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "match_outcome": [ - 2660 + 2763 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "requested_by_steam_id": [ - 2660 + 2763 ], "responded_at": [ - 2660 + 2763 ], "to_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94507,7 +96131,7 @@ export default { 38 ], "returning": [ - 4059 + 4162 ], "__typename": [ 78 @@ -94515,10 +96139,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4073 + 4176 ], "on_conflict": [ - 4080 + 4183 ], "__typename": [ 78 @@ -94526,13 +96150,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4071 + 4174 ], "update_columns": [ - 4097 + 4200 ], "where": [ - 4070 + 4173 ], "__typename": [ 78 @@ -94540,82 +96164,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2660 + 2763 ], "awaiting_team": [ - 4180 + 4283 ], "awaiting_team_id": [ - 2660 + 2763 ], "canceled_by_team_id": [ - 2660 + 2763 ], "canceled_late": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "expires_at": [ - 2660 + 2763 ], "from_team": [ - 4180 + 4283 ], "from_team_checked_in": [ - 2660 + 2763 ], "from_team_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_options": [ - 2368 + 2471 ], "match_options_id": [ - 2660 + 2763 ], "match_outcome": [ - 2660 + 2763 ], "proposals_aggregate": [ - 4023 + 4126 ], "proposed_scheduled_at": [ - 2660 + 2763 ], "region": [ - 2660 + 2763 ], "requested_by": [ - 3631 + 3734 ], "requested_by_steam_id": [ - 2660 + 2763 ], "responded_at": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "to_team": [ - 4180 + 4283 ], "to_team_checked_in": [ - 2660 + 2763 ], "to_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94623,7 +96247,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94637,40 +96261,40 @@ export default { 3 ], "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "canceled_late": [ 3 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 @@ -94679,16 +96303,16 @@ export default { 180 ], "responded_at": [ - 4203 + 4306 ], "status": [ - 982 + 1002 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94704,7 +96328,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94720,7 +96344,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94736,7 +96360,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94744,7 +96368,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4094 + 4197 ], "ordering": [ 236 @@ -94758,40 +96382,40 @@ export default { 3 ], "awaiting_team_id": [ - 4641 + 4744 ], "canceled_by_team_id": [ - 4641 + 4744 ], "canceled_late": [ 3 ], "created_at": [ - 4203 + 4306 ], "expires_at": [ - 4203 + 4306 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4641 + 4744 ], "id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4203 + 4306 ], "region": [ 78 @@ -94800,16 +96424,16 @@ export default { 180 ], "responded_at": [ - 4203 + 4306 ], "status": [ - 982 + 1002 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -94825,7 +96449,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94834,13 +96458,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4072 + 4175 ], "_set": [ - 4086 + 4189 ], "where": [ - 4070 + 4173 ], "__typename": [ 78 @@ -94856,7 +96480,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94872,7 +96496,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94888,7 +96512,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -94899,7 +96523,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -94911,10 +96535,10 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -94923,13 +96547,13 @@ export default { 78 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -94937,10 +96561,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4107 + 4210 ], "nodes": [ - 4105 + 4208 ], "__typename": [ 78 @@ -94948,13 +96572,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4108 + 4211 ], "count": [ 38, { "columns": [ - 4120, + 4223, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -94963,31 +96587,31 @@ export default { } ], "max": [ - 4113 + 4216 ], "min": [ - 4114 + 4217 ], "stddev": [ - 4122 + 4225 ], "stddev_pop": [ - 4123 + 4226 ], "stddev_samp": [ - 4124 + 4227 ], "sum": [ - 4127 + 4230 ], "var_pop": [ - 4130 + 4233 ], "var_samp": [ - 4131 + 4234 ], "variance": [ - 4132 + 4235 ], "__typename": [ 78 @@ -95006,19 +96630,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4109 + 4212 ], "_not": [ - 4109 + 4212 ], "_or": [ - 4109 + 4212 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4204 + 4307 ], "elo_max": [ 39 @@ -95030,10 +96654,10 @@ export default { 4 ], "id": [ - 4643 + 4746 ], "map_ids": [ - 4642 + 4745 ], "notes": [ 80 @@ -95042,13 +96666,13 @@ export default { 79 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -95071,7 +96695,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -95083,10 +96707,10 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -95095,13 +96719,13 @@ export default { 78 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -95109,7 +96733,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -95118,10 +96742,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -95130,10 +96754,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -95141,7 +96765,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -95150,10 +96774,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -95162,10 +96786,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -95176,7 +96800,7 @@ export default { 38 ], "returning": [ - 4105 + 4208 ], "__typename": [ 78 @@ -95184,10 +96808,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4112 + 4215 ], "on_conflict": [ - 4117 + 4220 ], "__typename": [ 78 @@ -95195,13 +96819,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4110 + 4213 ], "update_columns": [ - 4128 + 4231 ], "where": [ - 4109 + 4212 ], "__typename": [ 78 @@ -95209,40 +96833,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "elo_max": [ - 2660 + 2763 ], "elo_min": [ - 2660 + 2763 ], "enabled": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "map_ids": [ - 2660 + 2763 ], "notes": [ - 2660 + 2763 ], "regions": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -95250,7 +96874,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -95262,7 +96886,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -95274,10 +96898,10 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -95286,10 +96910,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -95330,7 +96954,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4126 + 4229 ], "ordering": [ 236 @@ -95344,7 +96968,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "elo_max": [ 38 @@ -95356,10 +96980,10 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "map_ids": [ - 4641 + 4744 ], "notes": [ 78 @@ -95368,10 +96992,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -95391,13 +97015,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4111 + 4214 ], "_set": [ - 4121 + 4224 ], "where": [ - 4109 + 4212 ], "__typename": [ 78 @@ -95438,16 +97062,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95464,10 +97088,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4135 + 4238 ], "nodes": [ - 4133 + 4236 ], "__typename": [ 78 @@ -95475,13 +97099,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4136 + 4239 ], "count": [ 38, { "columns": [ - 4147, + 4250, "[team_suggestions_select_column!]" ], "distinct": [ @@ -95490,31 +97114,31 @@ export default { } ], "max": [ - 4141 + 4244 ], "min": [ - 4142 + 4245 ], "stddev": [ - 4149 + 4252 ], "stddev_pop": [ - 4150 + 4253 ], "stddev_samp": [ - 4151 + 4254 ], "sum": [ - 4154 + 4257 ], "var_pop": [ - 4157 + 4260 ], "var_samp": [ - 4158 + 4261 ], "variance": [ - 4159 + 4262 ], "__typename": [ 78 @@ -95530,25 +97154,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4137 + 4240 ], "_not": [ - 4137 + 4240 ], "_or": [ - 4137 + 4240 ], "created_at": [ - 4204 + 4307 ], "group_hash": [ 80 ], "id": [ - 4643 + 4746 ], "last_notified_at": [ - 4204 + 4307 ], "member_steam_ids": [ 181 @@ -95574,16 +97198,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95600,16 +97224,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95626,16 +97250,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95655,7 +97279,7 @@ export default { 38 ], "returning": [ - 4133 + 4236 ], "__typename": [ 78 @@ -95663,13 +97287,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4138 + 4241 ], "update_columns": [ - 4155 + 4258 ], "where": [ - 4137 + 4240 ], "__typename": [ 78 @@ -95677,25 +97301,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2660 + 2763 ], "group_hash": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "last_notified_at": [ - 2660 + 2763 ], "member_steam_ids": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "together_count": [ - 2660 + 2763 ], "__typename": [ 78 @@ -95703,7 +97327,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -95712,16 +97336,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95762,7 +97386,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4153 + 4256 ], "ordering": [ 236 @@ -95773,16 +97397,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "group_hash": [ 78 ], "id": [ - 4641 + 4744 ], "last_notified_at": [ - 4203 + 4306 ], "member_steam_ids": [ 180 @@ -95808,13 +97432,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4139 + 4242 ], "_set": [ - 4148 + 4251 ], "where": [ - 4137 + 4240 ], "__typename": [ 78 @@ -95861,19 +97485,19 @@ export default { 3 ], "captain": [ - 3618 + 3721 ], "captain_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "invites": [ - 3877, + 3980, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -95883,19 +97507,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "invites_aggregate": [ - 3878, + 3981, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -95905,19 +97529,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "match_lineups": [ - 2155, + 2258, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -95927,19 +97551,19 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "match_lineups_aggregate": [ - 2156, + 2259, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -95949,19 +97573,19 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -95971,11 +97595,11 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], @@ -95983,25 +97607,25 @@ export default { 78 ], "owner": [ - 3618 + 3721 ], "owner_steam_id": [ 180 ], "ranks": [ - 5325 + 5438 ], "reputation": [ - 5345 + 5458 ], "role": [ 78 ], "roster": [ - 3918, + 4021, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -96011,19 +97635,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "roster_aggregate": [ - 3919, + 4022, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -96033,19 +97657,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "scrim_availability": [ - 3990, + 4093, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -96055,19 +97679,19 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "scrim_availability_aggregate": [ - 3991, + 4094, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -96077,25 +97701,25 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "scrim_settings": [ - 4105 + 4208 ], "short_name": [ 78 ], "tournament_teams": [ - 4466, + 4569, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -96105,19 +97729,19 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "tournament_teams_aggregate": [ - 4467, + 4570, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -96127,11 +97751,11 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], @@ -96141,10 +97765,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4164 + 4267 ], "nodes": [ - 4160 + 4263 ], "__typename": [ 78 @@ -96152,7 +97776,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 4163 + 4266 ], "__typename": [ 78 @@ -96160,13 +97784,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4182 + 4285 ], "distinct": [ 3 ], "filter": [ - 4169 + 4272 ], "predicate": [ 39 @@ -96177,13 +97801,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4167 + 4270 ], "count": [ 38, { "columns": [ - 4182, + 4285, "[teams_select_column!]" ], "distinct": [ @@ -96192,31 +97816,31 @@ export default { } ], "max": [ - 4173 + 4276 ], "min": [ - 4175 + 4278 ], "stddev": [ - 4184 + 4287 ], "stddev_pop": [ - 4186 + 4289 ], "stddev_samp": [ - 4188 + 4291 ], "sum": [ - 4192 + 4295 ], "var_pop": [ - 4196 + 4299 ], "var_samp": [ - 4198 + 4301 ], "variance": [ - 4200 + 4303 ], "__typename": [ 78 @@ -96224,37 +97848,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4168 + 4271 ], "count": [ - 2660 + 2763 ], "max": [ - 4174 + 4277 ], "min": [ - 4176 + 4279 ], "stddev": [ - 4185 + 4288 ], "stddev_pop": [ - 4187 + 4290 ], "stddev_samp": [ - 4189 + 4292 ], "sum": [ - 4193 + 4296 ], "var_pop": [ - 4197 + 4300 ], "var_samp": [ - 4199 + 4302 ], "variance": [ - 4201 + 4304 ], "__typename": [ 78 @@ -96262,10 +97886,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4172 + 4275 ], "on_conflict": [ - 4179 + 4282 ], "__typename": [ 78 @@ -96284,10 +97908,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96295,13 +97919,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 4169 + 4272 ], "_not": [ - 4169 + 4272 ], "_or": [ - 4169 + 4272 ], "avatar_url": [ 80 @@ -96319,70 +97943,70 @@ export default { 4 ], "captain": [ - 3622 + 3725 ], "captain_steam_id": [ 182 ], "id": [ - 4643 + 4746 ], "invites": [ - 3886 + 3989 ], "invites_aggregate": [ - 3879 + 3982 ], "match_lineups": [ - 2164 + 2267 ], "match_lineups_aggregate": [ - 2157 + 2260 ], "matches": [ - 2484 + 2587 ], "name": [ 80 ], "owner": [ - 3622 + 3725 ], "owner_steam_id": [ 182 ], "ranks": [ - 5329 + 5442 ], "reputation": [ - 5349 + 5462 ], "role": [ 80 ], "roster": [ - 3929 + 4032 ], "roster_aggregate": [ - 3920 + 4023 ], "scrim_availability": [ - 3999 + 4102 ], "scrim_availability_aggregate": [ - 3992 + 4095 ], "scrim_settings": [ - 4109 + 4212 ], "short_name": [ 80 ], "tournament_teams": [ - 4475 + 4578 ], "tournament_teams_aggregate": [ - 4468 + 4571 ], "__typename": [ 78 @@ -96405,49 +98029,49 @@ export default { 78 ], "captain": [ - 3629 + 3732 ], "captain_steam_id": [ 180 ], "id": [ - 4641 + 4744 ], "invites": [ - 3883 + 3986 ], "match_lineups": [ - 2161 + 2264 ], "name": [ 78 ], "owner": [ - 3629 + 3732 ], "owner_steam_id": [ 180 ], "ranks": [ - 5333 + 5446 ], "reputation": [ - 5353 + 5466 ], "roster": [ - 3926 + 4029 ], "scrim_availability": [ - 3998 + 4101 ], "scrim_settings": [ - 4116 + 4219 ], "short_name": [ 78 ], "tournament_teams": [ - 4472 + 4575 ], "__typename": [ 78 @@ -96461,7 +98085,7 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -96481,22 +98105,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2660 + 2763 ], "captain_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "short_name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96510,7 +98134,7 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -96530,22 +98154,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2660 + 2763 ], "captain_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "short_name": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96556,7 +98180,7 @@ export default { 38 ], "returning": [ - 4160 + 4263 ], "__typename": [ 78 @@ -96564,10 +98188,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4172 + 4275 ], "on_conflict": [ - 4179 + 4282 ], "__typename": [ 78 @@ -96575,13 +98199,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4170 + 4273 ], "update_columns": [ - 4194 + 4297 ], "where": [ - 4169 + 4272 ], "__typename": [ 78 @@ -96589,70 +98213,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2660 + 2763 ], "can_change_role": [ - 2660 + 2763 ], "can_invite": [ - 2660 + 2763 ], "can_manage_scrims": [ - 2660 + 2763 ], "can_remove": [ - 2660 + 2763 ], "captain": [ - 3631 + 3734 ], "captain_steam_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invites_aggregate": [ - 3882 + 3985 ], "match_lineups_aggregate": [ - 2160 + 2263 ], "matches_aggregate": [ - 2480 + 2583 ], "name": [ - 2660 + 2763 ], "owner": [ - 3631 + 3734 ], "owner_steam_id": [ - 2660 + 2763 ], "ranks": [ - 5334 + 5447 ], "reputation": [ - 5354 + 5467 ], "role": [ - 2660 + 2763 ], "roster_aggregate": [ - 3925 + 4028 ], "scrim_availability_aggregate": [ - 3997 + 4100 ], "scrim_settings": [ - 4118 + 4221 ], "short_name": [ - 2660 + 2763 ], "tournament_teams_aggregate": [ - 4471 + 4574 ], "__typename": [ 78 @@ -96660,7 +98284,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -96675,7 +98299,7 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -96703,10 +98327,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96725,10 +98349,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96747,10 +98371,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96758,7 +98382,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4191 + 4294 ], "ordering": [ 236 @@ -96775,7 +98399,7 @@ export default { 180 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -96803,10 +98427,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96815,13 +98439,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4171 + 4274 ], "_set": [ - 4183 + 4286 ], "where": [ - 4169 + 4272 ], "__typename": [ 78 @@ -96840,10 +98464,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96862,10 +98486,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96884,10 +98508,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -96897,31 +98521,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4203 + 4306 ], "_gt": [ - 4203 + 4306 ], "_gte": [ - 4203 + 4306 ], "_in": [ - 4203 + 4306 ], "_is_null": [ 3 ], "_lt": [ - 4203 + 4306 ], "_lte": [ - 4203 + 4306 ], "_neq": [ - 4203 + 4306 ], "_nin": [ - 4203 + 4306 ], "__typename": [ 78 @@ -96932,13 +98556,13 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "feeding_brackets": [ - 4205, + 4308, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -96948,11 +98572,11 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], @@ -96960,37 +98584,37 @@ export default { 3 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_bracket": [ - 4205 + 4308 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "options": [ - 2355 + 2458 ], "parent_bracket": [ - 4205 + 4308 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -96999,16 +98623,16 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "scheduling_proposals": [ - 1668, + 1771, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -97018,19 +98642,19 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "scheduling_proposals_aggregate": [ - 1669, + 1772, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -97040,37 +98664,37 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "stage": [ - 4333 + 4436 ], "team_1": [ - 4466 + 4569 ], "team_1_seed": [ 38 ], "team_2": [ - 4466 + 4569 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97078,10 +98702,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4211 + 4314 ], "nodes": [ - 4205 + 4308 ], "__typename": [ 78 @@ -97089,13 +98713,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4208 + 4311 ], "bool_or": [ - 4209 + 4312 ], "count": [ - 4210 + 4313 ], "__typename": [ 78 @@ -97103,13 +98727,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4230 + 4333 ], "distinct": [ 3 ], "filter": [ - 4216 + 4319 ], "predicate": [ 4 @@ -97120,13 +98744,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4231 + 4334 ], "distinct": [ 3 ], "filter": [ - 4216 + 4319 ], "predicate": [ 4 @@ -97137,13 +98761,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4229 + 4332 ], "distinct": [ 3 ], "filter": [ - 4216 + 4319 ], "predicate": [ 39 @@ -97154,13 +98778,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4214 + 4317 ], "count": [ 38, { "columns": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -97169,31 +98793,31 @@ export default { } ], "max": [ - 4220 + 4323 ], "min": [ - 4222 + 4325 ], "stddev": [ - 4233 + 4336 ], "stddev_pop": [ - 4235 + 4338 ], "stddev_samp": [ - 4237 + 4340 ], "sum": [ - 4241 + 4344 ], "var_pop": [ - 4245 + 4348 ], "var_samp": [ - 4247 + 4350 ], "variance": [ - 4249 + 4352 ], "__typename": [ 78 @@ -97201,37 +98825,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4215 + 4318 ], "count": [ - 2660 + 2763 ], "max": [ - 4221 + 4324 ], "min": [ - 4223 + 4326 ], "stddev": [ - 4234 + 4337 ], "stddev_pop": [ - 4236 + 4339 ], "stddev_samp": [ - 4238 + 4341 ], "sum": [ - 4242 + 4345 ], "var_pop": [ - 4246 + 4349 ], "var_samp": [ - 4248 + 4351 ], "variance": [ - 4250 + 4353 ], "__typename": [ 78 @@ -97239,10 +98863,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4219 + 4322 ], "on_conflict": [ - 4226 + 4329 ], "__typename": [ 78 @@ -97270,19 +98894,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -97290,58 +98914,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4216 + 4319 ], "_not": [ - 4216 + 4319 ], "_or": [ - 4216 + 4319 ], "bye": [ 4 ], "created_at": [ - 4204 + 4307 ], "feeding_brackets": [ - 4216 + 4319 ], "finished": [ 4 ], "group": [ - 2659 + 2762 ], "id": [ - 4643 + 4746 ], "loser_bracket": [ - 4216 + 4319 ], "loser_parent_bracket_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_number": [ 39 ], "match_options_id": [ - 4643 + 4746 ], "options": [ - 2359 + 2462 ], "parent_bracket": [ - 4216 + 4319 ], "parent_bracket_id": [ - 4643 + 4746 ], "path": [ 80 @@ -97350,40 +98974,40 @@ export default { 39 ], "scheduled_at": [ - 4204 + 4307 ], "scheduled_eta": [ - 4204 + 4307 ], "scheduling_proposals": [ - 1677 + 1780 ], "scheduling_proposals_aggregate": [ - 1670 + 1773 ], "stage": [ - 4345 + 4448 ], "team_1": [ - 4475 + 4578 ], "team_1_seed": [ 39 ], "team_2": [ - 4475 + 4578 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4643 + 4746 ], "tournament_team_id_1": [ - 4643 + 4746 ], "tournament_team_id_2": [ - 4643 + 4746 ], "__typename": [ 78 @@ -97392,7 +99016,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2658 + 2761 ], "match_number": [ 38 @@ -97415,43 +99039,43 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "finished": [ 3 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_bracket": [ - 4225 + 4328 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "options": [ - 2366 + 2469 ], "parent_bracket": [ - 4225 + 4328 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -97460,37 +99084,37 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "scheduling_proposals": [ - 1674 + 1777 ], "stage": [ - 4357 + 4460 ], "team_1": [ - 4484 + 4587 ], "team_1_seed": [ 38 ], "team_2": [ - 4484 + 4587 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97498,28 +99122,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4203 + 4306 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -97528,10 +99152,10 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "team_1_seed": [ 38 @@ -97540,13 +99164,13 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97554,55 +99178,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2660 + 2763 ], "group": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "loser_parent_bracket_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "parent_bracket_id": [ - 2660 + 2763 ], "path": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "scheduled_eta": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id_1": [ - 2660 + 2763 ], "tournament_team_id_2": [ - 2660 + 2763 ], "__typename": [ 78 @@ -97610,28 +99234,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4203 + 4306 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -97640,10 +99264,10 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "team_1_seed": [ 38 @@ -97652,13 +99276,13 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97666,55 +99290,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2660 + 2763 ], "group": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "loser_parent_bracket_id": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "parent_bracket_id": [ - 2660 + 2763 ], "path": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "scheduled_eta": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id_1": [ - 2660 + 2763 ], "tournament_team_id_2": [ - 2660 + 2763 ], "__typename": [ 78 @@ -97725,7 +99349,7 @@ export default { 38 ], "returning": [ - 4205 + 4308 ], "__typename": [ 78 @@ -97733,10 +99357,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4219 + 4322 ], "on_conflict": [ - 4226 + 4329 ], "__typename": [ 78 @@ -97744,13 +99368,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4217 + 4320 ], "update_columns": [ - 4243 + 4346 ], "where": [ - 4216 + 4319 ], "__typename": [ 78 @@ -97758,88 +99382,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "feeding_brackets_aggregate": [ - 4212 + 4315 ], "finished": [ - 2660 + 2763 ], "group": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "loser_bracket": [ - 4227 + 4330 ], "loser_parent_bracket_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "options": [ - 2368 + 2471 ], "parent_bracket": [ - 4227 + 4330 ], "parent_bracket_id": [ - 2660 + 2763 ], "path": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "scheduled_at": [ - 2660 + 2763 ], "scheduled_eta": [ - 2660 + 2763 ], "scheduling_proposals_aggregate": [ - 1673 + 1776 ], "stage": [ - 4359 + 4462 ], "team_1": [ - 4486 + 4589 ], "team_1_seed": [ - 2660 + 2763 ], "team_2": [ - 4486 + 4589 ], "team_2_seed": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id_1": [ - 2660 + 2763 ], "tournament_team_id_2": [ - 2660 + 2763 ], "__typename": [ 78 @@ -97847,7 +99471,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97861,31 +99485,31 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "finished": [ 3 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -97894,10 +99518,10 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "team_1_seed": [ 38 @@ -97906,13 +99530,13 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -97940,19 +99564,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -97980,19 +99604,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98020,19 +99644,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98040,7 +99664,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4240 + 4343 ], "ordering": [ 236 @@ -98054,31 +99678,31 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "finished": [ 3 ], "group": [ - 2658 + 2761 ], "id": [ - 4641 + 4744 ], "loser_parent_bracket_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_number": [ 38 ], "match_options_id": [ - 4641 + 4744 ], "parent_bracket_id": [ - 4641 + 4744 ], "path": [ 78 @@ -98087,10 +99711,10 @@ export default { 38 ], "scheduled_at": [ - 4203 + 4306 ], "scheduled_eta": [ - 4203 + 4306 ], "team_1_seed": [ 38 @@ -98099,13 +99723,13 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id_1": [ - 4641 + 4744 ], "tournament_team_id_2": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98113,7 +99737,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2658 + 2761 ], "match_number": [ 38 @@ -98133,19 +99757,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98154,13 +99778,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4218 + 4321 ], "_set": [ - 4232 + 4335 ], "where": [ - 4216 + 4319 ], "__typename": [ 78 @@ -98188,19 +99812,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98228,19 +99852,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98268,19 +99892,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2660 + 2763 ], "match_number": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "team_1_seed": [ - 2660 + 2763 ], "team_2_seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98288,16 +99912,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3618 + 3721 ], "steam_id": [ 180 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98305,10 +99929,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4255 + 4358 ], "nodes": [ - 4251 + 4354 ], "__typename": [ 78 @@ -98316,7 +99940,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4254 + 4357 ], "__typename": [ 78 @@ -98324,13 +99948,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4272 + 4375 ], "distinct": [ 3 ], "filter": [ - 4260 + 4363 ], "predicate": [ 39 @@ -98341,13 +99965,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4258 + 4361 ], "count": [ 38, { "columns": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -98356,31 +99980,31 @@ export default { } ], "max": [ - 4264 + 4367 ], "min": [ - 4266 + 4369 ], "stddev": [ - 4274 + 4377 ], "stddev_pop": [ - 4276 + 4379 ], "stddev_samp": [ - 4278 + 4381 ], "sum": [ - 4282 + 4385 ], "var_pop": [ - 4286 + 4389 ], "var_samp": [ - 4288 + 4391 ], "variance": [ - 4290 + 4393 ], "__typename": [ 78 @@ -98388,37 +100012,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4259 + 4362 ], "count": [ - 2660 + 2763 ], "max": [ - 4265 + 4368 ], "min": [ - 4267 + 4370 ], "stddev": [ - 4275 + 4378 ], "stddev_pop": [ - 4277 + 4380 ], "stddev_samp": [ - 4279 + 4382 ], "sum": [ - 4283 + 4386 ], "var_pop": [ - 4287 + 4390 ], "var_samp": [ - 4289 + 4392 ], "variance": [ - 4291 + 4394 ], "__typename": [ 78 @@ -98426,10 +100050,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4263 + 4366 ], "on_conflict": [ - 4269 + 4372 ], "__typename": [ 78 @@ -98445,7 +100069,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98453,25 +100077,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4260 + 4363 ], "_not": [ - 4260 + 4363 ], "_or": [ - 4260 + 4363 ], "organizer": [ - 3622 + 3725 ], "steam_id": [ 182 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -98488,16 +100112,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3629 + 3732 ], "steam_id": [ 180 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98508,7 +100132,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98516,10 +100140,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98530,7 +100154,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98538,10 +100162,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98552,7 +100176,7 @@ export default { 38 ], "returning": [ - 4251 + 4354 ], "__typename": [ 78 @@ -98560,13 +100184,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4261 + 4364 ], "update_columns": [ - 4284 + 4387 ], "where": [ - 4260 + 4363 ], "__typename": [ 78 @@ -98574,16 +100198,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98594,7 +100218,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98606,7 +100230,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98622,7 +100246,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98638,7 +100262,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98654,7 +100278,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98662,7 +100286,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4281 + 4384 ], "ordering": [ 236 @@ -98676,7 +100300,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98692,7 +100316,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98701,13 +100325,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4262 + 4365 ], "_set": [ - 4273 + 4376 ], "where": [ - 4260 + 4363 ], "__typename": [ 78 @@ -98723,7 +100347,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98739,7 +100363,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98755,7 +100379,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98763,28 +100387,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "stage": [ - 4333 + 4436 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -98792,10 +100416,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4296 + 4399 ], "nodes": [ - 4292 + 4395 ], "__typename": [ 78 @@ -98803,7 +100427,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4295 + 4398 ], "__typename": [ 78 @@ -98811,13 +100435,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4313 + 4416 ], "distinct": [ 3 ], "filter": [ - 4301 + 4404 ], "predicate": [ 39 @@ -98828,13 +100452,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4299 + 4402 ], "count": [ 38, { "columns": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -98843,31 +100467,31 @@ export default { } ], "max": [ - 4305 + 4408 ], "min": [ - 4307 + 4410 ], "stddev": [ - 4315 + 4418 ], "stddev_pop": [ - 4317 + 4420 ], "stddev_samp": [ - 4319 + 4422 ], "sum": [ - 4323 + 4426 ], "var_pop": [ - 4327 + 4430 ], "var_samp": [ - 4329 + 4432 ], "variance": [ - 4331 + 4434 ], "__typename": [ 78 @@ -98875,37 +100499,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4300 + 4403 ], "count": [ - 2660 + 2763 ], "max": [ - 4306 + 4409 ], "min": [ - 4308 + 4411 ], "stddev": [ - 4316 + 4419 ], "stddev_pop": [ - 4318 + 4421 ], "stddev_samp": [ - 4320 + 4423 ], "sum": [ - 4324 + 4427 ], "var_pop": [ - 4328 + 4431 ], "var_samp": [ - 4330 + 4433 ], "variance": [ - 4332 + 4435 ], "__typename": [ 78 @@ -98913,10 +100537,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4304 + 4407 ], "on_conflict": [ - 4310 + 4413 ], "__typename": [ 78 @@ -98932,7 +100556,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -98940,37 +100564,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4301 + 4404 ], "_not": [ - 4301 + 4404 ], "_or": [ - 4301 + 4404 ], "closes_at": [ - 4204 + 4307 ], "created_at": [ - 4204 + 4307 ], "default_match_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "opens_at": [ - 4204 + 4307 ], "round": [ 39 ], "stage": [ - 4345 + 4448 ], "tournament_stage_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -98987,28 +100611,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "stage": [ - 4357 + 4460 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99016,25 +100640,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99042,25 +100666,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99068,25 +100692,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99094,25 +100718,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99123,7 +100747,7 @@ export default { 38 ], "returning": [ - 4292 + 4395 ], "__typename": [ 78 @@ -99131,13 +100755,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4302 + 4405 ], "update_columns": [ - 4325 + 4428 ], "where": [ - 4301 + 4404 ], "__typename": [ 78 @@ -99145,28 +100769,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "default_match_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "opens_at": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "stage": [ - 4359 + 4462 ], "tournament_stage_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99174,7 +100798,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99183,25 +100807,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99217,7 +100841,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99233,7 +100857,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99249,7 +100873,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99257,7 +100881,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4322 + 4425 ], "ordering": [ 236 @@ -99268,25 +100892,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4203 + 4306 ], "created_at": [ - 4203 + 4306 ], "default_match_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "opens_at": [ - 4203 + 4306 ], "round": [ 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -99302,7 +100926,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99311,13 +100935,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4303 + 4406 ], "_set": [ - 4314 + 4417 ], "where": [ - 4301 + 4404 ], "__typename": [ 78 @@ -99333,7 +100957,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99349,7 +100973,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99365,7 +100989,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99373,10 +100997,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4205, + 4308, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -99386,19 +101010,19 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "brackets_aggregate": [ - 4206, + 4309, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -99408,11 +101032,11 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], @@ -99423,16 +101047,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1118 + 1138 ], "groups": [ 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -99444,16 +101068,16 @@ export default { 38 ], "options": [ - 2355 + 2458 ], "order": [ 38 ], "results": [ - 5365, + 5478, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -99463,19 +101087,19 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "results_aggregate": [ - 5366, + 5479, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -99485,16 +101109,16 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "settings": [ - 1531, + 1634, { "path": [ 78 @@ -99508,19 +101132,19 @@ export default { 3 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "type": [ - 1123 + 1143 ], "windows": [ - 4292, + 4395, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -99530,19 +101154,19 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], "windows_aggregate": [ - 4293, + 4396, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -99552,11 +101176,11 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], @@ -99566,10 +101190,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4339 + 4442 ], "nodes": [ - 4333 + 4436 ], "__typename": [ 78 @@ -99577,13 +101201,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4336 + 4439 ], "bool_or": [ - 4337 + 4440 ], "count": [ - 4338 + 4441 ], "__typename": [ 78 @@ -99591,13 +101215,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4363 + 4466 ], "distinct": [ 3 ], "filter": [ - 4345 + 4448 ], "predicate": [ 4 @@ -99608,13 +101232,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4364 + 4467 ], "distinct": [ 3 ], "filter": [ - 4345 + 4448 ], "predicate": [ 4 @@ -99625,13 +101249,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4362 + 4465 ], "distinct": [ 3 ], "filter": [ - 4345 + 4448 ], "predicate": [ 39 @@ -99642,13 +101266,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4343 + 4446 ], "count": [ 38, { "columns": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "distinct": [ @@ -99657,31 +101281,31 @@ export default { } ], "max": [ - 4352 + 4455 ], "min": [ - 4354 + 4457 ], "stddev": [ - 4366 + 4469 ], "stddev_pop": [ - 4368 + 4471 ], "stddev_samp": [ - 4370 + 4473 ], "sum": [ - 4374 + 4477 ], "var_pop": [ - 4378 + 4481 ], "var_samp": [ - 4380 + 4483 ], "variance": [ - 4382 + 4485 ], "__typename": [ 78 @@ -99689,37 +101313,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4344 + 4447 ], "count": [ - 2660 + 2763 ], "max": [ - 4353 + 4456 ], "min": [ - 4355 + 4458 ], "stddev": [ - 4367 + 4470 ], "stddev_pop": [ - 4369 + 4472 ], "stddev_samp": [ - 4371 + 4474 ], "sum": [ - 4375 + 4478 ], "var_pop": [ - 4379 + 4482 ], "var_samp": [ - 4381 + 4484 ], "variance": [ - 4383 + 4486 ], "__typename": [ 78 @@ -99727,7 +101351,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1531 + 1634 ], "__typename": [ 78 @@ -99735,10 +101359,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4351 + 4454 ], "on_conflict": [ - 4358 + 4461 ], "__typename": [ 78 @@ -99772,25 +101396,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -99798,19 +101422,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4345 + 4448 ], "_not": [ - 4345 + 4448 ], "_or": [ - 4345 + 4448 ], "brackets": [ - 4216 + 4319 ], "brackets_aggregate": [ - 4207 + 4310 ], "decider_best_of": [ 39 @@ -99819,16 +101443,16 @@ export default { 39 ], "e_tournament_stage_type": [ - 1121 + 1141 ], "groups": [ 39 ], "id": [ - 4643 + 4746 ], "match_options_id": [ - 4643 + 4746 ], "max_rounds": [ 39 @@ -99840,19 +101464,19 @@ export default { 39 ], "options": [ - 2359 + 2462 ], "order": [ 39 ], "results": [ - 5384 + 5497 ], "results_aggregate": [ - 5367 + 5480 ], "settings": [ - 1533 + 1636 ], "swiss_no_elimination": [ 4 @@ -99861,19 +101485,19 @@ export default { 4 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "type": [ - 1124 + 1144 ], "windows": [ - 4301 + 4404 ], "windows_aggregate": [ - 4294 + 4397 ], "__typename": [ 78 @@ -99932,7 +101556,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4213 + 4316 ], "decider_best_of": [ 38 @@ -99941,16 +101565,16 @@ export default { 38 ], "e_tournament_stage_type": [ - 1129 + 1149 ], "groups": [ 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -99962,16 +101586,16 @@ export default { 38 ], "options": [ - 2366 + 2469 ], "order": [ 38 ], "results": [ - 5381 + 5494 ], "settings": [ - 1531 + 1634 ], "swiss_no_elimination": [ 3 @@ -99980,16 +101604,16 @@ export default { 3 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "type": [ - 1123 + 1143 ], "windows": [ - 4298 + 4401 ], "__typename": [ 78 @@ -100006,10 +101630,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -100024,7 +101648,7 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -100032,34 +101656,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100076,10 +101700,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -100094,7 +101718,7 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -100102,34 +101726,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100140,7 +101764,7 @@ export default { 38 ], "returning": [ - 4333 + 4436 ], "__typename": [ 78 @@ -100148,10 +101772,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4351 + 4454 ], "on_conflict": [ - 4358 + 4461 ], "__typename": [ 78 @@ -100159,13 +101783,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4346 + 4449 ], "update_columns": [ - 4376 + 4479 ], "where": [ - 4345 + 4448 ], "__typename": [ 78 @@ -100173,64 +101797,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4212 + 4315 ], "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "e_tournament_stage_type": [ - 1131 + 1151 ], "groups": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "options": [ - 2368 + 2471 ], "order": [ - 2660 + 2763 ], "results_aggregate": [ - 5380 + 5493 ], "settings": [ - 2660 + 2763 ], "swiss_no_elimination": [ - 2660 + 2763 ], "third_place_match": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "windows_aggregate": [ - 4297 + 4400 ], "__typename": [ 78 @@ -100238,7 +101862,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -100246,7 +101870,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1531 + 1634 ], "__typename": [ 78 @@ -100266,10 +101890,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -100284,7 +101908,7 @@ export default { 38 ], "settings": [ - 1531 + 1634 ], "swiss_no_elimination": [ 3 @@ -100293,10 +101917,10 @@ export default { 3 ], "tournament_id": [ - 4641 + 4744 ], "type": [ - 1123 + 1143 ], "__typename": [ 78 @@ -100330,25 +101954,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100382,25 +102006,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100434,25 +102058,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100460,7 +102084,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4373 + 4476 ], "ordering": [ 236 @@ -100480,10 +102104,10 @@ export default { 38 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_rounds": [ 38 @@ -100498,7 +102122,7 @@ export default { 38 ], "settings": [ - 1531 + 1634 ], "swiss_no_elimination": [ 3 @@ -100507,10 +102131,10 @@ export default { 3 ], "tournament_id": [ - 4641 + 4744 ], "type": [ - 1123 + 1143 ], "__typename": [ 78 @@ -100544,25 +102168,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100571,28 +102195,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4341 + 4444 ], "_delete_at_path": [ - 4347 + 4450 ], "_delete_elem": [ - 4348 + 4451 ], "_delete_key": [ - 4349 + 4452 ], "_inc": [ - 4350 + 4453 ], "_prepend": [ - 4361 + 4464 ], "_set": [ - 4365 + 4468 ], "where": [ - 4345 + 4448 ], "__typename": [ 78 @@ -100626,25 +102250,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100678,25 +102302,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100730,25 +102354,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2660 + 2763 ], "default_best_of": [ - 2660 + 2763 ], "groups": [ - 2660 + 2763 ], "max_rounds": [ - 2660 + 2763 ], "max_teams": [ - 2660 + 2763 ], "min_teams": [ - 2660 + 2763 ], "order": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100756,28 +102380,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by": [ - 3618 + 3721 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 ], "team": [ - 4466 + 4569 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -100785,10 +102409,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4388 + 4491 ], "nodes": [ - 4384 + 4487 ], "__typename": [ 78 @@ -100796,7 +102420,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4387 + 4490 ], "__typename": [ 78 @@ -100804,13 +102428,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4405 + 4508 ], "distinct": [ 3 ], "filter": [ - 4393 + 4496 ], "predicate": [ 39 @@ -100821,13 +102445,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4391 + 4494 ], "count": [ 38, { "columns": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -100836,31 +102460,31 @@ export default { } ], "max": [ - 4397 + 4500 ], "min": [ - 4399 + 4502 ], "stddev": [ - 4407 + 4510 ], "stddev_pop": [ - 4409 + 4512 ], "stddev_samp": [ - 4411 + 4514 ], "sum": [ - 4415 + 4518 ], "var_pop": [ - 4419 + 4522 ], "var_samp": [ - 4421 + 4524 ], "variance": [ - 4423 + 4526 ], "__typename": [ 78 @@ -100868,37 +102492,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4392 + 4495 ], "count": [ - 2660 + 2763 ], "max": [ - 4398 + 4501 ], "min": [ - 4400 + 4503 ], "stddev": [ - 4408 + 4511 ], "stddev_pop": [ - 4410 + 4513 ], "stddev_samp": [ - 4412 + 4515 ], "sum": [ - 4416 + 4519 ], "var_pop": [ - 4420 + 4523 ], "var_samp": [ - 4422 + 4525 ], "variance": [ - 4424 + 4527 ], "__typename": [ 78 @@ -100906,10 +102530,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4396 + 4499 ], "on_conflict": [ - 4402 + 4505 ], "__typename": [ 78 @@ -100928,10 +102552,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -100939,37 +102563,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4393 + 4496 ], "_not": [ - 4393 + 4496 ], "_or": [ - 4393 + 4496 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "invited_by": [ - 3622 + 3725 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 ], "team": [ - 4475 + 4578 ], "tournament_team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -100989,28 +102613,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by": [ - 3629 + 3732 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 ], "team": [ - 4484 + 4587 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101018,10 +102642,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -101030,7 +102654,7 @@ export default { 180 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101038,19 +102662,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101058,10 +102682,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -101070,7 +102694,7 @@ export default { 180 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101078,19 +102702,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101101,7 +102725,7 @@ export default { 38 ], "returning": [ - 4384 + 4487 ], "__typename": [ 78 @@ -101109,13 +102733,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4394 + 4497 ], "update_columns": [ - 4417 + 4520 ], "where": [ - 4393 + 4496 ], "__typename": [ 78 @@ -101123,28 +102747,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invited_by": [ - 3631 + 3734 ], "invited_by_player_steam_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "team": [ - 4486 + 4589 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101152,7 +102776,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101161,10 +102785,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -101173,7 +102797,7 @@ export default { 180 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101192,10 +102816,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101214,10 +102838,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101236,10 +102860,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101247,7 +102871,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4414 + 4517 ], "ordering": [ 236 @@ -101258,10 +102882,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invited_by_player_steam_id": [ 180 @@ -101270,7 +102894,7 @@ export default { 180 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101289,10 +102913,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101301,13 +102925,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4395 + 4498 ], "_set": [ - 4406 + 4509 ], "where": [ - 4393 + 4496 ], "__typename": [ 78 @@ -101326,10 +102950,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101348,10 +102972,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101370,10 +102994,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101381,28 +103005,28 @@ export default { }, "tournament_team_roster": { "e_team_role": [ - 1057 + 1077 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "role": [ - 1062 + 1082 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team": [ - 4466 + 4569 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101410,10 +103034,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4429 + 4532 ], "nodes": [ - 4425 + 4528 ], "__typename": [ 78 @@ -101421,7 +103045,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4428 + 4531 ], "__typename": [ 78 @@ -101429,13 +103053,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4446 + 4549 ], "distinct": [ 3 ], "filter": [ - 4434 + 4537 ], "predicate": [ 39 @@ -101446,13 +103070,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4432 + 4535 ], "count": [ 38, { "columns": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -101461,31 +103085,31 @@ export default { } ], "max": [ - 4438 + 4541 ], "min": [ - 4440 + 4543 ], "stddev": [ - 4448 + 4551 ], "stddev_pop": [ - 4450 + 4553 ], "stddev_samp": [ - 4452 + 4555 ], "sum": [ - 4456 + 4559 ], "var_pop": [ - 4460 + 4563 ], "var_samp": [ - 4462 + 4565 ], "variance": [ - 4464 + 4567 ], "__typename": [ 78 @@ -101493,37 +103117,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4433 + 4536 ], "count": [ - 2660 + 2763 ], "max": [ - 4439 + 4542 ], "min": [ - 4441 + 4544 ], "stddev": [ - 4449 + 4552 ], "stddev_pop": [ - 4451 + 4554 ], "stddev_samp": [ - 4453 + 4556 ], "sum": [ - 4457 + 4560 ], "var_pop": [ - 4461 + 4564 ], "var_samp": [ - 4463 + 4566 ], "variance": [ - 4465 + 4568 ], "__typename": [ 78 @@ -101531,10 +103155,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4437 + 4540 ], "on_conflict": [ - 4443 + 4546 ], "__typename": [ 78 @@ -101550,7 +103174,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101558,37 +103182,37 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4434 + 4537 ], "_not": [ - 4434 + 4537 ], "_or": [ - 4434 + 4537 ], "e_team_role": [ - 1060 + 1080 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "role": [ - 1063 + 1083 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "tournament_team": [ - 4475 + 4578 ], "tournament_team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -101605,28 +103229,28 @@ export default { }, "tournament_team_roster_insert_input": { "e_team_role": [ - 1068 + 1088 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "role": [ - 1062 + 1082 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team": [ - 4484 + 4587 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101637,10 +103261,10 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101648,13 +103272,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101665,10 +103289,10 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101676,13 +103300,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101693,7 +103317,7 @@ export default { 38 ], "returning": [ - 4425 + 4528 ], "__typename": [ 78 @@ -101701,13 +103325,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4435 + 4538 ], "update_columns": [ - 4458 + 4561 ], "where": [ - 4434 + 4537 ], "__typename": [ 78 @@ -101715,28 +103339,28 @@ export default { }, "tournament_team_roster_order_by": { "e_team_role": [ - 1070 + 1090 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "role": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team": [ - 4486 + 4589 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101747,7 +103371,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101759,13 +103383,13 @@ export default { 180 ], "role": [ - 1062 + 1082 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101781,7 +103405,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101797,7 +103421,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101813,7 +103437,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101821,7 +103445,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4455 + 4558 ], "ordering": [ 236 @@ -101835,13 +103459,13 @@ export default { 180 ], "role": [ - 1062 + 1082 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -101857,7 +103481,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101866,13 +103490,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4436 + 4539 ], "_set": [ - 4447 + 4550 ], "where": [ - 4434 + 4537 ], "__typename": [ 78 @@ -101888,7 +103512,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101904,7 +103528,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101920,7 +103544,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -101931,28 +103555,28 @@ export default { 3 ], "captain": [ - 3618 + 3721 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "creator": [ - 3618 + 3721 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invites": [ - 4384, + 4487, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -101962,19 +103586,19 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], "invites_aggregate": [ - 4385, + 4488, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -101984,11 +103608,11 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], @@ -101999,13 +103623,13 @@ export default { 180 ], "results": [ - 5365 + 5478 ], "roster": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102015,19 +103639,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "roster_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -102037,11 +103661,11 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], @@ -102052,16 +103676,16 @@ export default { 78 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102069,10 +103693,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4470 + 4573 ], "nodes": [ - 4466 + 4569 ], "__typename": [ 78 @@ -102080,7 +103704,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4469 + 4572 ], "__typename": [ 78 @@ -102088,13 +103712,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4488 + 4591 ], "distinct": [ 3 ], "filter": [ - 4475 + 4578 ], "predicate": [ 39 @@ -102105,13 +103729,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4473 + 4576 ], "count": [ 38, { "columns": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "distinct": [ @@ -102120,31 +103744,31 @@ export default { } ], "max": [ - 4479 + 4582 ], "min": [ - 4481 + 4584 ], "stddev": [ - 4490 + 4593 ], "stddev_pop": [ - 4492 + 4595 ], "stddev_samp": [ - 4494 + 4597 ], "sum": [ - 4498 + 4601 ], "var_pop": [ - 4502 + 4605 ], "var_samp": [ - 4504 + 4607 ], "variance": [ - 4506 + 4609 ], "__typename": [ 78 @@ -102152,37 +103776,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4474 + 4577 ], "count": [ - 2660 + 2763 ], "max": [ - 4480 + 4583 ], "min": [ - 4482 + 4585 ], "stddev": [ - 4491 + 4594 ], "stddev_pop": [ - 4493 + 4596 ], "stddev_samp": [ - 4495 + 4598 ], "sum": [ - 4499 + 4602 ], "var_pop": [ - 4503 + 4606 ], "var_samp": [ - 4505 + 4608 ], "variance": [ - 4507 + 4610 ], "__typename": [ 78 @@ -102190,10 +103814,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4478 + 4581 ], "on_conflict": [ - 4485 + 4588 ], "__typename": [ 78 @@ -102215,13 +103839,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102229,40 +103853,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4475 + 4578 ], "_not": [ - 4475 + 4578 ], "_or": [ - 4475 + 4578 ], "can_manage": [ 4 ], "captain": [ - 3622 + 3725 ], "captain_steam_id": [ 182 ], "created_at": [ - 4204 + 4307 ], "creator": [ - 3622 + 3725 ], "eligible_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "invites": [ - 4393 + 4496 ], "invites_aggregate": [ - 4386 + 4489 ], "name": [ 80 @@ -102271,13 +103895,13 @@ export default { 182 ], "results": [ - 5384 + 5497 ], "roster": [ - 4434 + 4537 ], "roster_aggregate": [ - 4427 + 4530 ], "seed": [ 39 @@ -102286,16 +103910,16 @@ export default { 80 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -102318,25 +103942,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3629 + 3732 ], "captain_steam_id": [ 180 ], "created_at": [ - 4203 + 4306 ], "creator": [ - 3629 + 3732 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "invites": [ - 4390 + 4493 ], "name": [ 78 @@ -102345,10 +103969,10 @@ export default { 180 ], "results": [ - 5393 + 5506 ], "roster": [ - 4431 + 4534 ], "seed": [ 38 @@ -102357,16 +103981,16 @@ export default { 78 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102377,13 +104001,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -102398,10 +104022,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102409,34 +104033,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "eligible_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "short_name": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102447,13 +104071,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -102468,10 +104092,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102479,34 +104103,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "eligible_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "short_name": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102517,7 +104141,7 @@ export default { 38 ], "returning": [ - 4466 + 4569 ], "__typename": [ 78 @@ -102525,10 +104149,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4478 + 4581 ], "on_conflict": [ - 4485 + 4588 ], "__typename": [ 78 @@ -102536,13 +104160,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4476 + 4579 ], "update_columns": [ - 4500 + 4603 ], "where": [ - 4475 + 4578 ], "__typename": [ 78 @@ -102550,58 +104174,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2660 + 2763 ], "captain": [ - 3631 + 3734 ], "captain_steam_id": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "creator": [ - 3631 + 3734 ], "eligible_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "invites_aggregate": [ - 4389 + 4492 ], "name": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "results": [ - 5395 + 5508 ], "roster_aggregate": [ - 4430 + 4533 ], "seed": [ - 2660 + 2763 ], "short_name": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102609,7 +104233,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102621,13 +104245,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -102642,10 +104266,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102667,13 +104291,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102695,13 +104319,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102723,13 +104347,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102737,7 +104361,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4497 + 4600 ], "ordering": [ 236 @@ -102751,13 +104375,13 @@ export default { 180 ], "created_at": [ - 4203 + 4306 ], "eligible_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "name": [ 78 @@ -102772,10 +104396,10 @@ export default { 78 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -102797,13 +104421,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102812,13 +104436,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4477 + 4580 ], "_set": [ - 4489 + 4592 ], "where": [ - 4475 + 4578 ], "__typename": [ 78 @@ -102840,13 +104464,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102868,13 +104492,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102896,13 +104520,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2660 + 2763 ], "owner_steam_id": [ - 2660 + 2763 ], "seed": [ - 2660 + 2763 ], "__typename": [ 78 @@ -102910,10 +104534,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "manual": [ 3 @@ -102925,31 +104549,31 @@ export default { 78 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team": [ - 4466 + 4569 ], "tournament_team_id": [ - 4641 + 4744 ], "trophy_config": [ - 4553 + 4656 ], "__typename": [ 78 @@ -102957,10 +104581,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4514 + 4617 ], "nodes": [ - 4508 + 4611 ], "__typename": [ 78 @@ -102968,13 +104592,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4511 + 4614 ], "bool_or": [ - 4512 + 4615 ], "count": [ - 4513 + 4616 ], "__typename": [ 78 @@ -102982,13 +104606,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4532 + 4635 ], "distinct": [ 3 ], "filter": [ - 4519 + 4622 ], "predicate": [ 4 @@ -102999,13 +104623,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4533 + 4636 ], "distinct": [ 3 ], "filter": [ - 4519 + 4622 ], "predicate": [ 4 @@ -103016,13 +104640,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4531 + 4634 ], "distinct": [ 3 ], "filter": [ - 4519 + 4622 ], "predicate": [ 39 @@ -103033,13 +104657,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4517 + 4620 ], "count": [ 38, { "columns": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -103048,31 +104672,31 @@ export default { } ], "max": [ - 4523 + 4626 ], "min": [ - 4525 + 4628 ], "stddev": [ - 4535 + 4638 ], "stddev_pop": [ - 4537 + 4640 ], "stddev_samp": [ - 4539 + 4642 ], "sum": [ - 4543 + 4646 ], "var_pop": [ - 4547 + 4650 ], "var_samp": [ - 4549 + 4652 ], "variance": [ - 4551 + 4654 ], "__typename": [ 78 @@ -103080,37 +104704,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4518 + 4621 ], "count": [ - 2660 + 2763 ], "max": [ - 4524 + 4627 ], "min": [ - 4526 + 4629 ], "stddev": [ - 4536 + 4639 ], "stddev_pop": [ - 4538 + 4641 ], "stddev_samp": [ - 4540 + 4643 ], "sum": [ - 4544 + 4647 ], "var_pop": [ - 4548 + 4651 ], "var_samp": [ - 4550 + 4653 ], "variance": [ - 4552 + 4655 ], "__typename": [ 78 @@ -103118,10 +104742,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4522 + 4625 ], "on_conflict": [ - 4528 + 4631 ], "__typename": [ 78 @@ -103140,10 +104764,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103151,19 +104775,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4519 + 4622 ], "_not": [ - 4519 + 4622 ], "_or": [ - 4519 + 4622 ], "created_at": [ - 4204 + 4307 ], "id": [ - 4643 + 4746 ], "manual": [ 4 @@ -103175,31 +104799,31 @@ export default { 80 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "tournament_team": [ - 4475 + 4578 ], "tournament_team_id": [ - 4643 + 4746 ], "trophy_config": [ - 4562 + 4665 ], "__typename": [ 78 @@ -103219,10 +104843,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "manual": [ 3 @@ -103231,31 +104855,31 @@ export default { 38 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team": [ - 4484 + 4587 ], "tournament_team_id": [ - 4641 + 4744 ], "trophy_config": [ - 4571 + 4674 ], "__typename": [ 78 @@ -103263,10 +104887,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "placement": [ 38 @@ -103278,13 +104902,13 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -103292,28 +104916,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "placement_tier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103321,10 +104945,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "placement": [ 38 @@ -103336,13 +104960,13 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -103350,28 +104974,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "placement_tier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "team_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103382,7 +105006,7 @@ export default { 38 ], "returning": [ - 4508 + 4611 ], "__typename": [ 78 @@ -103390,13 +105014,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4520 + 4623 ], "update_columns": [ - 4545 + 4648 ], "where": [ - 4519 + 4622 ], "__typename": [ 78 @@ -103404,46 +105028,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "manual": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "placement_tier": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team": [ - 4486 + 4589 ], "tournament_team_id": [ - 2660 + 2763 ], "trophy_config": [ - 4573 + 4676 ], "__typename": [ 78 @@ -103451,7 +105075,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -103462,10 +105086,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "manual": [ 3 @@ -103477,13 +105101,13 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -103502,10 +105126,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103524,10 +105148,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103546,10 +105170,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103557,7 +105181,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4542 + 4645 ], "ordering": [ 236 @@ -103568,10 +105192,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "id": [ - 4641 + 4744 ], "manual": [ 3 @@ -103586,13 +105210,13 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -103611,10 +105235,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103623,13 +105247,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4521 + 4624 ], "_set": [ - 4534 + 4637 ], "where": [ - 4519 + 4622 ], "__typename": [ 78 @@ -103648,10 +105272,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103670,10 +105294,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103692,10 +105316,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103703,13 +105327,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -103721,13 +105345,13 @@ export default { 38 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -103735,10 +105359,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4557 + 4660 ], "nodes": [ - 4553 + 4656 ], "__typename": [ 78 @@ -103746,7 +105370,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4556 + 4659 ], "__typename": [ 78 @@ -103754,13 +105378,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4575 + 4678 ], "distinct": [ 3 ], "filter": [ - 4562 + 4665 ], "predicate": [ 39 @@ -103771,13 +105395,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4560 + 4663 ], "count": [ 38, { "columns": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -103786,31 +105410,31 @@ export default { } ], "max": [ - 4566 + 4669 ], "min": [ - 4568 + 4671 ], "stddev": [ - 4577 + 4680 ], "stddev_pop": [ - 4579 + 4682 ], "stddev_samp": [ - 4581 + 4684 ], "sum": [ - 4585 + 4688 ], "var_pop": [ - 4589 + 4692 ], "var_samp": [ - 4591 + 4694 ], "variance": [ - 4593 + 4696 ], "__typename": [ 78 @@ -103818,37 +105442,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4561 + 4664 ], "count": [ - 2660 + 2763 ], "max": [ - 4567 + 4670 ], "min": [ - 4569 + 4672 ], "stddev": [ - 4578 + 4681 ], "stddev_pop": [ - 4580 + 4683 ], "stddev_samp": [ - 4582 + 4685 ], "sum": [ - 4586 + 4689 ], "var_pop": [ - 4590 + 4693 ], "var_samp": [ - 4592 + 4695 ], "variance": [ - 4594 + 4697 ], "__typename": [ 78 @@ -103856,10 +105480,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4565 + 4668 ], "on_conflict": [ - 4572 + 4675 ], "__typename": [ 78 @@ -103878,10 +105502,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -103889,22 +105513,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4562 + 4665 ], "_not": [ - 4562 + 4665 ], "_or": [ - 4562 + 4665 ], "created_at": [ - 4204 + 4307 ], "custom_name": [ 80 ], "id": [ - 4643 + 4746 ], "image_url": [ 80 @@ -103916,13 +105540,13 @@ export default { 39 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "updated_at": [ - 4204 + 4307 ], "__typename": [ 78 @@ -103942,13 +105566,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -103960,13 +105584,13 @@ export default { 38 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -103974,13 +105598,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -103992,10 +105616,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -104003,28 +105627,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2660 + 2763 ], "custom_name": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "image_url": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104032,13 +105656,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -104050,10 +105674,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -104061,28 +105685,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2660 + 2763 ], "custom_name": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "image_url": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104093,7 +105717,7 @@ export default { 38 ], "returning": [ - 4553 + 4656 ], "__typename": [ 78 @@ -104101,10 +105725,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4565 + 4668 ], "on_conflict": [ - 4572 + 4675 ], "__typename": [ 78 @@ -104112,13 +105736,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4563 + 4666 ], "update_columns": [ - 4587 + 4690 ], "where": [ - 4562 + 4665 ], "__typename": [ 78 @@ -104126,31 +105750,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2660 + 2763 ], "custom_name": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "image_url": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "updated_at": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104158,7 +105782,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -104167,13 +105791,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -104185,10 +105809,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -104207,10 +105831,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104229,10 +105853,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104251,10 +105875,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104262,7 +105886,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4584 + 4687 ], "ordering": [ 236 @@ -104273,13 +105897,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4203 + 4306 ], "custom_name": [ 78 ], "id": [ - 4641 + 4744 ], "image_url": [ 78 @@ -104291,10 +105915,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "updated_at": [ - 4203 + 4306 ], "__typename": [ 78 @@ -104313,10 +105937,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104325,13 +105949,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4564 + 4667 ], "_set": [ - 4576 + 4679 ], "where": [ - 4562 + 4665 ], "__typename": [ 78 @@ -104350,10 +105974,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104372,10 +105996,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104394,10 +106018,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2660 + 2763 ], "silhouette": [ - 2660 + 2763 ], "__typename": [ 78 @@ -104405,7 +106029,7 @@ export default { }, "tournaments": { "admin": [ - 3618 + 3721 ], "auto_start": [ 3 @@ -104435,7 +106059,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -104492,13 +106116,13 @@ export default { 78 ], "e_tournament_status": [ - 1139 + 1159 ], "has_min_teams": [ 3 ], "id": [ - 4641 + 4744 ], "is_league": [ 3 @@ -104510,10 +106134,10 @@ export default { 3 ], "league_season_division": [ - 1709 + 1812 ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -104525,16 +106149,16 @@ export default { 78 ], "options": [ - 2355 + 2458 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4251, + 4354, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -104544,19 +106168,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "organizers_aggregate": [ - 4252, + 4355, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -104566,19 +106190,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "player_stats": [ - 5476, + 5589, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -104588,19 +106212,19 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], "player_stats_aggregate": [ - 5477, + 5590, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -104610,19 +106234,19 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], "results": [ - 5425, + 5538, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -104632,19 +106256,19 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "results_aggregate": [ - 5426, + 5539, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -104654,19 +106278,19 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "rosters": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104676,19 +106300,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "rosters_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -104698,11 +106322,11 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], @@ -104710,10 +106334,10 @@ export default { 78 ], "stages": [ - 4333, + 4436, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -104723,19 +106347,19 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "stages_aggregate": [ - 4334, + 4437, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -104745,25 +106369,25 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "start": [ - 4203 + 4306 ], "status": [ - 1144 + 1164 ], "teams": [ - 4466, + 4569, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -104773,19 +106397,19 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "teams_aggregate": [ - 4467, + 4570, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -104795,19 +106419,19 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "trophies": [ - 4508, + 4611, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -104817,19 +106441,19 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "trophies_aggregate": [ - 4509, + 4612, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -104839,11 +106463,11 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], @@ -104851,10 +106475,10 @@ export default { 3 ], "trophy_configs": [ - 4553, + 4656, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -104864,19 +106488,19 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], "trophy_configs_aggregate": [ - 4554, + 4657, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -104886,11 +106510,11 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], @@ -104900,10 +106524,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4601 + 4704 ], "nodes": [ - 4595 + 4698 ], "__typename": [ 78 @@ -104911,13 +106535,13 @@ export default { }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 4598 + 4701 ], "bool_or": [ - 4599 + 4702 ], "count": [ - 4600 + 4703 ], "__typename": [ 78 @@ -104925,13 +106549,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4620 + 4723 ], "distinct": [ 3 ], "filter": [ - 4606 + 4709 ], "predicate": [ 4 @@ -104942,13 +106566,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4621 + 4724 ], "distinct": [ 3 ], "filter": [ - 4606 + 4709 ], "predicate": [ 4 @@ -104959,13 +106583,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4619 + 4722 ], "distinct": [ 3 ], "filter": [ - 4606 + 4709 ], "predicate": [ 39 @@ -104976,13 +106600,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4604 + 4707 ], "count": [ 38, { "columns": [ - 4619, + 4722, "[tournaments_select_column!]" ], "distinct": [ @@ -104991,31 +106615,31 @@ export default { } ], "max": [ - 4610 + 4713 ], "min": [ - 4612 + 4715 ], "stddev": [ - 4623 + 4726 ], "stddev_pop": [ - 4625 + 4728 ], "stddev_samp": [ - 4627 + 4730 ], "sum": [ - 4631 + 4734 ], "var_pop": [ - 4635 + 4738 ], "var_samp": [ - 4637 + 4740 ], "variance": [ - 4639 + 4742 ], "__typename": [ 78 @@ -105023,37 +106647,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4605 + 4708 ], "count": [ - 2660 + 2763 ], "max": [ - 4611 + 4714 ], "min": [ - 4613 + 4716 ], "stddev": [ - 4624 + 4727 ], "stddev_pop": [ - 4626 + 4729 ], "stddev_samp": [ - 4628 + 4731 ], "sum": [ - 4632 + 4735 ], "var_pop": [ - 4636 + 4739 ], "var_samp": [ - 4638 + 4741 ], "variance": [ - 4640 + 4743 ], "__typename": [ 78 @@ -105061,10 +106685,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4609 + 4712 ], "on_conflict": [ - 4616 + 4719 ], "__typename": [ 78 @@ -105086,7 +106710,7 @@ export default { }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105094,16 +106718,16 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4606 + 4709 ], "_not": [ - 4606 + 4709 ], "_or": [ - 4606 + 4709 ], "admin": [ - 3622 + 3725 ], "auto_start": [ 4 @@ -105133,7 +106757,7 @@ export default { 4 ], "created_at": [ - 4204 + 4307 ], "description": [ 80 @@ -105190,13 +106814,13 @@ export default { 80 ], "e_tournament_status": [ - 1142 + 1162 ], "has_min_teams": [ 4 ], "id": [ - 4643 + 4746 ], "is_league": [ 4 @@ -105208,10 +106832,10 @@ export default { 4 ], "league_season_division": [ - 1716 + 1819 ], "match_options_id": [ - 4643 + 4746 ], "max_players_per_lineup": [ 39 @@ -105223,70 +106847,70 @@ export default { 80 ], "options": [ - 2359 + 2462 ], "organizer_steam_id": [ 182 ], "organizers": [ - 4260 + 4363 ], "organizers_aggregate": [ - 4253 + 4356 ], "player_stats": [ - 5495 + 5608 ], "player_stats_aggregate": [ - 5478 + 5591 ], "results": [ - 5444 + 5557 ], "results_aggregate": [ - 5427 + 5540 ], "rosters": [ - 4434 + 4537 ], "rosters_aggregate": [ - 4427 + 4530 ], "scheduling_mode": [ 80 ], "stages": [ - 4345 + 4448 ], "stages_aggregate": [ - 4335 + 4438 ], "start": [ - 4204 + 4307 ], "status": [ - 1145 + 1165 ], "teams": [ - 4475 + 4578 ], "teams_aggregate": [ - 4468 + 4571 ], "trophies": [ - 4519 + 4622 ], "trophies_aggregate": [ - 4510 + 4613 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4562 + 4665 ], "trophy_configs_aggregate": [ - 4555 + 4658 ], "__typename": [ 78 @@ -105303,13 +106927,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3629 + 3732 ], "auto_start": [ 3 ], "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -105366,64 +106990,64 @@ export default { 78 ], "e_tournament_status": [ - 1150 + 1170 ], "id": [ - 4641 + 4744 ], "is_league": [ 3 ], "league_season_division": [ - 1724 + 1827 ], "match_options_id": [ - 4641 + 4744 ], "name": [ 78 ], "options": [ - 2366 + 2469 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4257 + 4360 ], "player_stats": [ - 5492 + 5605 ], "results": [ - 5441 + 5554 ], "rosters": [ - 4431 + 4534 ], "scheduling_mode": [ 78 ], "stages": [ - 4342 + 4445 ], "start": [ - 4203 + 4306 ], "status": [ - 1144 + 1164 ], "teams": [ - 4472 + 4575 ], "trophies": [ - 4516 + 4619 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4559 + 4662 ], "__typename": [ 78 @@ -105431,7 +107055,7 @@ export default { }, "tournaments_max_fields": { "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -105446,10 +107070,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -105467,7 +107091,7 @@ export default { 78 ], "start": [ - 4203 + 4306 ], "__typename": [ 78 @@ -105475,37 +107099,37 @@ export default { }, "tournaments_max_order_by": { "created_at": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "discord_guild_id": [ - 2660 + 2763 ], "discord_role_id": [ - 2660 + 2763 ], "discord_webhook": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "organizer_steam_id": [ - 2660 + 2763 ], "scheduling_mode": [ - 2660 + 2763 ], "start": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105513,7 +107137,7 @@ export default { }, "tournaments_min_fields": { "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -105528,10 +107152,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_options_id": [ - 4641 + 4744 ], "max_players_per_lineup": [ 38 @@ -105549,7 +107173,7 @@ export default { 78 ], "start": [ - 4203 + 4306 ], "__typename": [ 78 @@ -105557,37 +107181,37 @@ export default { }, "tournaments_min_order_by": { "created_at": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "discord_guild_id": [ - 2660 + 2763 ], "discord_role_id": [ - 2660 + 2763 ], "discord_webhook": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "match_options_id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "organizer_steam_id": [ - 2660 + 2763 ], "scheduling_mode": [ - 2660 + 2763 ], "start": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105598,7 +107222,7 @@ export default { 38 ], "returning": [ - 4595 + 4698 ], "__typename": [ 78 @@ -105606,10 +107230,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4609 + 4712 ], "on_conflict": [ - 4616 + 4719 ], "__typename": [ 78 @@ -105617,13 +107241,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4607 + 4710 ], "update_columns": [ - 4633 + 4736 ], "where": [ - 4606 + 4709 ], "__typename": [ 78 @@ -105631,166 +107255,166 @@ export default { }, "tournaments_order_by": { "admin": [ - 3631 + 3734 ], "auto_start": [ - 2660 + 2763 ], "can_cancel": [ - 2660 + 2763 ], "can_close_registration": [ - 2660 + 2763 ], "can_join": [ - 2660 + 2763 ], "can_open_registration": [ - 2660 + 2763 ], "can_pause": [ - 2660 + 2763 ], "can_resume": [ - 2660 + 2763 ], "can_setup": [ - 2660 + 2763 ], "can_start": [ - 2660 + 2763 ], "created_at": [ - 2660 + 2763 ], "description": [ - 2660 + 2763 ], "discord_guild_id": [ - 2660 + 2763 ], "discord_notifications_enabled": [ - 2660 + 2763 ], "discord_notify_Canceled": [ - 2660 + 2763 ], "discord_notify_Finished": [ - 2660 + 2763 ], "discord_notify_Forfeit": [ - 2660 + 2763 ], "discord_notify_Live": [ - 2660 + 2763 ], "discord_notify_MapPaused": [ - 2660 + 2763 ], "discord_notify_PickingPlayers": [ - 2660 + 2763 ], "discord_notify_Scheduled": [ - 2660 + 2763 ], "discord_notify_Surrendered": [ - 2660 + 2763 ], "discord_notify_Tie": [ - 2660 + 2763 ], "discord_notify_Veto": [ - 2660 + 2763 ], "discord_notify_WaitingForCheckIn": [ - 2660 + 2763 ], "discord_notify_WaitingForServer": [ - 2660 + 2763 ], "discord_role_id": [ - 2660 + 2763 ], "discord_voice_enabled": [ - 2660 + 2763 ], "discord_webhook": [ - 2660 + 2763 ], "e_tournament_status": [ - 1152 + 1172 ], "has_min_teams": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "is_league": [ - 2660 + 2763 ], "is_organizer": [ - 2660 + 2763 ], "joined_tournament": [ - 2660 + 2763 ], "league_season_division": [ - 1726 + 1829 ], "match_options_id": [ - 2660 + 2763 ], "max_players_per_lineup": [ - 2660 + 2763 ], "min_players_per_lineup": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "options": [ - 2368 + 2471 ], "organizer_steam_id": [ - 2660 + 2763 ], "organizers_aggregate": [ - 4256 + 4359 ], "player_stats_aggregate": [ - 5491 + 5604 ], "results_aggregate": [ - 5440 + 5553 ], "rosters_aggregate": [ - 4430 + 4533 ], "scheduling_mode": [ - 2660 + 2763 ], "stages_aggregate": [ - 4340 + 4443 ], "start": [ - 2660 + 2763 ], "status": [ - 2660 + 2763 ], "teams_aggregate": [ - 4471 + 4574 ], "trophies_aggregate": [ - 4515 + 4618 ], "trophies_enabled": [ - 2660 + 2763 ], "trophy_configs_aggregate": [ - 4558 + 4661 ], "__typename": [ 78 @@ -105798,7 +107422,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -105812,7 +107436,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -105869,13 +107493,13 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_league": [ 3 ], "match_options_id": [ - 4641 + 4744 ], "name": [ 78 @@ -105887,10 +107511,10 @@ export default { 78 ], "start": [ - 4203 + 4306 ], "status": [ - 1144 + 1164 ], "trophies_enabled": [ 3 @@ -105915,7 +107539,7 @@ export default { }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105937,7 +107561,7 @@ export default { }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105959,7 +107583,7 @@ export default { }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -105967,7 +107591,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4630 + 4733 ], "ordering": [ 236 @@ -105981,7 +107605,7 @@ export default { 3 ], "created_at": [ - 4203 + 4306 ], "description": [ 78 @@ -106038,13 +107662,13 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "is_league": [ 3 ], "match_options_id": [ - 4641 + 4744 ], "name": [ 78 @@ -106056,10 +107680,10 @@ export default { 78 ], "start": [ - 4203 + 4306 ], "status": [ - 1144 + 1164 ], "trophies_enabled": [ 3 @@ -106084,7 +107708,7 @@ export default { }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106093,13 +107717,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4608 + 4711 ], "_set": [ - 4622 + 4725 ], "where": [ - 4606 + 4709 ], "__typename": [ 78 @@ -106121,7 +107745,7 @@ export default { }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106143,7 +107767,7 @@ export default { }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106165,7 +107789,7 @@ export default { }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106174,37 +107798,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4641 + 4744 ], "_contains": [ - 4641 + 4744 ], "_eq": [ - 4641 + 4744 ], "_gt": [ - 4641 + 4744 ], "_gte": [ - 4641 + 4744 ], "_in": [ - 4641 + 4744 ], "_is_null": [ 3 ], "_lt": [ - 4641 + 4744 ], "_lte": [ - 4641 + 4744 ], "_neq": [ - 4641 + 4744 ], "_nin": [ - 4641 + 4744 ], "__typename": [ 78 @@ -106212,31 +107836,170 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4641 + 4744 ], "_gt": [ - 4641 + 4744 ], "_gte": [ - 4641 + 4744 ], "_in": [ - 4641 + 4744 ], "_is_null": [ 3 ], "_lt": [ - 4641 + 4744 ], "_lte": [ - 4641 + 4744 ], "_neq": [ - 4641 + 4744 ], "_nin": [ - 4641 + 4744 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches": { + "event": [ + 1453 + ], + "event_id": [ + 4744 + ], + "match": [ + 2578 + ], + "match_id": [ + 4744 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_aggregate": { + "aggregate": [ + 4749 + ], + "nodes": [ + 4747 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 4754, + "[v_event_matches_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 4751 + ], + "min": [ + 4752 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_bool_exp": { + "_and": [ + 4750 + ], + "_not": [ + 4750 + ], + "_or": [ + 4750 + ], + "event": [ + 1457 + ], + "event_id": [ + 4746 + ], + "match": [ + 2587 + ], + "match_id": [ + 4746 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_max_fields": { + "event_id": [ + 4744 + ], + "match_id": [ + 4744 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_min_fields": { + "event_id": [ + 4744 + ], + "match_id": [ + 4744 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_order_by": { + "event": [ + 1466 + ], + "event_id": [ + 2763 + ], + "match": [ + 2598 + ], + "match_id": [ + 2763 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_select_column": {}, + "v_event_matches_stream_cursor_input": { + "initial_value": [ + 4756 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "v_event_matches_stream_cursor_value_input": { + "event_id": [ + 4744 + ], + "match_id": [ + 4744 ], "__typename": [ 78 @@ -106250,19 +108013,19 @@ export default { 38 ], "event": [ - 1350 + 1453 ], "event_id": [ - 4641 + 4744 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -106271,7 +108034,7 @@ export default { 38 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -106282,10 +108045,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 4658 + 4771 ], "nodes": [ - 4644 + 4757 ], "__typename": [ 78 @@ -106293,31 +108056,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 4647 + 4760 ], "corr": [ - 4648 + 4761 ], "count": [ - 4650 + 4763 ], "covar_samp": [ - 4651 + 4764 ], "max": [ - 4653 + 4766 ], "min": [ - 4654 + 4767 ], "stddev_samp": [ - 4655 + 4768 ], "sum": [ - 4656 + 4769 ], "var_samp": [ - 4657 + 4770 ], "__typename": [ 78 @@ -106325,16 +108088,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4671 + 4784 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106342,16 +108105,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4649 + 4762 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106359,10 +108122,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4672 + 4785 ], "Y": [ - 4672 + 4785 ], "__typename": [ 78 @@ -106370,13 +108133,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4670 + 4783 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ 39 @@ -106387,16 +108150,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4652 + 4765 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106404,10 +108167,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4673 + 4786 ], "Y": [ - 4673 + 4786 ], "__typename": [ 78 @@ -106415,16 +108178,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4674 + 4787 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106432,16 +108195,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4675 + 4788 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106449,16 +108212,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4676 + 4789 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106466,16 +108229,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4677 + 4790 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106483,16 +108246,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4678 + 4791 ], "distinct": [ 3 ], "filter": [ - 4663 + 4776 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -106500,13 +108263,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 4661 + 4774 ], "count": [ 38, { "columns": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -106515,31 +108278,31 @@ export default { } ], "max": [ - 4665 + 4778 ], "min": [ - 4667 + 4780 ], "stddev": [ - 4679 + 4792 ], "stddev_pop": [ - 4681 + 4794 ], "stddev_samp": [ - 4683 + 4796 ], "sum": [ - 4687 + 4800 ], "var_pop": [ - 4689 + 4802 ], "var_samp": [ - 4691 + 4804 ], "variance": [ - 4693 + 4806 ], "__typename": [ 78 @@ -106547,37 +108310,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 4662 + 4775 ], "count": [ - 2660 + 2763 ], "max": [ - 4666 + 4779 ], "min": [ - 4668 + 4781 ], "stddev": [ - 4680 + 4793 ], "stddev_pop": [ - 4682 + 4795 ], "stddev_samp": [ - 4684 + 4797 ], "sum": [ - 4688 + 4801 ], "var_pop": [ - 4690 + 4803 ], "var_samp": [ - 4692 + 4805 ], "variance": [ - 4694 + 4807 ], "__typename": [ 78 @@ -106585,7 +108348,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 4664 + 4777 ], "__typename": [ 78 @@ -106622,28 +108385,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106651,13 +108414,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 4663 + 4776 ], "_not": [ - 4663 + 4776 ], "_or": [ - 4663 + 4776 ], "assists": [ 39 @@ -106666,19 +108429,19 @@ export default { 39 ], "event": [ - 1354 + 1457 ], "event_id": [ - 4643 + 4746 ], "headshot_percentage": [ - 1379 + 1482 ], "headshots": [ 39 ], "kdr": [ - 1379 + 1482 ], "kills": [ 39 @@ -106687,7 +108450,7 @@ export default { 39 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -106704,19 +108467,19 @@ export default { 38 ], "event": [ - 1361 + 1464 ], "event_id": [ - 4641 + 4744 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -106725,7 +108488,7 @@ export default { 38 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -106742,16 +108505,16 @@ export default { 38 ], "event_id": [ - 4641 + 4744 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -106768,31 +108531,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106806,16 +108569,16 @@ export default { 38 ], "event_id": [ - 4641 + 4744 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -106832,31 +108595,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "event_id": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106864,37 +108627,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "event": [ - 1363 + 1466 ], "event_id": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106940,28 +108703,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -106998,28 +108761,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107056,28 +108819,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107085,7 +108848,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4686 + 4799 ], "ordering": [ 236 @@ -107102,16 +108865,16 @@ export default { 38 ], "event_id": [ - 4641 + 4744 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -107134,13 +108897,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -107157,28 +108920,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107215,28 +108978,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107273,28 +109036,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107331,28 +109094,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107407,10 +109170,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4697 + 4810 ], "nodes": [ - 4695 + 4808 ], "__typename": [ 78 @@ -107418,13 +109181,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4698 + 4811 ], "count": [ 38, { "columns": [ - 4703, + 4816, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -107433,31 +109196,31 @@ export default { } ], "max": [ - 4700 + 4813 ], "min": [ - 4701 + 4814 ], "stddev": [ - 4704 + 4817 ], "stddev_pop": [ - 4705 + 4818 ], "stddev_samp": [ - 4706 + 4819 ], "sum": [ - 4709 + 4822 ], "var_pop": [ - 4710 + 4823 ], "var_samp": [ - 4711 + 4824 ], "variance": [ - 4712 + 4825 ], "__typename": [ 78 @@ -107500,13 +109263,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4699 + 4812 ], "_not": [ - 4699 + 4812 ], "_or": [ - 4699 + 4812 ], "demo_free_gpu_nodes": [ 39 @@ -107626,46 +109389,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2660 + 2763 ], "demo_in_progress": [ - 2660 + 2763 ], "demo_total_gpu_nodes": [ - 2660 + 2763 ], "free_gpu_nodes": [ - 2660 + 2763 ], "free_gpu_nodes_for_batch": [ - 2660 + 2763 ], "highlights_in_progress": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "live_in_progress": [ - 2660 + 2763 ], "registered_gpu_nodes": [ - 2660 + 2763 ], "rendering_total_gpu_nodes": [ - 2660 + 2763 ], "renders_paused_for_active_match": [ - 2660 + 2763 ], "streaming_free_gpu_nodes": [ - 2660 + 2763 ], "streaming_total_gpu_nodes": [ - 2660 + 2763 ], "total_gpu_nodes": [ - 2660 + 2763 ], "__typename": [ 78 @@ -107779,7 +109542,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4708 + 4821 ], "ordering": [ 236 @@ -107983,22 +109746,22 @@ export default { 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1891 + 1994 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "losses": [ 38 @@ -108028,13 +109791,13 @@ export default { 38 ], "season_division": [ - 1709 + 1812 ], "team_season": [ - 1849 + 1952 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -108045,10 +109808,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4717 + 4830 ], "nodes": [ - 4713 + 4826 ], "__typename": [ 78 @@ -108056,7 +109819,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4716 + 4829 ], "__typename": [ 78 @@ -108064,13 +109827,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4729 + 4842 ], "distinct": [ 3 ], "filter": [ - 4722 + 4835 ], "predicate": [ 39 @@ -108081,13 +109844,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4720 + 4833 ], "count": [ 38, { "columns": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -108096,31 +109859,31 @@ export default { } ], "max": [ - 4724 + 4837 ], "min": [ - 4726 + 4839 ], "stddev": [ - 4730 + 4843 ], "stddev_pop": [ - 4732 + 4845 ], "stddev_samp": [ - 4734 + 4847 ], "sum": [ - 4738 + 4851 ], "var_pop": [ - 4740 + 4853 ], "var_samp": [ - 4742 + 4855 ], "variance": [ - 4744 + 4857 ], "__typename": [ 78 @@ -108128,37 +109891,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4721 + 4834 ], "count": [ - 2660 + 2763 ], "max": [ - 4725 + 4838 ], "min": [ - 4727 + 4840 ], "stddev": [ - 4731 + 4844 ], "stddev_pop": [ - 4733 + 4846 ], "stddev_samp": [ - 4735 + 4848 ], "sum": [ - 4739 + 4852 ], "var_pop": [ - 4741 + 4854 ], "var_samp": [ - 4743 + 4856 ], "variance": [ - 4745 + 4858 ], "__typename": [ 78 @@ -108166,7 +109929,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4723 + 4836 ], "__typename": [ 78 @@ -108215,40 +109978,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108256,13 +110019,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4722 + 4835 ], "_not": [ - 4722 + 4835 ], "_or": [ - 4722 + 4835 ], "head_to_head_match_wins": [ 39 @@ -108271,22 +110034,22 @@ export default { 39 ], "league_division_id": [ - 4643 + 4746 ], "league_season_division_id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "league_team": [ - 1894 + 1997 ], "league_team_id": [ - 4643 + 4746 ], "league_team_season_id": [ - 4643 + 4746 ], "losses": [ 39 @@ -108316,13 +110079,13 @@ export default { 39 ], "season_division": [ - 1716 + 1819 ], "team_season": [ - 1858 + 1961 ], "tournament_team_id": [ - 4643 + 4746 ], "wins": [ 39 @@ -108339,22 +110102,22 @@ export default { 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1900 + 2003 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "losses": [ 38 @@ -108384,13 +110147,13 @@ export default { 38 ], "season_division": [ - 1724 + 1827 ], "team_season": [ - 1867 + 1970 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -108407,19 +110170,19 @@ export default { 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "losses": [ 38 @@ -108449,7 +110212,7 @@ export default { 38 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -108460,58 +110223,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108525,19 +110288,19 @@ export default { 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "losses": [ 38 @@ -108567,7 +110330,7 @@ export default { 38 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -108578,58 +110341,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108637,67 +110400,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team": [ - 1902 + 2005 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "season_division": [ - 1726 + 1829 ], "team_season": [ - 1869 + 1972 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108747,40 +110510,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108829,40 +110592,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108911,40 +110674,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -108952,7 +110715,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4737 + 4850 ], "ordering": [ 236 @@ -108969,19 +110732,19 @@ export default { 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "losses": [ 38 @@ -109011,7 +110774,7 @@ export default { 38 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -109063,40 +110826,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109145,40 +110908,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109227,40 +110990,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109309,40 +111072,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "round_diff": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109356,40 +111119,40 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1891 + 1994 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "matches_played": [ 38 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -109400,10 +111163,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4760 + 4873 ], "nodes": [ - 4746 + 4859 ], "__typename": [ 78 @@ -109411,31 +111174,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4749 + 4862 ], "corr": [ - 4750 + 4863 ], "count": [ - 4752 + 4865 ], "covar_samp": [ - 4753 + 4866 ], "max": [ - 4755 + 4868 ], "min": [ - 4756 + 4869 ], "stddev_samp": [ - 4757 + 4870 ], "sum": [ - 4758 + 4871 ], "var_samp": [ - 4759 + 4872 ], "__typename": [ 78 @@ -109443,16 +111206,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4773 + 4886 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109460,16 +111223,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4751 + 4864 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109477,10 +111240,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4774 + 4887 ], "Y": [ - 4774 + 4887 ], "__typename": [ 78 @@ -109488,13 +111251,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4772 + 4885 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ 39 @@ -109505,16 +111268,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4754 + 4867 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109522,10 +111285,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4775 + 4888 ], "Y": [ - 4775 + 4888 ], "__typename": [ 78 @@ -109533,16 +111296,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4776 + 4889 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109550,16 +111313,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4777 + 4890 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109567,16 +111330,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4778 + 4891 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109584,16 +111347,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4779 + 4892 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109601,16 +111364,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4780 + 4893 ], "distinct": [ 3 ], "filter": [ - 4765 + 4878 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -109618,13 +111381,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4763 + 4876 ], "count": [ 38, { "columns": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -109633,31 +111396,31 @@ export default { } ], "max": [ - 4767 + 4880 ], "min": [ - 4769 + 4882 ], "stddev": [ - 4781 + 4894 ], "stddev_pop": [ - 4783 + 4896 ], "stddev_samp": [ - 4785 + 4898 ], "sum": [ - 4789 + 4902 ], "var_pop": [ - 4791 + 4904 ], "var_samp": [ - 4793 + 4906 ], "variance": [ - 4795 + 4908 ], "__typename": [ 78 @@ -109665,37 +111428,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4764 + 4877 ], "count": [ - 2660 + 2763 ], "max": [ - 4768 + 4881 ], "min": [ - 4770 + 4883 ], "stddev": [ - 4782 + 4895 ], "stddev_pop": [ - 4784 + 4897 ], "stddev_samp": [ - 4786 + 4899 ], "sum": [ - 4790 + 4903 ], "var_pop": [ - 4792 + 4905 ], "var_samp": [ - 4794 + 4907 ], "variance": [ - 4796 + 4909 ], "__typename": [ 78 @@ -109703,7 +111466,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4766 + 4879 ], "__typename": [ 78 @@ -109740,28 +111503,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109769,13 +111532,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4765 + 4878 ], "_not": [ - 4765 + 4878 ], "_or": [ - 4765 + 4878 ], "assists": [ 39 @@ -109784,40 +111547,40 @@ export default { 39 ], "headshot_percentage": [ - 1379 + 1482 ], "headshots": [ 39 ], "kdr": [ - 1379 + 1482 ], "kills": [ 39 ], "league_division_id": [ - 4643 + 4746 ], "league_season_division_id": [ - 4643 + 4746 ], "league_season_id": [ - 4643 + 4746 ], "league_team": [ - 1894 + 1997 ], "league_team_id": [ - 4643 + 4746 ], "league_team_season_id": [ - 4643 + 4746 ], "matches_played": [ 39 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -109834,40 +111597,40 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team": [ - 1900 + 2003 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "matches_played": [ 38 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 @@ -109884,31 +111647,31 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "matches_played": [ 38 @@ -109922,43 +111685,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -109972,31 +111735,31 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "matches_played": [ 38 @@ -110010,43 +111773,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110054,49 +111817,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "league_division_id": [ - 2660 + 2763 ], "league_season_division_id": [ - 2660 + 2763 ], "league_season_id": [ - 2660 + 2763 ], "league_team": [ - 1902 + 2005 ], "league_team_id": [ - 2660 + 2763 ], "league_team_season_id": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110142,28 +111905,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110200,28 +111963,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110258,28 +112021,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110287,7 +112050,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4788 + 4901 ], "ordering": [ 236 @@ -110304,31 +112067,31 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 ], "league_division_id": [ - 4641 + 4744 ], "league_season_division_id": [ - 4641 + 4744 ], "league_season_id": [ - 4641 + 4744 ], "league_team_id": [ - 4641 + 4744 ], "league_team_season_id": [ - 4641 + 4744 ], "matches_played": [ 38 @@ -110348,13 +112111,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -110371,28 +112134,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110429,28 +112192,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110487,28 +112250,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110545,28 +112308,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110580,19 +112343,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 ], "player": [ - 3618 + 3721 ], "steam_id": [ 180 @@ -110603,10 +112366,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4799 + 4912 ], "nodes": [ - 4797 + 4910 ], "__typename": [ 78 @@ -110614,13 +112377,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4800 + 4913 ], "count": [ 38, { "columns": [ - 4809, + 4922, "[v_match_captains_select_column!]" ], "distinct": [ @@ -110629,31 +112392,31 @@ export default { } ], "max": [ - 4804 + 4917 ], "min": [ - 4805 + 4918 ], "stddev": [ - 4811 + 4924 ], "stddev_pop": [ - 4812 + 4925 ], "stddev_samp": [ - 4813 + 4926 ], "sum": [ - 4816 + 4929 ], "var_pop": [ - 4818 + 4931 ], "var_samp": [ - 4819 + 4932 ], "variance": [ - 4820 + 4933 ], "__typename": [ 78 @@ -110669,13 +112432,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4801 + 4914 ], "_not": [ - 4801 + 4914 ], "_or": [ - 4801 + 4914 ], "captain": [ 4 @@ -110684,19 +112447,19 @@ export default { 80 ], "id": [ - 4643 + 4746 ], "lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "placeholder_name": [ 80 ], "player": [ - 3622 + 3725 ], "steam_id": [ 182 @@ -110721,19 +112484,19 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 ], "player": [ - 3629 + 3732 ], "steam_id": [ 180 @@ -110747,10 +112510,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -110767,10 +112530,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -110787,7 +112550,7 @@ export default { 38 ], "returning": [ - 4797 + 4910 ], "__typename": [ 78 @@ -110795,7 +112558,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4803 + 4916 ], "__typename": [ 78 @@ -110803,28 +112566,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2660 + 2763 ], "discord_id": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "placeholder_name": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -110839,10 +112602,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -110880,7 +112643,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4815 + 4928 ], "ordering": [ 236 @@ -110897,10 +112660,10 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "placeholder_name": [ 78 @@ -110922,13 +112685,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4802 + 4915 ], "_set": [ - 4810 + 4923 ], "where": [ - 4801 + 4914 ], "__typename": [ 78 @@ -110963,7 +112726,7 @@ export default { 38 ], "clutcher": [ - 3618 + 3721 ], "clutcher_steam_id": [ 180 @@ -110972,22 +112735,22 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "outcome": [ 78 @@ -111004,10 +112767,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4825 + 4938 ], "nodes": [ - 4821 + 4934 ], "__typename": [ 78 @@ -111015,7 +112778,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4824 + 4937 ], "__typename": [ 78 @@ -111023,13 +112786,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4837 + 4950 ], "distinct": [ 3 ], "filter": [ - 4830 + 4943 ], "predicate": [ 39 @@ -111040,13 +112803,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4828 + 4941 ], "count": [ 38, { "columns": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -111055,31 +112818,31 @@ export default { } ], "max": [ - 4832 + 4945 ], "min": [ - 4834 + 4947 ], "stddev": [ - 4838 + 4951 ], "stddev_pop": [ - 4840 + 4953 ], "stddev_samp": [ - 4842 + 4955 ], "sum": [ - 4846 + 4959 ], "var_pop": [ - 4848 + 4961 ], "var_samp": [ - 4850 + 4963 ], "variance": [ - 4852 + 4965 ], "__typename": [ 78 @@ -111087,37 +112850,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4829 + 4942 ], "count": [ - 2660 + 2763 ], "max": [ - 4833 + 4946 ], "min": [ - 4835 + 4948 ], "stddev": [ - 4839 + 4952 ], "stddev_pop": [ - 4841 + 4954 ], "stddev_samp": [ - 4843 + 4956 ], "sum": [ - 4847 + 4960 ], "var_pop": [ - 4849 + 4962 ], "var_samp": [ - 4851 + 4964 ], "variance": [ - 4853 + 4966 ], "__typename": [ 78 @@ -111125,7 +112888,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4831 + 4944 ], "__typename": [ 78 @@ -111150,16 +112913,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111167,19 +112930,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4830 + 4943 ], "_not": [ - 4830 + 4943 ], "_or": [ - 4830 + 4943 ], "against_count": [ 39 ], "clutcher": [ - 3622 + 3725 ], "clutcher_steam_id": [ 182 @@ -111188,22 +112951,22 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "outcome": [ 80 @@ -111223,7 +112986,7 @@ export default { 38 ], "clutcher": [ - 3629 + 3732 ], "clutcher_steam_id": [ 180 @@ -111232,22 +112995,22 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "outcome": [ 78 @@ -111273,13 +113036,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "outcome": [ 78 @@ -111296,31 +113059,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "outcome": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111337,13 +113100,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "outcome": [ 78 @@ -111360,31 +113123,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "outcome": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111392,43 +113155,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher": [ - 3631 + 3734 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "outcome": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111454,16 +113217,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111488,16 +113251,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111522,16 +113285,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111539,7 +113302,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4845 + 4958 ], "ordering": [ 236 @@ -111559,13 +113322,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "outcome": [ 78 @@ -111599,16 +113362,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111633,16 +113396,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111667,16 +113430,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111701,16 +113464,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2660 + 2763 ], "clutcher_steam_id": [ - 2660 + 2763 ], "kills_in_clutch": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -111727,16 +113490,16 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "victim_side": [ 78 @@ -111753,10 +113516,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4856 + 4969 ], "nodes": [ - 4854 + 4967 ], "__typename": [ 78 @@ -111764,13 +113527,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4857 + 4970 ], "count": [ 38, { "columns": [ - 4862, + 4975, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -111779,31 +113542,31 @@ export default { } ], "max": [ - 4859 + 4972 ], "min": [ - 4860 + 4973 ], "stddev": [ - 4863 + 4976 ], "stddev_pop": [ - 4864 + 4977 ], "stddev_samp": [ - 4865 + 4978 ], "sum": [ - 4868 + 4981 ], "var_pop": [ - 4869 + 4982 ], "var_samp": [ - 4870 + 4983 ], "variance": [ - 4871 + 4984 ], "__typename": [ 78 @@ -111825,13 +113588,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4858 + 4971 ], "_not": [ - 4858 + 4971 ], "_or": [ - 4858 + 4971 ], "killer_side": [ 80 @@ -111843,16 +113606,16 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "victim_side": [ 80 @@ -111878,10 +113641,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "victim_side": [ 78 @@ -111907,10 +113670,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "victim_side": [ 78 @@ -111927,34 +113690,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2660 + 2763 ], "killer_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "victim_side": [ - 2660 + 2763 ], "victim_steam_id": [ - 2660 + 2763 ], "weapon": [ - 2660 + 2763 ], "__typename": [ 78 @@ -112005,7 +113768,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4867 + 4980 ], "ordering": [ 236 @@ -112025,10 +113788,10 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "victim_side": [ 78 @@ -112101,22 +113864,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -112136,10 +113899,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4874 + 4987 ], "nodes": [ - 4872 + 4985 ], "__typename": [ 78 @@ -112147,13 +113910,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4875 + 4988 ], "count": [ 38, { "columns": [ - 4880, + 4993, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -112162,31 +113925,31 @@ export default { } ], "max": [ - 4877 + 4990 ], "min": [ - 4878 + 4991 ], "stddev": [ - 4881 + 4994 ], "stddev_pop": [ - 4882 + 4995 ], "stddev_samp": [ - 4883 + 4996 ], "sum": [ - 4886 + 4999 ], "var_pop": [ - 4887 + 5000 ], "var_samp": [ - 4888 + 5001 ], "variance": [ - 4889 + 5002 ], "__typename": [ 78 @@ -112205,31 +113968,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4876 + 4989 ], "_not": [ - 4876 + 4989 ], "_or": [ - 4876 + 4989 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "matchup": [ 80 @@ -112249,13 +114012,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -112275,13 +114038,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -112301,34 +114064,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "matchup": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -112370,7 +114133,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4885 + 4998 ], "ordering": [ 236 @@ -112381,13 +114144,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -112463,22 +114226,22 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "opening_attempts": [ 38 @@ -112519,10 +114282,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 4892 + 5005 ], "nodes": [ - 4890 + 5003 ], "__typename": [ 78 @@ -112530,13 +114293,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 4893 + 5006 ], "count": [ 38, { "columns": [ - 4898, + 5011, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -112545,31 +114308,31 @@ export default { } ], "max": [ - 4895 + 5008 ], "min": [ - 4896 + 5009 ], "stddev": [ - 4899 + 5012 ], "stddev_pop": [ - 4900 + 5013 ], "stddev_samp": [ - 4901 + 5014 ], "sum": [ - 4904 + 5017 ], "var_pop": [ - 4905 + 5018 ], "var_samp": [ - 4906 + 5019 ], "variance": [ - 4907 + 5020 ], "__typename": [ 78 @@ -112624,13 +114387,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 4894 + 5007 ], "_not": [ - 4894 + 5007 ], "_or": [ - 4894 + 5007 ], "man_adv_rounds": [ 39 @@ -112645,22 +114408,22 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "opening_attempts": [ 39 @@ -112713,13 +114476,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "opening_attempts": [ 38 @@ -112772,13 +114535,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "opening_attempts": [ 38 @@ -112819,67 +114582,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2660 + 2763 ], "man_adv_wins": [ - 2660 + 2763 ], "man_dis_rounds": [ - 2660 + 2763 ], "man_dis_wins": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "opening_attempts": [ - 2660 + 2763 ], "opening_wins": [ - 2660 + 2763 ], "pistol_rounds": [ - 2660 + 2763 ], "pistol_wins": [ - 2660 + 2763 ], "round_wins": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "won_buy_eco": [ - 2660 + 2763 ], "won_buy_force": [ - 2660 + 2763 ], "won_buy_full": [ - 2660 + 2763 ], "won_buy_pistol": [ - 2660 + 2763 ], "__typename": [ 78 @@ -113029,7 +114792,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 4903 + 5016 ], "ordering": [ 236 @@ -113052,13 +114815,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "opening_attempts": [ 38 @@ -113290,7 +115053,7 @@ export default { 3 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113301,10 +115064,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 4910 + 5023 ], "nodes": [ - 4908 + 5021 ], "__typename": [ 78 @@ -113312,13 +115075,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 4911 + 5024 ], "count": [ 38, { "columns": [ - 4919, + 5032, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -113327,31 +115090,31 @@ export default { } ], "max": [ - 4915 + 5028 ], "min": [ - 4916 + 5029 ], "stddev": [ - 4921 + 5034 ], "stddev_pop": [ - 4922 + 5035 ], "stddev_samp": [ - 4923 + 5036 ], "sum": [ - 4926 + 5039 ], "var_pop": [ - 4928 + 5041 ], "var_samp": [ - 4929 + 5042 ], "variance": [ - 4930 + 5043 ], "__typename": [ 78 @@ -113367,19 +115130,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 4912 + 5025 ], "_not": [ - 4912 + 5025 ], "_or": [ - 4912 + 5025 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4643 + 4746 ], "round": [ 39 @@ -113401,7 +115164,7 @@ export default { 3 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113412,7 +115175,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113423,7 +115186,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113437,7 +115200,7 @@ export default { 38 ], "returning": [ - 4908 + 5021 ], "__typename": [ 78 @@ -113445,13 +115208,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -113463,7 +115226,7 @@ export default { 3 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113498,7 +115261,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 4925 + 5038 ], "ordering": [ 236 @@ -113512,7 +115275,7 @@ export default { 3 ], "match_map_id": [ - 4641 + 4744 ], "round": [ 38 @@ -113531,13 +115294,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 4913 + 5026 ], "_set": [ - 4920 + 5033 ], "where": [ - 4912 + 5025 ], "__typename": [ 78 @@ -113575,28 +115338,28 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 ], "player": [ - 3618 + 3721 ], "rounds": [ 38 @@ -113613,10 +115376,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 4933 + 5046 ], "nodes": [ - 4931 + 5044 ], "__typename": [ 78 @@ -113624,13 +115387,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 4934 + 5047 ], "count": [ 38, { "columns": [ - 4939, + 5052, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -113639,31 +115402,31 @@ export default { } ], "max": [ - 4936 + 5049 ], "min": [ - 4937 + 5050 ], "stddev": [ - 4940 + 5053 ], "stddev_pop": [ - 4941 + 5054 ], "stddev_samp": [ - 4942 + 5055 ], "sum": [ - 4945 + 5058 ], "var_pop": [ - 4946 + 5059 ], "var_samp": [ - 4947 + 5060 ], "variance": [ - 4948 + 5061 ], "__typename": [ 78 @@ -113688,13 +115451,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 4935 + 5048 ], "_not": [ - 4935 + 5048 ], "_or": [ - 4935 + 5048 ], "deaths": [ 39 @@ -113703,28 +115466,28 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "matchup": [ 80 ], "player": [ - 3622 + 3725 ], "rounds": [ 39 @@ -113747,13 +115510,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -113779,13 +115542,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -113805,43 +115568,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "matchup": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "rounds": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -113901,7 +115664,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 4944 + 5057 ], "ordering": [ 236 @@ -113918,13 +115681,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "matchup": [ 78 @@ -114018,25 +115781,25 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2155 + 2258 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "side": [ 78 @@ -114056,10 +115819,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 4953 + 5066 ], "nodes": [ - 4949 + 5062 ], "__typename": [ 78 @@ -114067,7 +115830,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 4952 + 5065 ], "__typename": [ 78 @@ -114075,13 +115838,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 4965 + 5078 ], "distinct": [ 3 ], "filter": [ - 4958 + 5071 ], "predicate": [ 39 @@ -114092,13 +115855,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 4956 + 5069 ], "count": [ 38, { "columns": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -114107,31 +115870,31 @@ export default { } ], "max": [ - 4960 + 5073 ], "min": [ - 4962 + 5075 ], "stddev": [ - 4966 + 5079 ], "stddev_pop": [ - 4968 + 5081 ], "stddev_samp": [ - 4970 + 5083 ], "sum": [ - 4974 + 5087 ], "var_pop": [ - 4976 + 5089 ], "var_samp": [ - 4978 + 5091 ], "variance": [ - 4980 + 5093 ], "__typename": [ 78 @@ -114139,37 +115902,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 4957 + 5070 ], "count": [ - 2660 + 2763 ], "max": [ - 4961 + 5074 ], "min": [ - 4963 + 5076 ], "stddev": [ - 4967 + 5080 ], "stddev_pop": [ - 4969 + 5082 ], "stddev_samp": [ - 4971 + 5084 ], "sum": [ - 4975 + 5088 ], "var_pop": [ - 4977 + 5090 ], "var_samp": [ - 4979 + 5092 ], "variance": [ - 4981 + 5094 ], "__typename": [ 78 @@ -114177,7 +115940,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 4959 + 5072 ], "__typename": [ 78 @@ -114205,19 +115968,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114225,13 +115988,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 4958 + 5071 ], "_not": [ - 4958 + 5071 ], "_or": [ - 4958 + 5071 ], "attempts": [ 39 @@ -114240,25 +116003,25 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_lineup": [ - 2164 + 2267 ], "match_lineup_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "side": [ 80 @@ -114284,25 +116047,25 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_lineup": [ - 2173 + 2276 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "side": [ 78 @@ -114328,13 +116091,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "side": [ 78 @@ -114354,31 +116117,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114392,13 +116155,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "side": [ 78 @@ -114418,31 +116181,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "side": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114450,43 +116213,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_lineup": [ - 2175 + 2278 ], "match_lineup_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "side": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114515,19 +116278,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114555,19 +116318,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114595,19 +116358,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114615,7 +116378,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 4973 + 5086 ], "ordering": [ 236 @@ -114632,13 +116395,13 @@ export default { 38 ], "match_id": [ - 4641 + 4744 ], "match_lineup_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "side": [ 78 @@ -114678,19 +116441,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114718,19 +116481,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114758,19 +116521,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114798,19 +116561,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "traded_deaths": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -114824,10 +116587,10 @@ export default { 180 ], "nemsis": [ - 3618 + 3721 ], "player": [ - 3618 + 3721 ], "victim_id": [ 180 @@ -114838,10 +116601,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 4984 + 5097 ], "nodes": [ - 4982 + 5095 ], "__typename": [ 78 @@ -114849,13 +116612,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 4985 + 5098 ], "count": [ 38, { "columns": [ - 4990, + 5103, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -114864,31 +116627,31 @@ export default { } ], "max": [ - 4987 + 5100 ], "min": [ - 4988 + 5101 ], "stddev": [ - 4991 + 5104 ], "stddev_pop": [ - 4992 + 5105 ], "stddev_samp": [ - 4993 + 5106 ], "sum": [ - 4996 + 5109 ], "var_pop": [ - 4997 + 5110 ], "var_samp": [ - 4998 + 5111 ], "variance": [ - 4999 + 5112 ], "__typename": [ 78 @@ -114910,13 +116673,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 4986 + 5099 ], "_not": [ - 4986 + 5099 ], "_or": [ - 4986 + 5099 ], "attacker_id": [ 182 @@ -114925,10 +116688,10 @@ export default { 182 ], "nemsis": [ - 3622 + 3725 ], "player": [ - 3622 + 3725 ], "victim_id": [ 182 @@ -114967,19 +116730,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2660 + 2763 ], "kill_count": [ - 2660 + 2763 ], "nemsis": [ - 3631 + 3734 ], "player": [ - 3631 + 3734 ], "victim_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -115030,7 +116793,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 4995 + 5108 ], "ordering": [ 236 @@ -115114,7 +116877,7 @@ export default { 180 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 @@ -115131,10 +116894,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5002 + 5115 ], "nodes": [ - 5000 + 5113 ], "__typename": [ 78 @@ -115142,13 +116905,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5003 + 5116 ], "count": [ 38, { "columns": [ - 5008, + 5121, "[v_player_damage_select_column!]" ], "distinct": [ @@ -115157,31 +116920,31 @@ export default { } ], "max": [ - 5005 + 5118 ], "min": [ - 5006 + 5119 ], "stddev": [ - 5009 + 5122 ], "stddev_pop": [ - 5010 + 5123 ], "stddev_samp": [ - 5011 + 5124 ], "sum": [ - 5014 + 5127 ], "var_pop": [ - 5015 + 5128 ], "var_samp": [ - 5016 + 5129 ], "variance": [ - 5017 + 5130 ], "__typename": [ 78 @@ -115206,19 +116969,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5004 + 5117 ], "_not": [ - 5004 + 5117 ], "_or": [ - 5004 + 5117 ], "avg_damage_per_round": [ 182 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 @@ -115269,19 +117032,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "total_damage": [ - 2660 + 2763 ], "total_rounds": [ - 2660 + 2763 ], "__typename": [ 78 @@ -115341,7 +117104,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5013 + 5126 ], "ordering": [ 236 @@ -115437,7 +117200,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -115449,7 +117212,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -115458,16 +117221,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -115479,22 +117242,22 @@ export default { 38 ], "match": [ - 2475 + 2578 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_name": [ 78 @@ -115503,16 +117266,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ 78 @@ -115526,10 +117289,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5032 + 5145 ], "nodes": [ - 5018 + 5131 ], "__typename": [ 78 @@ -115537,31 +117300,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5021 + 5134 ], "corr": [ - 5022 + 5135 ], "count": [ - 5024 + 5137 ], "covar_samp": [ - 5025 + 5138 ], "max": [ - 5027 + 5140 ], "min": [ - 5028 + 5141 ], "stddev_samp": [ - 5029 + 5142 ], "sum": [ - 5030 + 5143 ], "var_samp": [ - 5031 + 5144 ], "__typename": [ 78 @@ -115569,16 +117332,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5045 + 5158 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115586,16 +117349,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5023 + 5136 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115603,10 +117366,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5046 + 5159 ], "Y": [ - 5046 + 5159 ], "__typename": [ 78 @@ -115614,13 +117377,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5044 + 5157 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ 39 @@ -115631,16 +117394,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5026 + 5139 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115648,10 +117411,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5047 + 5160 ], "Y": [ - 5047 + 5160 ], "__typename": [ 78 @@ -115659,16 +117422,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5048 + 5161 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115676,16 +117439,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5049 + 5162 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115693,16 +117456,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5050 + 5163 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115710,16 +117473,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5051 + 5164 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115727,16 +117490,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5052 + 5165 ], "distinct": [ 3 ], "filter": [ - 5037 + 5150 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -115744,13 +117507,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5035 + 5148 ], "count": [ 38, { "columns": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "distinct": [ @@ -115759,31 +117522,31 @@ export default { } ], "max": [ - 5039 + 5152 ], "min": [ - 5041 + 5154 ], "stddev": [ - 5053 + 5166 ], "stddev_pop": [ - 5055 + 5168 ], "stddev_samp": [ - 5057 + 5170 ], "sum": [ - 5061 + 5174 ], "var_pop": [ - 5063 + 5176 ], "var_samp": [ - 5065 + 5178 ], "variance": [ - 5067 + 5180 ], "__typename": [ 78 @@ -115791,37 +117554,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5036 + 5149 ], "count": [ - 2660 + 2763 ], "max": [ - 5040 + 5153 ], "min": [ - 5042 + 5155 ], "stddev": [ - 5054 + 5167 ], "stddev_pop": [ - 5056 + 5169 ], "stddev_samp": [ - 5058 + 5171 ], "sum": [ - 5062 + 5175 ], "var_pop": [ - 5064 + 5177 ], "var_samp": [ - 5066 + 5179 ], "variance": [ - 5068 + 5181 ], "__typename": [ 78 @@ -115829,7 +117592,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5038 + 5151 ], "__typename": [ 78 @@ -115905,67 +117668,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -115973,16 +117736,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5037 + 5150 ], "_not": [ - 5037 + 5150 ], "_or": [ - 5037 + 5150 ], "actual_score": [ - 1379 + 1482 ], "assists": [ 39 @@ -115994,7 +117757,7 @@ export default { 39 ], "damage_percent": [ - 1379 + 1482 ], "deaths": [ 39 @@ -116003,16 +117766,16 @@ export default { 39 ], "expected_score": [ - 1379 + 1482 ], "impact": [ - 1379 + 1482 ], "k_factor": [ 39 ], "kda": [ - 1379 + 1482 ], "kills": [ 39 @@ -116024,22 +117787,22 @@ export default { 39 ], "match": [ - 2484 + 2587 ], "match_created_at": [ - 4204 + 4307 ], "match_id": [ - 4643 + 4746 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1379 + 1482 ], "performance_multiplier": [ - 1379 + 1482 ], "player_name": [ 80 @@ -116048,16 +117811,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1379 + 1482 ], "season_id": [ - 4643 + 4746 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1379 + 1482 ], "type": [ 80 @@ -116071,7 +117834,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -116083,7 +117846,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -116092,16 +117855,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -116113,22 +117876,22 @@ export default { 38 ], "match": [ - 2493 + 2596 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_name": [ 78 @@ -116137,16 +117900,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ 78 @@ -116160,7 +117923,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -116172,7 +117935,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -116181,16 +117944,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -116202,19 +117965,19 @@ export default { 38 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_name": [ 78 @@ -116223,16 +117986,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ 78 @@ -116246,85 +118009,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "match_created_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_result": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_name": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "season_id": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -116332,7 +118095,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -116344,7 +118107,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -116353,16 +118116,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -116374,19 +118137,19 @@ export default { 38 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_name": [ 78 @@ -116395,16 +118158,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ 78 @@ -116418,85 +118181,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "match_created_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_result": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_name": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "season_id": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -116504,88 +118267,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_created_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_result": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_name": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "season_id": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -116670,67 +118433,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -116806,67 +118569,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -116942,67 +118705,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117010,7 +118773,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5060 + 5173 ], "ordering": [ 236 @@ -117021,7 +118784,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -117033,7 +118796,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -117042,16 +118805,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -117063,19 +118826,19 @@ export default { 38 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_name": [ 78 @@ -117084,16 +118847,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "season_id": [ - 4641 + 4744 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "type": [ 78 @@ -117107,7 +118870,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1378 + 1481 ], "assists": [ 38 @@ -117119,7 +118882,7 @@ export default { 38 ], "damage_percent": [ - 1378 + 1481 ], "deaths": [ 38 @@ -117128,16 +118891,16 @@ export default { 38 ], "expected_score": [ - 1378 + 1481 ], "impact": [ - 1378 + 1481 ], "k_factor": [ 38 ], "kda": [ - 1378 + 1481 ], "kills": [ 38 @@ -117149,22 +118912,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1378 + 1481 ], "performance_multiplier": [ - 1378 + 1481 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1378 + 1481 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1378 + 1481 ], "updated_elo": [ 38 @@ -117175,67 +118938,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117311,67 +119074,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117447,67 +119210,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117583,67 +119346,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2660 + 2763 ], "assists": [ - 2660 + 2763 ], "current_elo": [ - 2660 + 2763 ], "damage": [ - 2660 + 2763 ], "damage_percent": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "elo_change": [ - 2660 + 2763 ], "expected_score": [ - 2660 + 2763 ], "impact": [ - 2660 + 2763 ], "k_factor": [ - 2660 + 2763 ], "kda": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map_losses": [ - 2660 + 2763 ], "map_wins": [ - 2660 + 2763 ], "opponent_team_elo_avg": [ - 2660 + 2763 ], "performance_multiplier": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "player_team_elo_avg": [ - 2660 + 2763 ], "series_multiplier": [ - 2660 + 2763 ], "team_avg_kda": [ - 2660 + 2763 ], "updated_elo": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117651,19 +119414,19 @@ export default { }, "v_player_map_losses": { "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -117674,10 +119437,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5071 + 5184 ], "nodes": [ - 5069 + 5182 ], "__typename": [ 78 @@ -117685,13 +119448,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5072 + 5185 ], "count": [ 38, { "columns": [ - 5077, + 5190, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -117700,31 +119463,31 @@ export default { } ], "max": [ - 5074 + 5187 ], "min": [ - 5075 + 5188 ], "stddev": [ - 5078 + 5191 ], "stddev_pop": [ - 5079 + 5192 ], "stddev_samp": [ - 5080 + 5193 ], "sum": [ - 5083 + 5196 ], "var_pop": [ - 5084 + 5197 ], "var_samp": [ - 5085 + 5198 ], "variance": [ - 5086 + 5199 ], "__typename": [ 78 @@ -117740,28 +119503,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5073 + 5186 ], "_not": [ - 5073 + 5186 ], "_or": [ - 5073 + 5186 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "started_at": [ - 4204 + 4307 ], "steam_id": [ 182 @@ -117772,13 +119535,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -117789,13 +119552,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -117806,22 +119569,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -117854,7 +119617,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5082 + 5195 ], "ordering": [ 236 @@ -117865,13 +119628,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -117914,19 +119677,19 @@ export default { }, "v_player_map_wins": { "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -117937,10 +119700,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5089 + 5202 ], "nodes": [ - 5087 + 5200 ], "__typename": [ 78 @@ -117948,13 +119711,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5090 + 5203 ], "count": [ 38, { "columns": [ - 5095, + 5208, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -117963,31 +119726,31 @@ export default { } ], "max": [ - 5092 + 5205 ], "min": [ - 5093 + 5206 ], "stddev": [ - 5096 + 5209 ], "stddev_pop": [ - 5097 + 5210 ], "stddev_samp": [ - 5098 + 5211 ], "sum": [ - 5101 + 5214 ], "var_pop": [ - 5102 + 5215 ], "var_samp": [ - 5103 + 5216 ], "variance": [ - 5104 + 5217 ], "__typename": [ 78 @@ -118003,28 +119766,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5091 + 5204 ], "_not": [ - 5091 + 5204 ], "_or": [ - 5091 + 5204 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "started_at": [ - 4204 + 4307 ], "steam_id": [ 182 @@ -118035,13 +119798,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -118052,13 +119815,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -118069,22 +119832,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "started_at": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -118117,7 +119880,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5100 + 5213 ], "ordering": [ 236 @@ -118128,13 +119891,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "started_at": [ - 4203 + 4306 ], "steam_id": [ 180 @@ -118177,13 +119940,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3618 + 3721 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3618 + 3721 ], "attacker_steam_id": [ 180 @@ -118204,10 +119967,10 @@ export default { 180 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -118215,10 +119978,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5107 + 5220 ], "nodes": [ - 5105 + 5218 ], "__typename": [ 78 @@ -118226,13 +119989,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5108 + 5221 ], "count": [ 38, { "columns": [ - 5113, + 5226, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -118241,31 +120004,31 @@ export default { } ], "max": [ - 5110 + 5223 ], "min": [ - 5111 + 5224 ], "stddev": [ - 5114 + 5227 ], "stddev_pop": [ - 5115 + 5228 ], "stddev_samp": [ - 5116 + 5229 ], "sum": [ - 5119 + 5232 ], "var_pop": [ - 5120 + 5233 ], "var_samp": [ - 5121 + 5234 ], "variance": [ - 5122 + 5235 ], "__typename": [ 78 @@ -118299,22 +120062,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5109 + 5222 ], "_not": [ - 5109 + 5222 ], "_or": [ - 5109 + 5222 ], "attacked": [ - 3622 + 3725 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3622 + 3725 ], "attacker_steam_id": [ 182 @@ -118335,10 +120098,10 @@ export default { 182 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -118367,7 +120130,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -118396,7 +120159,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -118404,37 +120167,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3631 + 3734 ], "attacked_steam_id": [ - 2660 + 2763 ], "attacker": [ - 3631 + 3734 ], "attacker_steam_id": [ - 2660 + 2763 ], "damage_dealt": [ - 2660 + 2763 ], "flash_count": [ - 2660 + 2763 ], "headshot_kills": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -118521,7 +120284,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5118 + 5231 ], "ordering": [ 236 @@ -118553,7 +120316,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -118665,37 +120428,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "rounds_played": [ 38 @@ -118709,10 +120472,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5127 + 5240 ], "nodes": [ - 5123 + 5236 ], "__typename": [ 78 @@ -118720,7 +120483,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5126 + 5239 ], "__typename": [ 78 @@ -118728,13 +120491,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5141 + 5254 ], "distinct": [ 3 ], "filter": [ - 5132 + 5245 ], "predicate": [ 39 @@ -118745,13 +120508,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5130 + 5243 ], "count": [ 38, { "columns": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -118760,31 +120523,31 @@ export default { } ], "max": [ - 5135 + 5248 ], "min": [ - 5137 + 5250 ], "stddev": [ - 5143 + 5256 ], "stddev_pop": [ - 5145 + 5258 ], "stddev_samp": [ - 5147 + 5260 ], "sum": [ - 5151 + 5264 ], "var_pop": [ - 5154 + 5267 ], "var_samp": [ - 5156 + 5269 ], "variance": [ - 5158 + 5271 ], "__typename": [ 78 @@ -118792,37 +120555,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5131 + 5244 ], "count": [ - 2660 + 2763 ], "max": [ - 5136 + 5249 ], "min": [ - 5138 + 5251 ], "stddev": [ - 5144 + 5257 ], "stddev_pop": [ - 5146 + 5259 ], "stddev_samp": [ - 5148 + 5261 ], "sum": [ - 5152 + 5265 ], "var_pop": [ - 5155 + 5268 ], "var_samp": [ - 5157 + 5270 ], "variance": [ - 5159 + 5272 ], "__typename": [ 78 @@ -118830,7 +120593,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5134 + 5247 ], "__typename": [ 78 @@ -118867,28 +120630,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -118896,46 +120659,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5132 + 5245 ], "_not": [ - 5132 + 5245 ], "_or": [ - 5132 + 5245 ], "adr": [ - 2659 + 2762 ], "apr": [ - 2659 + 2762 ], "dpr": [ - 2659 + 2762 ], "hltv_rating": [ - 2659 + 2762 ], "kast_pct": [ - 2659 + 2762 ], "kpr": [ - 2659 + 2762 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "rounds_played": [ 39 @@ -118949,22 +120712,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "rounds_played": [ 38 @@ -118978,37 +120741,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match": [ - 2493 + 2596 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2331 + 2434 ], "match_map_id": [ - 4641 + 4744 ], "player": [ - 3629 + 3732 ], "rounds_played": [ 38 @@ -119022,28 +120785,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -119057,34 +120820,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119092,28 +120855,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -119127,34 +120890,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_map_id": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119165,7 +120928,7 @@ export default { 38 ], "returning": [ - 5123 + 5236 ], "__typename": [ 78 @@ -119173,43 +120936,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119218,28 +120981,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -119282,28 +121045,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119340,28 +121103,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119398,28 +121161,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119427,7 +121190,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5150 + 5263 ], "ordering": [ 236 @@ -119438,28 +121201,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -119473,22 +121236,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2658 + 2761 ], "apr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "rounds_played": [ 38 @@ -119502,28 +121265,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119531,13 +121294,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5133 + 5246 ], "_set": [ - 5142 + 5255 ], "where": [ - 5132 + 5245 ], "__typename": [ 78 @@ -119574,28 +121337,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119632,28 +121395,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119690,28 +121453,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2660 + 2763 ], "apr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -119719,52 +121482,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2658 + 2761 ], "awp_kills": [ 38 ], "awp_share": [ - 2658 + 2761 ], "deaths": [ 38 ], "dpr": [ - 2658 + 2761 ], "entry_rate": [ - 2658 + 2761 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kills": [ 38 ], "kpr": [ - 2658 + 2761 ], "lineup_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "match_map": [ - 2313 + 2416 ], "match_map_id": [ - 4641 + 4744 ], "open_deaths": [ 38 @@ -119776,7 +121539,7 @@ export default { 38 ], "player": [ - 3618 + 3721 ], "role": [ 78 @@ -119788,7 +121551,7 @@ export default { 180 ], "support_idx": [ - 2658 + 2761 ], "total_kills": [ 38 @@ -119808,10 +121571,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5162 + 5275 ], "nodes": [ - 5160 + 5273 ], "__typename": [ 78 @@ -119819,13 +121582,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5163 + 5276 ], "count": [ 38, { "columns": [ - 5168, + 5281, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -119834,31 +121597,31 @@ export default { } ], "max": [ - 5165 + 5278 ], "min": [ - 5166 + 5279 ], "stddev": [ - 5169 + 5282 ], "stddev_pop": [ - 5170 + 5283 ], "stddev_samp": [ - 5171 + 5284 ], "sum": [ - 5174 + 5287 ], "var_pop": [ - 5175 + 5288 ], "var_samp": [ - 5176 + 5289 ], "variance": [ - 5177 + 5290 ], "__typename": [ 78 @@ -119934,61 +121697,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5164 + 5277 ], "_not": [ - 5164 + 5277 ], "_or": [ - 5164 + 5277 ], "adr": [ - 2659 + 2762 ], "awp_kills": [ 39 ], "awp_share": [ - 2659 + 2762 ], "deaths": [ 39 ], "dpr": [ - 2659 + 2762 ], "entry_rate": [ - 2659 + 2762 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2659 + 2762 ], "kast_pct": [ - 2659 + 2762 ], "kills": [ 39 ], "kpr": [ - 2659 + 2762 ], "lineup_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "match_map": [ - 2322 + 2425 ], "match_map_id": [ - 4643 + 4746 ], "open_deaths": [ 39 @@ -120000,7 +121763,7 @@ export default { 39 ], "player": [ - 3622 + 3725 ], "role": [ 80 @@ -120012,7 +121775,7 @@ export default { 182 ], "support_idx": [ - 2659 + 2762 ], "total_kills": [ 39 @@ -120032,46 +121795,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2658 + 2761 ], "awp_kills": [ 38 ], "awp_share": [ - 2658 + 2761 ], "deaths": [ 38 ], "dpr": [ - 2658 + 2761 ], "entry_rate": [ - 2658 + 2761 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kills": [ 38 ], "kpr": [ - 2658 + 2761 ], "lineup_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "open_deaths": [ 38 @@ -120092,7 +121855,7 @@ export default { 180 ], "support_idx": [ - 2658 + 2761 ], "total_kills": [ 38 @@ -120112,46 +121875,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2658 + 2761 ], "awp_kills": [ 38 ], "awp_share": [ - 2658 + 2761 ], "deaths": [ 38 ], "dpr": [ - 2658 + 2761 ], "entry_rate": [ - 2658 + 2761 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kills": [ 38 ], "kpr": [ - 2658 + 2761 ], "lineup_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "open_deaths": [ 38 @@ -120172,7 +121935,7 @@ export default { 180 ], "support_idx": [ - 2658 + 2761 ], "total_kills": [ 38 @@ -120192,88 +121955,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2660 + 2763 ], "awp_kills": [ - 2660 + 2763 ], "awp_share": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "entry_rate": [ - 2660 + 2763 ], "flash_assists": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "lineup_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "match_map": [ - 2333 + 2436 ], "match_map_id": [ - 2660 + 2763 ], "open_deaths": [ - 2660 + 2763 ], "open_kills": [ - 2660 + 2763 ], "opening_attempts": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "role": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "support_idx": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "trade_kill_successes": [ - 2660 + 2763 ], "traded_death_successes": [ - 2660 + 2763 ], "util_damage": [ - 2660 + 2763 ], "__typename": [ 78 @@ -120486,7 +122249,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5173 + 5286 ], "ordering": [ 236 @@ -120497,46 +122260,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2658 + 2761 ], "awp_kills": [ 38 ], "awp_share": [ - 2658 + 2761 ], "deaths": [ 38 ], "dpr": [ - 2658 + 2761 ], "entry_rate": [ - 2658 + 2761 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kills": [ 38 ], "kpr": [ - 2658 + 2761 ], "lineup_id": [ - 4641 + 4744 ], "match_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641 + 4744 ], "open_deaths": [ 38 @@ -120557,7 +122320,7 @@ export default { 180 ], "support_idx": [ - 2658 + 2761 ], "total_kills": [ 38 @@ -120577,37 +122340,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2658 + 2761 ], "awp_kills": [ 38 ], "awp_share": [ - 2658 + 2761 ], "deaths": [ 38 ], "dpr": [ - 2658 + 2761 ], "entry_rate": [ - 2658 + 2761 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kills": [ 38 ], "kpr": [ - 2658 + 2761 ], "open_deaths": [ 38 @@ -120625,7 +122388,7 @@ export default { 180 ], "support_idx": [ - 2658 + 2761 ], "total_kills": [ 38 @@ -120858,19 +122621,19 @@ export default { 38 ], "map": [ - 1993 + 2096 ], "map_id": [ - 4641 + 4744 ], "match": [ - 2475 + 2578 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 @@ -120890,10 +122653,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5180 + 5293 ], "nodes": [ - 5178 + 5291 ], "__typename": [ 78 @@ -120901,13 +122664,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5181 + 5294 ], "count": [ 38, { "columns": [ - 5186, + 5299, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -120916,31 +122679,31 @@ export default { } ], "max": [ - 5183 + 5296 ], "min": [ - 5184 + 5297 ], "stddev": [ - 5187 + 5300 ], "stddev_pop": [ - 5188 + 5301 ], "stddev_samp": [ - 5189 + 5302 ], "sum": [ - 5192 + 5305 ], "var_pop": [ - 5193 + 5306 ], "var_samp": [ - 5194 + 5307 ], "variance": [ - 5195 + 5308 ], "__typename": [ 78 @@ -120965,13 +122728,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5182 + 5295 ], "_not": [ - 5182 + 5295 ], "_or": [ - 5182 + 5295 ], "assists": [ 39 @@ -120983,19 +122746,19 @@ export default { 39 ], "map": [ - 2002 + 2105 ], "map_id": [ - 4643 + 4746 ], "match": [ - 2484 + 2587 ], "match_created_at": [ - 4204 + 4307 ], "match_id": [ - 4643 + 4746 ], "match_result": [ 80 @@ -121024,13 +122787,13 @@ export default { 38 ], "map_id": [ - 4641 + 4744 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 @@ -121059,13 +122822,13 @@ export default { 38 ], "map_id": [ - 4641 + 4744 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 @@ -121085,40 +122848,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "map": [ - 2012 + 2115 ], "map_id": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_created_at": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "match_result": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "__typename": [ 78 @@ -121178,7 +122941,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5191 + 5304 ], "ordering": [ 236 @@ -121198,13 +122961,13 @@ export default { 38 ], "map_id": [ - 4641 + 4744 ], "match_created_at": [ - 4203 + 4306 ], "match_id": [ - 4641 + 4744 ], "match_result": [ 78 @@ -121292,28 +123055,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match": [ - 2475 + 2578 ], "match_id": [ - 4641 + 4744 ], "player": [ - 3618 + 3721 ], "rounds_played": [ 38 @@ -121327,10 +123090,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5198 + 5311 ], "nodes": [ - 5196 + 5309 ], "__typename": [ 78 @@ -121338,13 +123101,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5199 + 5312 ], "count": [ 38, { "columns": [ - 5204, + 5317, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -121353,31 +123116,31 @@ export default { } ], "max": [ - 5201 + 5314 ], "min": [ - 5202 + 5315 ], "stddev": [ - 5205 + 5318 ], "stddev_pop": [ - 5206 + 5319 ], "stddev_samp": [ - 5207 + 5320 ], "sum": [ - 5210 + 5323 ], "var_pop": [ - 5211 + 5324 ], "var_samp": [ - 5212 + 5325 ], "variance": [ - 5213 + 5326 ], "__typename": [ 78 @@ -121411,37 +123174,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5200 + 5313 ], "_not": [ - 5200 + 5313 ], "_or": [ - 5200 + 5313 ], "adr": [ - 2659 + 2762 ], "dpr": [ - 2659 + 2762 ], "hltv_rating": [ - 2659 + 2762 ], "kast_pct": [ - 2659 + 2762 ], "kpr": [ - 2659 + 2762 ], "match": [ - 2484 + 2587 ], "match_id": [ - 4643 + 4746 ], "player": [ - 3622 + 3725 ], "rounds_played": [ 39 @@ -121455,22 +123218,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -121484,22 +123247,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -121513,34 +123276,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2660 + 2763 ], "dpr": [ - 2660 + 2763 ], "hltv_rating": [ - 2660 + 2763 ], "kast_pct": [ - 2660 + 2763 ], "kpr": [ - 2660 + 2763 ], "match": [ - 2495 + 2598 ], "match_id": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "rounds_played": [ - 2660 + 2763 ], "steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -121627,7 +123390,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5209 + 5322 ], "ordering": [ 236 @@ -121638,22 +123401,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "match_id": [ - 4641 + 4744 ], "rounds_played": [ 38 @@ -121667,19 +123430,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2658 + 2761 ], "dpr": [ - 2658 + 2761 ], "hltv_rating": [ - 2658 + 2761 ], "kast_pct": [ - 2658 + 2761 ], "kpr": [ - 2658 + 2761 ], "rounds_played": [ 38 @@ -121777,7 +123540,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "round": [ 38 @@ -121788,10 +123551,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5218 + 5331 ], "nodes": [ - 5214 + 5327 ], "__typename": [ 78 @@ -121799,7 +123562,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5217 + 5330 ], "__typename": [ 78 @@ -121807,13 +123570,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5230 + 5343 ], "distinct": [ 3 ], "filter": [ - 5223 + 5336 ], "predicate": [ 39 @@ -121824,13 +123587,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5221 + 5334 ], "count": [ 38, { "columns": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -121839,31 +123602,31 @@ export default { } ], "max": [ - 5225 + 5338 ], "min": [ - 5227 + 5340 ], "stddev": [ - 5231 + 5344 ], "stddev_pop": [ - 5233 + 5346 ], "stddev_samp": [ - 5235 + 5348 ], "sum": [ - 5239 + 5352 ], "var_pop": [ - 5241 + 5354 ], "var_samp": [ - 5243 + 5356 ], "variance": [ - 5245 + 5358 ], "__typename": [ 78 @@ -121871,37 +123634,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5222 + 5335 ], "count": [ - 2660 + 2763 ], "max": [ - 5226 + 5339 ], "min": [ - 5228 + 5341 ], "stddev": [ - 5232 + 5345 ], "stddev_pop": [ - 5234 + 5347 ], "stddev_samp": [ - 5236 + 5349 ], "sum": [ - 5240 + 5353 ], "var_pop": [ - 5242 + 5355 ], "var_samp": [ - 5244 + 5357 ], "variance": [ - 5246 + 5359 ], "__typename": [ 78 @@ -121909,7 +123672,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5224 + 5337 ], "__typename": [ 78 @@ -121931,13 +123694,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -121945,13 +123708,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5223 + 5336 ], "_not": [ - 5223 + 5336 ], "_or": [ - 5223 + 5336 ], "attacker_steam_id": [ 182 @@ -121960,7 +123723,7 @@ export default { 182 ], "match_id": [ - 4643 + 4746 ], "round": [ 39 @@ -121977,7 +123740,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "round": [ 38 @@ -121994,7 +123757,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "round": [ 38 @@ -122005,16 +123768,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122028,7 +123791,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "round": [ 38 @@ -122039,16 +123802,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122056,16 +123819,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "match_id": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122088,13 +123851,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122116,13 +123879,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122144,13 +123907,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122158,7 +123921,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5238 + 5351 ], "ordering": [ 236 @@ -122175,7 +123938,7 @@ export default { 180 ], "match_id": [ - 4641 + 4744 ], "round": [ 38 @@ -122200,13 +123963,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122228,13 +123991,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122256,13 +124019,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122284,13 +124047,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "round": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122321,10 +124084,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5249 + 5362 ], "nodes": [ - 5247 + 5360 ], "__typename": [ 78 @@ -122332,13 +124095,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5250 + 5363 ], "count": [ 38, { "columns": [ - 5255, + 5368, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -122347,31 +124110,31 @@ export default { } ], "max": [ - 5252 + 5365 ], "min": [ - 5253 + 5366 ], "stddev": [ - 5256 + 5369 ], "stddev_pop": [ - 5257 + 5370 ], "stddev_samp": [ - 5258 + 5371 ], "sum": [ - 5261 + 5374 ], "var_pop": [ - 5262 + 5375 ], "var_samp": [ - 5263 + 5376 ], "variance": [ - 5264 + 5377 ], "__typename": [ 78 @@ -122393,13 +124156,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5251 + 5364 ], "_not": [ - 5251 + 5364 ], "_or": [ - 5251 + 5364 ], "damage": [ 182 @@ -122471,22 +124234,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2660 + 2763 ], "hits": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122537,7 +124300,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5260 + 5373 ], "ordering": [ 236 @@ -122650,10 +124413,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5267 + 5380 ], "nodes": [ - 5265 + 5378 ], "__typename": [ 78 @@ -122661,13 +124424,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5268 + 5381 ], "count": [ 38, { "columns": [ - 5273, + 5386, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -122676,31 +124439,31 @@ export default { } ], "max": [ - 5270 + 5383 ], "min": [ - 5271 + 5384 ], "stddev": [ - 5274 + 5387 ], "stddev_pop": [ - 5275 + 5388 ], "stddev_samp": [ - 5276 + 5389 ], "sum": [ - 5279 + 5392 ], "var_pop": [ - 5280 + 5393 ], "var_samp": [ - 5281 + 5394 ], "variance": [ - 5282 + 5395 ], "__typename": [ 78 @@ -122722,13 +124485,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5269 + 5382 ], "_not": [ - 5269 + 5382 ], "_or": [ - 5269 + 5382 ], "kill_count": [ 182 @@ -122800,22 +124563,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "rounds": [ - 2660 + 2763 ], "source": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "with": [ - 2660 + 2763 ], "__typename": [ 78 @@ -122866,7 +124629,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5278 + 5391 ], "ordering": [ 236 @@ -122959,16 +124722,16 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool": [ - 1974 + 2077 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -122991,10 +124754,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5289 + 5402 ], "nodes": [ - 5283 + 5396 ], "__typename": [ 78 @@ -123002,13 +124765,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5286 + 5399 ], "bool_or": [ - 5287 + 5400 ], "count": [ - 5288 + 5401 ], "__typename": [ 78 @@ -123016,13 +124779,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5301 + 5414 ], "distinct": [ 3 ], "filter": [ - 5292 + 5405 ], "predicate": [ 4 @@ -123033,13 +124796,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5302 + 5415 ], "distinct": [ 3 ], "filter": [ - 5292 + 5405 ], "predicate": [ 4 @@ -123050,13 +124813,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5300 + 5413 ], "distinct": [ 3 ], "filter": [ - 5292 + 5405 ], "predicate": [ 39 @@ -123070,7 +124833,7 @@ export default { 38, { "columns": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -123079,10 +124842,10 @@ export default { } ], "max": [ - 5294 + 5407 ], "min": [ - 5296 + 5409 ], "__typename": [ 78 @@ -123090,13 +124853,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2660 + 2763 ], "max": [ - 5295 + 5408 ], "min": [ - 5297 + 5410 ], "__typename": [ 78 @@ -123104,7 +124867,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5293 + 5406 ], "__typename": [ 78 @@ -123112,28 +124875,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5292 + 5405 ], "_not": [ - 5292 + 5405 ], "_or": [ - 5292 + 5405 ], "active_pool": [ 4 ], "id": [ - 4643 + 4746 ], "label": [ 80 ], "map_pool": [ - 1977 + 2080 ], "map_pool_id": [ - 4643 + 4746 ], "name": [ 80 @@ -123159,16 +124922,16 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool": [ - 1983 + 2086 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -123191,13 +124954,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -123220,28 +124983,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "map_pool_id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -123249,13 +125012,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -123278,28 +125041,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "map_pool_id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -123310,7 +125073,7 @@ export default { 38 ], "returning": [ - 5283 + 5396 ], "__typename": [ 78 @@ -123318,34 +125081,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "label": [ - 2660 + 2763 ], "map_pool": [ - 1985 + 2088 ], "map_pool_id": [ - 2660 + 2763 ], "name": [ - 2660 + 2763 ], "patch": [ - 2660 + 2763 ], "poster": [ - 2660 + 2763 ], "type": [ - 2660 + 2763 ], "workshop_map_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -123359,13 +125122,13 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -123388,7 +125151,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5305 + 5418 ], "ordering": [ 236 @@ -123402,13 +125165,13 @@ export default { 3 ], "id": [ - 4641 + 4744 ], "label": [ 78 ], "map_pool_id": [ - 4641 + 4744 ], "name": [ 78 @@ -123431,10 +125194,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5303 + 5416 ], "where": [ - 5292 + 5405 ], "__typename": [ 78 @@ -123459,10 +125222,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5309 + 5422 ], "nodes": [ - 5307 + 5420 ], "__typename": [ 78 @@ -123470,13 +125233,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5310 + 5423 ], "count": [ 38, { "columns": [ - 5315, + 5428, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -123485,31 +125248,31 @@ export default { } ], "max": [ - 5312 + 5425 ], "min": [ - 5313 + 5426 ], "stddev": [ - 5316 + 5429 ], "stddev_pop": [ - 5317 + 5430 ], "stddev_samp": [ - 5318 + 5431 ], "sum": [ - 5321 + 5434 ], "var_pop": [ - 5322 + 5435 ], "var_samp": [ - 5323 + 5436 ], "variance": [ - 5324 + 5437 ], "__typename": [ 78 @@ -123534,13 +125297,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5311 + 5424 ], "_not": [ - 5311 + 5424 ], "_or": [ - 5311 + 5424 ], "busy_accounts": [ 39 @@ -123594,16 +125357,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2660 + 2763 ], "free_accounts": [ - 2660 + 2763 ], "id": [ - 2660 + 2763 ], "total_accounts": [ - 2660 + 2763 ], "__typename": [ 78 @@ -123663,7 +125426,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5320 + 5433 ], "ordering": [ 236 @@ -123765,7 +125528,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -123780,10 +125543,10 @@ export default { 180 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -123791,10 +125554,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5327 + 5440 ], "nodes": [ - 5325 + 5438 ], "__typename": [ 78 @@ -123802,13 +125565,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5328 + 5441 ], "count": [ 38, { "columns": [ - 5335, + 5448, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -123817,31 +125580,31 @@ export default { } ], "max": [ - 5331 + 5444 ], "min": [ - 5332 + 5445 ], "stddev": [ - 5336 + 5449 ], "stddev_pop": [ - 5337 + 5450 ], "stddev_samp": [ - 5338 + 5451 ], "sum": [ - 5341 + 5454 ], "var_pop": [ - 5342 + 5455 ], "var_samp": [ - 5343 + 5456 ], "variance": [ - 5344 + 5457 ], "__typename": [ 78 @@ -123875,13 +125638,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5329 + 5442 ], "_not": [ - 5329 + 5442 ], "_or": [ - 5329 + 5442 ], "avg_elo": [ 39 @@ -123890,7 +125653,7 @@ export default { 39 ], "avg_faceit_level": [ - 1379 + 1482 ], "avg_premier": [ 39 @@ -123905,10 +125668,10 @@ export default { 182 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -123922,7 +125685,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -123937,10 +125700,10 @@ export default { 180 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -123954,7 +125717,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -123969,7 +125732,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -123983,7 +125746,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -123998,7 +125761,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124006,7 +125769,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5330 + 5443 ], "__typename": [ 78 @@ -124014,31 +125777,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2660 + 2763 ], "avg_faceit_elo": [ - 2660 + 2763 ], "avg_faceit_level": [ - 2660 + 2763 ], "avg_premier": [ - 2660 + 2763 ], "max_elo": [ - 2660 + 2763 ], "min_elo": [ - 2660 + 2763 ], "roster_size": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -124125,7 +125888,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5340 + 5453 ], "ordering": [ 236 @@ -124142,7 +125905,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -124157,7 +125920,7 @@ export default { 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124171,7 +125934,7 @@ export default { 38 ], "avg_faceit_level": [ - 1378 + 1481 ], "avg_premier": [ 38 @@ -124275,16 +126038,16 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 ], "team": [ - 4160 + 4263 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124292,10 +126055,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5347 + 5460 ], "nodes": [ - 5345 + 5458 ], "__typename": [ 78 @@ -124303,13 +126066,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5348 + 5461 ], "count": [ 38, { "columns": [ - 5355, + 5468, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -124318,31 +126081,31 @@ export default { } ], "max": [ - 5351 + 5464 ], "min": [ - 5352 + 5465 ], "stddev": [ - 5356 + 5469 ], "stddev_pop": [ - 5357 + 5470 ], "stddev_samp": [ - 5358 + 5471 ], "sum": [ - 5361 + 5474 ], "var_pop": [ - 5362 + 5475 ], "var_samp": [ - 5363 + 5476 ], "variance": [ - 5364 + 5477 ], "__typename": [ 78 @@ -124367,13 +126130,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5349 + 5462 ], "_not": [ - 5349 + 5462 ], "_or": [ - 5349 + 5462 ], "late_cancels": [ 182 @@ -124382,16 +126145,16 @@ export default { 182 ], "reliability_pct": [ - 2659 + 2762 ], "scrims_completed": [ 182 ], "team": [ - 4169 + 4272 ], "team_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -124405,16 +126168,16 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 ], "team": [ - 4178 + 4281 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124428,13 +126191,13 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124448,13 +126211,13 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124462,7 +126225,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5350 + 5463 ], "__typename": [ 78 @@ -124470,22 +126233,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2660 + 2763 ], "no_shows": [ - 2660 + 2763 ], "reliability_pct": [ - 2660 + 2763 ], "scrims_completed": [ - 2660 + 2763 ], "team": [ - 4180 + 4283 ], "team_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -124545,7 +126308,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5360 + 5473 ], "ordering": [ 236 @@ -124562,13 +126325,13 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 ], "team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -124582,7 +126345,7 @@ export default { 180 ], "reliability_pct": [ - 2658 + 2761 ], "scrims_completed": [ 180 @@ -124680,13 +126443,13 @@ export default { 38 ], "stage": [ - 4333 + 4436 ], "team": [ - 4466 + 4569 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -124695,10 +126458,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -124709,10 +126472,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5379 + 5492 ], "nodes": [ - 5365 + 5478 ], "__typename": [ 78 @@ -124720,31 +126483,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5368 + 5481 ], "corr": [ - 5369 + 5482 ], "count": [ - 5371 + 5484 ], "covar_samp": [ - 5372 + 5485 ], "max": [ - 5374 + 5487 ], "min": [ - 5375 + 5488 ], "stddev_samp": [ - 5376 + 5489 ], "sum": [ - 5377 + 5490 ], "var_samp": [ - 5378 + 5491 ], "__typename": [ 78 @@ -124752,16 +126515,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5398 + 5511 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124769,16 +126532,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5370 + 5483 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124786,10 +126549,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5399 + 5512 ], "Y": [ - 5399 + 5512 ], "__typename": [ 78 @@ -124797,13 +126560,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5397 + 5510 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ 39 @@ -124814,16 +126577,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5373 + 5486 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124831,10 +126594,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5400 + 5513 ], "Y": [ - 5400 + 5513 ], "__typename": [ 78 @@ -124842,16 +126605,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5401 + 5514 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124859,16 +126622,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5402 + 5515 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124876,16 +126639,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5403 + 5516 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124893,16 +126656,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5404 + 5517 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124910,16 +126673,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5405 + 5518 ], "distinct": [ 3 ], "filter": [ - 5384 + 5497 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -124927,13 +126690,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5382 + 5495 ], "count": [ 38, { "columns": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -124942,31 +126705,31 @@ export default { } ], "max": [ - 5388 + 5501 ], "min": [ - 5390 + 5503 ], "stddev": [ - 5407 + 5520 ], "stddev_pop": [ - 5409 + 5522 ], "stddev_samp": [ - 5411 + 5524 ], "sum": [ - 5415 + 5528 ], "var_pop": [ - 5419 + 5532 ], "var_samp": [ - 5421 + 5534 ], "variance": [ - 5423 + 5536 ], "__typename": [ 78 @@ -124974,37 +126737,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5383 + 5496 ], "count": [ - 2660 + 2763 ], "max": [ - 5389 + 5502 ], "min": [ - 5391 + 5504 ], "stddev": [ - 5408 + 5521 ], "stddev_pop": [ - 5410 + 5523 ], "stddev_samp": [ - 5412 + 5525 ], "sum": [ - 5416 + 5529 ], "var_pop": [ - 5420 + 5533 ], "var_samp": [ - 5422 + 5535 ], "variance": [ - 5424 + 5537 ], "__typename": [ 78 @@ -125012,10 +126775,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5387 + 5500 ], "on_conflict": [ - 5394 + 5507 ], "__typename": [ 78 @@ -125076,52 +126839,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -125129,13 +126892,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5384 + 5497 ], "_not": [ - 5384 + 5497 ], "_or": [ - 5384 + 5497 ], "group_number": [ 39 @@ -125174,13 +126937,13 @@ export default { 39 ], "stage": [ - 4345 + 4448 ], "team": [ - 4475 + 4578 ], "team_kdr": [ - 1379 + 1482 ], "total_deaths": [ 39 @@ -125189,10 +126952,10 @@ export default { 39 ], "tournament_stage_id": [ - 4643 + 4746 ], "tournament_team_id": [ - 4643 + 4746 ], "wins": [ 39 @@ -125240,7 +127003,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -125293,13 +127056,13 @@ export default { 38 ], "stage": [ - 4357 + 4460 ], "team": [ - 4484 + 4587 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -125308,10 +127071,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -125358,7 +127121,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -125367,10 +127130,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -125381,58 +127144,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -125476,7 +127239,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -125485,10 +127248,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -125499,58 +127262,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -125561,7 +127324,7 @@ export default { 38 ], "returning": [ - 5365 + 5478 ], "__typename": [ 78 @@ -125569,10 +127332,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5387 + 5500 ], "on_conflict": [ - 5394 + 5507 ], "__typename": [ 78 @@ -125580,13 +127343,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5385 + 5498 ], "update_columns": [ - 5417 + 5530 ], "where": [ - 5384 + 5497 ], "__typename": [ 78 @@ -125594,64 +127357,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "stage": [ - 4359 + 4462 ], "team": [ - 4486 + 4589 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament_stage_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -125659,10 +127422,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -125715,7 +127478,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -125724,10 +127487,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -125791,52 +127554,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -125897,52 +127660,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126003,52 +127766,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126056,7 +127819,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5414 + 5527 ], "ordering": [ 236 @@ -126103,7 +127866,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -126112,10 +127875,10 @@ export default { 38 ], "tournament_stage_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -126162,7 +127925,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -126179,52 +127942,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126233,13 +127996,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5386 + 5499 ], "_set": [ - 5406 + 5519 ], "where": [ - 5384 + 5497 ], "__typename": [ 78 @@ -126300,52 +128063,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126406,52 +128169,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126512,52 +128275,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2660 + 2763 ], "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "placement": [ - 2660 + 2763 ], "rank": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -126592,10 +128355,10 @@ export default { 38 ], "team": [ - 4466 + 4569 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -126604,13 +128367,13 @@ export default { 38 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -126621,10 +128384,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5439 + 5552 ], "nodes": [ - 5425 + 5538 ], "__typename": [ 78 @@ -126632,31 +128395,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5428 + 5541 ], "corr": [ - 5429 + 5542 ], "count": [ - 5431 + 5544 ], "covar_samp": [ - 5432 + 5545 ], "max": [ - 5434 + 5547 ], "min": [ - 5435 + 5548 ], "stddev_samp": [ - 5436 + 5549 ], "sum": [ - 5437 + 5550 ], "var_samp": [ - 5438 + 5551 ], "__typename": [ 78 @@ -126664,16 +128427,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5452 + 5565 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126681,16 +128444,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5430 + 5543 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126698,10 +128461,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5453 + 5566 ], "Y": [ - 5453 + 5566 ], "__typename": [ 78 @@ -126709,13 +128472,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5451 + 5564 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ 39 @@ -126726,16 +128489,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5433 + 5546 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126743,10 +128506,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5454 + 5567 ], "Y": [ - 5454 + 5567 ], "__typename": [ 78 @@ -126754,16 +128517,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5455 + 5568 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126771,16 +128534,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5456 + 5569 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126788,16 +128551,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5457 + 5570 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126805,16 +128568,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5458 + 5571 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126822,16 +128585,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5459 + 5572 ], "distinct": [ 3 ], "filter": [ - 5444 + 5557 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -126839,13 +128602,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5442 + 5555 ], "count": [ 38, { "columns": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -126854,31 +128617,31 @@ export default { } ], "max": [ - 5446 + 5559 ], "min": [ - 5448 + 5561 ], "stddev": [ - 5460 + 5573 ], "stddev_pop": [ - 5462 + 5575 ], "stddev_samp": [ - 5464 + 5577 ], "sum": [ - 5468 + 5581 ], "var_pop": [ - 5470 + 5583 ], "var_samp": [ - 5472 + 5585 ], "variance": [ - 5474 + 5587 ], "__typename": [ 78 @@ -126886,37 +128649,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5443 + 5556 ], "count": [ - 2660 + 2763 ], "max": [ - 5447 + 5560 ], "min": [ - 5449 + 5562 ], "stddev": [ - 5461 + 5574 ], "stddev_pop": [ - 5463 + 5576 ], "stddev_samp": [ - 5465 + 5578 ], "sum": [ - 5469 + 5582 ], "var_pop": [ - 5471 + 5584 ], "var_samp": [ - 5473 + 5586 ], "variance": [ - 5475 + 5588 ], "__typename": [ 78 @@ -126924,7 +128687,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5445 + 5558 ], "__typename": [ 78 @@ -126976,43 +128739,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127020,13 +128783,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5444 + 5557 ], "_not": [ - 5444 + 5557 ], "_or": [ - 5444 + 5557 ], "head_to_head_match_wins": [ 39 @@ -127056,10 +128819,10 @@ export default { 39 ], "team": [ - 4475 + 4578 ], "team_kdr": [ - 1379 + 1482 ], "total_deaths": [ 39 @@ -127068,13 +128831,13 @@ export default { 39 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "tournament_team_id": [ - 4643 + 4746 ], "wins": [ 39 @@ -127112,10 +128875,10 @@ export default { 38 ], "team": [ - 4484 + 4587 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -127124,13 +128887,13 @@ export default { 38 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -127168,7 +128931,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -127177,10 +128940,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -127191,49 +128954,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127268,7 +129031,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -127277,10 +129040,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -127291,49 +129054,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127341,55 +129104,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team": [ - 4486 + 4589 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "tournament_team_id": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127450,43 +129213,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127538,43 +129301,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127626,43 +129389,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127670,7 +129433,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5467 + 5580 ], "ordering": [ 236 @@ -127708,7 +129471,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -127717,10 +129480,10 @@ export default { 38 ], "tournament_id": [ - 4641 + 4744 ], "tournament_team_id": [ - 4641 + 4744 ], "wins": [ 38 @@ -127758,7 +129521,7 @@ export default { 38 ], "team_kdr": [ - 1378 + 1481 ], "total_deaths": [ 38 @@ -127775,43 +129538,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127863,43 +129626,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -127951,43 +129714,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128039,43 +129802,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2660 + 2763 ], "head_to_head_rounds_won": [ - 2660 + 2763 ], "losses": [ - 2660 + 2763 ], "maps_lost": [ - 2660 + 2763 ], "maps_won": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "matches_remaining": [ - 2660 + 2763 ], "rounds_lost": [ - 2660 + 2763 ], "rounds_won": [ - 2660 + 2763 ], "team_kdr": [ - 2660 + 2763 ], "total_deaths": [ - 2660 + 2763 ], "total_kills": [ - 2660 + 2763 ], "wins": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128089,13 +129852,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128104,16 +129867,16 @@ export default { 38 ], "player": [ - 3618 + 3721 ], "player_steam_id": [ 180 ], "tournament": [ - 4595 + 4698 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -128121,10 +129884,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5490 + 5603 ], "nodes": [ - 5476 + 5589 ], "__typename": [ 78 @@ -128132,31 +129895,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5479 + 5592 ], "corr": [ - 5480 + 5593 ], "count": [ - 5482 + 5595 ], "covar_samp": [ - 5483 + 5596 ], "max": [ - 5485 + 5598 ], "min": [ - 5486 + 5599 ], "stddev_samp": [ - 5487 + 5600 ], "sum": [ - 5488 + 5601 ], "var_samp": [ - 5489 + 5602 ], "__typename": [ 78 @@ -128164,16 +129927,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5503 + 5616 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128181,16 +129944,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5481 + 5594 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128198,10 +129961,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5504 + 5617 ], "Y": [ - 5504 + 5617 ], "__typename": [ 78 @@ -128209,13 +129972,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5502 + 5615 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ 39 @@ -128226,16 +129989,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5484 + 5597 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128243,10 +130006,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5505 + 5618 ], "Y": [ - 5505 + 5618 ], "__typename": [ 78 @@ -128254,16 +130017,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5506 + 5619 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128271,16 +130034,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5507 + 5620 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128288,16 +130051,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5508 + 5621 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128305,16 +130068,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5509 + 5622 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128322,16 +130085,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5510 + 5623 ], "distinct": [ 3 ], "filter": [ - 5495 + 5608 ], "predicate": [ - 1379 + 1482 ], "__typename": [ 78 @@ -128339,13 +130102,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5493 + 5606 ], "count": [ 38, { "columns": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -128354,31 +130117,31 @@ export default { } ], "max": [ - 5497 + 5610 ], "min": [ - 5499 + 5612 ], "stddev": [ - 5511 + 5624 ], "stddev_pop": [ - 5513 + 5626 ], "stddev_samp": [ - 5515 + 5628 ], "sum": [ - 5519 + 5632 ], "var_pop": [ - 5521 + 5634 ], "var_samp": [ - 5523 + 5636 ], "variance": [ - 5525 + 5638 ], "__typename": [ 78 @@ -128386,37 +130149,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5494 + 5607 ], "count": [ - 2660 + 2763 ], "max": [ - 5498 + 5611 ], "min": [ - 5500 + 5613 ], "stddev": [ - 5512 + 5625 ], "stddev_pop": [ - 5514 + 5627 ], "stddev_samp": [ - 5516 + 5629 ], "sum": [ - 5520 + 5633 ], "var_pop": [ - 5522 + 5635 ], "var_samp": [ - 5524 + 5637 ], "variance": [ - 5526 + 5639 ], "__typename": [ 78 @@ -128424,7 +130187,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5496 + 5609 ], "__typename": [ 78 @@ -128461,28 +130224,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128490,13 +130253,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5495 + 5608 ], "_not": [ - 5495 + 5608 ], "_or": [ - 5495 + 5608 ], "assists": [ 39 @@ -128505,13 +130268,13 @@ export default { 39 ], "headshot_percentage": [ - 1379 + 1482 ], "headshots": [ 39 ], "kdr": [ - 1379 + 1482 ], "kills": [ 39 @@ -128520,16 +130283,16 @@ export default { 39 ], "player": [ - 3622 + 3725 ], "player_steam_id": [ 182 ], "tournament": [ - 4606 + 4709 ], "tournament_id": [ - 4643 + 4746 ], "__typename": [ 78 @@ -128543,13 +130306,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128558,16 +130321,16 @@ export default { 38 ], "player": [ - 3629 + 3732 ], "player_steam_id": [ 180 ], "tournament": [ - 4615 + 4718 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -128581,13 +130344,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128599,7 +130362,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -128607,31 +130370,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128645,13 +130408,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128663,7 +130426,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -128671,31 +130434,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128703,37 +130466,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player": [ - 3631 + 3734 ], "player_steam_id": [ - 2660 + 2763 ], "tournament": [ - 4617 + 4720 ], "tournament_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128779,28 +130542,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128837,28 +130600,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128895,28 +130658,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -128924,7 +130687,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5518 + 5631 ], "ordering": [ 236 @@ -128941,13 +130704,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128959,7 +130722,7 @@ export default { 180 ], "tournament_id": [ - 4641 + 4744 ], "__typename": [ 78 @@ -128973,13 +130736,13 @@ export default { 38 ], "headshot_percentage": [ - 1378 + 1481 ], "headshots": [ 38 ], "kdr": [ - 1378 + 1481 ], "kills": [ 38 @@ -128996,28 +130759,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -129054,28 +130817,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -129112,28 +130875,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -129170,28 +130933,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2660 + 2763 ], "deaths": [ - 2660 + 2763 ], "headshot_percentage": [ - 2660 + 2763 ], "headshots": [ - 2660 + 2763 ], "kdr": [ - 2660 + 2763 ], "kills": [ - 2660 + 2763 ], "matches_played": [ - 2660 + 2763 ], "player_steam_id": [ - 2660 + 2763 ], "__typename": [ 78 @@ -129246,11 +131009,11 @@ export default { 92, { "map_id": [ - 4641, + 4744, "uuid!" ], "map_pool_id": [ - 4641, + 4744, "uuid!" ] } @@ -129303,7 +131066,7 @@ export default { 111, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129356,7 +131119,7 @@ export default { 152, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129409,7 +131172,7 @@ export default { 185, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129465,7 +131228,7 @@ export default { 237, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129518,7 +131281,7 @@ export default { 264, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129571,7 +131334,7 @@ export default { 309, { "draft_game_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -129628,7 +131391,7 @@ export default { 354, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -129951,12 +131714,12 @@ export default { ] } ], - "e_event_status": [ + "e_event_media_access": [ 525, { "distinct_on": [ 539, - "[e_event_status_select_column!]" + "[e_event_media_access_select_column!]" ], "limit": [ 38 @@ -129966,19 +131729,19 @@ export default { ], "order_by": [ 537, - "[e_event_status_order_by!]" + "[e_event_media_access_order_by!]" ], "where": [ 528 ] } ], - "e_event_status_aggregate": [ + "e_event_media_access_aggregate": [ 526, { "distinct_on": [ 539, - "[e_event_status_select_column!]" + "[e_event_media_access_select_column!]" ], "limit": [ 38 @@ -129988,14 +131751,14 @@ export default { ], "order_by": [ 537, - "[e_event_status_order_by!]" + "[e_event_media_access_order_by!]" ], "where": [ 528 ] } ], - "e_event_status_by_pk": [ + "e_event_media_access_by_pk": [ 525, { "value": [ @@ -130004,11 +131767,64 @@ export default { ] } ], - "e_friend_status": [ + "e_event_visibility": [ 545, { "distinct_on": [ - 560, + 559, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 557, + "[e_event_visibility_order_by!]" + ], + "where": [ + 548 + ] + } + ], + "e_event_visibility_aggregate": [ + 546, + { + "distinct_on": [ + 559, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 557, + "[e_event_visibility_order_by!]" + ], + "where": [ + 548 + ] + } + ], + "e_event_visibility_by_pk": [ + 545, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_friend_status": [ + 565, + { + "distinct_on": [ + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -130018,19 +131834,19 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_friend_status_order_by!]" ], "where": [ - 548 + 568 ] } ], "e_friend_status_aggregate": [ - 546, + 566, { "distinct_on": [ - 560, + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -130040,16 +131856,16 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_friend_status_order_by!]" ], "where": [ - 548 + 568 ] } ], "e_friend_status_by_pk": [ - 545, + 565, { "value": [ 78, @@ -130058,10 +131874,10 @@ export default { } ], "e_game_cfg_types": [ - 566, + 586, { "distinct_on": [ - 580, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -130071,19 +131887,19 @@ export default { 38 ], "order_by": [ - 578, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_cfg_types_aggregate": [ - 567, + 587, { "distinct_on": [ - 580, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -130093,16 +131909,16 @@ export default { 38 ], "order_by": [ - 578, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_cfg_types_by_pk": [ - 566, + 586, { "value": [ 78, @@ -130111,10 +131927,10 @@ export default { } ], "e_game_server_node_statuses": [ - 586, + 606, { "distinct_on": [ - 601, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -130124,19 +131940,19 @@ export default { 38 ], "order_by": [ - 599, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 589 + 609 ] } ], "e_game_server_node_statuses_aggregate": [ - 587, + 607, { "distinct_on": [ - 601, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -130146,16 +131962,16 @@ export default { 38 ], "order_by": [ - 599, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 589 + 609 ] } ], "e_game_server_node_statuses_by_pk": [ - 586, + 606, { "value": [ 78, @@ -130164,10 +131980,10 @@ export default { } ], "e_league_movement_types": [ - 607, + 627, { "distinct_on": [ - 622, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -130177,19 +131993,19 @@ export default { 38 ], "order_by": [ - 620, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 610 + 630 ] } ], "e_league_movement_types_aggregate": [ - 608, + 628, { "distinct_on": [ - 622, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -130199,16 +132015,16 @@ export default { 38 ], "order_by": [ - 620, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 610 + 630 ] } ], "e_league_movement_types_by_pk": [ - 607, + 627, { "value": [ 78, @@ -130217,10 +132033,10 @@ export default { } ], "e_league_proposal_statuses": [ - 628, + 648, { "distinct_on": [ - 643, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -130230,19 +132046,19 @@ export default { 38 ], "order_by": [ - 641, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 631 + 651 ] } ], "e_league_proposal_statuses_aggregate": [ - 629, + 649, { "distinct_on": [ - 643, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -130252,16 +132068,16 @@ export default { 38 ], "order_by": [ - 641, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 631 + 651 ] } ], "e_league_proposal_statuses_by_pk": [ - 628, + 648, { "value": [ 78, @@ -130270,10 +132086,10 @@ export default { } ], "e_league_registration_statuses": [ - 649, + 669, { "distinct_on": [ - 664, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -130283,19 +132099,19 @@ export default { 38 ], "order_by": [ - 662, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 652 + 672 ] } ], "e_league_registration_statuses_aggregate": [ - 650, + 670, { "distinct_on": [ - 664, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -130305,16 +132121,16 @@ export default { 38 ], "order_by": [ - 662, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 652 + 672 ] } ], "e_league_registration_statuses_by_pk": [ - 649, + 669, { "value": [ 78, @@ -130323,10 +132139,10 @@ export default { } ], "e_league_season_statuses": [ - 670, + 690, { "distinct_on": [ - 685, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -130336,19 +132152,19 @@ export default { 38 ], "order_by": [ - 683, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 673 + 693 ] } ], "e_league_season_statuses_aggregate": [ - 671, + 691, { "distinct_on": [ - 685, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -130358,16 +132174,16 @@ export default { 38 ], "order_by": [ - 683, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 673 + 693 ] } ], "e_league_season_statuses_by_pk": [ - 670, + 690, { "value": [ 78, @@ -130376,10 +132192,10 @@ export default { } ], "e_lobby_access": [ - 691, + 711, { "distinct_on": [ - 706, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -130389,19 +132205,19 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 694 + 714 ] } ], "e_lobby_access_aggregate": [ - 692, + 712, { "distinct_on": [ - 706, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -130411,16 +132227,16 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 694 + 714 ] } ], "e_lobby_access_by_pk": [ - 691, + 711, { "value": [ 78, @@ -130429,10 +132245,10 @@ export default { } ], "e_lobby_player_status": [ - 712, + 732, { "distinct_on": [ - 726, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -130442,19 +132258,19 @@ export default { 38 ], "order_by": [ - 724, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_lobby_player_status_aggregate": [ - 713, + 733, { "distinct_on": [ - 726, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -130464,16 +132280,16 @@ export default { 38 ], "order_by": [ - 724, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_lobby_player_status_by_pk": [ - 712, + 732, { "value": [ 78, @@ -130482,10 +132298,10 @@ export default { } ], "e_map_pool_types": [ - 732, + 752, { "distinct_on": [ - 747, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -130495,19 +132311,19 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 735 + 755 ] } ], "e_map_pool_types_aggregate": [ - 733, + 753, { "distinct_on": [ - 747, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -130517,16 +132333,16 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 735 + 755 ] } ], "e_map_pool_types_by_pk": [ - 732, + 752, { "value": [ 78, @@ -130535,10 +132351,10 @@ export default { } ], "e_match_clip_visibility": [ - 753, + 773, { "distinct_on": [ - 767, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -130548,19 +132364,19 @@ export default { 38 ], "order_by": [ - 765, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_clip_visibility_aggregate": [ - 754, + 774, { "distinct_on": [ - 767, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -130570,16 +132386,16 @@ export default { 38 ], "order_by": [ - 765, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_clip_visibility_by_pk": [ - 753, + 773, { "value": [ 78, @@ -130588,10 +132404,10 @@ export default { } ], "e_match_map_status": [ - 773, + 793, { "distinct_on": [ - 788, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -130601,19 +132417,19 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 776 + 796 ] } ], "e_match_map_status_aggregate": [ - 774, + 794, { "distinct_on": [ - 788, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -130623,16 +132439,16 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 776 + 796 ] } ], "e_match_map_status_by_pk": [ - 773, + 793, { "value": [ 78, @@ -130641,10 +132457,10 @@ export default { } ], "e_match_mode": [ - 794, + 814, { "distinct_on": [ - 808, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -130654,19 +132470,19 @@ export default { 38 ], "order_by": [ - 806, + 826, "[e_match_mode_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_mode_aggregate": [ - 795, + 815, { "distinct_on": [ - 808, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -130676,16 +132492,16 @@ export default { 38 ], "order_by": [ - 806, + 826, "[e_match_mode_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_mode_by_pk": [ - 794, + 814, { "value": [ 78, @@ -130694,10 +132510,10 @@ export default { } ], "e_match_status": [ - 814, + 834, { "distinct_on": [ - 829, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -130707,19 +132523,19 @@ export default { 38 ], "order_by": [ - 827, + 847, "[e_match_status_order_by!]" ], "where": [ - 817 + 837 ] } ], "e_match_status_aggregate": [ - 815, + 835, { "distinct_on": [ - 829, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -130729,16 +132545,16 @@ export default { 38 ], "order_by": [ - 827, + 847, "[e_match_status_order_by!]" ], "where": [ - 817 + 837 ] } ], "e_match_status_by_pk": [ - 814, + 834, { "value": [ 78, @@ -130747,10 +132563,10 @@ export default { } ], "e_match_types": [ - 835, + 855, { "distinct_on": [ - 850, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -130760,19 +132576,19 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_match_types_order_by!]" ], "where": [ - 838 + 858 ] } ], "e_match_types_aggregate": [ - 836, + 856, { "distinct_on": [ - 850, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -130782,16 +132598,16 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_match_types_order_by!]" ], "where": [ - 838 + 858 ] } ], "e_match_types_by_pk": [ - 835, + 855, { "value": [ 78, @@ -130800,10 +132616,10 @@ export default { } ], "e_notification_types": [ - 856, + 876, { "distinct_on": [ - 870, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -130813,19 +132629,19 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_notification_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_notification_types_aggregate": [ - 857, + 877, { "distinct_on": [ - 870, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -130835,16 +132651,16 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_notification_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_notification_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -130853,10 +132669,10 @@ export default { } ], "e_objective_types": [ - 876, + 896, { "distinct_on": [ - 890, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -130866,19 +132682,19 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_objective_types_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_objective_types_aggregate": [ - 877, + 897, { "distinct_on": [ - 890, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -130888,16 +132704,16 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_objective_types_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_objective_types_by_pk": [ - 876, + 896, { "value": [ 78, @@ -130906,10 +132722,10 @@ export default { } ], "e_player_roles": [ - 896, + 916, { "distinct_on": [ - 910, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -130919,19 +132735,19 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_player_roles_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_player_roles_aggregate": [ - 897, + 917, { "distinct_on": [ - 910, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -130941,16 +132757,16 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_player_roles_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_player_roles_by_pk": [ - 896, + 916, { "value": [ 78, @@ -130959,10 +132775,10 @@ export default { } ], "e_plugin_runtimes": [ - 916, + 936, { "distinct_on": [ - 930, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -130972,19 +132788,19 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_plugin_runtimes_aggregate": [ - 917, + 937, { "distinct_on": [ - 930, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -130994,16 +132810,16 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_plugin_runtimes_by_pk": [ - 916, + 936, { "value": [ 78, @@ -131012,10 +132828,10 @@ export default { } ], "e_ready_settings": [ - 936, + 956, { "distinct_on": [ - 950, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -131025,19 +132841,19 @@ export default { 38 ], "order_by": [ - 948, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_ready_settings_aggregate": [ - 937, + 957, { "distinct_on": [ - 950, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -131047,16 +132863,16 @@ export default { 38 ], "order_by": [ - 948, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_ready_settings_by_pk": [ - 936, + 956, { "value": [ 78, @@ -131065,10 +132881,10 @@ export default { } ], "e_sanction_types": [ - 956, + 976, { "distinct_on": [ - 971, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -131078,19 +132894,19 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 959 + 979 ] } ], "e_sanction_types_aggregate": [ - 957, + 977, { "distinct_on": [ - 971, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -131100,16 +132916,16 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 959 + 979 ] } ], "e_sanction_types_by_pk": [ - 956, + 976, { "value": [ 78, @@ -131118,10 +132934,10 @@ export default { } ], "e_scrim_request_statuses": [ - 977, + 997, { "distinct_on": [ - 991, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -131131,19 +132947,19 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_scrim_request_statuses_aggregate": [ - 978, + 998, { "distinct_on": [ - 991, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -131153,16 +132969,16 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_scrim_request_statuses_by_pk": [ - 977, + 997, { "value": [ 78, @@ -131171,10 +132987,10 @@ export default { } ], "e_server_types": [ - 997, + 1017, { "distinct_on": [ - 1011, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -131184,19 +133000,19 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_server_types_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_server_types_aggregate": [ - 998, + 1018, { "distinct_on": [ - 1011, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -131206,16 +133022,16 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_server_types_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_server_types_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -131224,10 +133040,10 @@ export default { } ], "e_sides": [ - 1017, + 1037, { "distinct_on": [ - 1031, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -131237,19 +133053,19 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_sides_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_sides_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1031, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -131259,16 +133075,16 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_sides_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_sides_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -131277,10 +133093,10 @@ export default { } ], "e_system_alert_types": [ - 1037, + 1057, { "distinct_on": [ - 1051, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -131290,19 +133106,19 @@ export default { 38 ], "order_by": [ - 1049, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_system_alert_types_aggregate": [ - 1038, + 1058, { "distinct_on": [ - 1051, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -131312,16 +133128,16 @@ export default { 38 ], "order_by": [ - 1049, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_system_alert_types_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -131330,10 +133146,10 @@ export default { } ], "e_team_roles": [ - 1057, + 1077, { "distinct_on": [ - 1072, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -131343,19 +133159,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1060 + 1080 ] } ], "e_team_roles_aggregate": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -131365,16 +133181,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1060 + 1080 ] } ], "e_team_roles_by_pk": [ - 1057, + 1077, { "value": [ 78, @@ -131383,10 +133199,10 @@ export default { } ], "e_team_roster_statuses": [ - 1078, + 1098, { "distinct_on": [ - 1092, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -131396,19 +133212,19 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_team_roster_statuses_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1092, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -131418,16 +133234,16 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_team_roster_statuses_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -131436,10 +133252,10 @@ export default { } ], "e_timeout_settings": [ - 1098, + 1118, { "distinct_on": [ - 1112, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -131449,19 +133265,19 @@ export default { 38 ], "order_by": [ - 1110, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_timeout_settings_aggregate": [ - 1099, + 1119, { "distinct_on": [ - 1112, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -131471,16 +133287,16 @@ export default { 38 ], "order_by": [ - 1110, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_timeout_settings_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -131489,10 +133305,10 @@ export default { } ], "e_tournament_stage_types": [ - 1118, + 1138, { "distinct_on": [ - 1133, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -131502,19 +133318,19 @@ export default { 38 ], "order_by": [ - 1131, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1121 + 1141 ] } ], "e_tournament_stage_types_aggregate": [ - 1119, + 1139, { "distinct_on": [ - 1133, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -131524,16 +133340,16 @@ export default { 38 ], "order_by": [ - 1131, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1121 + 1141 ] } ], "e_tournament_stage_types_by_pk": [ - 1118, + 1138, { "value": [ 78, @@ -131542,10 +133358,10 @@ export default { } ], "e_tournament_status": [ - 1139, + 1159, { "distinct_on": [ - 1154, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -131555,19 +133371,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1142 + 1162 ] } ], "e_tournament_status_aggregate": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -131577,16 +133393,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1142 + 1162 ] } ], "e_tournament_status_by_pk": [ - 1139, + 1159, { "value": [ 78, @@ -131595,10 +133411,10 @@ export default { } ], "e_utility_types": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -131608,19 +133424,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_utility_types_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -131630,16 +133446,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_utility_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -131648,10 +133464,10 @@ export default { } ], "e_veto_pick_types": [ - 1180, + 1200, { "distinct_on": [ - 1194, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131661,19 +133477,19 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_veto_pick_types_aggregate": [ - 1181, + 1201, { "distinct_on": [ - 1194, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -131683,16 +133499,16 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_veto_pick_types_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -131701,10 +133517,10 @@ export default { } ], "e_winning_reasons": [ - 1200, + 1220, { "distinct_on": [ - 1214, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131714,19 +133530,19 @@ export default { 38 ], "order_by": [ - 1212, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1203 + 1223 ] } ], "e_winning_reasons_aggregate": [ - 1201, + 1221, { "distinct_on": [ - 1214, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -131736,16 +133552,16 @@ export default { 38 ], "order_by": [ - 1212, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1203 + 1223 ] } ], "e_winning_reasons_by_pk": [ - 1200, + 1220, { "value": [ 78, @@ -131753,11 +133569,121 @@ export default { ] } ], + "event_media": [ + 1240, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], + "event_media_aggregate": [ + 1241, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], + "event_media_by_pk": [ + 1240, + { + "id": [ + 4744, + "uuid!" + ] + } + ], + "event_media_players": [ + 1262, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "event_media_players_aggregate": [ + 1263, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "event_media_players_by_pk": [ + 1262, + { + "media_id": [ + 4744, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], "event_organizers": [ - 1220, + 1323, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -131767,19 +133693,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "event_organizers_aggregate": [ - 1221, + 1324, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -131789,19 +133715,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "event_organizers_by_pk": [ - 1220, + 1323, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -131811,10 +133737,10 @@ export default { } ], "event_players": [ - 1261, + 1364, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -131824,19 +133750,19 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "event_players_aggregate": [ - 1262, + 1365, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -131846,19 +133772,19 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "event_players_by_pk": [ - 1261, + 1364, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -131868,10 +133794,10 @@ export default { } ], "event_teams": [ - 1302, + 1405, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -131881,19 +133807,19 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "event_teams_aggregate": [ - 1303, + 1406, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -131903,32 +133829,32 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "event_teams_by_pk": [ - 1302, + 1405, { "event_id": [ - 4641, + 4744, "uuid!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "event_tournaments": [ - 1326, + 1429, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -131938,19 +133864,19 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], "event_tournaments_aggregate": [ - 1327, + 1430, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -131960,32 +133886,32 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], "event_tournaments_by_pk": [ - 1326, + 1429, { "event_id": [ - 4641, + 4744, "uuid!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "events": [ - 1350, + 1453, { "distinct_on": [ - 1365, + 1468, "[events_select_column!]" ], "limit": [ @@ -131995,19 +133921,19 @@ export default { 38 ], "order_by": [ - 1363, + 1466, "[events_order_by!]" ], "where": [ - 1354 + 1457 ] } ], "events_aggregate": [ - 1351, + 1454, { "distinct_on": [ - 1365, + 1468, "[events_select_column!]" ], "limit": [ @@ -132017,28 +133943,28 @@ export default { 38 ], "order_by": [ - 1363, + 1466, "[events_order_by!]" ], "where": [ - 1354 + 1457 ] } ], "events_by_pk": [ - 1350, + 1453, { "id": [ - 4641, + 4744, "uuid!" ] } ], "friends": [ - 1380, + 1483, { "distinct_on": [ - 1394, + 1497, "[friends_select_column!]" ], "limit": [ @@ -132048,19 +133974,19 @@ export default { 38 ], "order_by": [ - 1392, + 1495, "[friends_order_by!]" ], "where": [ - 1384 + 1487 ] } ], "friends_aggregate": [ - 1381, + 1484, { "distinct_on": [ - 1394, + 1497, "[friends_select_column!]" ], "limit": [ @@ -132070,16 +133996,16 @@ export default { 38 ], "order_by": [ - 1392, + 1495, "[friends_order_by!]" ], "where": [ - 1384 + 1487 ] } ], "friends_by_pk": [ - 1380, + 1483, { "other_player_steam_id": [ 180, @@ -132092,10 +134018,10 @@ export default { } ], "game_server_nodes": [ - 1407, + 1510, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -132105,19 +134031,19 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], "game_server_nodes_aggregate": [ - 1408, + 1511, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -132127,16 +134053,16 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], "game_server_nodes_by_pk": [ - 1407, + 1510, { "id": [ 78, @@ -132145,10 +134071,10 @@ export default { } ], "game_versions": [ - 1458, + 1561, { "distinct_on": [ - 1478, + 1581, "[game_versions_select_column!]" ], "limit": [ @@ -132158,19 +134084,19 @@ export default { 38 ], "order_by": [ - 1475, + 1578, "[game_versions_order_by!]" ], "where": [ - 1463 + 1566 ] } ], "game_versions_aggregate": [ - 1459, + 1562, { "distinct_on": [ - 1478, + 1581, "[game_versions_select_column!]" ], "limit": [ @@ -132180,16 +134106,16 @@ export default { 38 ], "order_by": [ - 1475, + 1578, "[game_versions_order_by!]" ], "where": [ - 1463 + 1566 ] } ], "game_versions_by_pk": [ - 1458, + 1561, { "build_id": [ 38, @@ -132198,10 +134124,10 @@ export default { } ], "gamedata_signature_validations": [ - 1491, + 1594, { "distinct_on": [ - 1510, + 1613, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -132211,19 +134137,19 @@ export default { 38 ], "order_by": [ - 1507, + 1610, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1496 + 1599 ] } ], "gamedata_signature_validations_aggregate": [ - 1492, + 1595, { "distinct_on": [ - 1510, + 1613, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -132233,19 +134159,19 @@ export default { 38 ], "order_by": [ - 1507, + 1610, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1496 + 1599 ] } ], "gamedata_signature_validations_by_pk": [ - 1491, + 1594, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -132281,7 +134207,7 @@ export default { 34, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "target_steam_id": [ @@ -132366,14 +134292,14 @@ export default { 89 ], "get_event_leaderboard": [ - 1534, + 1637, { "args": [ - 1523, + 1626, "get_event_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132383,23 +134309,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_event_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1523, + 1626, "get_event_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132409,23 +134335,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_leaderboard": [ - 1534, + 1637, { "args": [ - 1524, + 1627, "get_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132435,23 +134361,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1524, + 1627, "get_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132461,23 +134387,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_league_season_leaderboard": [ - 1534, + 1637, { "args": [ - 1525, + 1628, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132487,23 +134413,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_league_season_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1525, + 1628, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132513,23 +134439,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_player_leaderboard_rank": [ - 3101, + 3204, { "args": [ - 1526, + 1629, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -132539,23 +134465,23 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3102, + 3205, { "args": [ - 1526, + 1629, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -132565,19 +134491,19 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "leaderboard_entries": [ - 1534, + 1637, { "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132587,19 +134513,19 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "leaderboard_entries_aggregate": [ - 1535, + 1638, { "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -132609,19 +134535,19 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "league_divisions": [ - 1558, + 1661, { "distinct_on": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "limit": [ @@ -132631,19 +134557,19 @@ export default { 38 ], "order_by": [ - 1571, + 1674, "[league_divisions_order_by!]" ], "where": [ - 1562 + 1665 ] } ], "league_divisions_aggregate": [ - 1559, + 1662, { "distinct_on": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "limit": [ @@ -132653,28 +134579,28 @@ export default { 38 ], "order_by": [ - 1571, + 1674, "[league_divisions_order_by!]" ], "where": [ - 1562 + 1665 ] } ], "league_divisions_by_pk": [ - 1558, + 1661, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_match_weeks": [ - 1586, + 1689, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -132684,19 +134610,19 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], "league_match_weeks_aggregate": [ - 1587, + 1690, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -132706,28 +134632,28 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], "league_match_weeks_by_pk": [ - 1586, + 1689, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_relegation_playoffs": [ - 1627, + 1730, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -132737,19 +134663,19 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], "league_relegation_playoffs_aggregate": [ - 1628, + 1731, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -132759,28 +134685,28 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], "league_relegation_playoffs_by_pk": [ - 1627, + 1730, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_scheduling_proposals": [ - 1668, + 1771, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -132790,19 +134716,19 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "league_scheduling_proposals_aggregate": [ - 1669, + 1772, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -132812,28 +134738,28 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "league_scheduling_proposals_by_pk": [ - 1668, + 1771, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_season_divisions": [ - 1709, + 1812, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -132843,19 +134769,19 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "league_season_divisions_aggregate": [ - 1710, + 1813, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -132865,28 +134791,28 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "league_season_divisions_by_pk": [ - 1709, + 1812, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_seasons": [ - 1734, + 1837, { "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -132896,19 +134822,19 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], "league_seasons_aggregate": [ - 1735, + 1838, { "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -132918,28 +134844,28 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], "league_seasons_by_pk": [ - 1734, + 1837, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_team_movements": [ - 1767, + 1870, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -132949,19 +134875,19 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "league_team_movements_aggregate": [ - 1768, + 1871, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -132971,28 +134897,28 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "league_team_movements_by_pk": [ - 1767, + 1870, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_team_rosters": [ - 1808, + 1911, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -133002,19 +134928,19 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "league_team_rosters_aggregate": [ - 1809, + 1912, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -133024,19 +134950,19 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "league_team_rosters_by_pk": [ - 1808, + 1911, { "league_team_season_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -133046,10 +134972,10 @@ export default { } ], "league_team_seasons": [ - 1849, + 1952, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -133059,19 +134985,19 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "league_team_seasons_aggregate": [ - 1850, + 1953, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -133081,28 +135007,28 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "league_team_seasons_by_pk": [ - 1849, + 1952, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_teams": [ - 1891, + 1994, { "distinct_on": [ - 1904, + 2007, "[league_teams_select_column!]" ], "limit": [ @@ -133112,19 +135038,19 @@ export default { 38 ], "order_by": [ - 1902, + 2005, "[league_teams_order_by!]" ], "where": [ - 1894 + 1997 ] } ], "league_teams_aggregate": [ - 1892, + 1995, { "distinct_on": [ - 1904, + 2007, "[league_teams_select_column!]" ], "limit": [ @@ -133134,19 +135060,19 @@ export default { 38 ], "order_by": [ - 1902, + 2005, "[league_teams_order_by!]" ], "where": [ - 1894 + 1997 ] } ], "league_teams_by_pk": [ - 1891, + 1994, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -133167,10 +135093,10 @@ export default { } ], "lobbies": [ - 1910, + 2013, { "distinct_on": [ - 1923, + 2026, "[lobbies_select_column!]" ], "limit": [ @@ -133180,19 +135106,19 @@ export default { 38 ], "order_by": [ - 1921, + 2024, "[lobbies_order_by!]" ], "where": [ - 1913 + 2016 ] } ], "lobbies_aggregate": [ - 1911, + 2014, { "distinct_on": [ - 1923, + 2026, "[lobbies_select_column!]" ], "limit": [ @@ -133202,28 +135128,28 @@ export default { 38 ], "order_by": [ - 1921, + 2024, "[lobbies_order_by!]" ], "where": [ - 1913 + 2016 ] } ], "lobbies_by_pk": [ - 1910, + 2013, { "id": [ - 4641, + 4744, "uuid!" ] } ], "lobby_players": [ - 1929, + 2032, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -133233,19 +135159,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "lobby_players_aggregate": [ - 1930, + 2033, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -133255,19 +135181,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "lobby_players_by_pk": [ - 1929, + 2032, { "lobby_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -133277,10 +135203,10 @@ export default { } ], "map_pools": [ - 1974, + 2077, { "distinct_on": [ - 1987, + 2090, "[map_pools_select_column!]" ], "limit": [ @@ -133290,19 +135216,19 @@ export default { 38 ], "order_by": [ - 1985, + 2088, "[map_pools_order_by!]" ], "where": [ - 1977 + 2080 ] } ], "map_pools_aggregate": [ - 1975, + 2078, { "distinct_on": [ - 1987, + 2090, "[map_pools_select_column!]" ], "limit": [ @@ -133312,28 +135238,28 @@ export default { 38 ], "order_by": [ - 1985, + 2088, "[map_pools_order_by!]" ], "where": [ - 1977 + 2080 ] } ], "map_pools_by_pk": [ - 1974, + 2077, { "id": [ - 4641, + 4744, "uuid!" ] } ], "maps": [ - 1993, + 2096, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -133343,19 +135269,19 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], "maps_aggregate": [ - 1994, + 2097, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -133365,28 +135291,28 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], "maps_by_pk": [ - 1993, + 2096, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_clips": [ - 2022, + 2125, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -133396,19 +135322,19 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_aggregate": [ - 2023, + 2126, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -133418,28 +135344,28 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_by_pk": [ - 2022, + 2125, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_demo_sessions": [ - 2064, + 2167, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -133449,19 +135375,19 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], "match_demo_sessions_aggregate": [ - 2065, + 2168, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -133471,28 +135397,28 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], "match_demo_sessions_by_pk": [ - 2064, + 2167, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_lineup_players": [ - 2110, + 2213, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -133502,19 +135428,19 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "match_lineup_players_aggregate": [ - 2111, + 2214, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -133524,28 +135450,28 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "match_lineup_players_by_pk": [ - 2110, + 2213, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_lineups": [ - 2155, + 2258, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -133555,19 +135481,19 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "match_lineups_aggregate": [ - 2156, + 2259, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -133577,28 +135503,28 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "match_lineups_by_pk": [ - 2155, + 2258, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_demos": [ - 2197, + 2300, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -133608,19 +135534,19 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "match_map_demos_aggregate": [ - 2198, + 2301, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -133630,28 +135556,28 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "match_map_demos_by_pk": [ - 2197, + 2300, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_rounds": [ - 2248, + 2351, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -133661,19 +135587,19 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "match_map_rounds_aggregate": [ - 2249, + 2352, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -133683,28 +135609,28 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "match_map_rounds_by_pk": [ - 2248, + 2351, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -133714,19 +135640,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_map_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -133736,28 +135662,28 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_map_veto_picks_by_pk": [ - 2289, + 2392, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_maps": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -133767,19 +135693,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -133789,28 +135715,28 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_by_pk": [ - 2313, + 2416, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_options": [ - 2355, + 2458, { "distinct_on": [ - 2370, + 2473, "[match_options_select_column!]" ], "limit": [ @@ -133820,19 +135746,19 @@ export default { 38 ], "order_by": [ - 2368, + 2471, "[match_options_order_by!]" ], "where": [ - 2359 + 2462 ] } ], "match_options_aggregate": [ - 2356, + 2459, { "distinct_on": [ - 2370, + 2473, "[match_options_select_column!]" ], "limit": [ @@ -133842,28 +135768,28 @@ export default { 38 ], "order_by": [ - 2368, + 2471, "[match_options_order_by!]" ], "where": [ - 2359 + 2462 ] } ], "match_options_by_pk": [ - 2355, + 2458, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_region_veto_picks": [ - 2383, + 2486, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -133873,19 +135799,19 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], "match_region_veto_picks_aggregate": [ - 2384, + 2487, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -133895,28 +135821,28 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], "match_region_veto_picks_by_pk": [ - 2383, + 2486, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_streams": [ - 2407, + 2510, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -133926,19 +135852,19 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "match_streams_aggregate": [ - 2408, + 2511, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -133948,28 +135874,28 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "match_streams_by_pk": [ - 2407, + 2510, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_type_cfgs": [ - 2457, + 2560, { "distinct_on": [ - 2469, + 2572, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -133979,19 +135905,19 @@ export default { 38 ], "order_by": [ - 2467, + 2570, "[match_type_cfgs_order_by!]" ], "where": [ - 2460 + 2563 ] } ], "match_type_cfgs_aggregate": [ - 2458, + 2561, { "distinct_on": [ - 2469, + 2572, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -134001,28 +135927,28 @@ export default { 38 ], "order_by": [ - 2467, + 2570, "[match_type_cfgs_order_by!]" ], "where": [ - 2460 + 2563 ] } ], "match_type_cfgs_by_pk": [ - 2457, + 2560, { "type": [ - 571, + 591, "e_game_cfg_types_enum!" ] } ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -134032,19 +135958,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_aggregate": [ - 2476, + 2579, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -134054,19 +135980,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_by_pk": [ - 2475, + 2578, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -134075,10 +136001,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2517, + 2620, { "distinct_on": [ - 2529, + 2632, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -134088,19 +136014,19 @@ export default { 38 ], "order_by": [ - 2527, + 2630, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2520 + 2623 ] } ], "migration_hashes_hashes_aggregate": [ - 2518, + 2621, { "distinct_on": [ - 2529, + 2632, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -134110,16 +136036,16 @@ export default { 38 ], "order_by": [ - 2527, + 2630, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2520 + 2623 ] } ], "migration_hashes_hashes_by_pk": [ - 2517, + 2620, { "name": [ 78, @@ -134128,10 +136054,10 @@ export default { } ], "my_friends": [ - 2535, + 2638, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -134141,19 +136067,19 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], "my_friends_aggregate": [ - 2536, + 2639, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -134163,11 +136089,11 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], @@ -134175,7 +136101,7 @@ export default { 48, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -134184,10 +136110,10 @@ export default { 48 ], "news_articles": [ - 2581, + 2684, { "distinct_on": [ - 2595, + 2698, "[news_articles_select_column!]" ], "limit": [ @@ -134197,19 +136123,19 @@ export default { 38 ], "order_by": [ - 2593, + 2696, "[news_articles_order_by!]" ], "where": [ - 2585 + 2688 ] } ], "news_articles_aggregate": [ - 2582, + 2685, { "distinct_on": [ - 2595, + 2698, "[news_articles_select_column!]" ], "limit": [ @@ -134219,28 +136145,28 @@ export default { 38 ], "order_by": [ - 2593, + 2696, "[news_articles_order_by!]" ], "where": [ - 2585 + 2688 ] } ], "news_articles_by_pk": [ - 2581, + 2684, { "id": [ - 4641, + 4744, "uuid!" ] } ], "notifications": [ - 2608, + 2711, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -134250,19 +136176,19 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "notifications_aggregate": [ - 2609, + 2712, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -134272,28 +136198,28 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "notifications_by_pk": [ - 2608, + 2711, { "id": [ - 4641, + 4744, "uuid!" ] } ], "pending_match_import_players": [ - 2661, + 2764, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -134303,19 +136229,19 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "pending_match_import_players_aggregate": [ - 2662, + 2765, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -134325,32 +136251,32 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "pending_match_import_players_by_pk": [ - 2661, + 2764, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "pending_match_imports": [ - 2702, + 2805, { "distinct_on": [ - 2717, + 2820, "[pending_match_imports_select_column!]" ], "limit": [ @@ -134360,19 +136286,19 @@ export default { 38 ], "order_by": [ - 2715, + 2818, "[pending_match_imports_order_by!]" ], "where": [ - 2706 + 2809 ] } ], "pending_match_imports_aggregate": [ - 2703, + 2806, { "distinct_on": [ - 2717, + 2820, "[pending_match_imports_select_column!]" ], "limit": [ @@ -134382,28 +136308,28 @@ export default { 38 ], "order_by": [ - 2715, + 2818, "[pending_match_imports_order_by!]" ], "where": [ - 2706 + 2809 ] } ], "pending_match_imports_by_pk": [ - 2702, + 2805, { "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "player_aim_stats_demo": [ - 2730, + 2833, { "distinct_on": [ - 2744, + 2847, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -134413,19 +136339,19 @@ export default { 38 ], "order_by": [ - 2742, + 2845, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2734 + 2837 ] } ], "player_aim_stats_demo_aggregate": [ - 2731, + 2834, { "distinct_on": [ - 2744, + 2847, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -134435,32 +136361,32 @@ export default { 38 ], "order_by": [ - 2742, + 2845, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2734 + 2837 ] } ], "player_aim_stats_demo_by_pk": [ - 2730, + 2833, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2757, + 2860, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -134470,19 +136396,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "player_aim_weapon_stats_aggregate": [ - 2758, + 2861, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -134492,19 +136418,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "player_aim_weapon_stats_by_pk": [ - 2757, + 2860, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -134518,10 +136444,10 @@ export default { } ], "player_assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -134531,19 +136457,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -134553,16 +136479,16 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_by_pk": [ - 2798, + 2901, { "attacked_steam_id": [ 180, @@ -134573,20 +136499,20 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_career_stats_v": [ - 2843, + 2946, { "distinct_on": [ - 2851, + 2954, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -134596,19 +136522,19 @@ export default { 38 ], "order_by": [ - 2850, + 2953, "[player_career_stats_v_order_by!]" ], "where": [ - 2847 + 2950 ] } ], "player_career_stats_v_aggregate": [ - 2844, + 2947, { "distinct_on": [ - 2851, + 2954, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -134618,19 +136544,19 @@ export default { 38 ], "order_by": [ - 2850, + 2953, "[player_career_stats_v_order_by!]" ], "where": [ - 2847 + 2950 ] } ], "player_damages": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -134640,19 +136566,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -134662,36 +136588,36 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_by_pk": [ - 2861, + 2964, { "id": [ - 4641, + 4744, "uuid!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_elo": [ - 2902, + 3005, { "distinct_on": [ - 2916, + 3019, "[player_elo_select_column!]" ], "limit": [ @@ -134701,19 +136627,19 @@ export default { 38 ], "order_by": [ - 2914, + 3017, "[player_elo_order_by!]" ], "where": [ - 2906 + 3009 ] } ], "player_elo_aggregate": [ - 2903, + 3006, { "distinct_on": [ - 2916, + 3019, "[player_elo_select_column!]" ], "limit": [ @@ -134723,19 +136649,19 @@ export default { 38 ], "order_by": [ - 2914, + 3017, "[player_elo_order_by!]" ], "where": [ - 2906 + 3009 ] } ], "player_elo_by_pk": [ - 2902, + 3005, { "match_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -134743,16 +136669,16 @@ export default { "bigint!" ], "type": [ - 840, + 860, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2929, + 3032, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -134762,19 +136688,19 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], "player_faceit_rank_history_aggregate": [ - 2930, + 3033, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -134784,28 +136710,28 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], "player_faceit_rank_history_by_pk": [ - 2929, + 3032, { "id": [ - 4641, + 4744, "uuid!" ] } ], "player_flashes": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -134815,19 +136741,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_flashes_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -134837,16 +136763,16 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_flashes_by_pk": [ - 2970, + 3073, { "attacked_steam_id": [ 180, @@ -134857,20 +136783,20 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -134880,19 +136806,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -134902,16 +136828,16 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_by_pk": [ - 3015, + 3118, { "attacked_steam_id": [ 180, @@ -134922,20 +136848,20 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3027, + 3130, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -134945,19 +136871,19 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], "player_kills_by_weapon_aggregate": [ - 3028, + 3131, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -134967,16 +136893,16 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], "player_kills_by_weapon_by_pk": [ - 3027, + 3130, { "player_steam_id": [ 180, @@ -134989,10 +136915,10 @@ export default { } ], "player_leaderboard_rank": [ - 3101, + 3204, { "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -135002,19 +136928,19 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "player_leaderboard_rank_aggregate": [ - 3102, + 3205, { "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -135024,19 +136950,19 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "player_match_map_stats": [ - 3124, + 3227, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -135046,19 +136972,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "player_match_map_stats_aggregate": [ - 3125, + 3228, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -135068,19 +136994,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "player_match_map_stats_by_pk": [ - 3124, + 3227, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -135090,10 +137016,10 @@ export default { } ], "player_match_performance_v": [ - 3165, + 3268, { "distinct_on": [ - 3173, + 3276, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -135103,19 +137029,19 @@ export default { 38 ], "order_by": [ - 3172, + 3275, "[player_match_performance_v_order_by!]" ], "where": [ - 3169 + 3272 ] } ], "player_match_performance_v_aggregate": [ - 3166, + 3269, { "distinct_on": [ - 3173, + 3276, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -135125,19 +137051,19 @@ export default { 38 ], "order_by": [ - 3172, + 3275, "[player_match_performance_v_order_by!]" ], "where": [ - 3169 + 3272 ] } ], "player_match_stats_v": [ - 3183, + 3286, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -135147,19 +137073,19 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "player_match_stats_v_aggregate": [ - 3184, + 3287, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -135169,19 +137095,19 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "player_objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -135191,19 +137117,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -135213,19 +137139,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_by_pk": [ - 3216, + 3319, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -135233,16 +137159,16 @@ export default { "bigint!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_performance_v": [ - 3257, + 3360, { "distinct_on": [ - 3265, + 3368, "[player_performance_v_select_column!]" ], "limit": [ @@ -135252,19 +137178,19 @@ export default { 38 ], "order_by": [ - 3264, + 3367, "[player_performance_v_order_by!]" ], "where": [ - 3261 + 3364 ] } ], "player_performance_v_aggregate": [ - 3258, + 3361, { "distinct_on": [ - 3265, + 3368, "[player_performance_v_select_column!]" ], "limit": [ @@ -135274,19 +137200,19 @@ export default { 38 ], "order_by": [ - 3264, + 3367, "[player_performance_v_order_by!]" ], "where": [ - 3261 + 3364 ] } ], "player_premier_rank_history": [ - 3275, + 3378, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -135296,19 +137222,19 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "player_premier_rank_history_aggregate": [ - 3276, + 3379, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -135318,28 +137244,28 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "player_premier_rank_history_by_pk": [ - 3275, + 3378, { "id": [ - 4641, + 4744, "uuid!" ] } ], "player_sanctions": [ - 3316, + 3419, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -135349,19 +137275,19 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "player_sanctions_aggregate": [ - 3317, + 3420, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -135371,32 +137297,32 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "player_sanctions_by_pk": [ - 3316, + 3419, { "created_at": [ - 4203, + 4306, "timestamptz!" ], "id": [ - 4641, + 4744, "uuid!" ] } ], "player_season_stats": [ - 3357, + 3460, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -135406,19 +137332,19 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "player_season_stats_aggregate": [ - 3358, + 3461, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -135428,32 +137354,32 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "player_season_stats_by_pk": [ - 3357, + 3460, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4641, + 4744, "uuid!" ] } ], "player_stats": [ - 3416, + 3519, { "distinct_on": [ - 3431, + 3534, "[player_stats_select_column!]" ], "limit": [ @@ -135463,19 +137389,19 @@ export default { 38 ], "order_by": [ - 3429, + 3532, "[player_stats_order_by!]" ], "where": [ - 3420 + 3523 ] } ], "player_stats_aggregate": [ - 3417, + 3520, { "distinct_on": [ - 3431, + 3534, "[player_stats_select_column!]" ], "limit": [ @@ -135485,16 +137411,16 @@ export default { 38 ], "order_by": [ - 3429, + 3532, "[player_stats_order_by!]" ], "where": [ - 3420 + 3523 ] } ], "player_stats_by_pk": [ - 3416, + 3519, { "player_steam_id": [ 180, @@ -135503,10 +137429,10 @@ export default { } ], "player_steam_bot_friend": [ - 3444, + 3547, { "distinct_on": [ - 3463, + 3566, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -135516,19 +137442,19 @@ export default { 38 ], "order_by": [ - 3460, + 3563, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3449 + 3552 ] } ], "player_steam_bot_friend_aggregate": [ - 3445, + 3548, { "distinct_on": [ - 3463, + 3566, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -135538,16 +137464,16 @@ export default { 38 ], "order_by": [ - 3460, + 3563, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3449 + 3552 ] } ], "player_steam_bot_friend_by_pk": [ - 3444, + 3547, { "steam_id": [ 180, @@ -135556,10 +137482,10 @@ export default { } ], "player_steam_match_auth": [ - 3476, + 3579, { "distinct_on": [ - 3490, + 3593, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -135569,19 +137495,19 @@ export default { 38 ], "order_by": [ - 3488, + 3591, "[player_steam_match_auth_order_by!]" ], "where": [ - 3480 + 3583 ] } ], "player_steam_match_auth_aggregate": [ - 3477, + 3580, { "distinct_on": [ - 3490, + 3593, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -135591,16 +137517,16 @@ export default { 38 ], "order_by": [ - 3488, + 3591, "[player_steam_match_auth_order_by!]" ], "where": [ - 3480 + 3583 ] } ], "player_steam_match_auth_by_pk": [ - 3476, + 3579, { "steam_id": [ 180, @@ -135609,10 +137535,10 @@ export default { } ], "player_unused_utility": [ - 3503, + 3606, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -135622,19 +137548,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utility_aggregate": [ - 3504, + 3607, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -135644,19 +137570,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utility_by_pk": [ - 3503, + 3606, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -135666,10 +137592,10 @@ export default { } ], "player_utility": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -135679,19 +137605,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utility_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -135701,36 +137627,36 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utility_by_pk": [ - 3544, + 3647, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3585, + 3688, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -135740,19 +137666,19 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], "player_weapon_stats_v_aggregate": [ - 3586, + 3689, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -135762,19 +137688,19 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], "players": [ - 3618, + 3721, { "distinct_on": [ - 3633, + 3736, "[players_select_column!]" ], "limit": [ @@ -135784,19 +137710,19 @@ export default { 38 ], "order_by": [ - 3631, + 3734, "[players_order_by!]" ], "where": [ - 3622 + 3725 ] } ], "players_aggregate": [ - 3619, + 3722, { "distinct_on": [ - 3633, + 3736, "[players_select_column!]" ], "limit": [ @@ -135806,16 +137732,16 @@ export default { 38 ], "order_by": [ - 3631, + 3734, "[players_order_by!]" ], "where": [ - 3622 + 3725 ] } ], "players_by_pk": [ - 3618, + 3721, { "steam_id": [ 180, @@ -135824,10 +137750,10 @@ export default { } ], "plugin_versions": [ - 3646, + 3749, { "distinct_on": [ - 3660, + 3763, "[plugin_versions_select_column!]" ], "limit": [ @@ -135837,19 +137763,19 @@ export default { 38 ], "order_by": [ - 3658, + 3761, "[plugin_versions_order_by!]" ], "where": [ - 3650 + 3753 ] } ], "plugin_versions_aggregate": [ - 3647, + 3750, { "distinct_on": [ - 3660, + 3763, "[plugin_versions_select_column!]" ], "limit": [ @@ -135859,19 +137785,19 @@ export default { 38 ], "order_by": [ - 3658, + 3761, "[plugin_versions_order_by!]" ], "where": [ - 3650 + 3753 ] } ], "plugin_versions_by_pk": [ - 3646, + 3749, { "runtime": [ - 921, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -135897,10 +137823,10 @@ export default { } ], "seasons": [ - 3677, + 3780, { "distinct_on": [ - 3692, + 3795, "[seasons_select_column!]" ], "limit": [ @@ -135910,19 +137836,19 @@ export default { 38 ], "order_by": [ - 3690, + 3793, "[seasons_order_by!]" ], "where": [ - 3681 + 3784 ] } ], "seasons_aggregate": [ - 3678, + 3781, { "distinct_on": [ - 3692, + 3795, "[seasons_select_column!]" ], "limit": [ @@ -135932,28 +137858,28 @@ export default { 38 ], "order_by": [ - 3690, + 3793, "[seasons_order_by!]" ], "where": [ - 3681 + 3784 ] } ], "seasons_by_pk": [ - 3677, + 3780, { "id": [ - 4641, + 4744, "uuid!" ] } ], "server_regions": [ - 3705, + 3808, { "distinct_on": [ - 3719, + 3822, "[server_regions_select_column!]" ], "limit": [ @@ -135963,19 +137889,19 @@ export default { 38 ], "order_by": [ - 3717, + 3820, "[server_regions_order_by!]" ], "where": [ - 3709 + 3812 ] } ], "server_regions_aggregate": [ - 3706, + 3809, { "distinct_on": [ - 3719, + 3822, "[server_regions_select_column!]" ], "limit": [ @@ -135985,16 +137911,16 @@ export default { 38 ], "order_by": [ - 3717, + 3820, "[server_regions_order_by!]" ], "where": [ - 3709 + 3812 ] } ], "server_regions_by_pk": [ - 3705, + 3808, { "value": [ 78, @@ -136003,10 +137929,10 @@ export default { } ], "servers": [ - 3732, + 3835, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -136016,19 +137942,19 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_aggregate": [ - 3733, + 3836, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -136038,28 +137964,28 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_by_pk": [ - 3732, + 3835, { "id": [ - 4641, + 4744, "uuid!" ] } ], "settings": [ - 3778, + 3881, { "distinct_on": [ - 3790, + 3893, "[settings_select_column!]" ], "limit": [ @@ -136069,19 +137995,19 @@ export default { 38 ], "order_by": [ - 3788, + 3891, "[settings_order_by!]" ], "where": [ - 3781 + 3884 ] } ], "settings_aggregate": [ - 3779, + 3882, { "distinct_on": [ - 3790, + 3893, "[settings_select_column!]" ], "limit": [ @@ -136091,16 +138017,16 @@ export default { 38 ], "order_by": [ - 3788, + 3891, "[settings_order_by!]" ], "where": [ - 3781 + 3884 ] } ], "settings_by_pk": [ - 3778, + 3881, { "name": [ 78, @@ -136112,10 +138038,10 @@ export default { 72 ], "steam_account_claims": [ - 3798, + 3901, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -136125,19 +138051,19 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "steam_account_claims_aggregate": [ - 3799, + 3902, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -136147,28 +138073,28 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "steam_account_claims_by_pk": [ - 3798, + 3901, { "id": [ - 4641, + 4744, "uuid!" ] } ], "steam_accounts": [ - 3822, + 3925, { "distinct_on": [ - 3837, + 3940, "[steam_accounts_select_column!]" ], "limit": [ @@ -136178,19 +138104,19 @@ export default { 38 ], "order_by": [ - 3835, + 3938, "[steam_accounts_order_by!]" ], "where": [ - 3826 + 3929 ] } ], "steam_accounts_aggregate": [ - 3823, + 3926, { "distinct_on": [ - 3837, + 3940, "[steam_accounts_select_column!]" ], "limit": [ @@ -136200,28 +138126,28 @@ export default { 38 ], "order_by": [ - 3835, + 3938, "[steam_accounts_order_by!]" ], "where": [ - 3826 + 3929 ] } ], "steam_accounts_by_pk": [ - 3822, + 3925, { "id": [ - 4641, + 4744, "uuid!" ] } ], "system_alerts": [ - 3850, + 3953, { "distinct_on": [ - 3864, + 3967, "[system_alerts_select_column!]" ], "limit": [ @@ -136231,19 +138157,19 @@ export default { 38 ], "order_by": [ - 3862, + 3965, "[system_alerts_order_by!]" ], "where": [ - 3854 + 3957 ] } ], "system_alerts_aggregate": [ - 3851, + 3954, { "distinct_on": [ - 3864, + 3967, "[system_alerts_select_column!]" ], "limit": [ @@ -136253,19 +138179,19 @@ export default { 38 ], "order_by": [ - 3862, + 3965, "[system_alerts_order_by!]" ], "where": [ - 3854 + 3957 ] } ], "system_alerts_by_pk": [ - 3850, + 3953, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -136274,16 +138200,16 @@ export default { 85, { "team_id": [ - 4641, + 4744, "uuid!" ] } ], "team_invites": [ - 3877, + 3980, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -136293,19 +138219,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_invites_aggregate": [ - 3878, + 3981, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -136315,28 +138241,28 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_invites_by_pk": [ - 3877, + 3980, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_roster": [ - 3918, + 4021, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -136346,19 +138272,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_roster_aggregate": [ - 3919, + 4022, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -136368,32 +138294,32 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_roster_by_pk": [ - 3918, + 4021, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_alerts": [ - 3963, + 4066, { "distinct_on": [ - 3977, + 4080, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -136403,19 +138329,19 @@ export default { 38 ], "order_by": [ - 3975, + 4078, "[team_scrim_alerts_order_by!]" ], "where": [ - 3967 + 4070 ] } ], "team_scrim_alerts_aggregate": [ - 3964, + 4067, { "distinct_on": [ - 3977, + 4080, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -136425,28 +138351,28 @@ export default { 38 ], "order_by": [ - 3975, + 4078, "[team_scrim_alerts_order_by!]" ], "where": [ - 3967 + 4070 ] } ], "team_scrim_alerts_by_pk": [ - 3963, + 4066, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_availability": [ - 3990, + 4093, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -136456,19 +138382,19 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "team_scrim_availability_aggregate": [ - 3991, + 4094, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -136478,28 +138404,28 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "team_scrim_availability_by_pk": [ - 3990, + 4093, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4018, + 4121, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -136509,19 +138435,19 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "team_scrim_request_proposals_aggregate": [ - 4019, + 4122, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -136531,28 +138457,28 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "team_scrim_request_proposals_by_pk": [ - 4018, + 4121, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_requests": [ - 4059, + 4162, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -136562,19 +138488,19 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], "team_scrim_requests_aggregate": [ - 4060, + 4163, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -136584,28 +138510,28 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], "team_scrim_requests_by_pk": [ - 4059, + 4162, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_settings": [ - 4105, + 4208, { "distinct_on": [ - 4120, + 4223, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -136615,19 +138541,19 @@ export default { 38 ], "order_by": [ - 4118, + 4221, "[team_scrim_settings_order_by!]" ], "where": [ - 4109 + 4212 ] } ], "team_scrim_settings_aggregate": [ - 4106, + 4209, { "distinct_on": [ - 4120, + 4223, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -136637,28 +138563,28 @@ export default { 38 ], "order_by": [ - 4118, + 4221, "[team_scrim_settings_order_by!]" ], "where": [ - 4109 + 4212 ] } ], "team_scrim_settings_by_pk": [ - 4105, + 4208, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_suggestions": [ - 4133, + 4236, { "distinct_on": [ - 4147, + 4250, "[team_suggestions_select_column!]" ], "limit": [ @@ -136668,19 +138594,19 @@ export default { 38 ], "order_by": [ - 4145, + 4248, "[team_suggestions_order_by!]" ], "where": [ - 4137 + 4240 ] } ], "team_suggestions_aggregate": [ - 4134, + 4237, { "distinct_on": [ - 4147, + 4250, "[team_suggestions_select_column!]" ], "limit": [ @@ -136690,28 +138616,28 @@ export default { 38 ], "order_by": [ - 4145, + 4248, "[team_suggestions_order_by!]" ], "where": [ - 4137 + 4240 ] } ], "team_suggestions_by_pk": [ - 4133, + 4236, { "id": [ - 4641, + 4744, "uuid!" ] } ], "teams": [ - 4160, + 4263, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -136721,19 +138647,19 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "teams_aggregate": [ - 4161, + 4264, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -136743,19 +138669,19 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "teams_by_pk": [ - 4160, + 4263, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -136764,10 +138690,10 @@ export default { 86 ], "tournament_brackets": [ - 4205, + 4308, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136777,19 +138703,19 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "tournament_brackets_aggregate": [ - 4206, + 4309, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -136799,28 +138725,28 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "tournament_brackets_by_pk": [ - 4205, + 4308, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_organizers": [ - 4251, + 4354, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136830,19 +138756,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_organizers_aggregate": [ - 4252, + 4355, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -136852,32 +138778,32 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_organizers_by_pk": [ - 4251, + 4354, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_stage_windows": [ - 4292, + 4395, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -136887,19 +138813,19 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], "tournament_stage_windows_aggregate": [ - 4293, + 4396, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -136909,28 +138835,28 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], "tournament_stage_windows_by_pk": [ - 4292, + 4395, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_stages": [ - 4333, + 4436, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -136940,19 +138866,19 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "tournament_stages_aggregate": [ - 4334, + 4437, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -136962,28 +138888,28 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "tournament_stages_by_pk": [ - 4333, + 4436, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_team_invites": [ - 4384, + 4487, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -136993,19 +138919,19 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], "tournament_team_invites_aggregate": [ - 4385, + 4488, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -137015,28 +138941,28 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], "tournament_team_invites_by_pk": [ - 4384, + 4487, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_team_roster": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -137046,19 +138972,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_team_roster_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -137068,32 +138994,32 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_team_roster_by_pk": [ - 4425, + 4528, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_teams": [ - 4466, + 4569, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -137103,19 +139029,19 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "tournament_teams_aggregate": [ - 4467, + 4570, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -137125,28 +139051,28 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "tournament_teams_by_pk": [ - 4466, + 4569, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_trophies": [ - 4508, + 4611, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -137156,19 +139082,19 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophies_aggregate": [ - 4509, + 4612, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -137178,28 +139104,28 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophies_by_pk": [ - 4508, + 4611, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_trophy_configs": [ - 4553, + 4656, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -137209,19 +139135,19 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], "tournament_trophy_configs_aggregate": [ - 4554, + 4657, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -137231,28 +139157,28 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], "tournament_trophy_configs_by_pk": [ - 4553, + 4656, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournaments": [ - 4595, + 4698, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -137262,19 +139188,19 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_aggregate": [ - 4596, + 4699, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -137284,28 +139210,72 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_by_pk": [ - 4595, + 4698, { "id": [ - 4641, + 4744, "uuid!" ] } ], + "v_event_matches": [ + 4747, + { + "distinct_on": [ + 4754, + "[v_event_matches_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4753, + "[v_event_matches_order_by!]" + ], + "where": [ + 4750 + ] + } + ], + "v_event_matches_aggregate": [ + 4748, + { + "distinct_on": [ + 4754, + "[v_event_matches_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4753, + "[v_event_matches_order_by!]" + ], + "where": [ + 4750 + ] + } + ], "v_event_player_stats": [ - 4644, + 4757, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -137315,19 +139285,19 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "v_event_player_stats_aggregate": [ - 4645, + 4758, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -137337,19 +139307,19 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "v_gpu_pool_status": [ - 4695, + 4808, { "distinct_on": [ - 4703, + 4816, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -137359,19 +139329,19 @@ export default { 38 ], "order_by": [ - 4702, + 4815, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4699 + 4812 ] } ], "v_gpu_pool_status_aggregate": [ - 4696, + 4809, { "distinct_on": [ - 4703, + 4816, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -137381,19 +139351,19 @@ export default { 38 ], "order_by": [ - 4702, + 4815, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4699 + 4812 ] } ], "v_league_division_standings": [ - 4713, + 4826, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -137403,19 +139373,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "v_league_division_standings_aggregate": [ - 4714, + 4827, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -137425,19 +139395,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "v_league_season_player_stats": [ - 4746, + 4859, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -137447,19 +139417,19 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], "v_league_season_player_stats_aggregate": [ - 4747, + 4860, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -137469,19 +139439,19 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], "v_match_captains": [ - 4797, + 4910, { "distinct_on": [ - 4809, + 4922, "[v_match_captains_select_column!]" ], "limit": [ @@ -137491,19 +139461,19 @@ export default { 38 ], "order_by": [ - 4808, + 4921, "[v_match_captains_order_by!]" ], "where": [ - 4801 + 4914 ] } ], "v_match_captains_aggregate": [ - 4798, + 4911, { "distinct_on": [ - 4809, + 4922, "[v_match_captains_select_column!]" ], "limit": [ @@ -137513,19 +139483,19 @@ export default { 38 ], "order_by": [ - 4808, + 4921, "[v_match_captains_order_by!]" ], "where": [ - 4801 + 4914 ] } ], "v_match_clutches": [ - 4821, + 4934, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -137535,19 +139505,19 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], "v_match_clutches_aggregate": [ - 4822, + 4935, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -137557,19 +139527,19 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], "v_match_kill_pairs": [ - 4854, + 4967, { "distinct_on": [ - 4862, + 4975, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -137579,19 +139549,19 @@ export default { 38 ], "order_by": [ - 4861, + 4974, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4858 + 4971 ] } ], "v_match_kill_pairs_aggregate": [ - 4855, + 4968, { "distinct_on": [ - 4862, + 4975, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -137601,19 +139571,19 @@ export default { 38 ], "order_by": [ - 4861, + 4974, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4858 + 4971 ] } ], "v_match_lineup_buy_types": [ - 4872, + 4985, { "distinct_on": [ - 4880, + 4993, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -137623,19 +139593,19 @@ export default { 38 ], "order_by": [ - 4879, + 4992, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4876 + 4989 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4873, + 4986, { "distinct_on": [ - 4880, + 4993, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -137645,19 +139615,19 @@ export default { 38 ], "order_by": [ - 4879, + 4992, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4876 + 4989 ] } ], "v_match_lineup_map_stats": [ - 4890, + 5003, { "distinct_on": [ - 4898, + 5011, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -137667,19 +139637,19 @@ export default { 38 ], "order_by": [ - 4897, + 5010, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4894 + 5007 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4891, + 5004, { "distinct_on": [ - 4898, + 5011, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -137689,19 +139659,19 @@ export default { 38 ], "order_by": [ - 4897, + 5010, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4894 + 5007 ] } ], "v_match_map_backup_rounds": [ - 4908, + 5021, { "distinct_on": [ - 4919, + 5032, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137711,19 +139681,19 @@ export default { 38 ], "order_by": [ - 4918, + 5031, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4912 + 5025 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4909, + 5022, { "distinct_on": [ - 4919, + 5032, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -137733,19 +139703,19 @@ export default { 38 ], "order_by": [ - 4918, + 5031, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4912 + 5025 ] } ], "v_match_player_buy_types": [ - 4931, + 5044, { "distinct_on": [ - 4939, + 5052, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137755,19 +139725,19 @@ export default { 38 ], "order_by": [ - 4938, + 5051, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4935 + 5048 ] } ], "v_match_player_buy_types_aggregate": [ - 4932, + 5045, { "distinct_on": [ - 4939, + 5052, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -137777,19 +139747,19 @@ export default { 38 ], "order_by": [ - 4938, + 5051, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4935 + 5048 ] } ], "v_match_player_opening_duels": [ - 4949, + 5062, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137799,19 +139769,19 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "v_match_player_opening_duels_aggregate": [ - 4950, + 5063, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -137821,19 +139791,19 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "v_player_arch_nemesis": [ - 4982, + 5095, { "distinct_on": [ - 4990, + 5103, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137843,19 +139813,19 @@ export default { 38 ], "order_by": [ - 4989, + 5102, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4986 + 5099 ] } ], "v_player_arch_nemesis_aggregate": [ - 4983, + 5096, { "distinct_on": [ - 4990, + 5103, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -137865,19 +139835,19 @@ export default { 38 ], "order_by": [ - 4989, + 5102, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4986 + 5099 ] } ], "v_player_damage": [ - 5000, + 5113, { "distinct_on": [ - 5008, + 5121, "[v_player_damage_select_column!]" ], "limit": [ @@ -137887,19 +139857,19 @@ export default { 38 ], "order_by": [ - 5007, + 5120, "[v_player_damage_order_by!]" ], "where": [ - 5004 + 5117 ] } ], "v_player_damage_aggregate": [ - 5001, + 5114, { "distinct_on": [ - 5008, + 5121, "[v_player_damage_select_column!]" ], "limit": [ @@ -137909,19 +139879,19 @@ export default { 38 ], "order_by": [ - 5007, + 5120, "[v_player_damage_order_by!]" ], "where": [ - 5004 + 5117 ] } ], "v_player_elo": [ - 5018, + 5131, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -137931,19 +139901,19 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "v_player_elo_aggregate": [ - 5019, + 5132, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -137953,19 +139923,19 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "v_player_map_losses": [ - 5069, + 5182, { "distinct_on": [ - 5077, + 5190, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137975,19 +139945,19 @@ export default { 38 ], "order_by": [ - 5076, + 5189, "[v_player_map_losses_order_by!]" ], "where": [ - 5073 + 5186 ] } ], "v_player_map_losses_aggregate": [ - 5070, + 5183, { "distinct_on": [ - 5077, + 5190, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -137997,19 +139967,19 @@ export default { 38 ], "order_by": [ - 5076, + 5189, "[v_player_map_losses_order_by!]" ], "where": [ - 5073 + 5186 ] } ], "v_player_map_wins": [ - 5087, + 5200, { "distinct_on": [ - 5095, + 5208, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -138019,19 +139989,19 @@ export default { 38 ], "order_by": [ - 5094, + 5207, "[v_player_map_wins_order_by!]" ], "where": [ - 5091 + 5204 ] } ], "v_player_map_wins_aggregate": [ - 5088, + 5201, { "distinct_on": [ - 5095, + 5208, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -138041,19 +140011,19 @@ export default { 38 ], "order_by": [ - 5094, + 5207, "[v_player_map_wins_order_by!]" ], "where": [ - 5091 + 5204 ] } ], "v_player_match_head_to_head": [ - 5105, + 5218, { "distinct_on": [ - 5113, + 5226, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -138063,19 +140033,19 @@ export default { 38 ], "order_by": [ - 5112, + 5225, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5109 + 5222 ] } ], "v_player_match_head_to_head_aggregate": [ - 5106, + 5219, { "distinct_on": [ - 5113, + 5226, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -138085,19 +140055,19 @@ export default { 38 ], "order_by": [ - 5112, + 5225, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5109 + 5222 ] } ], "v_player_match_map_hltv": [ - 5123, + 5236, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -138107,19 +140077,19 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "v_player_match_map_hltv_aggregate": [ - 5124, + 5237, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -138129,19 +140099,19 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "v_player_match_map_roles": [ - 5160, + 5273, { "distinct_on": [ - 5168, + 5281, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -138151,19 +140121,19 @@ export default { 38 ], "order_by": [ - 5167, + 5280, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5164 + 5277 ] } ], "v_player_match_map_roles_aggregate": [ - 5161, + 5274, { "distinct_on": [ - 5168, + 5281, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -138173,19 +140143,19 @@ export default { 38 ], "order_by": [ - 5167, + 5280, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5164 + 5277 ] } ], "v_player_match_performance": [ - 5178, + 5291, { "distinct_on": [ - 5186, + 5299, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -138195,19 +140165,19 @@ export default { 38 ], "order_by": [ - 5185, + 5298, "[v_player_match_performance_order_by!]" ], "where": [ - 5182 + 5295 ] } ], "v_player_match_performance_aggregate": [ - 5179, + 5292, { "distinct_on": [ - 5186, + 5299, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -138217,19 +140187,19 @@ export default { 38 ], "order_by": [ - 5185, + 5298, "[v_player_match_performance_order_by!]" ], "where": [ - 5182 + 5295 ] } ], "v_player_match_rating": [ - 5196, + 5309, { "distinct_on": [ - 5204, + 5317, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -138239,19 +140209,19 @@ export default { 38 ], "order_by": [ - 5203, + 5316, "[v_player_match_rating_order_by!]" ], "where": [ - 5200 + 5313 ] } ], "v_player_match_rating_aggregate": [ - 5197, + 5310, { "distinct_on": [ - 5204, + 5317, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -138261,19 +140231,19 @@ export default { 38 ], "order_by": [ - 5203, + 5316, "[v_player_match_rating_order_by!]" ], "where": [ - 5200 + 5313 ] } ], "v_player_multi_kills": [ - 5214, + 5327, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -138283,19 +140253,19 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], "v_player_multi_kills_aggregate": [ - 5215, + 5328, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -138305,19 +140275,19 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], "v_player_weapon_damage": [ - 5247, + 5360, { "distinct_on": [ - 5255, + 5368, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -138327,19 +140297,19 @@ export default { 38 ], "order_by": [ - 5254, + 5367, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5251 + 5364 ] } ], "v_player_weapon_damage_aggregate": [ - 5248, + 5361, { "distinct_on": [ - 5255, + 5368, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -138349,19 +140319,19 @@ export default { 38 ], "order_by": [ - 5254, + 5367, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5251 + 5364 ] } ], "v_player_weapon_kills": [ - 5265, + 5378, { "distinct_on": [ - 5273, + 5386, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -138371,19 +140341,19 @@ export default { 38 ], "order_by": [ - 5272, + 5385, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5269 + 5382 ] } ], "v_player_weapon_kills_aggregate": [ - 5266, + 5379, { "distinct_on": [ - 5273, + 5386, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -138393,19 +140363,19 @@ export default { 38 ], "order_by": [ - 5272, + 5385, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5269 + 5382 ] } ], "v_pool_maps": [ - 5283, + 5396, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138415,19 +140385,19 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], "v_pool_maps_aggregate": [ - 5284, + 5397, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -138437,19 +140407,19 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], "v_steam_account_pool_status": [ - 5307, + 5420, { "distinct_on": [ - 5315, + 5428, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138459,19 +140429,19 @@ export default { 38 ], "order_by": [ - 5314, + 5427, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5311 + 5424 ] } ], "v_steam_account_pool_status_aggregate": [ - 5308, + 5421, { "distinct_on": [ - 5315, + 5428, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -138481,19 +140451,19 @@ export default { 38 ], "order_by": [ - 5314, + 5427, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5311 + 5424 ] } ], "v_team_ranks": [ - 5325, + 5438, { "distinct_on": [ - 5335, + 5448, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138503,19 +140473,19 @@ export default { 38 ], "order_by": [ - 5334, + 5447, "[v_team_ranks_order_by!]" ], "where": [ - 5329 + 5442 ] } ], "v_team_ranks_aggregate": [ - 5326, + 5439, { "distinct_on": [ - 5335, + 5448, "[v_team_ranks_select_column!]" ], "limit": [ @@ -138525,19 +140495,19 @@ export default { 38 ], "order_by": [ - 5334, + 5447, "[v_team_ranks_order_by!]" ], "where": [ - 5329 + 5442 ] } ], "v_team_reputation": [ - 5345, + 5458, { "distinct_on": [ - 5355, + 5468, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138547,19 +140517,19 @@ export default { 38 ], "order_by": [ - 5354, + 5467, "[v_team_reputation_order_by!]" ], "where": [ - 5349 + 5462 ] } ], "v_team_reputation_aggregate": [ - 5346, + 5459, { "distinct_on": [ - 5355, + 5468, "[v_team_reputation_select_column!]" ], "limit": [ @@ -138569,19 +140539,19 @@ export default { 38 ], "order_by": [ - 5354, + 5467, "[v_team_reputation_order_by!]" ], "where": [ - 5349 + 5462 ] } ], "v_team_stage_results": [ - 5365, + 5478, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138591,19 +140561,19 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "v_team_stage_results_aggregate": [ - 5366, + 5479, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -138613,32 +140583,32 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "v_team_stage_results_by_pk": [ - 5365, + 5478, { "tournament_stage_id": [ - 4641, + 4744, "uuid!" ], "tournament_team_id": [ - 4641, + 4744, "uuid!" ] } ], "v_team_tournament_results": [ - 5425, + 5538, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138648,19 +140618,19 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "v_team_tournament_results_aggregate": [ - 5426, + 5539, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -138670,19 +140640,19 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "v_tournament_player_stats": [ - 5476, + 5589, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138692,19 +140662,19 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], "v_tournament_player_stats_aggregate": [ - 5477, + 5590, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -138714,11 +140684,11 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], @@ -138731,7 +140701,7 @@ export default { 55, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -138740,17 +140710,17 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4203 + 4306 ], "winning_lineup_id": [ - 4641 + 4744 ] } ], @@ -138758,7 +140728,7 @@ export default { 81, { "invite_id": [ - 4641, + 4744, "uuid!" ], "type": [ @@ -138771,7 +140741,7 @@ export default { 81, { "draftGameId": [ - 4641, + 4744, "uuid!" ], "steamId": [ @@ -138810,14 +140780,14 @@ export default { } ], "approve_league_season_movements": [ - 1767, + 1870, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -138827,11 +140797,11 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], @@ -138857,7 +140827,7 @@ export default { 81, { "game_server_node_id": [ - 4641, + 4744, "uuid!" ] } @@ -138878,7 +140848,7 @@ export default { 81, { "game_server_node_id": [ - 4641, + 4744, "uuid!" ] } @@ -138887,7 +140857,7 @@ export default { 81, { "job_id": [ - 4641, + 4744, "uuid!" ] } @@ -138896,7 +140866,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -138905,7 +140875,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -138923,7 +140893,7 @@ export default { 81, { "request_id": [ - 4641, + 4744, "uuid!" ] } @@ -138932,7 +140902,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -138941,7 +140911,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -138959,14 +140929,14 @@ export default { } ], "clone_league_season": [ - 1734, + 1837, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -138976,11 +140946,11 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], @@ -138988,11 +140958,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4203, + 4306, "timestamptz!" ], "request_id": [ - 4641, + 4744, "uuid!" ] } @@ -139013,7 +140983,7 @@ export default { 38 ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "preset": [ @@ -139048,7 +141018,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -139057,7 +141027,7 @@ export default { 14, { "settings": [ - 1531, + 1634, "jsonb!" ] } @@ -139074,7 +141044,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1531, + 1634, "jsonb!" ], "scheduled_at": [ @@ -139103,7 +141073,7 @@ export default { 81, { "clip_id": [ - 4641, + 4744, "uuid!" ] } @@ -139121,7 +141091,7 @@ export default { 81, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139155,7 +141125,7 @@ export default { 81, { "tournament_id": [ - 4641, + 4744, "uuid!" ] } @@ -139173,11 +141143,11 @@ export default { 92, { "map_id": [ - 4641, + 4744, "uuid!" ], "map_pool_id": [ - 4641, + 4744, "uuid!" ] } @@ -139195,7 +141165,7 @@ export default { 111, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139213,7 +141183,7 @@ export default { 152, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139231,7 +141201,7 @@ export default { 185, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139249,7 +141219,7 @@ export default { 237, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139267,7 +141237,7 @@ export default { 264, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139285,7 +141255,7 @@ export default { 309, { "draft_game_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -139307,7 +141277,7 @@ export default { 354, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -139420,16 +141390,16 @@ export default { ] } ], - "delete_e_event_status": [ + "delete_e_event_media_access": [ 535, { "where": [ 528, - "e_event_status_bool_exp!" + "e_event_media_access_bool_exp!" ] } ], - "delete_e_event_status_by_pk": [ + "delete_e_event_media_access_by_pk": [ 525, { "value": [ @@ -139438,17 +141408,35 @@ export default { ] } ], - "delete_e_friend_status": [ + "delete_e_event_visibility": [ 555, { "where": [ 548, + "e_event_visibility_bool_exp!" + ] + } + ], + "delete_e_event_visibility_by_pk": [ + 545, + { + "value": [ + 78, + "String!" + ] + } + ], + "delete_e_friend_status": [ + 575, + { + "where": [ + 568, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 545, + 565, { "value": [ 78, @@ -139457,16 +141445,16 @@ export default { } ], "delete_e_game_cfg_types": [ - 576, + 596, { "where": [ - 569, + 589, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 566, + 586, { "value": [ 78, @@ -139475,16 +141463,16 @@ export default { } ], "delete_e_game_server_node_statuses": [ - 596, + 616, { "where": [ - 589, + 609, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 586, + 606, { "value": [ 78, @@ -139493,16 +141481,16 @@ export default { } ], "delete_e_league_movement_types": [ - 617, + 637, { "where": [ - 610, + 630, "e_league_movement_types_bool_exp!" ] } ], "delete_e_league_movement_types_by_pk": [ - 607, + 627, { "value": [ 78, @@ -139511,16 +141499,16 @@ export default { } ], "delete_e_league_proposal_statuses": [ - 638, + 658, { "where": [ - 631, + 651, "e_league_proposal_statuses_bool_exp!" ] } ], "delete_e_league_proposal_statuses_by_pk": [ - 628, + 648, { "value": [ 78, @@ -139529,16 +141517,16 @@ export default { } ], "delete_e_league_registration_statuses": [ - 659, + 679, { "where": [ - 652, + 672, "e_league_registration_statuses_bool_exp!" ] } ], "delete_e_league_registration_statuses_by_pk": [ - 649, + 669, { "value": [ 78, @@ -139547,16 +141535,16 @@ export default { } ], "delete_e_league_season_statuses": [ - 680, + 700, { "where": [ - 673, + 693, "e_league_season_statuses_bool_exp!" ] } ], "delete_e_league_season_statuses_by_pk": [ - 670, + 690, { "value": [ 78, @@ -139565,16 +141553,16 @@ export default { } ], "delete_e_lobby_access": [ - 701, + 721, { "where": [ - 694, + 714, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 691, + 711, { "value": [ 78, @@ -139583,16 +141571,16 @@ export default { } ], "delete_e_lobby_player_status": [ - 722, + 742, { "where": [ - 715, + 735, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 712, + 732, { "value": [ 78, @@ -139601,16 +141589,16 @@ export default { } ], "delete_e_map_pool_types": [ - 742, + 762, { "where": [ - 735, + 755, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 732, + 752, { "value": [ 78, @@ -139619,16 +141607,16 @@ export default { } ], "delete_e_match_clip_visibility": [ - 763, + 783, { "where": [ - 756, + 776, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 753, + 773, { "value": [ 78, @@ -139637,16 +141625,16 @@ export default { } ], "delete_e_match_map_status": [ - 783, + 803, { "where": [ - 776, + 796, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 773, + 793, { "value": [ 78, @@ -139655,16 +141643,16 @@ export default { } ], "delete_e_match_mode": [ - 804, + 824, { "where": [ - 797, + 817, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 794, + 814, { "value": [ 78, @@ -139673,16 +141661,16 @@ export default { } ], "delete_e_match_status": [ - 824, + 844, { "where": [ - 817, + 837, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 814, + 834, { "value": [ 78, @@ -139691,16 +141679,16 @@ export default { } ], "delete_e_match_types": [ - 845, + 865, { "where": [ - 838, + 858, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 835, + 855, { "value": [ 78, @@ -139709,16 +141697,16 @@ export default { } ], "delete_e_notification_types": [ - 866, + 886, { "where": [ - 859, + 879, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -139727,16 +141715,16 @@ export default { } ], "delete_e_objective_types": [ - 886, + 906, { "where": [ - 879, + 899, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 876, + 896, { "value": [ 78, @@ -139745,16 +141733,16 @@ export default { } ], "delete_e_player_roles": [ - 906, + 926, { "where": [ - 899, + 919, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 896, + 916, { "value": [ 78, @@ -139763,16 +141751,16 @@ export default { } ], "delete_e_plugin_runtimes": [ - 926, + 946, { "where": [ - 919, + 939, "e_plugin_runtimes_bool_exp!" ] } ], "delete_e_plugin_runtimes_by_pk": [ - 916, + 936, { "value": [ 78, @@ -139781,16 +141769,16 @@ export default { } ], "delete_e_ready_settings": [ - 946, + 966, { "where": [ - 939, + 959, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 936, + 956, { "value": [ 78, @@ -139799,16 +141787,16 @@ export default { } ], "delete_e_sanction_types": [ - 966, + 986, { "where": [ - 959, + 979, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 956, + 976, { "value": [ 78, @@ -139817,16 +141805,16 @@ export default { } ], "delete_e_scrim_request_statuses": [ - 987, + 1007, { "where": [ - 980, + 1000, "e_scrim_request_statuses_bool_exp!" ] } ], "delete_e_scrim_request_statuses_by_pk": [ - 977, + 997, { "value": [ 78, @@ -139835,16 +141823,16 @@ export default { } ], "delete_e_server_types": [ - 1007, + 1027, { "where": [ - 1000, + 1020, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -139853,16 +141841,16 @@ export default { } ], "delete_e_sides": [ - 1027, + 1047, { "where": [ - 1020, + 1040, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -139871,16 +141859,16 @@ export default { } ], "delete_e_system_alert_types": [ - 1047, + 1067, { "where": [ - 1040, + 1060, "e_system_alert_types_bool_exp!" ] } ], "delete_e_system_alert_types_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -139889,16 +141877,16 @@ export default { } ], "delete_e_team_roles": [ - 1067, + 1087, { "where": [ - 1060, + 1080, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 1057, + 1077, { "value": [ 78, @@ -139907,16 +141895,16 @@ export default { } ], "delete_e_team_roster_statuses": [ - 1088, + 1108, { "where": [ - 1081, + 1101, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -139925,16 +141913,16 @@ export default { } ], "delete_e_timeout_settings": [ - 1108, + 1128, { "where": [ - 1101, + 1121, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -139943,16 +141931,16 @@ export default { } ], "delete_e_tournament_stage_types": [ - 1128, + 1148, { "where": [ - 1121, + 1141, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 1118, + 1138, { "value": [ 78, @@ -139961,16 +141949,16 @@ export default { } ], "delete_e_tournament_status": [ - 1149, + 1169, { "where": [ - 1142, + 1162, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 1139, + 1159, { "value": [ 78, @@ -139979,16 +141967,16 @@ export default { } ], "delete_e_utility_types": [ - 1170, + 1190, { "where": [ - 1163, + 1183, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -139997,16 +141985,16 @@ export default { } ], "delete_e_veto_pick_types": [ - 1190, + 1210, { "where": [ - 1183, + 1203, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -140015,16 +142003,16 @@ export default { } ], "delete_e_winning_reasons": [ - 1210, + 1230, { "where": [ - 1203, + 1223, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 1200, + 1220, { "value": [ 78, @@ -140032,20 +142020,60 @@ export default { ] } ], + "delete_event_media": [ + 1257, + { + "where": [ + 1249, + "event_media_bool_exp!" + ] + } + ], + "delete_event_media_by_pk": [ + 1240, + { + "id": [ + 4744, + "uuid!" + ] + } + ], + "delete_event_media_players": [ + 1279, + { + "where": [ + 1271, + "event_media_players_bool_exp!" + ] + } + ], + "delete_event_media_players_by_pk": [ + 1262, + { + "media_id": [ + 4744, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], "delete_event_organizers": [ - 1237, + 1340, { "where": [ - 1229, + 1332, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1220, + 1323, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -140055,19 +142083,19 @@ export default { } ], "delete_event_players": [ - 1278, + 1381, { "where": [ - 1270, + 1373, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1261, + 1364, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -140077,78 +142105,78 @@ export default { } ], "delete_event_teams": [ - 1316, + 1419, { "where": [ - 1309, + 1412, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1302, + 1405, { "event_id": [ - 4641, + 4744, "uuid!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_event_tournaments": [ - 1340, + 1443, { "where": [ - 1333, + 1436, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1326, + 1429, { "event_id": [ - 4641, + 4744, "uuid!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_events": [ - 1360, + 1463, { "where": [ - 1354, + 1457, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1350, + 1453, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_friends": [ - 1390, + 1493, { "where": [ - 1384, + 1487, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1380, + 1483, { "other_player_steam_id": [ 180, @@ -140161,16 +142189,16 @@ export default { } ], "delete_game_server_nodes": [ - 1430, + 1533, { "where": [ - 1419, + 1522, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1407, + 1510, { "id": [ 78, @@ -140179,16 +142207,16 @@ export default { } ], "delete_game_versions": [ - 1472, + 1575, { "where": [ - 1463, + 1566, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1458, + 1561, { "build_id": [ 38, @@ -140197,172 +142225,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1505, + 1608, { "where": [ - 1496, + 1599, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1491, + 1594, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1543, + 1646, { "where": [ - 1538, + 1641, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1568, + 1671, { "where": [ - 1562, + 1665, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1558, + 1661, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_match_weeks": [ - 1603, + 1706, { "where": [ - 1595, + 1698, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1586, + 1689, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1644, + 1747, { "where": [ - 1636, + 1739, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1627, + 1730, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1685, + 1788, { "where": [ - 1677, + 1780, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1668, + 1771, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_season_divisions": [ - 1723, + 1826, { "where": [ - 1716, + 1819, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1709, + 1812, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_seasons": [ - 1748, + 1851, { "where": [ - 1739, + 1842, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1734, + 1837, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_team_movements": [ - 1784, + 1887, { "where": [ - 1776, + 1879, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1767, + 1870, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_team_rosters": [ - 1825, + 1928, { "where": [ - 1817, + 1920, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1808, + 1911, { "league_team_season_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -140372,73 +142400,73 @@ export default { } ], "delete_league_team_seasons": [ - 1866, + 1969, { "where": [ - 1858, + 1961, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1849, + 1952, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_league_teams": [ - 1899, + 2002, { "where": [ - 1894, + 1997, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 1891, + 1994, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_lobbies": [ - 1918, + 2021, { "where": [ - 1913, + 2016, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 1910, + 2013, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_lobby_players": [ - 1948, + 2051, { "where": [ - 1940, + 2043, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 1929, + 2032, { "lobby_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -140448,286 +142476,286 @@ export default { } ], "delete_map_pools": [ - 1982, + 2085, { "where": [ - 1977, + 2080, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1974, + 2077, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_maps": [ - 2009, + 2112, { "where": [ - 2002, + 2105, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1993, + 2096, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_clips": [ - 2039, + 2142, { "where": [ - 2031, + 2134, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2022, + 2125, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2085, + 2188, { "where": [ - 2074, + 2177, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2064, + 2167, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_lineup_players": [ - 2129, + 2232, { "where": [ - 2121, + 2224, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2110, + 2213, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_lineups": [ - 2172, + 2275, { "where": [ - 2164, + 2267, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2155, + 2258, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_map_demos": [ - 2220, + 2323, { "where": [ - 2209, + 2312, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2197, + 2300, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_map_rounds": [ - 2265, + 2368, { "where": [ - 2257, + 2360, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2248, + 2351, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2303, + 2406, { "where": [ - 2296, + 2399, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2289, + 2392, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_maps": [ - 2330, + 2433, { "where": [ - 2322, + 2425, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2313, + 2416, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_options": [ - 2365, + 2468, { "where": [ - 2359, + 2462, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2355, + 2458, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2397, + 2500, { "where": [ - 2390, + 2493, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2383, + 2486, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_streams": [ - 2430, + 2533, { "where": [ - 2419, + 2522, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2407, + 2510, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2465, + 2568, { "where": [ - 2460, + 2563, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2457, + 2560, { "type": [ - 571, + 591, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 2492, + 2595, { "where": [ - 2484, + 2587, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2475, + 2578, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2525, + 2628, { "where": [ - 2520, + 2623, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2517, + 2620, { "name": [ 78, @@ -140736,126 +142764,126 @@ export default { } ], "delete_my_friends": [ - 2557, + 2660, { "where": [ - 2547, + 2650, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2591, + 2694, { "where": [ - 2585, + 2688, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2581, + 2684, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_notifications": [ - 2631, + 2734, { "where": [ - 2620, + 2723, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2608, + 2711, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2678, + 2781, { "where": [ - 2670, + 2773, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2661, + 2764, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "delete_pending_match_imports": [ - 2712, + 2815, { "where": [ - 2706, + 2809, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2702, + 2805, { "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2740, + 2843, { "where": [ - 2734, + 2837, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2730, + 2833, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2774, + 2877, { "where": [ - 2766, + 2869, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2757, + 2860, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -140869,16 +142897,16 @@ export default { } ], "delete_player_assists": [ - 2817, + 2920, { "where": [ - 2809, + 2912, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2798, + 2901, { "attacked_steam_id": [ 180, @@ -140889,55 +142917,55 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_player_damages": [ - 2878, + 2981, { "where": [ - 2870, + 2973, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2861, + 2964, { "id": [ - 4641, + 4744, "uuid!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_player_elo": [ - 2912, + 3015, { "where": [ - 2906, + 3009, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 2902, + 3005, { "match_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -140945,40 +142973,40 @@ export default { "bigint!" ], "type": [ - 840, + 860, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2946, + 3049, { "where": [ - 2938, + 3041, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2929, + 3032, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_player_flashes": [ - 2989, + 3092, { "where": [ - 2981, + 3084, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2970, + 3073, { "attacked_steam_id": [ 180, @@ -140989,26 +143017,26 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_player_kills": [ - 3075, + 3178, { "where": [ - 3026, + 3129, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3015, + 3118, { "attacked_steam_id": [ 180, @@ -141019,26 +143047,26 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3044, + 3147, { "where": [ - 3036, + 3139, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3027, + 3130, { "player_steam_id": [ 180, @@ -141051,28 +143079,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3110, + 3213, { "where": [ - 3105, + 3208, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3141, + 3244, { "where": [ - 3133, + 3236, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3124, + 3227, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -141082,19 +143110,19 @@ export default { } ], "delete_player_objectives": [ - 3233, + 3336, { "where": [ - 3225, + 3328, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3216, + 3319, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -141102,84 +143130,84 @@ export default { "bigint!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3292, + 3395, { "where": [ - 3284, + 3387, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3275, + 3378, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_player_sanctions": [ - 3333, + 3436, { "where": [ - 3325, + 3428, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3316, + 3419, { "created_at": [ - 4203, + 4306, "timestamptz!" ], "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_player_season_stats": [ - 3384, + 3487, { "where": [ - 3376, + 3479, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3357, + 3460, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_player_stats": [ - 3426, + 3529, { "where": [ - 3420, + 3523, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3416, + 3519, { "player_steam_id": [ 180, @@ -141188,16 +143216,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3458, + 3561, { "where": [ - 3449, + 3552, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3444, + 3547, { "steam_id": [ 180, @@ -141206,16 +143234,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3486, + 3589, { "where": [ - 3480, + 3583, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3476, + 3579, { "steam_id": [ 180, @@ -141224,19 +143252,19 @@ export default { } ], "delete_player_unused_utility": [ - 3520, + 3623, { "where": [ - 3512, + 3615, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3503, + 3606, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -141246,42 +143274,42 @@ export default { } ], "delete_player_utility": [ - 3561, + 3664, { "where": [ - 3553, + 3656, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3544, + 3647, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "delete_players": [ - 3628, + 3731, { "where": [ - 3622, + 3725, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3618, + 3721, { "steam_id": [ 180, @@ -141290,19 +143318,19 @@ export default { } ], "delete_plugin_versions": [ - 3656, + 3759, { "where": [ - 3650, + 3753, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3646, + 3749, { "runtime": [ - 921, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -141312,34 +143340,34 @@ export default { } ], "delete_seasons": [ - 3687, + 3790, { "where": [ - 3681, + 3784, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3677, + 3780, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_server_regions": [ - 3714, + 3817, { "where": [ - 3709, + 3812, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3705, + 3808, { "value": [ 78, @@ -141348,34 +143376,34 @@ export default { } ], "delete_servers": [ - 3751, + 3854, { "where": [ - 3743, + 3846, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3732, + 3835, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_settings": [ - 3786, + 3889, { "where": [ - 3781, + 3884, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3778, + 3881, { "name": [ 78, @@ -141384,467 +143412,467 @@ export default { } ], "delete_steam_account_claims": [ - 3812, + 3915, { "where": [ - 3805, + 3908, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3798, + 3901, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_steam_accounts": [ - 3832, + 3935, { "where": [ - 3826, + 3929, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3822, + 3925, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_system_alerts": [ - 3860, + 3963, { "where": [ - 3854, + 3957, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3850, + 3953, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_invites": [ - 3894, + 3997, { "where": [ - 3886, + 3989, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3877, + 3980, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_roster": [ - 3937, + 4040, { "where": [ - 3929, + 4032, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 3918, + 4021, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 3973, + 4076, { "where": [ - 3967, + 4070, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 3963, + 4066, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4006, + 4109, { "where": [ - 3999, + 4102, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 3990, + 4093, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4035, + 4138, { "where": [ - 4027, + 4130, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4018, + 4121, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4078, + 4181, { "where": [ - 4070, + 4173, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4059, + 4162, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4115, + 4218, { "where": [ - 4109, + 4212, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4105, + 4208, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_team_suggestions": [ - 4143, + 4246, { "where": [ - 4137, + 4240, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4133, + 4236, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_teams": [ - 4177, + 4280, { "where": [ - 4169, + 4272, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4160, + 4263, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_brackets": [ - 4224, + 4327, { "where": [ - 4216, + 4319, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4205, + 4308, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_organizers": [ - 4268, + 4371, { "where": [ - 4260, + 4363, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4251, + 4354, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4309, + 4412, { "where": [ - 4301, + 4404, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4292, + 4395, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_stages": [ - 4356, + 4459, { "where": [ - 4345, + 4448, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4333, + 4436, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4401, + 4504, { "where": [ - 4393, + 4496, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4384, + 4487, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4442, + 4545, { "where": [ - 4434, + 4537, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4425, + 4528, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_teams": [ - 4483, + 4586, { "where": [ - 4475, + 4578, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4466, + 4569, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_trophies": [ - 4527, + 4630, { "where": [ - 4519, + 4622, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4508, + 4611, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4570, + 4673, { "where": [ - 4562, + 4665, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4553, + 4656, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_tournaments": [ - 4614, + 4717, { "where": [ - 4606, + 4709, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4595, + 4698, { "id": [ - 4641, + 4744, "uuid!" ] } ], "delete_v_match_captains": [ - 4806, + 4919, { "where": [ - 4801, + 4914, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 4917, + 5030, { "where": [ - 4912, + 5025, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5139, + 5252, { "where": [ - 5132, + 5245, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5298, + 5411, { "where": [ - 5292, + 5405, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5392, + 5505, { "where": [ - 5384, + 5497, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5365, + 5478, { "tournament_stage_id": [ - 4641, + 4744, "uuid!" ], "tournament_team_id": [ - 4641, + 4744, "uuid!" ] } @@ -141853,7 +143881,7 @@ export default { 81, { "invite_id": [ - 4641, + 4744, "uuid!" ], "type": [ @@ -141866,11 +143894,11 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "winning_lineup_id": [ - 4641, + 4744, "uuid!" ] } @@ -141879,7 +143907,7 @@ export default { 43, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -142223,3081 +144251,3153 @@ export default { ] } ], - "insert_e_event_status": [ + "insert_e_event_media_access": [ 535, { "objects": [ 532, - "[e_event_status_insert_input!]!" + "[e_event_media_access_insert_input!]!" ], "on_conflict": [ 536 ] } ], - "insert_e_event_status_one": [ + "insert_e_event_media_access_one": [ 525, { "object": [ 532, - "e_event_status_insert_input!" + "e_event_media_access_insert_input!" ], "on_conflict": [ 536 ] } ], - "insert_e_friend_status": [ + "insert_e_event_visibility": [ 555, { "objects": [ 552, - "[e_friend_status_insert_input!]!" + "[e_event_visibility_insert_input!]!" ], "on_conflict": [ - 557 + 556 ] } ], - "insert_e_friend_status_one": [ + "insert_e_event_visibility_one": [ 545, { "object": [ 552, + "e_event_visibility_insert_input!" + ], + "on_conflict": [ + 556 + ] + } + ], + "insert_e_friend_status": [ + 575, + { + "objects": [ + 572, + "[e_friend_status_insert_input!]!" + ], + "on_conflict": [ + 577 + ] + } + ], + "insert_e_friend_status_one": [ + 565, + { + "object": [ + 572, "e_friend_status_insert_input!" ], "on_conflict": [ - 557 + 577 ] } ], "insert_e_game_cfg_types": [ - 576, + 596, { "objects": [ - 573, + 593, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 577 + 597 ] } ], "insert_e_game_cfg_types_one": [ - 566, + 586, { "object": [ - 573, + 593, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 577 + 597 ] } ], "insert_e_game_server_node_statuses": [ - 596, + 616, { "objects": [ - 593, + 613, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 598 + 618 ] } ], "insert_e_game_server_node_statuses_one": [ - 586, + 606, { "object": [ - 593, + 613, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 598 + 618 ] } ], "insert_e_league_movement_types": [ - 617, + 637, { "objects": [ - 614, + 634, "[e_league_movement_types_insert_input!]!" ], "on_conflict": [ - 619 + 639 ] } ], "insert_e_league_movement_types_one": [ - 607, + 627, { "object": [ - 614, + 634, "e_league_movement_types_insert_input!" ], "on_conflict": [ - 619 + 639 ] } ], "insert_e_league_proposal_statuses": [ - 638, + 658, { "objects": [ - 635, + 655, "[e_league_proposal_statuses_insert_input!]!" ], "on_conflict": [ - 640 + 660 ] } ], "insert_e_league_proposal_statuses_one": [ - 628, + 648, { "object": [ - 635, + 655, "e_league_proposal_statuses_insert_input!" ], "on_conflict": [ - 640 + 660 ] } ], "insert_e_league_registration_statuses": [ - 659, + 679, { "objects": [ - 656, + 676, "[e_league_registration_statuses_insert_input!]!" ], "on_conflict": [ - 661 + 681 ] } ], "insert_e_league_registration_statuses_one": [ - 649, + 669, { "object": [ - 656, + 676, "e_league_registration_statuses_insert_input!" ], "on_conflict": [ - 661 + 681 ] } ], "insert_e_league_season_statuses": [ - 680, + 700, { "objects": [ - 677, + 697, "[e_league_season_statuses_insert_input!]!" ], "on_conflict": [ - 682 + 702 ] } ], "insert_e_league_season_statuses_one": [ - 670, + 690, { "object": [ - 677, + 697, "e_league_season_statuses_insert_input!" ], "on_conflict": [ - 682 + 702 ] } ], "insert_e_lobby_access": [ - 701, + 721, { "objects": [ - 698, + 718, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 703 + 723 ] } ], "insert_e_lobby_access_one": [ - 691, + 711, { "object": [ - 698, + 718, "e_lobby_access_insert_input!" ], "on_conflict": [ - 703 + 723 ] } ], "insert_e_lobby_player_status": [ - 722, + 742, { "objects": [ - 719, + 739, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 723 + 743 ] } ], "insert_e_lobby_player_status_one": [ - 712, + 732, { "object": [ - 719, + 739, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 723 + 743 ] } ], "insert_e_map_pool_types": [ - 742, + 762, { "objects": [ - 739, + 759, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 744 + 764 ] } ], "insert_e_map_pool_types_one": [ - 732, + 752, { "object": [ - 739, + 759, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 744 + 764 ] } ], "insert_e_match_clip_visibility": [ - 763, + 783, { "objects": [ - 760, + 780, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 764 + 784 ] } ], "insert_e_match_clip_visibility_one": [ - 753, + 773, { "object": [ - 760, + 780, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 764 + 784 ] } ], "insert_e_match_map_status": [ - 783, + 803, { "objects": [ - 780, + 800, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 785 + 805 ] } ], "insert_e_match_map_status_one": [ - 773, + 793, { "object": [ - 780, + 800, "e_match_map_status_insert_input!" ], "on_conflict": [ - 785 + 805 ] } ], "insert_e_match_mode": [ - 804, + 824, { "objects": [ - 801, + 821, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 805 + 825 ] } ], "insert_e_match_mode_one": [ - 794, + 814, { "object": [ - 801, + 821, "e_match_mode_insert_input!" ], "on_conflict": [ - 805 + 825 ] } ], "insert_e_match_status": [ - 824, + 844, { "objects": [ - 821, + 841, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 826 + 846 ] } ], "insert_e_match_status_one": [ - 814, + 834, { "object": [ - 821, + 841, "e_match_status_insert_input!" ], "on_conflict": [ - 826 + 846 ] } ], "insert_e_match_types": [ - 845, + 865, { "objects": [ - 842, + 862, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 847 + 867 ] } ], "insert_e_match_types_one": [ - 835, + 855, { "object": [ - 842, + 862, "e_match_types_insert_input!" ], "on_conflict": [ - 847 + 867 ] } ], "insert_e_notification_types": [ - 866, + 886, { "objects": [ - 863, + 883, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 867 + 887 ] } ], "insert_e_notification_types_one": [ - 856, + 876, { "object": [ - 863, + 883, "e_notification_types_insert_input!" ], "on_conflict": [ - 867 + 887 ] } ], "insert_e_objective_types": [ - 886, + 906, { "objects": [ - 883, + 903, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 887 + 907 ] } ], "insert_e_objective_types_one": [ - 876, + 896, { "object": [ - 883, + 903, "e_objective_types_insert_input!" ], "on_conflict": [ - 887 + 907 ] } ], "insert_e_player_roles": [ - 906, + 926, { "objects": [ - 903, + 923, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 907 + 927 ] } ], "insert_e_player_roles_one": [ - 896, + 916, { "object": [ - 903, + 923, "e_player_roles_insert_input!" ], "on_conflict": [ - 907 + 927 ] } ], "insert_e_plugin_runtimes": [ - 926, + 946, { "objects": [ - 923, + 943, "[e_plugin_runtimes_insert_input!]!" ], "on_conflict": [ - 927 + 947 ] } ], "insert_e_plugin_runtimes_one": [ - 916, + 936, { "object": [ - 923, + 943, "e_plugin_runtimes_insert_input!" ], "on_conflict": [ - 927 + 947 ] } ], "insert_e_ready_settings": [ - 946, + 966, { "objects": [ - 943, + 963, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 947 + 967 ] } ], "insert_e_ready_settings_one": [ - 936, + 956, { "object": [ - 943, + 963, "e_ready_settings_insert_input!" ], "on_conflict": [ - 947 + 967 ] } ], "insert_e_sanction_types": [ - 966, + 986, { "objects": [ - 963, + 983, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 968 + 988 ] } ], "insert_e_sanction_types_one": [ - 956, + 976, { "object": [ - 963, + 983, "e_sanction_types_insert_input!" ], "on_conflict": [ - 968 + 988 ] } ], "insert_e_scrim_request_statuses": [ - 987, + 1007, { "objects": [ - 984, + 1004, "[e_scrim_request_statuses_insert_input!]!" ], "on_conflict": [ - 988 + 1008 ] } ], "insert_e_scrim_request_statuses_one": [ - 977, + 997, { "object": [ - 984, + 1004, "e_scrim_request_statuses_insert_input!" ], "on_conflict": [ - 988 + 1008 ] } ], "insert_e_server_types": [ - 1007, + 1027, { "objects": [ - 1004, + 1024, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 1008 + 1028 ] } ], "insert_e_server_types_one": [ - 997, + 1017, { "object": [ - 1004, + 1024, "e_server_types_insert_input!" ], "on_conflict": [ - 1008 + 1028 ] } ], "insert_e_sides": [ - 1027, + 1047, { "objects": [ - 1024, + 1044, "[e_sides_insert_input!]!" ], "on_conflict": [ - 1028 + 1048 ] } ], "insert_e_sides_one": [ - 1017, + 1037, { "object": [ - 1024, + 1044, "e_sides_insert_input!" ], "on_conflict": [ - 1028 + 1048 ] } ], "insert_e_system_alert_types": [ - 1047, + 1067, { "objects": [ - 1044, + 1064, "[e_system_alert_types_insert_input!]!" ], "on_conflict": [ - 1048 + 1068 ] } ], "insert_e_system_alert_types_one": [ - 1037, + 1057, { "object": [ - 1044, + 1064, "e_system_alert_types_insert_input!" ], "on_conflict": [ - 1048 + 1068 ] } ], "insert_e_team_roles": [ - 1067, + 1087, { "objects": [ - 1064, + 1084, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 1069 + 1089 ] } ], "insert_e_team_roles_one": [ - 1057, + 1077, { "object": [ - 1064, + 1084, "e_team_roles_insert_input!" ], "on_conflict": [ - 1069 + 1089 ] } ], "insert_e_team_roster_statuses": [ - 1088, + 1108, { "objects": [ - 1085, + 1105, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 1089 + 1109 ] } ], "insert_e_team_roster_statuses_one": [ - 1078, + 1098, { "object": [ - 1085, + 1105, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 1089 + 1109 ] } ], "insert_e_timeout_settings": [ - 1108, + 1128, { "objects": [ - 1105, + 1125, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 1109 + 1129 ] } ], "insert_e_timeout_settings_one": [ - 1098, + 1118, { "object": [ - 1105, + 1125, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 1109 + 1129 ] } ], "insert_e_tournament_stage_types": [ - 1128, + 1148, { "objects": [ - 1125, + 1145, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 1130 + 1150 ] } ], "insert_e_tournament_stage_types_one": [ - 1118, + 1138, { "object": [ - 1125, + 1145, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 1130 + 1150 ] } ], "insert_e_tournament_status": [ - 1149, + 1169, { "objects": [ - 1146, + 1166, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_tournament_status_one": [ - 1139, + 1159, { "object": [ - 1146, + 1166, "e_tournament_status_insert_input!" ], "on_conflict": [ - 1151 + 1171 ] } ], "insert_e_utility_types": [ - 1170, + 1190, { "objects": [ - 1167, + 1187, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_e_utility_types_one": [ - 1160, + 1180, { "object": [ - 1167, + 1187, "e_utility_types_insert_input!" ], "on_conflict": [ - 1171 + 1191 ] } ], "insert_e_veto_pick_types": [ - 1190, + 1210, { "objects": [ - 1187, + 1207, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 1191 + 1211 ] } ], "insert_e_veto_pick_types_one": [ - 1180, + 1200, { "object": [ - 1187, + 1207, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 1191 + 1211 ] } ], "insert_e_winning_reasons": [ - 1210, + 1230, { "objects": [ - 1207, + 1227, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 1211 + 1231 ] } ], "insert_e_winning_reasons_one": [ - 1200, + 1220, { "object": [ - 1207, + 1227, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 1211 + 1231 + ] + } + ], + "insert_event_media": [ + 1257, + { + "objects": [ + 1252, + "[event_media_insert_input!]!" + ], + "on_conflict": [ + 1259 + ] + } + ], + "insert_event_media_one": [ + 1240, + { + "object": [ + 1252, + "event_media_insert_input!" + ], + "on_conflict": [ + 1259 + ] + } + ], + "insert_event_media_players": [ + 1279, + { + "objects": [ + 1274, + "[event_media_players_insert_input!]!" + ], + "on_conflict": [ + 1280 + ] + } + ], + "insert_event_media_players_one": [ + 1262, + { + "object": [ + 1274, + "event_media_players_insert_input!" + ], + "on_conflict": [ + 1280 ] } ], "insert_event_organizers": [ - 1237, + 1340, { "objects": [ - 1232, + 1335, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1238 + 1341 ] } ], "insert_event_organizers_one": [ - 1220, + 1323, { "object": [ - 1232, + 1335, "event_organizers_insert_input!" ], "on_conflict": [ - 1238 + 1341 ] } ], "insert_event_players": [ - 1278, + 1381, { "objects": [ - 1273, + 1376, "[event_players_insert_input!]!" ], "on_conflict": [ - 1279 + 1382 ] } ], "insert_event_players_one": [ - 1261, + 1364, { "object": [ - 1273, + 1376, "event_players_insert_input!" ], "on_conflict": [ - 1279 + 1382 ] } ], "insert_event_teams": [ - 1316, + 1419, { "objects": [ - 1311, + 1414, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1317 + 1420 ] } ], "insert_event_teams_one": [ - 1302, + 1405, { "object": [ - 1311, + 1414, "event_teams_insert_input!" ], "on_conflict": [ - 1317 + 1420 ] } ], "insert_event_tournaments": [ - 1340, + 1443, { "objects": [ - 1335, + 1438, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1341 + 1444 ] } ], "insert_event_tournaments_one": [ - 1326, + 1429, { "object": [ - 1335, + 1438, "event_tournaments_insert_input!" ], "on_conflict": [ - 1341 + 1444 ] } ], "insert_events": [ - 1360, + 1463, { "objects": [ - 1357, + 1460, "[events_insert_input!]!" ], "on_conflict": [ - 1362 + 1465 ] } ], "insert_events_one": [ - 1350, + 1453, { "object": [ - 1357, + 1460, "events_insert_input!" ], "on_conflict": [ - 1362 + 1465 ] } ], "insert_friends": [ - 1390, + 1493, { "objects": [ - 1387, + 1490, "[friends_insert_input!]!" ], "on_conflict": [ - 1391 + 1494 ] } ], "insert_friends_one": [ - 1380, + 1483, { "object": [ - 1387, + 1490, "friends_insert_input!" ], "on_conflict": [ - 1391 + 1494 ] } ], "insert_game_server_nodes": [ - 1430, + 1533, { "objects": [ - 1425, + 1528, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1432 + 1535 ] } ], "insert_game_server_nodes_one": [ - 1407, + 1510, { "object": [ - 1425, + 1528, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1432 + 1535 ] } ], "insert_game_versions": [ - 1472, + 1575, { "objects": [ - 1469, + 1572, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1474 + 1577 ] } ], "insert_game_versions_one": [ - 1458, + 1561, { "object": [ - 1469, + 1572, "game_versions_insert_input!" ], "on_conflict": [ - 1474 + 1577 ] } ], "insert_gamedata_signature_validations": [ - 1505, + 1608, { "objects": [ - 1502, + 1605, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1506 + 1609 ] } ], "insert_gamedata_signature_validations_one": [ - 1491, + 1594, { "object": [ - 1502, + 1605, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1506 + 1609 ] } ], "insert_leaderboard_entries": [ - 1543, + 1646, { "objects": [ - 1540, + 1643, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1534, + 1637, { "object": [ - 1540, + 1643, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1568, + 1671, { "objects": [ - 1565, + 1668, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1570 + 1673 ] } ], "insert_league_divisions_one": [ - 1558, + 1661, { "object": [ - 1565, + 1668, "league_divisions_insert_input!" ], "on_conflict": [ - 1570 + 1673 ] } ], "insert_league_match_weeks": [ - 1603, + 1706, { "objects": [ - 1598, + 1701, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1604 + 1707 ] } ], "insert_league_match_weeks_one": [ - 1586, + 1689, { "object": [ - 1598, + 1701, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1604 + 1707 ] } ], "insert_league_relegation_playoffs": [ - 1644, + 1747, { "objects": [ - 1639, + 1742, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1645 + 1748 ] } ], "insert_league_relegation_playoffs_one": [ - 1627, + 1730, { "object": [ - 1639, + 1742, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1645 + 1748 ] } ], "insert_league_scheduling_proposals": [ - 1685, + 1788, { "objects": [ - 1680, + 1783, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1686 + 1789 ] } ], "insert_league_scheduling_proposals_one": [ - 1668, + 1771, { "object": [ - 1680, + 1783, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1686 + 1789 ] } ], "insert_league_season_divisions": [ - 1723, + 1826, { "objects": [ - 1718, + 1821, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1725 + 1828 ] } ], "insert_league_season_divisions_one": [ - 1709, + 1812, { "object": [ - 1718, + 1821, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1725 + 1828 ] } ], "insert_league_seasons": [ - 1748, + 1851, { "objects": [ - 1745, + 1848, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1750 + 1853 ] } ], "insert_league_seasons_one": [ - 1734, + 1837, { "object": [ - 1745, + 1848, "league_seasons_insert_input!" ], "on_conflict": [ - 1750 + 1853 ] } ], "insert_league_team_movements": [ - 1784, + 1887, { "objects": [ - 1779, + 1882, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1785 + 1888 ] } ], "insert_league_team_movements_one": [ - 1767, + 1870, { "object": [ - 1779, + 1882, "league_team_movements_insert_input!" ], "on_conflict": [ - 1785 + 1888 ] } ], "insert_league_team_rosters": [ - 1825, + 1928, { "objects": [ - 1820, + 1923, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1826 + 1929 ] } ], "insert_league_team_rosters_one": [ - 1808, + 1911, { "object": [ - 1820, + 1923, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1826 + 1929 ] } ], "insert_league_team_seasons": [ - 1866, + 1969, { "objects": [ - 1861, + 1964, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1868 + 1971 ] } ], "insert_league_team_seasons_one": [ - 1849, + 1952, { "object": [ - 1861, + 1964, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1868 + 1971 ] } ], "insert_league_teams": [ - 1899, + 2002, { "objects": [ - 1896, + 1999, "[league_teams_insert_input!]!" ], "on_conflict": [ - 1901 + 2004 ] } ], "insert_league_teams_one": [ - 1891, + 1994, { "object": [ - 1896, + 1999, "league_teams_insert_input!" ], "on_conflict": [ - 1901 + 2004 ] } ], "insert_lobbies": [ - 1918, + 2021, { "objects": [ - 1915, + 2018, "[lobbies_insert_input!]!" ], "on_conflict": [ - 1920 + 2023 ] } ], "insert_lobbies_one": [ - 1910, + 2013, { "object": [ - 1915, + 2018, "lobbies_insert_input!" ], "on_conflict": [ - 1920 + 2023 ] } ], "insert_lobby_players": [ - 1948, + 2051, { "objects": [ - 1943, + 2046, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1949 + 2052 ] } ], "insert_lobby_players_one": [ - 1929, + 2032, { "object": [ - 1943, + 2046, "lobby_players_insert_input!" ], "on_conflict": [ - 1949 + 2052 ] } ], "insert_map_pools": [ - 1982, + 2085, { "objects": [ - 1979, + 2082, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1984 + 2087 ] } ], "insert_map_pools_one": [ - 1974, + 2077, { "object": [ - 1979, + 2082, "map_pools_insert_input!" ], "on_conflict": [ - 1984 + 2087 ] } ], "insert_maps": [ - 2009, + 2112, { "objects": [ - 2004, + 2107, "[maps_insert_input!]!" ], "on_conflict": [ - 2011 + 2114 ] } ], "insert_maps_one": [ - 1993, + 2096, { "object": [ - 2004, + 2107, "maps_insert_input!" ], "on_conflict": [ - 2011 + 2114 ] } ], "insert_match_clips": [ - 2039, + 2142, { "objects": [ - 2034, + 2137, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2041 + 2144 ] } ], "insert_match_clips_one": [ - 2022, + 2125, { "object": [ - 2034, + 2137, "match_clips_insert_input!" ], "on_conflict": [ - 2041 + 2144 ] } ], "insert_match_demo_sessions": [ - 2085, + 2188, { "objects": [ - 2080, + 2183, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2086 + 2189 ] } ], "insert_match_demo_sessions_one": [ - 2064, + 2167, { "object": [ - 2080, + 2183, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2086 + 2189 ] } ], "insert_match_lineup_players": [ - 2129, + 2232, { "objects": [ - 2124, + 2227, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2130 + 2233 ] } ], "insert_match_lineup_players_one": [ - 2110, + 2213, { "object": [ - 2124, + 2227, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2130 + 2233 ] } ], "insert_match_lineups": [ - 2172, + 2275, { "objects": [ - 2167, + 2270, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2174 + 2277 ] } ], "insert_match_lineups_one": [ - 2155, + 2258, { "object": [ - 2167, + 2270, "match_lineups_insert_input!" ], "on_conflict": [ - 2174 + 2277 ] } ], "insert_match_map_demos": [ - 2220, + 2323, { "objects": [ - 2215, + 2318, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2222 + 2325 ] } ], "insert_match_map_demos_one": [ - 2197, + 2300, { "object": [ - 2215, + 2318, "match_map_demos_insert_input!" ], "on_conflict": [ - 2222 + 2325 ] } ], "insert_match_map_rounds": [ - 2265, + 2368, { "objects": [ - 2260, + 2363, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2266 + 2369 ] } ], "insert_match_map_rounds_one": [ - 2248, + 2351, { "object": [ - 2260, + 2363, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2266 + 2369 ] } ], "insert_match_map_veto_picks": [ - 2303, + 2406, { "objects": [ - 2298, + 2401, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2304 + 2407 ] } ], "insert_match_map_veto_picks_one": [ - 2289, + 2392, { "object": [ - 2298, + 2401, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2304 + 2407 ] } ], "insert_match_maps": [ - 2330, + 2433, { "objects": [ - 2325, + 2428, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2332 + 2435 ] } ], "insert_match_maps_one": [ - 2313, + 2416, { "object": [ - 2325, + 2428, "match_maps_insert_input!" ], "on_conflict": [ - 2332 + 2435 ] } ], "insert_match_options": [ - 2365, + 2468, { "objects": [ - 2362, + 2465, "[match_options_insert_input!]!" ], "on_conflict": [ - 2367 + 2470 ] } ], "insert_match_options_one": [ - 2355, + 2458, { "object": [ - 2362, + 2465, "match_options_insert_input!" ], "on_conflict": [ - 2367 + 2470 ] } ], "insert_match_region_veto_picks": [ - 2397, + 2500, { "objects": [ - 2392, + 2495, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2398 + 2501 ] } ], "insert_match_region_veto_picks_one": [ - 2383, + 2486, { "object": [ - 2392, + 2495, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2398 + 2501 ] } ], "insert_match_streams": [ - 2430, + 2533, { "objects": [ - 2425, + 2528, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2431 + 2534 ] } ], "insert_match_streams_one": [ - 2407, + 2510, { "object": [ - 2425, + 2528, "match_streams_insert_input!" ], "on_conflict": [ - 2431 + 2534 ] } ], "insert_match_type_cfgs": [ - 2465, + 2568, { "objects": [ - 2462, + 2565, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2466 + 2569 ] } ], "insert_match_type_cfgs_one": [ - 2457, + 2560, { "object": [ - 2462, + 2565, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2466 + 2569 ] } ], "insert_matches": [ - 2492, + 2595, { "objects": [ - 2487, + 2590, "[matches_insert_input!]!" ], "on_conflict": [ - 2494 + 2597 ] } ], "insert_matches_one": [ - 2475, + 2578, { "object": [ - 2487, + 2590, "matches_insert_input!" ], "on_conflict": [ - 2494 + 2597 ] } ], "insert_migration_hashes_hashes": [ - 2525, + 2628, { "objects": [ - 2522, + 2625, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2526 + 2629 ] } ], "insert_migration_hashes_hashes_one": [ - 2517, + 2620, { "object": [ - 2522, + 2625, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2526 + 2629 ] } ], "insert_my_friends": [ - 2557, + 2660, { "objects": [ - 2552, + 2655, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2535, + 2638, { "object": [ - 2552, + 2655, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2591, + 2694, { "objects": [ - 2588, + 2691, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2592 + 2695 ] } ], "insert_news_articles_one": [ - 2581, + 2684, { "object": [ - 2588, + 2691, "news_articles_insert_input!" ], "on_conflict": [ - 2592 + 2695 ] } ], "insert_notifications": [ - 2631, + 2734, { "objects": [ - 2626, + 2729, "[notifications_insert_input!]!" ], "on_conflict": [ - 2632 + 2735 ] } ], "insert_notifications_one": [ - 2608, + 2711, { "object": [ - 2626, + 2729, "notifications_insert_input!" ], "on_conflict": [ - 2632 + 2735 ] } ], "insert_pending_match_import_players": [ - 2678, + 2781, { "objects": [ - 2673, + 2776, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2679 + 2782 ] } ], "insert_pending_match_import_players_one": [ - 2661, + 2764, { "object": [ - 2673, + 2776, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2679 + 2782 ] } ], "insert_pending_match_imports": [ - 2712, + 2815, { "objects": [ - 2709, + 2812, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2714 + 2817 ] } ], "insert_pending_match_imports_one": [ - 2702, + 2805, { "object": [ - 2709, + 2812, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2714 + 2817 ] } ], "insert_player_aim_stats_demo": [ - 2740, + 2843, { "objects": [ - 2737, + 2840, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2741 + 2844 ] } ], "insert_player_aim_stats_demo_one": [ - 2730, + 2833, { "object": [ - 2737, + 2840, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2741 + 2844 ] } ], "insert_player_aim_weapon_stats": [ - 2774, + 2877, { "objects": [ - 2769, + 2872, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2775 + 2878 ] } ], "insert_player_aim_weapon_stats_one": [ - 2757, + 2860, { "object": [ - 2769, + 2872, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2775 + 2878 ] } ], "insert_player_assists": [ - 2817, + 2920, { "objects": [ - 2812, + 2915, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2818 + 2921 ] } ], "insert_player_assists_one": [ - 2798, + 2901, { "object": [ - 2812, + 2915, "player_assists_insert_input!" ], "on_conflict": [ - 2818 + 2921 ] } ], "insert_player_damages": [ - 2878, + 2981, { "objects": [ - 2873, + 2976, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2879 + 2982 ] } ], "insert_player_damages_one": [ - 2861, + 2964, { "object": [ - 2873, + 2976, "player_damages_insert_input!" ], "on_conflict": [ - 2879 + 2982 ] } ], "insert_player_elo": [ - 2912, + 3015, { "objects": [ - 2909, + 3012, "[player_elo_insert_input!]!" ], "on_conflict": [ - 2913 + 3016 ] } ], "insert_player_elo_one": [ - 2902, + 3005, { "object": [ - 2909, + 3012, "player_elo_insert_input!" ], "on_conflict": [ - 2913 + 3016 ] } ], "insert_player_faceit_rank_history": [ - 2946, + 3049, { "objects": [ - 2941, + 3044, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2947 + 3050 ] } ], "insert_player_faceit_rank_history_one": [ - 2929, + 3032, { "object": [ - 2941, + 3044, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2947 + 3050 ] } ], "insert_player_flashes": [ - 2989, + 3092, { "objects": [ - 2984, + 3087, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2990 + 3093 ] } ], "insert_player_flashes_one": [ - 2970, + 3073, { "object": [ - 2984, + 3087, "player_flashes_insert_input!" ], "on_conflict": [ - 2990 + 3093 ] } ], "insert_player_kills": [ - 3075, + 3178, { "objects": [ - 3070, + 3173, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3076 + 3179 ] } ], "insert_player_kills_by_weapon": [ - 3044, + 3147, { "objects": [ - 3039, + 3142, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3045 + 3148 ] } ], "insert_player_kills_by_weapon_one": [ - 3027, + 3130, { "object": [ - 3039, + 3142, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3045 + 3148 ] } ], "insert_player_kills_one": [ - 3015, + 3118, { "object": [ - 3070, + 3173, "player_kills_insert_input!" ], "on_conflict": [ - 3076 + 3179 ] } ], "insert_player_leaderboard_rank": [ - 3110, + 3213, { "objects": [ - 3107, + 3210, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3101, + 3204, { "object": [ - 3107, + 3210, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3141, + 3244, { "objects": [ - 3136, + 3239, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3142 + 3245 ] } ], "insert_player_match_map_stats_one": [ - 3124, + 3227, { "object": [ - 3136, + 3239, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3142 + 3245 ] } ], "insert_player_objectives": [ - 3233, + 3336, { "objects": [ - 3228, + 3331, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3234 + 3337 ] } ], "insert_player_objectives_one": [ - 3216, + 3319, { "object": [ - 3228, + 3331, "player_objectives_insert_input!" ], "on_conflict": [ - 3234 + 3337 ] } ], "insert_player_premier_rank_history": [ - 3292, + 3395, { "objects": [ - 3287, + 3390, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3293 + 3396 ] } ], "insert_player_premier_rank_history_one": [ - 3275, + 3378, { "object": [ - 3287, + 3390, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3293 + 3396 ] } ], "insert_player_sanctions": [ - 3333, + 3436, { "objects": [ - 3328, + 3431, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3334 + 3437 ] } ], "insert_player_sanctions_one": [ - 3316, + 3419, { "object": [ - 3328, + 3431, "player_sanctions_insert_input!" ], "on_conflict": [ - 3334 + 3437 ] } ], "insert_player_season_stats": [ - 3384, + 3487, { "objects": [ - 3379, + 3482, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3385 + 3488 ] } ], "insert_player_season_stats_one": [ - 3357, + 3460, { "object": [ - 3379, + 3482, "player_season_stats_insert_input!" ], "on_conflict": [ - 3385 + 3488 ] } ], "insert_player_stats": [ - 3426, + 3529, { "objects": [ - 3423, + 3526, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3428 + 3531 ] } ], "insert_player_stats_one": [ - 3416, + 3519, { "object": [ - 3423, + 3526, "player_stats_insert_input!" ], "on_conflict": [ - 3428 + 3531 ] } ], "insert_player_steam_bot_friend": [ - 3458, + 3561, { "objects": [ - 3455, + 3558, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3459 + 3562 ] } ], "insert_player_steam_bot_friend_one": [ - 3444, + 3547, { "object": [ - 3455, + 3558, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3459 + 3562 ] } ], "insert_player_steam_match_auth": [ - 3486, + 3589, { "objects": [ - 3483, + 3586, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3487 + 3590 ] } ], "insert_player_steam_match_auth_one": [ - 3476, + 3579, { "object": [ - 3483, + 3586, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3487 + 3590 ] } ], "insert_player_unused_utility": [ - 3520, + 3623, { "objects": [ - 3515, + 3618, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3521 + 3624 ] } ], "insert_player_unused_utility_one": [ - 3503, + 3606, { "object": [ - 3515, + 3618, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3521 + 3624 ] } ], "insert_player_utility": [ - 3561, + 3664, { "objects": [ - 3556, + 3659, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3562 + 3665 ] } ], "insert_player_utility_one": [ - 3544, + 3647, { "object": [ - 3556, + 3659, "player_utility_insert_input!" ], "on_conflict": [ - 3562 + 3665 ] } ], "insert_players": [ - 3628, + 3731, { "objects": [ - 3625, + 3728, "[players_insert_input!]!" ], "on_conflict": [ - 3630 + 3733 ] } ], "insert_players_one": [ - 3618, + 3721, { "object": [ - 3625, + 3728, "players_insert_input!" ], "on_conflict": [ - 3630 + 3733 ] } ], "insert_plugin_versions": [ - 3656, + 3759, { "objects": [ - 3653, + 3756, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3657 + 3760 ] } ], "insert_plugin_versions_one": [ - 3646, + 3749, { "object": [ - 3653, + 3756, "plugin_versions_insert_input!" ], "on_conflict": [ - 3657 + 3760 ] } ], "insert_seasons": [ - 3687, + 3790, { "objects": [ - 3684, + 3787, "[seasons_insert_input!]!" ], "on_conflict": [ - 3689 + 3792 ] } ], "insert_seasons_one": [ - 3677, + 3780, { "object": [ - 3684, + 3787, "seasons_insert_input!" ], "on_conflict": [ - 3689 + 3792 ] } ], "insert_server_regions": [ - 3714, + 3817, { "objects": [ - 3711, + 3814, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3716 + 3819 ] } ], "insert_server_regions_one": [ - 3705, + 3808, { "object": [ - 3711, + 3814, "server_regions_insert_input!" ], "on_conflict": [ - 3716 + 3819 ] } ], "insert_servers": [ - 3751, + 3854, { "objects": [ - 3746, + 3849, "[servers_insert_input!]!" ], "on_conflict": [ - 3753 + 3856 ] } ], "insert_servers_one": [ - 3732, + 3835, { "object": [ - 3746, + 3849, "servers_insert_input!" ], "on_conflict": [ - 3753 + 3856 ] } ], "insert_settings": [ - 3786, + 3889, { "objects": [ - 3783, + 3886, "[settings_insert_input!]!" ], "on_conflict": [ - 3787 + 3890 ] } ], "insert_settings_one": [ - 3778, + 3881, { "object": [ - 3783, + 3886, "settings_insert_input!" ], "on_conflict": [ - 3787 + 3890 ] } ], "insert_steam_account_claims": [ - 3812, + 3915, { "objects": [ - 3807, + 3910, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3813 + 3916 ] } ], "insert_steam_account_claims_one": [ - 3798, + 3901, { "object": [ - 3807, + 3910, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3813 + 3916 ] } ], "insert_steam_accounts": [ - 3832, + 3935, { "objects": [ - 3829, + 3932, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3834 + 3937 ] } ], "insert_steam_accounts_one": [ - 3822, + 3925, { "object": [ - 3829, + 3932, "steam_accounts_insert_input!" ], "on_conflict": [ - 3834 + 3937 ] } ], "insert_system_alerts": [ - 3860, + 3963, { "objects": [ - 3857, + 3960, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3861 + 3964 ] } ], "insert_system_alerts_one": [ - 3850, + 3953, { "object": [ - 3857, + 3960, "system_alerts_insert_input!" ], "on_conflict": [ - 3861 + 3964 ] } ], "insert_team_invites": [ - 3894, + 3997, { "objects": [ - 3889, + 3992, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3895 + 3998 ] } ], "insert_team_invites_one": [ - 3877, + 3980, { "object": [ - 3889, + 3992, "team_invites_insert_input!" ], "on_conflict": [ - 3895 + 3998 ] } ], "insert_team_roster": [ - 3937, + 4040, { "objects": [ - 3932, + 4035, "[team_roster_insert_input!]!" ], "on_conflict": [ - 3938 + 4041 ] } ], "insert_team_roster_one": [ - 3918, + 4021, { "object": [ - 3932, + 4035, "team_roster_insert_input!" ], "on_conflict": [ - 3938 + 4041 ] } ], "insert_team_scrim_alerts": [ - 3973, + 4076, { "objects": [ - 3970, + 4073, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 3974 + 4077 ] } ], "insert_team_scrim_alerts_one": [ - 3963, + 4066, { "object": [ - 3970, + 4073, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 3974 + 4077 ] } ], "insert_team_scrim_availability": [ - 4006, + 4109, { "objects": [ - 4001, + 4104, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4007 + 4110 ] } ], "insert_team_scrim_availability_one": [ - 3990, + 4093, { "object": [ - 4001, + 4104, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4007 + 4110 ] } ], "insert_team_scrim_request_proposals": [ - 4035, + 4138, { "objects": [ - 4030, + 4133, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4036 + 4139 ] } ], "insert_team_scrim_request_proposals_one": [ - 4018, + 4121, { "object": [ - 4030, + 4133, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4036 + 4139 ] } ], "insert_team_scrim_requests": [ - 4078, + 4181, { "objects": [ - 4073, + 4176, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4080 + 4183 ] } ], "insert_team_scrim_requests_one": [ - 4059, + 4162, { "object": [ - 4073, + 4176, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4080 + 4183 ] } ], "insert_team_scrim_settings": [ - 4115, + 4218, { "objects": [ - 4112, + 4215, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4117 + 4220 ] } ], "insert_team_scrim_settings_one": [ - 4105, + 4208, { "object": [ - 4112, + 4215, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4117 + 4220 ] } ], "insert_team_suggestions": [ - 4143, + 4246, { "objects": [ - 4140, + 4243, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4144 + 4247 ] } ], "insert_team_suggestions_one": [ - 4133, + 4236, { "object": [ - 4140, + 4243, "team_suggestions_insert_input!" ], "on_conflict": [ - 4144 + 4247 ] } ], "insert_teams": [ - 4177, + 4280, { "objects": [ - 4172, + 4275, "[teams_insert_input!]!" ], "on_conflict": [ - 4179 + 4282 ] } ], "insert_teams_one": [ - 4160, + 4263, { "object": [ - 4172, + 4275, "teams_insert_input!" ], "on_conflict": [ - 4179 + 4282 ] } ], "insert_tournament_brackets": [ - 4224, + 4327, { "objects": [ - 4219, + 4322, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4226 + 4329 ] } ], "insert_tournament_brackets_one": [ - 4205, + 4308, { "object": [ - 4219, + 4322, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4226 + 4329 ] } ], "insert_tournament_organizers": [ - 4268, + 4371, { "objects": [ - 4263, + 4366, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4269 + 4372 ] } ], "insert_tournament_organizers_one": [ - 4251, + 4354, { "object": [ - 4263, + 4366, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4269 + 4372 ] } ], "insert_tournament_stage_windows": [ - 4309, + 4412, { "objects": [ - 4304, + 4407, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4310 + 4413 ] } ], "insert_tournament_stage_windows_one": [ - 4292, + 4395, { "object": [ - 4304, + 4407, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4310 + 4413 ] } ], "insert_tournament_stages": [ - 4356, + 4459, { "objects": [ - 4351, + 4454, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4358 + 4461 ] } ], "insert_tournament_stages_one": [ - 4333, + 4436, { "object": [ - 4351, + 4454, "tournament_stages_insert_input!" ], "on_conflict": [ - 4358 + 4461 ] } ], "insert_tournament_team_invites": [ - 4401, + 4504, { "objects": [ - 4396, + 4499, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4402 + 4505 ] } ], "insert_tournament_team_invites_one": [ - 4384, + 4487, { "object": [ - 4396, + 4499, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4402 + 4505 ] } ], "insert_tournament_team_roster": [ - 4442, + 4545, { "objects": [ - 4437, + 4540, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4443 + 4546 ] } ], "insert_tournament_team_roster_one": [ - 4425, + 4528, { "object": [ - 4437, + 4540, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4443 + 4546 ] } ], "insert_tournament_teams": [ - 4483, + 4586, { "objects": [ - 4478, + 4581, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4485 + 4588 ] } ], "insert_tournament_teams_one": [ - 4466, + 4569, { "object": [ - 4478, + 4581, "tournament_teams_insert_input!" ], "on_conflict": [ - 4485 + 4588 ] } ], "insert_tournament_trophies": [ - 4527, + 4630, { "objects": [ - 4522, + 4625, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4528 + 4631 ] } ], "insert_tournament_trophies_one": [ - 4508, + 4611, { "object": [ - 4522, + 4625, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4528 + 4631 ] } ], "insert_tournament_trophy_configs": [ - 4570, + 4673, { "objects": [ - 4565, + 4668, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4572 + 4675 ] } ], "insert_tournament_trophy_configs_one": [ - 4553, + 4656, { "object": [ - 4565, + 4668, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4572 + 4675 ] } ], "insert_tournaments": [ - 4614, + 4717, { "objects": [ - 4609, + 4712, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4616 + 4719 ] } ], "insert_tournaments_one": [ - 4595, + 4698, { "object": [ - 4609, + 4712, "tournaments_insert_input!" ], "on_conflict": [ - 4616 + 4719 ] } ], "insert_v_match_captains": [ - 4806, + 4919, { "objects": [ - 4803, + 4916, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4797, + 4910, { "object": [ - 4803, + 4916, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 4917, + 5030, { "objects": [ - 4914, + 5027, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 4908, + 5021, { "object": [ - 4914, + 5027, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5139, + 5252, { "objects": [ - 5134, + 5247, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5123, + 5236, { "object": [ - 5134, + 5247, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5298, + 5411, { "objects": [ - 5293, + 5406, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5283, + 5396, { "object": [ - 5293, + 5406, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5392, + 5505, { "objects": [ - 5387, + 5500, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5394 + 5507 ] } ], "insert_v_team_stage_results_one": [ - 5365, + 5478, { "object": [ - 5387, + 5500, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5394 + 5507 ] } ], @@ -145305,7 +147405,7 @@ export default { 81, { "draftGameId": [ - 4641, + 4744, "uuid!" ], "inviteCode": [ @@ -145317,7 +147417,7 @@ export default { 81, { "draftGameId": [ - 4641, + 4744, "uuid!" ], "inviteCode": [ @@ -145342,14 +147442,14 @@ export default { } ], "league_award_forfeit": [ - 2475, + 2578, { "args": [ - 1557, + 1660, "league_award_forfeit_args!" ], "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -145359,11 +147459,11 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], @@ -145422,7 +147522,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -145434,7 +147534,7 @@ export default { 22, { "draftGameId": [ - 4641, + 4744, "uuid!" ], "inviteCode": [ @@ -145449,7 +147549,7 @@ export default { 38 ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "preset": [ @@ -145475,7 +147575,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145484,20 +147584,20 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4508, + 4611, { "args": [ - 3673, + 3776, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -145507,11 +147607,11 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], @@ -145525,7 +147625,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145549,7 +147649,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145576,14 +147676,14 @@ export default { } ], "remove_league_team_from_season": [ - 1849, + 1952, { "args": [ - 3674, + 3777, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -145593,11 +147693,11 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], @@ -145622,14 +147722,14 @@ export default { } ], "reorder_league_divisions": [ - 1558, + 1661, { "args": [ - 3675, + 3778, "reorder_league_divisions_args!" ], "distinct_on": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "limit": [ @@ -145639,11 +147739,11 @@ export default { 38 ], "order_by": [ - 1571, + 1674, "[league_divisions_order_by!]" ], "where": [ - 1562 + 1665 ] } ], @@ -145657,7 +147757,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -145666,7 +147766,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145688,7 +147788,7 @@ export default { 81, { "job_id": [ - 4641, + 4744, "uuid!" ] } @@ -145701,7 +147801,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4641, + 4744, "uuid!" ] } @@ -145714,7 +147814,7 @@ export default { "Boolean!" ], "request_id": [ - 4641, + 4744, "uuid!" ] } @@ -145729,14 +147829,14 @@ export default { } ], "restart_league_season": [ - 1734, + 1837, { "args": [ - 3676, + 3779, "restart_league_season_args!" ], "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -145746,11 +147846,11 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], @@ -145758,7 +147858,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -145767,7 +147867,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "only_failed": [ @@ -145817,7 +147917,7 @@ export default { 78 ], "id": [ - 4641 + 4744 ], "teaser": [ 78 @@ -145838,11 +147938,11 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203 + 4306 ] } ], @@ -145853,18 +147953,18 @@ export default { 38 ], "from_team_id": [ - 4641, + 4744, "uuid!" ], "proposed_scheduled_at": [ - 4203, + 4306, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4641, + 4744, "uuid!" ] } @@ -145886,7 +147986,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "mode": [ @@ -145899,15 +147999,15 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "winning_lineup_id": [ - 4641, + 4744, "uuid!" ] } @@ -145916,11 +148016,11 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "winning_lineup_id": [ - 4641, + 4744, "uuid!" ] } @@ -145929,7 +148029,7 @@ export default { 48, { "id": [ - 4641, + 4744, "uuid!" ], "status": [ @@ -145945,7 +148045,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145958,7 +148058,7 @@ export default { "Boolean!" ], "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145971,7 +148071,7 @@ export default { "String!" ], "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -145980,7 +148080,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "visible": [ @@ -145993,7 +148093,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146002,7 +148102,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146015,7 +148115,7 @@ export default { "Int!" ], "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146024,7 +148124,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "show": [ @@ -146037,7 +148137,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "slot": [ @@ -146054,7 +148154,7 @@ export default { "Boolean!" ], "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146063,7 +148163,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "mode": [ @@ -146076,11 +148176,11 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ], "server_id": [ - 4641 + 4744 ] } ], @@ -146088,7 +148188,7 @@ export default { 81, { "game_server_node_id": [ - 4641, + 4744, "uuid!" ] } @@ -146097,7 +148197,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146106,7 +148206,7 @@ export default { 81, { "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -146128,7 +148228,7 @@ export default { 81, { "match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146146,7 +148246,7 @@ export default { 81, { "from_match_id": [ - 4641, + 4744, "uuid!" ], "mode": [ @@ -146154,7 +148254,7 @@ export default { "String!" ], "to_match_id": [ - 4641, + 4744, "uuid!" ] } @@ -146194,7 +148294,7 @@ export default { 81, { "clip_id": [ - 4641, + 4744, "uuid!" ], "target_steam_id": [ @@ -146215,7 +148315,7 @@ export default { 78 ], "game_server_node_id": [ - 4641 + 4744 ] } ], @@ -146223,11 +148323,11 @@ export default { 81, { "draftGameId": [ - 4641, + 4744, "uuid!" ], "settings": [ - 1531, + 1634, "jsonb!" ] } @@ -146769,7 +148869,7 @@ export default { ] } ], - "update_e_event_status": [ + "update_e_event_media_access": [ 535, { "_set": [ @@ -146777,11 +148877,11 @@ export default { ], "where": [ 528, - "e_event_status_bool_exp!" + "e_event_media_access_bool_exp!" ] } ], - "update_e_event_status_by_pk": [ + "update_e_event_media_access_by_pk": [ 525, { "_set": [ @@ -146789,4965 +148889,5076 @@ export default { ], "pk_columns": [ 538, - "e_event_status_pk_columns_input!" + "e_event_media_access_pk_columns_input!" ] } ], - "update_e_event_status_many": [ + "update_e_event_media_access_many": [ 535, { "updates": [ 544, - "[e_event_status_updates!]!" + "[e_event_media_access_updates!]!" ] } ], - "update_e_friend_status": [ + "update_e_event_visibility": [ 555, { "_set": [ - 561 + 560 ], "where": [ 548, + "e_event_visibility_bool_exp!" + ] + } + ], + "update_e_event_visibility_by_pk": [ + 545, + { + "_set": [ + 560 + ], + "pk_columns": [ + 558, + "e_event_visibility_pk_columns_input!" + ] + } + ], + "update_e_event_visibility_many": [ + 555, + { + "updates": [ + 564, + "[e_event_visibility_updates!]!" + ] + } + ], + "update_e_friend_status": [ + 575, + { + "_set": [ + 581 + ], + "where": [ + 568, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 545, + 565, { "_set": [ - 561 + 581 ], "pk_columns": [ - 559, + 579, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 555, + 575, { "updates": [ - 565, + 585, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 576, + 596, { "_set": [ - 581 + 601 ], "where": [ - 569, + 589, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 566, + 586, { "_set": [ - 581 + 601 ], "pk_columns": [ - 579, + 599, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 576, + 596, { "updates": [ - 585, + 605, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 596, + 616, { "_set": [ - 602 + 622 ], "where": [ - 589, + 609, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 586, + 606, { "_set": [ - 602 + 622 ], "pk_columns": [ - 600, + 620, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 596, + 616, { "updates": [ - 606, + 626, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_league_movement_types": [ - 617, + 637, { "_set": [ - 623 + 643 ], "where": [ - 610, + 630, "e_league_movement_types_bool_exp!" ] } ], "update_e_league_movement_types_by_pk": [ - 607, + 627, { "_set": [ - 623 + 643 ], "pk_columns": [ - 621, + 641, "e_league_movement_types_pk_columns_input!" ] } ], "update_e_league_movement_types_many": [ - 617, + 637, { "updates": [ - 627, + 647, "[e_league_movement_types_updates!]!" ] } ], "update_e_league_proposal_statuses": [ - 638, + 658, { "_set": [ - 644 + 664 ], "where": [ - 631, + 651, "e_league_proposal_statuses_bool_exp!" ] } ], "update_e_league_proposal_statuses_by_pk": [ - 628, + 648, { "_set": [ - 644 + 664 ], "pk_columns": [ - 642, + 662, "e_league_proposal_statuses_pk_columns_input!" ] } ], "update_e_league_proposal_statuses_many": [ - 638, + 658, { "updates": [ - 648, + 668, "[e_league_proposal_statuses_updates!]!" ] } ], "update_e_league_registration_statuses": [ - 659, + 679, { "_set": [ - 665 + 685 ], "where": [ - 652, + 672, "e_league_registration_statuses_bool_exp!" ] } ], "update_e_league_registration_statuses_by_pk": [ - 649, + 669, { "_set": [ - 665 + 685 ], "pk_columns": [ - 663, + 683, "e_league_registration_statuses_pk_columns_input!" ] } ], "update_e_league_registration_statuses_many": [ - 659, + 679, { "updates": [ - 669, + 689, "[e_league_registration_statuses_updates!]!" ] } ], "update_e_league_season_statuses": [ - 680, + 700, { "_set": [ - 686 + 706 ], "where": [ - 673, + 693, "e_league_season_statuses_bool_exp!" ] } ], "update_e_league_season_statuses_by_pk": [ - 670, + 690, { "_set": [ - 686 + 706 ], "pk_columns": [ - 684, + 704, "e_league_season_statuses_pk_columns_input!" ] } ], "update_e_league_season_statuses_many": [ - 680, + 700, { "updates": [ - 690, + 710, "[e_league_season_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 701, + 721, { "_set": [ - 707 + 727 ], "where": [ - 694, + 714, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 691, + 711, { "_set": [ - 707 + 727 ], "pk_columns": [ - 705, + 725, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 701, + 721, { "updates": [ - 711, + 731, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 722, + 742, { "_set": [ - 727 + 747 ], "where": [ - 715, + 735, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 712, + 732, { "_set": [ - 727 + 747 ], "pk_columns": [ - 725, + 745, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 722, + 742, { "updates": [ - 731, + 751, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 742, + 762, { "_set": [ - 748 + 768 ], "where": [ - 735, + 755, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 732, + 752, { "_set": [ - 748 + 768 ], "pk_columns": [ - 746, + 766, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 742, + 762, { "updates": [ - 752, + 772, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 763, + 783, { "_set": [ - 768 + 788 ], "where": [ - 756, + 776, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 753, + 773, { "_set": [ - 768 + 788 ], "pk_columns": [ - 766, + 786, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 763, + 783, { "updates": [ - 772, + 792, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 783, + 803, { "_set": [ - 789 + 809 ], "where": [ - 776, + 796, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 773, + 793, { "_set": [ - 789 + 809 ], "pk_columns": [ - 787, + 807, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 783, + 803, { "updates": [ - 793, + 813, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 804, + 824, { "_set": [ - 809 + 829 ], "where": [ - 797, + 817, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 794, + 814, { "_set": [ - 809 + 829 ], "pk_columns": [ - 807, + 827, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 804, + 824, { "updates": [ - 813, + 833, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 824, + 844, { "_set": [ - 830 + 850 ], "where": [ - 817, + 837, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 814, + 834, { "_set": [ - 830 + 850 ], "pk_columns": [ - 828, + 848, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 824, + 844, { "updates": [ - 834, + 854, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 845, + 865, { "_set": [ - 851 + 871 ], "where": [ - 838, + 858, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 835, + 855, { "_set": [ - 851 + 871 ], "pk_columns": [ - 849, + 869, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 845, + 865, { "updates": [ - 855, + 875, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 866, + 886, { "_set": [ - 871 + 891 ], "where": [ - 859, + 879, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 856, + 876, { "_set": [ - 871 + 891 ], "pk_columns": [ - 869, + 889, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 866, + 886, { "updates": [ - 875, + 895, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 886, + 906, { "_set": [ - 891 + 911 ], "where": [ - 879, + 899, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 876, + 896, { "_set": [ - 891 + 911 ], "pk_columns": [ - 889, + 909, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 886, + 906, { "updates": [ - 895, + 915, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 906, + 926, { "_set": [ - 911 + 931 ], "where": [ - 899, + 919, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 896, + 916, { "_set": [ - 911 + 931 ], "pk_columns": [ - 909, + 929, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 906, + 926, { "updates": [ - 915, + 935, "[e_player_roles_updates!]!" ] } ], "update_e_plugin_runtimes": [ - 926, + 946, { "_set": [ - 931 + 951 ], "where": [ - 919, + 939, "e_plugin_runtimes_bool_exp!" ] } ], "update_e_plugin_runtimes_by_pk": [ - 916, + 936, { "_set": [ - 931 + 951 ], "pk_columns": [ - 929, + 949, "e_plugin_runtimes_pk_columns_input!" ] } ], "update_e_plugin_runtimes_many": [ - 926, + 946, { "updates": [ - 935, + 955, "[e_plugin_runtimes_updates!]!" ] } ], "update_e_ready_settings": [ - 946, + 966, { "_set": [ - 951 + 971 ], "where": [ - 939, + 959, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 936, + 956, { "_set": [ - 951 + 971 ], "pk_columns": [ - 949, + 969, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 946, + 966, { "updates": [ - 955, + 975, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 966, + 986, { "_set": [ - 972 + 992 ], "where": [ - 959, + 979, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 956, + 976, { "_set": [ - 972 + 992 ], "pk_columns": [ - 970, + 990, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 966, + 986, { "updates": [ - 976, + 996, "[e_sanction_types_updates!]!" ] } ], "update_e_scrim_request_statuses": [ - 987, + 1007, { "_set": [ - 992 + 1012 ], "where": [ - 980, + 1000, "e_scrim_request_statuses_bool_exp!" ] } ], "update_e_scrim_request_statuses_by_pk": [ - 977, + 997, { "_set": [ - 992 + 1012 ], "pk_columns": [ - 990, + 1010, "e_scrim_request_statuses_pk_columns_input!" ] } ], "update_e_scrim_request_statuses_many": [ - 987, + 1007, { "updates": [ - 996, + 1016, "[e_scrim_request_statuses_updates!]!" ] } ], "update_e_server_types": [ - 1007, + 1027, { "_set": [ - 1012 + 1032 ], "where": [ - 1000, + 1020, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 997, + 1017, { "_set": [ - 1012 + 1032 ], "pk_columns": [ - 1010, + 1030, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 1007, + 1027, { "updates": [ - 1016, + 1036, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 1027, + 1047, { "_set": [ - 1032 + 1052 ], "where": [ - 1020, + 1040, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 1017, + 1037, { "_set": [ - 1032 + 1052 ], "pk_columns": [ - 1030, + 1050, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 1027, + 1047, { "updates": [ - 1036, + 1056, "[e_sides_updates!]!" ] } ], "update_e_system_alert_types": [ - 1047, + 1067, { "_set": [ - 1052 + 1072 ], "where": [ - 1040, + 1060, "e_system_alert_types_bool_exp!" ] } ], "update_e_system_alert_types_by_pk": [ - 1037, + 1057, { "_set": [ - 1052 + 1072 ], "pk_columns": [ - 1050, + 1070, "e_system_alert_types_pk_columns_input!" ] } ], "update_e_system_alert_types_many": [ - 1047, + 1067, { "updates": [ - 1056, + 1076, "[e_system_alert_types_updates!]!" ] } ], "update_e_team_roles": [ - 1067, + 1087, { "_set": [ - 1073 + 1093 ], "where": [ - 1060, + 1080, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 1057, + 1077, { "_set": [ - 1073 + 1093 ], "pk_columns": [ - 1071, + 1091, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 1067, + 1087, { "updates": [ - 1077, + 1097, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 1088, + 1108, { "_set": [ - 1093 + 1113 ], "where": [ - 1081, + 1101, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 1078, + 1098, { "_set": [ - 1093 + 1113 ], "pk_columns": [ - 1091, + 1111, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 1088, + 1108, { "updates": [ - 1097, + 1117, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 1108, + 1128, { "_set": [ - 1113 + 1133 ], "where": [ - 1101, + 1121, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 1098, + 1118, { "_set": [ - 1113 + 1133 ], "pk_columns": [ - 1111, + 1131, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 1108, + 1128, { "updates": [ - 1117, + 1137, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 1128, + 1148, { "_set": [ - 1134 + 1154 ], "where": [ - 1121, + 1141, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 1118, + 1138, { "_set": [ - 1134 + 1154 ], "pk_columns": [ - 1132, + 1152, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 1128, + 1148, { "updates": [ - 1138, + 1158, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 1149, + 1169, { "_set": [ - 1155 + 1175 ], "where": [ - 1142, + 1162, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 1139, + 1159, { "_set": [ - 1155 + 1175 ], "pk_columns": [ - 1153, + 1173, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 1149, + 1169, { "updates": [ - 1159, + 1179, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 1170, + 1190, { "_set": [ - 1175 + 1195 ], "where": [ - 1163, + 1183, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 1160, + 1180, { "_set": [ - 1175 + 1195 ], "pk_columns": [ - 1173, + 1193, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 1170, + 1190, { "updates": [ - 1179, + 1199, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 1190, + 1210, { "_set": [ - 1195 + 1215 ], "where": [ - 1183, + 1203, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 1180, + 1200, { "_set": [ - 1195 + 1215 ], "pk_columns": [ - 1193, + 1213, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 1190, + 1210, { "updates": [ - 1199, + 1219, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 1210, + 1230, { "_set": [ - 1215 + 1235 ], "where": [ - 1203, + 1223, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 1200, + 1220, { "_set": [ - 1215 + 1235 ], "pk_columns": [ - 1213, + 1233, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 1210, + 1230, { "updates": [ - 1219, + 1239, "[e_winning_reasons_updates!]!" ] } ], + "update_event_media": [ + 1257, + { + "_inc": [ + 1251 + ], + "_set": [ + 1304 + ], + "where": [ + 1249, + "event_media_bool_exp!" + ] + } + ], + "update_event_media_by_pk": [ + 1240, + { + "_inc": [ + 1251 + ], + "_set": [ + 1304 + ], + "pk_columns": [ + 1261, + "event_media_pk_columns_input!" + ] + } + ], + "update_event_media_many": [ + 1257, + { + "updates": [ + 1316, + "[event_media_updates!]!" + ] + } + ], + "update_event_media_players": [ + 1279, + { + "_inc": [ + 1273 + ], + "_set": [ + 1284 + ], + "where": [ + 1271, + "event_media_players_bool_exp!" + ] + } + ], + "update_event_media_players_by_pk": [ + 1262, + { + "_inc": [ + 1273 + ], + "_set": [ + 1284 + ], + "pk_columns": [ + 1282, + "event_media_players_pk_columns_input!" + ] + } + ], + "update_event_media_players_many": [ + 1279, + { + "updates": [ + 1296, + "[event_media_players_updates!]!" + ] + } + ], "update_event_organizers": [ - 1237, + 1340, { "_inc": [ - 1231 + 1334 ], "_set": [ - 1242 + 1345 ], "where": [ - 1229, + 1332, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1220, + 1323, { "_inc": [ - 1231 + 1334 ], "_set": [ - 1242 + 1345 ], "pk_columns": [ - 1240, + 1343, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1237, + 1340, { "updates": [ - 1254, + 1357, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1278, + 1381, { "_inc": [ - 1272 + 1375 ], "_set": [ - 1283 + 1386 ], "where": [ - 1270, + 1373, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1261, + 1364, { "_inc": [ - 1272 + 1375 ], "_set": [ - 1283 + 1386 ], "pk_columns": [ - 1281, + 1384, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1278, + 1381, { "updates": [ - 1295, + 1398, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1316, + 1419, { "_set": [ - 1321 + 1424 ], "where": [ - 1309, + 1412, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1302, + 1405, { "_set": [ - 1321 + 1424 ], "pk_columns": [ - 1319, + 1422, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1316, + 1419, { "updates": [ - 1325, + 1428, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1340, + 1443, { "_set": [ - 1345 + 1448 ], "where": [ - 1333, + 1436, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1326, + 1429, { "_set": [ - 1345 + 1448 ], "pk_columns": [ - 1343, + 1446, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1340, + 1443, { "updates": [ - 1349, + 1452, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1360, + 1463, { "_inc": [ - 1356 + 1459 ], "_set": [ - 1366 + 1469 ], "where": [ - 1354, + 1457, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1350, + 1453, { "_inc": [ - 1356 + 1459 ], "_set": [ - 1366 + 1469 ], "pk_columns": [ - 1364, + 1467, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1360, + 1463, { "updates": [ - 1374, + 1477, "[events_updates!]!" ] } ], "update_friends": [ - 1390, + 1493, { "_inc": [ - 1386 + 1489 ], "_set": [ - 1395 + 1498 ], "where": [ - 1384, + 1487, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1380, + 1483, { "_inc": [ - 1386 + 1489 ], "_set": [ - 1395 + 1498 ], "pk_columns": [ - 1393, + 1496, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1390, + 1493, { "updates": [ - 1403, + 1506, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1430, + 1533, { "_append": [ - 1415 + 1518 ], "_delete_at_path": [ - 1421 + 1524 ], "_delete_elem": [ - 1422 + 1525 ], "_delete_key": [ - 1423 + 1526 ], "_inc": [ - 1424 + 1527 ], "_prepend": [ - 1435 + 1538 ], "_set": [ - 1439 + 1542 ], "where": [ - 1419, + 1522, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1407, + 1510, { "_append": [ - 1415 + 1518 ], "_delete_at_path": [ - 1421 + 1524 ], "_delete_elem": [ - 1422 + 1525 ], "_delete_key": [ - 1423 + 1526 ], "_inc": [ - 1424 + 1527 ], "_prepend": [ - 1435 + 1538 ], "_set": [ - 1439 + 1542 ], "pk_columns": [ - 1434, + 1537, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1430, + 1533, { "updates": [ - 1451, + 1554, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1472, + 1575, { "_append": [ - 1461 + 1564 ], "_delete_at_path": [ - 1465 + 1568 ], "_delete_elem": [ - 1466 + 1569 ], "_delete_key": [ - 1467 + 1570 ], "_inc": [ - 1468 + 1571 ], "_prepend": [ - 1477 + 1580 ], "_set": [ - 1479 + 1582 ], "where": [ - 1463, + 1566, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1458, + 1561, { "_append": [ - 1461 + 1564 ], "_delete_at_path": [ - 1465 + 1568 ], "_delete_elem": [ - 1466 + 1569 ], "_delete_key": [ - 1467 + 1570 ], "_inc": [ - 1468 + 1571 ], "_prepend": [ - 1477 + 1580 ], "_set": [ - 1479 + 1582 ], "pk_columns": [ - 1476, + 1579, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1472, + 1575, { "updates": [ - 1487, + 1590, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1505, + 1608, { "_append": [ - 1494 + 1597 ], "_delete_at_path": [ - 1498 + 1601 ], "_delete_elem": [ - 1499 + 1602 ], "_delete_key": [ - 1500 + 1603 ], "_inc": [ - 1501 + 1604 ], "_prepend": [ - 1509 + 1612 ], "_set": [ - 1511 + 1614 ], "where": [ - 1496, + 1599, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1491, + 1594, { "_append": [ - 1494 + 1597 ], "_delete_at_path": [ - 1498 + 1601 ], "_delete_elem": [ - 1499 + 1602 ], "_delete_key": [ - 1500 + 1603 ], "_inc": [ - 1501 + 1604 ], "_prepend": [ - 1509 + 1612 ], "_set": [ - 1511 + 1614 ], "pk_columns": [ - 1508, + 1611, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1505, + 1608, { "updates": [ - 1519, + 1622, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1543, + 1646, { "_inc": [ - 1539 + 1642 ], "_set": [ - 1546 + 1649 ], "where": [ - 1538, + 1641, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1543, + 1646, { "updates": [ - 1553, + 1656, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1568, + 1671, { "_inc": [ - 1564 + 1667 ], "_set": [ - 1574 + 1677 ], "where": [ - 1562, + 1665, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1558, + 1661, { "_inc": [ - 1564 + 1667 ], "_set": [ - 1574 + 1677 ], "pk_columns": [ - 1572, + 1675, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1568, + 1671, { "updates": [ - 1582, + 1685, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1603, + 1706, { "_inc": [ - 1597 + 1700 ], "_set": [ - 1608 + 1711 ], "where": [ - 1595, + 1698, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1586, + 1689, { "_inc": [ - 1597 + 1700 ], "_set": [ - 1608 + 1711 ], "pk_columns": [ - 1606, + 1709, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1603, + 1706, { "updates": [ - 1620, + 1723, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1644, + 1747, { "_inc": [ - 1638 + 1741 ], "_set": [ - 1649 + 1752 ], "where": [ - 1636, + 1739, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1627, + 1730, { "_inc": [ - 1638 + 1741 ], "_set": [ - 1649 + 1752 ], "pk_columns": [ - 1647, + 1750, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1644, + 1747, { "updates": [ - 1661, + 1764, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1685, + 1788, { "_inc": [ - 1679 + 1782 ], "_set": [ - 1690 + 1793 ], "where": [ - 1677, + 1780, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1668, + 1771, { "_inc": [ - 1679 + 1782 ], "_set": [ - 1690 + 1793 ], "pk_columns": [ - 1688, + 1791, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1685, + 1788, { "updates": [ - 1702, + 1805, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1723, + 1826, { "_set": [ - 1729 + 1832 ], "where": [ - 1716, + 1819, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1709, + 1812, { "_set": [ - 1729 + 1832 ], "pk_columns": [ - 1727, + 1830, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1723, + 1826, { "updates": [ - 1733, + 1836, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1748, + 1851, { "_append": [ - 1737 + 1840 ], "_delete_at_path": [ - 1741 + 1844 ], "_delete_elem": [ - 1742 + 1845 ], "_delete_key": [ - 1743 + 1846 ], "_inc": [ - 1744 + 1847 ], "_prepend": [ - 1753 + 1856 ], "_set": [ - 1755 + 1858 ], "where": [ - 1739, + 1842, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1734, + 1837, { "_append": [ - 1737 + 1840 ], "_delete_at_path": [ - 1741 + 1844 ], "_delete_elem": [ - 1742 + 1845 ], "_delete_key": [ - 1743 + 1846 ], "_inc": [ - 1744 + 1847 ], "_prepend": [ - 1753 + 1856 ], "_set": [ - 1755 + 1858 ], "pk_columns": [ - 1752, + 1855, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1748, + 1851, { "updates": [ - 1763, + 1866, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1784, + 1887, { "_inc": [ - 1778 + 1881 ], "_set": [ - 1789 + 1892 ], "where": [ - 1776, + 1879, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1767, + 1870, { "_inc": [ - 1778 + 1881 ], "_set": [ - 1789 + 1892 ], "pk_columns": [ - 1787, + 1890, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1784, + 1887, { "updates": [ - 1801, + 1904, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1825, + 1928, { "_inc": [ - 1819 + 1922 ], "_set": [ - 1830 + 1933 ], "where": [ - 1817, + 1920, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1808, + 1911, { "_inc": [ - 1819 + 1922 ], "_set": [ - 1830 + 1933 ], "pk_columns": [ - 1828, + 1931, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1825, + 1928, { "updates": [ - 1842, + 1945, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1866, + 1969, { "_inc": [ - 1860 + 1963 ], "_set": [ - 1872 + 1975 ], "where": [ - 1858, + 1961, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1849, + 1952, { "_inc": [ - 1860 + 1963 ], "_set": [ - 1872 + 1975 ], "pk_columns": [ - 1870, + 1973, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1866, + 1969, { "updates": [ - 1884, + 1987, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 1899, + 2002, { "_set": [ - 1905 + 2008 ], "where": [ - 1894, + 1997, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 1891, + 1994, { "_set": [ - 1905 + 2008 ], "pk_columns": [ - 1903, + 2006, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 1899, + 2002, { "updates": [ - 1909, + 2012, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 1918, + 2021, { "_set": [ - 1924 + 2027 ], "where": [ - 1913, + 2016, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 1910, + 2013, { "_set": [ - 1924 + 2027 ], "pk_columns": [ - 1922, + 2025, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 1918, + 2021, { "updates": [ - 1928, + 2031, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1948, + 2051, { "_inc": [ - 1942 + 2045 ], "_set": [ - 1955 + 2058 ], "where": [ - 1940, + 2043, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 1929, + 2032, { "_inc": [ - 1942 + 2045 ], "_set": [ - 1955 + 2058 ], "pk_columns": [ - 1951, + 2054, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1948, + 2051, { "updates": [ - 1967, + 2070, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1982, + 2085, { "_set": [ - 1988 + 2091 ], "where": [ - 1977, + 2080, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1974, + 2077, { "_set": [ - 1988 + 2091 ], "pk_columns": [ - 1986, + 2089, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1982, + 2085, { "updates": [ - 1992, + 2095, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2009, + 2112, { "_set": [ - 2017 + 2120 ], "where": [ - 2002, + 2105, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1993, + 2096, { "_set": [ - 2017 + 2120 ], "pk_columns": [ - 2013, + 2116, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2009, + 2112, { "updates": [ - 2021, + 2124, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2039, + 2142, { "_inc": [ - 2033 + 2136 ], "_set": [ - 2045 + 2148 ], "where": [ - 2031, + 2134, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2022, + 2125, { "_inc": [ - 2033 + 2136 ], "_set": [ - 2045 + 2148 ], "pk_columns": [ - 2043, + 2146, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2039, + 2142, { "updates": [ - 2057, + 2160, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2085, + 2188, { "_append": [ - 2070 + 2173 ], "_delete_at_path": [ - 2076 + 2179 ], "_delete_elem": [ - 2077 + 2180 ], "_delete_key": [ - 2078 + 2181 ], "_inc": [ - 2079 + 2182 ], "_prepend": [ - 2089 + 2192 ], "_set": [ - 2091 + 2194 ], "where": [ - 2074, + 2177, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2064, + 2167, { "_append": [ - 2070 + 2173 ], "_delete_at_path": [ - 2076 + 2179 ], "_delete_elem": [ - 2077 + 2180 ], "_delete_key": [ - 2078 + 2181 ], "_inc": [ - 2079 + 2182 ], "_prepend": [ - 2089 + 2192 ], "_set": [ - 2091 + 2194 ], "pk_columns": [ - 2088, + 2191, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2085, + 2188, { "updates": [ - 2103, + 2206, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2129, + 2232, { "_inc": [ - 2123 + 2226 ], "_set": [ - 2136 + 2239 ], "where": [ - 2121, + 2224, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2110, + 2213, { "_inc": [ - 2123 + 2226 ], "_set": [ - 2136 + 2239 ], "pk_columns": [ - 2132, + 2235, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2129, + 2232, { "updates": [ - 2148, + 2251, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2172, + 2275, { "_inc": [ - 2166 + 2269 ], "_set": [ - 2178 + 2281 ], "where": [ - 2164, + 2267, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2155, + 2258, { "_inc": [ - 2166 + 2269 ], "_set": [ - 2178 + 2281 ], "pk_columns": [ - 2176, + 2279, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2172, + 2275, { "updates": [ - 2190, + 2293, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2220, + 2323, { "_append": [ - 2205 + 2308 ], "_delete_at_path": [ - 2211 + 2314 ], "_delete_elem": [ - 2212 + 2315 ], "_delete_key": [ - 2213 + 2316 ], "_inc": [ - 2214 + 2317 ], "_prepend": [ - 2225 + 2328 ], "_set": [ - 2229 + 2332 ], "where": [ - 2209, + 2312, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2197, + 2300, { "_append": [ - 2205 + 2308 ], "_delete_at_path": [ - 2211 + 2314 ], "_delete_elem": [ - 2212 + 2315 ], "_delete_key": [ - 2213 + 2316 ], "_inc": [ - 2214 + 2317 ], "_prepend": [ - 2225 + 2328 ], "_set": [ - 2229 + 2332 ], "pk_columns": [ - 2224, + 2327, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2220, + 2323, { "updates": [ - 2241, + 2344, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2265, + 2368, { "_inc": [ - 2259 + 2362 ], "_set": [ - 2270 + 2373 ], "where": [ - 2257, + 2360, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2248, + 2351, { "_inc": [ - 2259 + 2362 ], "_set": [ - 2270 + 2373 ], "pk_columns": [ - 2268, + 2371, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2265, + 2368, { "updates": [ - 2282, + 2385, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2303, + 2406, { "_set": [ - 2308 + 2411 ], "where": [ - 2296, + 2399, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2289, + 2392, { "_set": [ - 2308 + 2411 ], "pk_columns": [ - 2306, + 2409, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2303, + 2406, { "updates": [ - 2312, + 2415, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2330, + 2433, { "_inc": [ - 2324 + 2427 ], "_set": [ - 2336 + 2439 ], "where": [ - 2322, + 2425, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2313, + 2416, { "_inc": [ - 2324 + 2427 ], "_set": [ - 2336 + 2439 ], "pk_columns": [ - 2334, + 2437, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2330, + 2433, { "updates": [ - 2348, + 2451, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2365, + 2468, { "_inc": [ - 2361 + 2464 ], "_set": [ - 2371 + 2474 ], "where": [ - 2359, + 2462, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2355, + 2458, { "_inc": [ - 2361 + 2464 ], "_set": [ - 2371 + 2474 ], "pk_columns": [ - 2369, + 2472, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2365, + 2468, { "updates": [ - 2379, + 2482, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2397, + 2500, { "_set": [ - 2402 + 2505 ], "where": [ - 2390, + 2493, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2383, + 2486, { "_set": [ - 2402 + 2505 ], "pk_columns": [ - 2400, + 2503, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2397, + 2500, { "updates": [ - 2406, + 2509, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2430, + 2533, { "_append": [ - 2415 + 2518 ], "_delete_at_path": [ - 2421 + 2524 ], "_delete_elem": [ - 2422 + 2525 ], "_delete_key": [ - 2423 + 2526 ], "_inc": [ - 2424 + 2527 ], "_prepend": [ - 2434 + 2537 ], "_set": [ - 2438 + 2541 ], "where": [ - 2419, + 2522, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2407, + 2510, { "_append": [ - 2415 + 2518 ], "_delete_at_path": [ - 2421 + 2524 ], "_delete_elem": [ - 2422 + 2525 ], "_delete_key": [ - 2423 + 2526 ], "_inc": [ - 2424 + 2527 ], "_prepend": [ - 2434 + 2537 ], "_set": [ - 2438 + 2541 ], "pk_columns": [ - 2433, + 2536, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2430, + 2533, { "updates": [ - 2450, + 2553, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2465, + 2568, { "_set": [ - 2470 + 2573 ], "where": [ - 2460, + 2563, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2457, + 2560, { "_set": [ - 2470 + 2573 ], "pk_columns": [ - 2468, + 2571, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2465, + 2568, { "updates": [ - 2474, + 2577, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2492, + 2595, { "_inc": [ - 2486 + 2589 ], "_set": [ - 2498 + 2601 ], "where": [ - 2484, + 2587, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2475, + 2578, { "_inc": [ - 2486 + 2589 ], "_set": [ - 2498 + 2601 ], "pk_columns": [ - 2496, + 2599, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2492, + 2595, { "updates": [ - 2510, + 2613, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2525, + 2628, { "_set": [ - 2530 + 2633 ], "where": [ - 2520, + 2623, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2517, + 2620, { "_set": [ - 2530 + 2633 ], "pk_columns": [ - 2528, + 2631, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2525, + 2628, { "updates": [ - 2534, + 2637, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2557, + 2660, { "_append": [ - 2543 + 2646 ], "_delete_at_path": [ - 2548 + 2651 ], "_delete_elem": [ - 2549 + 2652 ], "_delete_key": [ - 2550 + 2653 ], "_inc": [ - 2551 + 2654 ], "_prepend": [ - 2559 + 2662 ], "_set": [ - 2563 + 2666 ], "where": [ - 2547, + 2650, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2557, + 2660, { "updates": [ - 2574, + 2677, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2591, + 2694, { "_inc": [ - 2587 + 2690 ], "_set": [ - 2596 + 2699 ], "where": [ - 2585, + 2688, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2581, + 2684, { "_inc": [ - 2587 + 2690 ], "_set": [ - 2596 + 2699 ], "pk_columns": [ - 2594, + 2697, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2591, + 2694, { "updates": [ - 2604, + 2707, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2631, + 2734, { "_append": [ - 2616 + 2719 ], "_delete_at_path": [ - 2622 + 2725 ], "_delete_elem": [ - 2623 + 2726 ], "_delete_key": [ - 2624 + 2727 ], "_inc": [ - 2625 + 2728 ], "_prepend": [ - 2635 + 2738 ], "_set": [ - 2639 + 2742 ], "where": [ - 2620, + 2723, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2608, + 2711, { "_append": [ - 2616 + 2719 ], "_delete_at_path": [ - 2622 + 2725 ], "_delete_elem": [ - 2623 + 2726 ], "_delete_key": [ - 2624 + 2727 ], "_inc": [ - 2625 + 2728 ], "_prepend": [ - 2635 + 2738 ], "_set": [ - 2639 + 2742 ], "pk_columns": [ - 2634, + 2737, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2631, + 2734, { "updates": [ - 2651, + 2754, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2678, + 2781, { "_inc": [ - 2672 + 2775 ], "_set": [ - 2683 + 2786 ], "where": [ - 2670, + 2773, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2661, + 2764, { "_inc": [ - 2672 + 2775 ], "_set": [ - 2683 + 2786 ], "pk_columns": [ - 2681, + 2784, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2678, + 2781, { "updates": [ - 2695, + 2798, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2712, + 2815, { "_inc": [ - 2708 + 2811 ], "_set": [ - 2718 + 2821 ], "where": [ - 2706, + 2809, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2702, + 2805, { "_inc": [ - 2708 + 2811 ], "_set": [ - 2718 + 2821 ], "pk_columns": [ - 2716, + 2819, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2712, + 2815, { "updates": [ - 2726, + 2829, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2740, + 2843, { "_inc": [ - 2736 + 2839 ], "_set": [ - 2745 + 2848 ], "where": [ - 2734, + 2837, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2730, + 2833, { "_inc": [ - 2736 + 2839 ], "_set": [ - 2745 + 2848 ], "pk_columns": [ - 2743, + 2846, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2740, + 2843, { "updates": [ - 2753, + 2856, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2774, + 2877, { "_inc": [ - 2768 + 2871 ], "_set": [ - 2779 + 2882 ], "where": [ - 2766, + 2869, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2757, + 2860, { "_inc": [ - 2768 + 2871 ], "_set": [ - 2779 + 2882 ], "pk_columns": [ - 2777, + 2880, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2774, + 2877, { "updates": [ - 2791, + 2894, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2817, + 2920, { "_inc": [ - 2811 + 2914 ], "_set": [ - 2824 + 2927 ], "where": [ - 2809, + 2912, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2798, + 2901, { "_inc": [ - 2811 + 2914 ], "_set": [ - 2824 + 2927 ], "pk_columns": [ - 2820, + 2923, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2817, + 2920, { "updates": [ - 2836, + 2939, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2878, + 2981, { "_inc": [ - 2872 + 2975 ], "_set": [ - 2883 + 2986 ], "where": [ - 2870, + 2973, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2861, + 2964, { "_inc": [ - 2872 + 2975 ], "_set": [ - 2883 + 2986 ], "pk_columns": [ - 2881, + 2984, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2878, + 2981, { "updates": [ - 2895, + 2998, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 2912, + 3015, { "_inc": [ - 2908 + 3011 ], "_set": [ - 2917 + 3020 ], "where": [ - 2906, + 3009, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 2902, + 3005, { "_inc": [ - 2908 + 3011 ], "_set": [ - 2917 + 3020 ], "pk_columns": [ - 2915, + 3018, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 2912, + 3015, { "updates": [ - 2925, + 3028, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2946, + 3049, { "_inc": [ - 2940 + 3043 ], "_set": [ - 2951 + 3054 ], "where": [ - 2938, + 3041, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2929, + 3032, { "_inc": [ - 2940 + 3043 ], "_set": [ - 2951 + 3054 ], "pk_columns": [ - 2949, + 3052, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2946, + 3049, { "updates": [ - 2963, + 3066, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2989, + 3092, { "_inc": [ - 2983 + 3086 ], "_set": [ - 2996 + 3099 ], "where": [ - 2981, + 3084, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2970, + 3073, { "_inc": [ - 2983 + 3086 ], "_set": [ - 2996 + 3099 ], "pk_columns": [ - 2992, + 3095, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2989, + 3092, { "updates": [ - 3008, + 3111, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3075, + 3178, { "_inc": [ - 3069 + 3172 ], "_set": [ - 3082 + 3185 ], "where": [ - 3026, + 3129, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3015, + 3118, { "_inc": [ - 3069 + 3172 ], "_set": [ - 3082 + 3185 ], "pk_columns": [ - 3078, + 3181, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3044, + 3147, { "_inc": [ - 3038 + 3141 ], "_set": [ - 3049 + 3152 ], "where": [ - 3036, + 3139, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3027, + 3130, { "_inc": [ - 3038 + 3141 ], "_set": [ - 3049 + 3152 ], "pk_columns": [ - 3047, + 3150, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3044, + 3147, { "updates": [ - 3061, + 3164, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3075, + 3178, { "updates": [ - 3094, + 3197, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3110, + 3213, { "_inc": [ - 3106 + 3209 ], "_set": [ - 3113 + 3216 ], "where": [ - 3105, + 3208, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3110, + 3213, { "updates": [ - 3120, + 3223, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3141, + 3244, { "_inc": [ - 3135 + 3238 ], "_set": [ - 3146 + 3249 ], "where": [ - 3133, + 3236, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3124, + 3227, { "_inc": [ - 3135 + 3238 ], "_set": [ - 3146 + 3249 ], "pk_columns": [ - 3144, + 3247, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3141, + 3244, { "updates": [ - 3158, + 3261, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3233, + 3336, { "_inc": [ - 3227 + 3330 ], "_set": [ - 3238 + 3341 ], "where": [ - 3225, + 3328, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3216, + 3319, { "_inc": [ - 3227 + 3330 ], "_set": [ - 3238 + 3341 ], "pk_columns": [ - 3236, + 3339, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3233, + 3336, { "updates": [ - 3250, + 3353, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3292, + 3395, { "_inc": [ - 3286 + 3389 ], "_set": [ - 3297 + 3400 ], "where": [ - 3284, + 3387, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3275, + 3378, { "_inc": [ - 3286 + 3389 ], "_set": [ - 3297 + 3400 ], "pk_columns": [ - 3295, + 3398, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3292, + 3395, { "updates": [ - 3309, + 3412, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3333, + 3436, { "_inc": [ - 3327 + 3430 ], "_set": [ - 3338 + 3441 ], "where": [ - 3325, + 3428, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3316, + 3419, { "_inc": [ - 3327 + 3430 ], "_set": [ - 3338 + 3441 ], "pk_columns": [ - 3336, + 3439, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3333, + 3436, { "updates": [ - 3350, + 3453, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3384, + 3487, { "_inc": [ - 3378 + 3481 ], "_set": [ - 3397 + 3500 ], "where": [ - 3376, + 3479, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3357, + 3460, { "_inc": [ - 3378 + 3481 ], "_set": [ - 3397 + 3500 ], "pk_columns": [ - 3387, + 3490, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3384, + 3487, { "updates": [ - 3409, + 3512, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3426, + 3529, { "_inc": [ - 3422 + 3525 ], "_set": [ - 3432 + 3535 ], "where": [ - 3420, + 3523, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3416, + 3519, { "_inc": [ - 3422 + 3525 ], "_set": [ - 3432 + 3535 ], "pk_columns": [ - 3430, + 3533, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3426, + 3529, { "updates": [ - 3440, + 3543, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3458, + 3561, { "_append": [ - 3447 + 3550 ], "_delete_at_path": [ - 3451 + 3554 ], "_delete_elem": [ - 3452 + 3555 ], "_delete_key": [ - 3453 + 3556 ], "_inc": [ - 3454 + 3557 ], "_prepend": [ - 3462 + 3565 ], "_set": [ - 3464 + 3567 ], "where": [ - 3449, + 3552, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3444, + 3547, { "_append": [ - 3447 + 3550 ], "_delete_at_path": [ - 3451 + 3554 ], "_delete_elem": [ - 3452 + 3555 ], "_delete_key": [ - 3453 + 3556 ], "_inc": [ - 3454 + 3557 ], "_prepend": [ - 3462 + 3565 ], "_set": [ - 3464 + 3567 ], "pk_columns": [ - 3461, + 3564, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3458, + 3561, { "updates": [ - 3472, + 3575, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3486, + 3589, { "_inc": [ - 3482 + 3585 ], "_set": [ - 3491 + 3594 ], "where": [ - 3480, + 3583, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3476, + 3579, { "_inc": [ - 3482 + 3585 ], "_set": [ - 3491 + 3594 ], "pk_columns": [ - 3489, + 3592, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3486, + 3589, { "updates": [ - 3499, + 3602, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3520, + 3623, { "_inc": [ - 3514 + 3617 ], "_set": [ - 3525 + 3628 ], "where": [ - 3512, + 3615, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3503, + 3606, { "_inc": [ - 3514 + 3617 ], "_set": [ - 3525 + 3628 ], "pk_columns": [ - 3523, + 3626, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3520, + 3623, { "updates": [ - 3537, + 3640, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3561, + 3664, { "_inc": [ - 3555 + 3658 ], "_set": [ - 3566 + 3669 ], "where": [ - 3553, + 3656, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3544, + 3647, { "_inc": [ - 3555 + 3658 ], "_set": [ - 3566 + 3669 ], "pk_columns": [ - 3564, + 3667, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3561, + 3664, { "updates": [ - 3578, + 3681, "[player_utility_updates!]!" ] } ], "update_players": [ - 3628, + 3731, { "_inc": [ - 3624 + 3727 ], "_set": [ - 3634 + 3737 ], "where": [ - 3622, + 3725, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3618, + 3721, { "_inc": [ - 3624 + 3727 ], "_set": [ - 3634 + 3737 ], "pk_columns": [ - 3632, + 3735, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3628, + 3731, { "updates": [ - 3642, + 3745, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3656, + 3759, { "_inc": [ - 3652 + 3755 ], "_set": [ - 3661 + 3764 ], "where": [ - 3650, + 3753, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3646, + 3749, { "_inc": [ - 3652 + 3755 ], "_set": [ - 3661 + 3764 ], "pk_columns": [ - 3659, + 3762, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3656, + 3759, { "updates": [ - 3669, + 3772, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3687, + 3790, { "_inc": [ - 3683 + 3786 ], "_set": [ - 3693 + 3796 ], "where": [ - 3681, + 3784, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3677, + 3780, { "_inc": [ - 3683 + 3786 ], "_set": [ - 3693 + 3796 ], "pk_columns": [ - 3691, + 3794, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3687, + 3790, { "updates": [ - 3701, + 3804, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3714, + 3817, { "_set": [ - 3720 + 3823 ], "where": [ - 3709, + 3812, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3705, + 3808, { "_set": [ - 3720 + 3823 ], "pk_columns": [ - 3718, + 3821, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3714, + 3817, { "updates": [ - 3728, + 3831, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3751, + 3854, { "_inc": [ - 3745 + 3848 ], "_set": [ - 3759 + 3862 ], "where": [ - 3743, + 3846, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3732, + 3835, { "_inc": [ - 3745 + 3848 ], "_set": [ - 3759 + 3862 ], "pk_columns": [ - 3755, + 3858, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3751, + 3854, { "updates": [ - 3771, + 3874, "[servers_updates!]!" ] } ], "update_settings": [ - 3786, + 3889, { "_set": [ - 3791 + 3894 ], "where": [ - 3781, + 3884, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3778, + 3881, { "_set": [ - 3791 + 3894 ], "pk_columns": [ - 3789, + 3892, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3786, + 3889, { "updates": [ - 3795, + 3898, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3812, + 3915, { "_set": [ - 3817 + 3920 ], "where": [ - 3805, + 3908, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3798, + 3901, { "_set": [ - 3817 + 3920 ], "pk_columns": [ - 3815, + 3918, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3812, + 3915, { "updates": [ - 3821, + 3924, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3832, + 3935, { "_inc": [ - 3828 + 3931 ], "_set": [ - 3838 + 3941 ], "where": [ - 3826, + 3929, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3822, + 3925, { "_inc": [ - 3828 + 3931 ], "_set": [ - 3838 + 3941 ], "pk_columns": [ - 3836, + 3939, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3832, + 3935, { "updates": [ - 3846, + 3949, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3860, + 3963, { "_inc": [ - 3856 + 3959 ], "_set": [ - 3865 + 3968 ], "where": [ - 3854, + 3957, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3850, + 3953, { "_inc": [ - 3856 + 3959 ], "_set": [ - 3865 + 3968 ], "pk_columns": [ - 3863, + 3966, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3860, + 3963, { "updates": [ - 3873, + 3976, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3894, + 3997, { "_inc": [ - 3888 + 3991 ], "_set": [ - 3899 + 4002 ], "where": [ - 3886, + 3989, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3877, + 3980, { "_inc": [ - 3888 + 3991 ], "_set": [ - 3899 + 4002 ], "pk_columns": [ - 3897, + 4000, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3894, + 3997, { "updates": [ - 3911, + 4014, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 3937, + 4040, { "_inc": [ - 3931 + 4034 ], "_set": [ - 3944 + 4047 ], "where": [ - 3929, + 4032, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 3918, + 4021, { "_inc": [ - 3931 + 4034 ], "_set": [ - 3944 + 4047 ], "pk_columns": [ - 3940, + 4043, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 3937, + 4040, { "updates": [ - 3956, + 4059, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 3973, + 4076, { "_inc": [ - 3969 + 4072 ], "_set": [ - 3978 + 4081 ], "where": [ - 3967, + 4070, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 3963, + 4066, { "_inc": [ - 3969 + 4072 ], "_set": [ - 3978 + 4081 ], "pk_columns": [ - 3976, + 4079, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 3973, + 4076, { "updates": [ - 3986, + 4089, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4006, + 4109, { "_set": [ - 4013 + 4116 ], "where": [ - 3999, + 4102, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 3990, + 4093, { "_set": [ - 4013 + 4116 ], "pk_columns": [ - 4009, + 4112, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4006, + 4109, { "updates": [ - 4017, + 4120, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4035, + 4138, { "_inc": [ - 4029 + 4132 ], "_set": [ - 4040 + 4143 ], "where": [ - 4027, + 4130, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4018, + 4121, { "_inc": [ - 4029 + 4132 ], "_set": [ - 4040 + 4143 ], "pk_columns": [ - 4038, + 4141, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4035, + 4138, { "updates": [ - 4052, + 4155, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4078, + 4181, { "_inc": [ - 4072 + 4175 ], "_set": [ - 4086 + 4189 ], "where": [ - 4070, + 4173, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4059, + 4162, { "_inc": [ - 4072 + 4175 ], "_set": [ - 4086 + 4189 ], "pk_columns": [ - 4082, + 4185, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4078, + 4181, { "updates": [ - 4098, + 4201, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4115, + 4218, { "_inc": [ - 4111 + 4214 ], "_set": [ - 4121 + 4224 ], "where": [ - 4109, + 4212, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4105, + 4208, { "_inc": [ - 4111 + 4214 ], "_set": [ - 4121 + 4224 ], "pk_columns": [ - 4119, + 4222, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4115, + 4218, { "updates": [ - 4129, + 4232, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4143, + 4246, { "_inc": [ - 4139 + 4242 ], "_set": [ - 4148 + 4251 ], "where": [ - 4137, + 4240, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4133, + 4236, { "_inc": [ - 4139 + 4242 ], "_set": [ - 4148 + 4251 ], "pk_columns": [ - 4146, + 4249, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4143, + 4246, { "updates": [ - 4156, + 4259, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4177, + 4280, { "_inc": [ - 4171 + 4274 ], "_set": [ - 4183 + 4286 ], "where": [ - 4169, + 4272, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4160, + 4263, { "_inc": [ - 4171 + 4274 ], "_set": [ - 4183 + 4286 ], "pk_columns": [ - 4181, + 4284, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4177, + 4280, { "updates": [ - 4195, + 4298, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4224, + 4327, { "_inc": [ - 4218 + 4321 ], "_set": [ - 4232 + 4335 ], "where": [ - 4216, + 4319, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4205, + 4308, { "_inc": [ - 4218 + 4321 ], "_set": [ - 4232 + 4335 ], "pk_columns": [ - 4228, + 4331, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4224, + 4327, { "updates": [ - 4244, + 4347, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4268, + 4371, { "_inc": [ - 4262 + 4365 ], "_set": [ - 4273 + 4376 ], "where": [ - 4260, + 4363, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4251, + 4354, { "_inc": [ - 4262 + 4365 ], "_set": [ - 4273 + 4376 ], "pk_columns": [ - 4271, + 4374, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4268, + 4371, { "updates": [ - 4285, + 4388, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4309, + 4412, { "_inc": [ - 4303 + 4406 ], "_set": [ - 4314 + 4417 ], "where": [ - 4301, + 4404, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4292, + 4395, { "_inc": [ - 4303 + 4406 ], "_set": [ - 4314 + 4417 ], "pk_columns": [ - 4312, + 4415, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4309, + 4412, { "updates": [ - 4326, + 4429, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4356, + 4459, { "_append": [ - 4341 + 4444 ], "_delete_at_path": [ - 4347 + 4450 ], "_delete_elem": [ - 4348 + 4451 ], "_delete_key": [ - 4349 + 4452 ], "_inc": [ - 4350 + 4453 ], "_prepend": [ - 4361 + 4464 ], "_set": [ - 4365 + 4468 ], "where": [ - 4345, + 4448, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4333, + 4436, { "_append": [ - 4341 + 4444 ], "_delete_at_path": [ - 4347 + 4450 ], "_delete_elem": [ - 4348 + 4451 ], "_delete_key": [ - 4349 + 4452 ], "_inc": [ - 4350 + 4453 ], "_prepend": [ - 4361 + 4464 ], "_set": [ - 4365 + 4468 ], "pk_columns": [ - 4360, + 4463, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4356, + 4459, { "updates": [ - 4377, + 4480, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4401, + 4504, { "_inc": [ - 4395 + 4498 ], "_set": [ - 4406 + 4509 ], "where": [ - 4393, + 4496, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4384, + 4487, { "_inc": [ - 4395 + 4498 ], "_set": [ - 4406 + 4509 ], "pk_columns": [ - 4404, + 4507, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4401, + 4504, { "updates": [ - 4418, + 4521, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4442, + 4545, { "_inc": [ - 4436 + 4539 ], "_set": [ - 4447 + 4550 ], "where": [ - 4434, + 4537, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4425, + 4528, { "_inc": [ - 4436 + 4539 ], "_set": [ - 4447 + 4550 ], "pk_columns": [ - 4445, + 4548, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4442, + 4545, { "updates": [ - 4459, + 4562, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4483, + 4586, { "_inc": [ - 4477 + 4580 ], "_set": [ - 4489 + 4592 ], "where": [ - 4475, + 4578, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4466, + 4569, { "_inc": [ - 4477 + 4580 ], "_set": [ - 4489 + 4592 ], "pk_columns": [ - 4487, + 4590, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4483, + 4586, { "updates": [ - 4501, + 4604, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4527, + 4630, { "_inc": [ - 4521 + 4624 ], "_set": [ - 4534 + 4637 ], "where": [ - 4519, + 4622, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4508, + 4611, { "_inc": [ - 4521 + 4624 ], "_set": [ - 4534 + 4637 ], "pk_columns": [ - 4530, + 4633, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4527, + 4630, { "updates": [ - 4546, + 4649, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4570, + 4673, { "_inc": [ - 4564 + 4667 ], "_set": [ - 4576 + 4679 ], "where": [ - 4562, + 4665, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4553, + 4656, { "_inc": [ - 4564 + 4667 ], "_set": [ - 4576 + 4679 ], "pk_columns": [ - 4574, + 4677, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4570, + 4673, { "updates": [ - 4588, + 4691, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4614, + 4717, { "_inc": [ - 4608 + 4711 ], "_set": [ - 4622 + 4725 ], "where": [ - 4606, + 4709, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4595, + 4698, { "_inc": [ - 4608 + 4711 ], "_set": [ - 4622 + 4725 ], "pk_columns": [ - 4618, + 4721, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4614, + 4717, { "updates": [ - 4634, + 4737, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4806, + 4919, { "_inc": [ - 4802 + 4915 ], "_set": [ - 4810 + 4923 ], "where": [ - 4801, + 4914, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4806, + 4919, { "updates": [ - 4817, + 4930, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 4917, + 5030, { "_inc": [ - 4913 + 5026 ], "_set": [ - 4920 + 5033 ], "where": [ - 4912, + 5025, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 4917, + 5030, { "updates": [ - 4927, + 5040, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5139, + 5252, { "_inc": [ - 5133 + 5246 ], "_set": [ - 5142 + 5255 ], "where": [ - 5132, + 5245, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5139, + 5252, { "updates": [ - 5153, + 5266, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5298, + 5411, { "_set": [ - 5303 + 5416 ], "where": [ - 5292, + 5405, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5298, + 5411, { "updates": [ - 5306, + 5419, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5392, + 5505, { "_inc": [ - 5386 + 5499 ], "_set": [ - 5406 + 5519 ], "where": [ - 5384, + 5497, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5365, + 5478, { "_inc": [ - 5386 + 5499 ], "_set": [ - 5406 + 5519 ], "pk_columns": [ - 5396, + 5509, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5392, + 5505, { "updates": [ - 5418, + 5531, "[v_team_stage_results_updates!]!" ] } @@ -151756,7 +153967,7 @@ export default { 81, { "game_server_node_id": [ - 4641, + 4744, "uuid!" ] } @@ -151765,10 +153976,10 @@ export default { 91, { "match_map_demo_id": [ - 4641 + 4744 ], "match_map_id": [ - 4641, + 4744, "uuid!" ] } @@ -151846,11 +154057,11 @@ export default { 92, { "map_id": [ - 4641, + 4744, "uuid!" ], "map_pool_id": [ - 4641, + 4744, "uuid!" ] } @@ -151919,7 +154130,7 @@ export default { 111, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -151988,7 +154199,7 @@ export default { 152, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -152057,7 +154268,7 @@ export default { 185, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -152126,7 +154337,7 @@ export default { 237, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -152195,7 +154406,7 @@ export default { 264, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -152264,7 +154475,7 @@ export default { 309, { "draft_game_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -152337,7 +154548,7 @@ export default { 354, { "id": [ - 4641, + 4744, "uuid!" ] } @@ -152772,12 +154983,12 @@ export default { ] } ], - "e_event_status": [ + "e_event_media_access": [ 525, { "distinct_on": [ 539, - "[e_event_status_select_column!]" + "[e_event_media_access_select_column!]" ], "limit": [ 38 @@ -152787,19 +154998,19 @@ export default { ], "order_by": [ 537, - "[e_event_status_order_by!]" + "[e_event_media_access_order_by!]" ], "where": [ 528 ] } ], - "e_event_status_aggregate": [ + "e_event_media_access_aggregate": [ 526, { "distinct_on": [ 539, - "[e_event_status_select_column!]" + "[e_event_media_access_select_column!]" ], "limit": [ 38 @@ -152809,14 +155020,14 @@ export default { ], "order_by": [ 537, - "[e_event_status_order_by!]" + "[e_event_media_access_order_by!]" ], "where": [ 528 ] } ], - "e_event_status_by_pk": [ + "e_event_media_access_by_pk": [ 525, { "value": [ @@ -152825,7 +155036,7 @@ export default { ] } ], - "e_event_status_stream": [ + "e_event_media_access_stream": [ 525, { "batch_size": [ @@ -152834,18 +155045,87 @@ export default { ], "cursor": [ 541, - "[e_event_status_stream_cursor_input]!" + "[e_event_media_access_stream_cursor_input]!" ], "where": [ 528 ] } ], - "e_friend_status": [ + "e_event_visibility": [ 545, { "distinct_on": [ - 560, + 559, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 557, + "[e_event_visibility_order_by!]" + ], + "where": [ + 548 + ] + } + ], + "e_event_visibility_aggregate": [ + 546, + { + "distinct_on": [ + 559, + "[e_event_visibility_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 557, + "[e_event_visibility_order_by!]" + ], + "where": [ + 548 + ] + } + ], + "e_event_visibility_by_pk": [ + 545, + { + "value": [ + 78, + "String!" + ] + } + ], + "e_event_visibility_stream": [ + 545, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 561, + "[e_event_visibility_stream_cursor_input]!" + ], + "where": [ + 548 + ] + } + ], + "e_friend_status": [ + 565, + { + "distinct_on": [ + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -152855,19 +155135,19 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_friend_status_order_by!]" ], "where": [ - 548 + 568 ] } ], "e_friend_status_aggregate": [ - 546, + 566, { "distinct_on": [ - 560, + 580, "[e_friend_status_select_column!]" ], "limit": [ @@ -152877,16 +155157,16 @@ export default { 38 ], "order_by": [ - 558, + 578, "[e_friend_status_order_by!]" ], "where": [ - 548 + 568 ] } ], "e_friend_status_by_pk": [ - 545, + 565, { "value": [ 78, @@ -152895,26 +155175,26 @@ export default { } ], "e_friend_status_stream": [ - 545, + 565, { "batch_size": [ 38, "Int!" ], "cursor": [ - 562, + 582, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 548 + 568 ] } ], "e_game_cfg_types": [ - 566, + 586, { "distinct_on": [ - 580, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -152924,19 +155204,19 @@ export default { 38 ], "order_by": [ - 578, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_cfg_types_aggregate": [ - 567, + 587, { "distinct_on": [ - 580, + 600, "[e_game_cfg_types_select_column!]" ], "limit": [ @@ -152946,16 +155226,16 @@ export default { 38 ], "order_by": [ - 578, + 598, "[e_game_cfg_types_order_by!]" ], "where": [ - 569 + 589 ] } ], "e_game_cfg_types_by_pk": [ - 566, + 586, { "value": [ 78, @@ -152964,26 +155244,26 @@ export default { } ], "e_game_cfg_types_stream": [ - 566, + 586, { "batch_size": [ 38, "Int!" ], "cursor": [ - 582, + 602, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 569 + 589 ] } ], "e_game_server_node_statuses": [ - 586, + 606, { "distinct_on": [ - 601, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -152993,19 +155273,19 @@ export default { 38 ], "order_by": [ - 599, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 589 + 609 ] } ], "e_game_server_node_statuses_aggregate": [ - 587, + 607, { "distinct_on": [ - 601, + 621, "[e_game_server_node_statuses_select_column!]" ], "limit": [ @@ -153015,16 +155295,16 @@ export default { 38 ], "order_by": [ - 599, + 619, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 589 + 609 ] } ], "e_game_server_node_statuses_by_pk": [ - 586, + 606, { "value": [ 78, @@ -153033,26 +155313,26 @@ export default { } ], "e_game_server_node_statuses_stream": [ - 586, + 606, { "batch_size": [ 38, "Int!" ], "cursor": [ - 603, + 623, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 589 + 609 ] } ], "e_league_movement_types": [ - 607, + 627, { "distinct_on": [ - 622, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -153062,19 +155342,19 @@ export default { 38 ], "order_by": [ - 620, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 610 + 630 ] } ], "e_league_movement_types_aggregate": [ - 608, + 628, { "distinct_on": [ - 622, + 642, "[e_league_movement_types_select_column!]" ], "limit": [ @@ -153084,16 +155364,16 @@ export default { 38 ], "order_by": [ - 620, + 640, "[e_league_movement_types_order_by!]" ], "where": [ - 610 + 630 ] } ], "e_league_movement_types_by_pk": [ - 607, + 627, { "value": [ 78, @@ -153102,26 +155382,26 @@ export default { } ], "e_league_movement_types_stream": [ - 607, + 627, { "batch_size": [ 38, "Int!" ], "cursor": [ - 624, + 644, "[e_league_movement_types_stream_cursor_input]!" ], "where": [ - 610 + 630 ] } ], "e_league_proposal_statuses": [ - 628, + 648, { "distinct_on": [ - 643, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -153131,19 +155411,19 @@ export default { 38 ], "order_by": [ - 641, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 631 + 651 ] } ], "e_league_proposal_statuses_aggregate": [ - 629, + 649, { "distinct_on": [ - 643, + 663, "[e_league_proposal_statuses_select_column!]" ], "limit": [ @@ -153153,16 +155433,16 @@ export default { 38 ], "order_by": [ - 641, + 661, "[e_league_proposal_statuses_order_by!]" ], "where": [ - 631 + 651 ] } ], "e_league_proposal_statuses_by_pk": [ - 628, + 648, { "value": [ 78, @@ -153171,26 +155451,26 @@ export default { } ], "e_league_proposal_statuses_stream": [ - 628, + 648, { "batch_size": [ 38, "Int!" ], "cursor": [ - 645, + 665, "[e_league_proposal_statuses_stream_cursor_input]!" ], "where": [ - 631 + 651 ] } ], "e_league_registration_statuses": [ - 649, + 669, { "distinct_on": [ - 664, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -153200,19 +155480,19 @@ export default { 38 ], "order_by": [ - 662, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 652 + 672 ] } ], "e_league_registration_statuses_aggregate": [ - 650, + 670, { "distinct_on": [ - 664, + 684, "[e_league_registration_statuses_select_column!]" ], "limit": [ @@ -153222,16 +155502,16 @@ export default { 38 ], "order_by": [ - 662, + 682, "[e_league_registration_statuses_order_by!]" ], "where": [ - 652 + 672 ] } ], "e_league_registration_statuses_by_pk": [ - 649, + 669, { "value": [ 78, @@ -153240,26 +155520,26 @@ export default { } ], "e_league_registration_statuses_stream": [ - 649, + 669, { "batch_size": [ 38, "Int!" ], "cursor": [ - 666, + 686, "[e_league_registration_statuses_stream_cursor_input]!" ], "where": [ - 652 + 672 ] } ], "e_league_season_statuses": [ - 670, + 690, { "distinct_on": [ - 685, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -153269,19 +155549,19 @@ export default { 38 ], "order_by": [ - 683, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 673 + 693 ] } ], "e_league_season_statuses_aggregate": [ - 671, + 691, { "distinct_on": [ - 685, + 705, "[e_league_season_statuses_select_column!]" ], "limit": [ @@ -153291,16 +155571,16 @@ export default { 38 ], "order_by": [ - 683, + 703, "[e_league_season_statuses_order_by!]" ], "where": [ - 673 + 693 ] } ], "e_league_season_statuses_by_pk": [ - 670, + 690, { "value": [ 78, @@ -153309,26 +155589,26 @@ export default { } ], "e_league_season_statuses_stream": [ - 670, + 690, { "batch_size": [ 38, "Int!" ], "cursor": [ - 687, + 707, "[e_league_season_statuses_stream_cursor_input]!" ], "where": [ - 673 + 693 ] } ], "e_lobby_access": [ - 691, + 711, { "distinct_on": [ - 706, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -153338,19 +155618,19 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 694 + 714 ] } ], "e_lobby_access_aggregate": [ - 692, + 712, { "distinct_on": [ - 706, + 726, "[e_lobby_access_select_column!]" ], "limit": [ @@ -153360,16 +155640,16 @@ export default { 38 ], "order_by": [ - 704, + 724, "[e_lobby_access_order_by!]" ], "where": [ - 694 + 714 ] } ], "e_lobby_access_by_pk": [ - 691, + 711, { "value": [ 78, @@ -153378,26 +155658,26 @@ export default { } ], "e_lobby_access_stream": [ - 691, + 711, { "batch_size": [ 38, "Int!" ], "cursor": [ - 708, + 728, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 694 + 714 ] } ], "e_lobby_player_status": [ - 712, + 732, { "distinct_on": [ - 726, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -153407,19 +155687,19 @@ export default { 38 ], "order_by": [ - 724, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_lobby_player_status_aggregate": [ - 713, + 733, { "distinct_on": [ - 726, + 746, "[e_lobby_player_status_select_column!]" ], "limit": [ @@ -153429,16 +155709,16 @@ export default { 38 ], "order_by": [ - 724, + 744, "[e_lobby_player_status_order_by!]" ], "where": [ - 715 + 735 ] } ], "e_lobby_player_status_by_pk": [ - 712, + 732, { "value": [ 78, @@ -153447,26 +155727,26 @@ export default { } ], "e_lobby_player_status_stream": [ - 712, + 732, { "batch_size": [ 38, "Int!" ], "cursor": [ - 728, + 748, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 715 + 735 ] } ], "e_map_pool_types": [ - 732, + 752, { "distinct_on": [ - 747, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -153476,19 +155756,19 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 735 + 755 ] } ], "e_map_pool_types_aggregate": [ - 733, + 753, { "distinct_on": [ - 747, + 767, "[e_map_pool_types_select_column!]" ], "limit": [ @@ -153498,16 +155778,16 @@ export default { 38 ], "order_by": [ - 745, + 765, "[e_map_pool_types_order_by!]" ], "where": [ - 735 + 755 ] } ], "e_map_pool_types_by_pk": [ - 732, + 752, { "value": [ 78, @@ -153516,26 +155796,26 @@ export default { } ], "e_map_pool_types_stream": [ - 732, + 752, { "batch_size": [ 38, "Int!" ], "cursor": [ - 749, + 769, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 735 + 755 ] } ], "e_match_clip_visibility": [ - 753, + 773, { "distinct_on": [ - 767, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -153545,19 +155825,19 @@ export default { 38 ], "order_by": [ - 765, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_clip_visibility_aggregate": [ - 754, + 774, { "distinct_on": [ - 767, + 787, "[e_match_clip_visibility_select_column!]" ], "limit": [ @@ -153567,16 +155847,16 @@ export default { 38 ], "order_by": [ - 765, + 785, "[e_match_clip_visibility_order_by!]" ], "where": [ - 756 + 776 ] } ], "e_match_clip_visibility_by_pk": [ - 753, + 773, { "value": [ 78, @@ -153585,26 +155865,26 @@ export default { } ], "e_match_clip_visibility_stream": [ - 753, + 773, { "batch_size": [ 38, "Int!" ], "cursor": [ - 769, + 789, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 756 + 776 ] } ], "e_match_map_status": [ - 773, + 793, { "distinct_on": [ - 788, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -153614,19 +155894,19 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 776 + 796 ] } ], "e_match_map_status_aggregate": [ - 774, + 794, { "distinct_on": [ - 788, + 808, "[e_match_map_status_select_column!]" ], "limit": [ @@ -153636,16 +155916,16 @@ export default { 38 ], "order_by": [ - 786, + 806, "[e_match_map_status_order_by!]" ], "where": [ - 776 + 796 ] } ], "e_match_map_status_by_pk": [ - 773, + 793, { "value": [ 78, @@ -153654,26 +155934,26 @@ export default { } ], "e_match_map_status_stream": [ - 773, + 793, { "batch_size": [ 38, "Int!" ], "cursor": [ - 790, + 810, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 776 + 796 ] } ], "e_match_mode": [ - 794, + 814, { "distinct_on": [ - 808, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -153683,19 +155963,19 @@ export default { 38 ], "order_by": [ - 806, + 826, "[e_match_mode_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_mode_aggregate": [ - 795, + 815, { "distinct_on": [ - 808, + 828, "[e_match_mode_select_column!]" ], "limit": [ @@ -153705,16 +155985,16 @@ export default { 38 ], "order_by": [ - 806, + 826, "[e_match_mode_order_by!]" ], "where": [ - 797 + 817 ] } ], "e_match_mode_by_pk": [ - 794, + 814, { "value": [ 78, @@ -153723,26 +156003,26 @@ export default { } ], "e_match_mode_stream": [ - 794, + 814, { "batch_size": [ 38, "Int!" ], "cursor": [ - 810, + 830, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 797 + 817 ] } ], "e_match_status": [ - 814, + 834, { "distinct_on": [ - 829, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -153752,19 +156032,19 @@ export default { 38 ], "order_by": [ - 827, + 847, "[e_match_status_order_by!]" ], "where": [ - 817 + 837 ] } ], "e_match_status_aggregate": [ - 815, + 835, { "distinct_on": [ - 829, + 849, "[e_match_status_select_column!]" ], "limit": [ @@ -153774,16 +156054,16 @@ export default { 38 ], "order_by": [ - 827, + 847, "[e_match_status_order_by!]" ], "where": [ - 817 + 837 ] } ], "e_match_status_by_pk": [ - 814, + 834, { "value": [ 78, @@ -153792,26 +156072,26 @@ export default { } ], "e_match_status_stream": [ - 814, + 834, { "batch_size": [ 38, "Int!" ], "cursor": [ - 831, + 851, "[e_match_status_stream_cursor_input]!" ], "where": [ - 817 + 837 ] } ], "e_match_types": [ - 835, + 855, { "distinct_on": [ - 850, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -153821,19 +156101,19 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_match_types_order_by!]" ], "where": [ - 838 + 858 ] } ], "e_match_types_aggregate": [ - 836, + 856, { "distinct_on": [ - 850, + 870, "[e_match_types_select_column!]" ], "limit": [ @@ -153843,16 +156123,16 @@ export default { 38 ], "order_by": [ - 848, + 868, "[e_match_types_order_by!]" ], "where": [ - 838 + 858 ] } ], "e_match_types_by_pk": [ - 835, + 855, { "value": [ 78, @@ -153861,26 +156141,26 @@ export default { } ], "e_match_types_stream": [ - 835, + 855, { "batch_size": [ 38, "Int!" ], "cursor": [ - 852, + 872, "[e_match_types_stream_cursor_input]!" ], "where": [ - 838 + 858 ] } ], "e_notification_types": [ - 856, + 876, { "distinct_on": [ - 870, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -153890,19 +156170,19 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_notification_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_notification_types_aggregate": [ - 857, + 877, { "distinct_on": [ - 870, + 890, "[e_notification_types_select_column!]" ], "limit": [ @@ -153912,16 +156192,16 @@ export default { 38 ], "order_by": [ - 868, + 888, "[e_notification_types_order_by!]" ], "where": [ - 859 + 879 ] } ], "e_notification_types_by_pk": [ - 856, + 876, { "value": [ 78, @@ -153930,26 +156210,26 @@ export default { } ], "e_notification_types_stream": [ - 856, + 876, { "batch_size": [ 38, "Int!" ], "cursor": [ - 872, + 892, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 859 + 879 ] } ], "e_objective_types": [ - 876, + 896, { "distinct_on": [ - 890, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -153959,19 +156239,19 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_objective_types_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_objective_types_aggregate": [ - 877, + 897, { "distinct_on": [ - 890, + 910, "[e_objective_types_select_column!]" ], "limit": [ @@ -153981,16 +156261,16 @@ export default { 38 ], "order_by": [ - 888, + 908, "[e_objective_types_order_by!]" ], "where": [ - 879 + 899 ] } ], "e_objective_types_by_pk": [ - 876, + 896, { "value": [ 78, @@ -153999,26 +156279,26 @@ export default { } ], "e_objective_types_stream": [ - 876, + 896, { "batch_size": [ 38, "Int!" ], "cursor": [ - 892, + 912, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 879 + 899 ] } ], "e_player_roles": [ - 896, + 916, { "distinct_on": [ - 910, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -154028,19 +156308,19 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_player_roles_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_player_roles_aggregate": [ - 897, + 917, { "distinct_on": [ - 910, + 930, "[e_player_roles_select_column!]" ], "limit": [ @@ -154050,16 +156330,16 @@ export default { 38 ], "order_by": [ - 908, + 928, "[e_player_roles_order_by!]" ], "where": [ - 899 + 919 ] } ], "e_player_roles_by_pk": [ - 896, + 916, { "value": [ 78, @@ -154068,26 +156348,26 @@ export default { } ], "e_player_roles_stream": [ - 896, + 916, { "batch_size": [ 38, "Int!" ], "cursor": [ - 912, + 932, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 899 + 919 ] } ], "e_plugin_runtimes": [ - 916, + 936, { "distinct_on": [ - 930, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -154097,19 +156377,19 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_plugin_runtimes_aggregate": [ - 917, + 937, { "distinct_on": [ - 930, + 950, "[e_plugin_runtimes_select_column!]" ], "limit": [ @@ -154119,16 +156399,16 @@ export default { 38 ], "order_by": [ - 928, + 948, "[e_plugin_runtimes_order_by!]" ], "where": [ - 919 + 939 ] } ], "e_plugin_runtimes_by_pk": [ - 916, + 936, { "value": [ 78, @@ -154137,26 +156417,26 @@ export default { } ], "e_plugin_runtimes_stream": [ - 916, + 936, { "batch_size": [ 38, "Int!" ], "cursor": [ - 932, + 952, "[e_plugin_runtimes_stream_cursor_input]!" ], "where": [ - 919 + 939 ] } ], "e_ready_settings": [ - 936, + 956, { "distinct_on": [ - 950, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -154166,19 +156446,19 @@ export default { 38 ], "order_by": [ - 948, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_ready_settings_aggregate": [ - 937, + 957, { "distinct_on": [ - 950, + 970, "[e_ready_settings_select_column!]" ], "limit": [ @@ -154188,16 +156468,16 @@ export default { 38 ], "order_by": [ - 948, + 968, "[e_ready_settings_order_by!]" ], "where": [ - 939 + 959 ] } ], "e_ready_settings_by_pk": [ - 936, + 956, { "value": [ 78, @@ -154206,26 +156486,26 @@ export default { } ], "e_ready_settings_stream": [ - 936, + 956, { "batch_size": [ 38, "Int!" ], "cursor": [ - 952, + 972, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 939 + 959 ] } ], "e_sanction_types": [ - 956, + 976, { "distinct_on": [ - 971, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -154235,19 +156515,19 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 959 + 979 ] } ], "e_sanction_types_aggregate": [ - 957, + 977, { "distinct_on": [ - 971, + 991, "[e_sanction_types_select_column!]" ], "limit": [ @@ -154257,16 +156537,16 @@ export default { 38 ], "order_by": [ - 969, + 989, "[e_sanction_types_order_by!]" ], "where": [ - 959 + 979 ] } ], "e_sanction_types_by_pk": [ - 956, + 976, { "value": [ 78, @@ -154275,26 +156555,26 @@ export default { } ], "e_sanction_types_stream": [ - 956, + 976, { "batch_size": [ 38, "Int!" ], "cursor": [ - 973, + 993, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 959 + 979 ] } ], "e_scrim_request_statuses": [ - 977, + 997, { "distinct_on": [ - 991, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -154304,19 +156584,19 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_scrim_request_statuses_aggregate": [ - 978, + 998, { "distinct_on": [ - 991, + 1011, "[e_scrim_request_statuses_select_column!]" ], "limit": [ @@ -154326,16 +156606,16 @@ export default { 38 ], "order_by": [ - 989, + 1009, "[e_scrim_request_statuses_order_by!]" ], "where": [ - 980 + 1000 ] } ], "e_scrim_request_statuses_by_pk": [ - 977, + 997, { "value": [ 78, @@ -154344,26 +156624,26 @@ export default { } ], "e_scrim_request_statuses_stream": [ - 977, + 997, { "batch_size": [ 38, "Int!" ], "cursor": [ - 993, + 1013, "[e_scrim_request_statuses_stream_cursor_input]!" ], "where": [ - 980 + 1000 ] } ], "e_server_types": [ - 997, + 1017, { "distinct_on": [ - 1011, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -154373,19 +156653,19 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_server_types_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_server_types_aggregate": [ - 998, + 1018, { "distinct_on": [ - 1011, + 1031, "[e_server_types_select_column!]" ], "limit": [ @@ -154395,16 +156675,16 @@ export default { 38 ], "order_by": [ - 1009, + 1029, "[e_server_types_order_by!]" ], "where": [ - 1000 + 1020 ] } ], "e_server_types_by_pk": [ - 997, + 1017, { "value": [ 78, @@ -154413,26 +156693,26 @@ export default { } ], "e_server_types_stream": [ - 997, + 1017, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1013, + 1033, "[e_server_types_stream_cursor_input]!" ], "where": [ - 1000 + 1020 ] } ], "e_sides": [ - 1017, + 1037, { "distinct_on": [ - 1031, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -154442,19 +156722,19 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_sides_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_sides_aggregate": [ - 1018, + 1038, { "distinct_on": [ - 1031, + 1051, "[e_sides_select_column!]" ], "limit": [ @@ -154464,16 +156744,16 @@ export default { 38 ], "order_by": [ - 1029, + 1049, "[e_sides_order_by!]" ], "where": [ - 1020 + 1040 ] } ], "e_sides_by_pk": [ - 1017, + 1037, { "value": [ 78, @@ -154482,26 +156762,26 @@ export default { } ], "e_sides_stream": [ - 1017, + 1037, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1033, + 1053, "[e_sides_stream_cursor_input]!" ], "where": [ - 1020 + 1040 ] } ], "e_system_alert_types": [ - 1037, + 1057, { "distinct_on": [ - 1051, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -154511,19 +156791,19 @@ export default { 38 ], "order_by": [ - 1049, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_system_alert_types_aggregate": [ - 1038, + 1058, { "distinct_on": [ - 1051, + 1071, "[e_system_alert_types_select_column!]" ], "limit": [ @@ -154533,16 +156813,16 @@ export default { 38 ], "order_by": [ - 1049, + 1069, "[e_system_alert_types_order_by!]" ], "where": [ - 1040 + 1060 ] } ], "e_system_alert_types_by_pk": [ - 1037, + 1057, { "value": [ 78, @@ -154551,26 +156831,26 @@ export default { } ], "e_system_alert_types_stream": [ - 1037, + 1057, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1053, + 1073, "[e_system_alert_types_stream_cursor_input]!" ], "where": [ - 1040 + 1060 ] } ], "e_team_roles": [ - 1057, + 1077, { "distinct_on": [ - 1072, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -154580,19 +156860,19 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1060 + 1080 ] } ], "e_team_roles_aggregate": [ - 1058, + 1078, { "distinct_on": [ - 1072, + 1092, "[e_team_roles_select_column!]" ], "limit": [ @@ -154602,16 +156882,16 @@ export default { 38 ], "order_by": [ - 1070, + 1090, "[e_team_roles_order_by!]" ], "where": [ - 1060 + 1080 ] } ], "e_team_roles_by_pk": [ - 1057, + 1077, { "value": [ 78, @@ -154620,26 +156900,26 @@ export default { } ], "e_team_roles_stream": [ - 1057, + 1077, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1074, + 1094, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 1060 + 1080 ] } ], "e_team_roster_statuses": [ - 1078, + 1098, { "distinct_on": [ - 1092, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -154649,19 +156929,19 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_team_roster_statuses_aggregate": [ - 1079, + 1099, { "distinct_on": [ - 1092, + 1112, "[e_team_roster_statuses_select_column!]" ], "limit": [ @@ -154671,16 +156951,16 @@ export default { 38 ], "order_by": [ - 1090, + 1110, "[e_team_roster_statuses_order_by!]" ], "where": [ - 1081 + 1101 ] } ], "e_team_roster_statuses_by_pk": [ - 1078, + 1098, { "value": [ 78, @@ -154689,26 +156969,26 @@ export default { } ], "e_team_roster_statuses_stream": [ - 1078, + 1098, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1094, + 1114, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 1081 + 1101 ] } ], "e_timeout_settings": [ - 1098, + 1118, { "distinct_on": [ - 1112, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -154718,19 +156998,19 @@ export default { 38 ], "order_by": [ - 1110, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_timeout_settings_aggregate": [ - 1099, + 1119, { "distinct_on": [ - 1112, + 1132, "[e_timeout_settings_select_column!]" ], "limit": [ @@ -154740,16 +157020,16 @@ export default { 38 ], "order_by": [ - 1110, + 1130, "[e_timeout_settings_order_by!]" ], "where": [ - 1101 + 1121 ] } ], "e_timeout_settings_by_pk": [ - 1098, + 1118, { "value": [ 78, @@ -154758,26 +157038,26 @@ export default { } ], "e_timeout_settings_stream": [ - 1098, + 1118, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1114, + 1134, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 1101 + 1121 ] } ], "e_tournament_stage_types": [ - 1118, + 1138, { "distinct_on": [ - 1133, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -154787,19 +157067,19 @@ export default { 38 ], "order_by": [ - 1131, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1121 + 1141 ] } ], "e_tournament_stage_types_aggregate": [ - 1119, + 1139, { "distinct_on": [ - 1133, + 1153, "[e_tournament_stage_types_select_column!]" ], "limit": [ @@ -154809,16 +157089,16 @@ export default { 38 ], "order_by": [ - 1131, + 1151, "[e_tournament_stage_types_order_by!]" ], "where": [ - 1121 + 1141 ] } ], "e_tournament_stage_types_by_pk": [ - 1118, + 1138, { "value": [ 78, @@ -154827,26 +157107,26 @@ export default { } ], "e_tournament_stage_types_stream": [ - 1118, + 1138, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1135, + 1155, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 1121 + 1141 ] } ], "e_tournament_status": [ - 1139, + 1159, { "distinct_on": [ - 1154, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -154856,19 +157136,19 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1142 + 1162 ] } ], "e_tournament_status_aggregate": [ - 1140, + 1160, { "distinct_on": [ - 1154, + 1174, "[e_tournament_status_select_column!]" ], "limit": [ @@ -154878,16 +157158,16 @@ export default { 38 ], "order_by": [ - 1152, + 1172, "[e_tournament_status_order_by!]" ], "where": [ - 1142 + 1162 ] } ], "e_tournament_status_by_pk": [ - 1139, + 1159, { "value": [ 78, @@ -154896,26 +157176,26 @@ export default { } ], "e_tournament_status_stream": [ - 1139, + 1159, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1156, + 1176, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 1142 + 1162 ] } ], "e_utility_types": [ - 1160, + 1180, { "distinct_on": [ - 1174, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -154925,19 +157205,19 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_utility_types_aggregate": [ - 1161, + 1181, { "distinct_on": [ - 1174, + 1194, "[e_utility_types_select_column!]" ], "limit": [ @@ -154947,16 +157227,16 @@ export default { 38 ], "order_by": [ - 1172, + 1192, "[e_utility_types_order_by!]" ], "where": [ - 1163 + 1183 ] } ], "e_utility_types_by_pk": [ - 1160, + 1180, { "value": [ 78, @@ -154965,26 +157245,26 @@ export default { } ], "e_utility_types_stream": [ - 1160, + 1180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1176, + 1196, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 1163 + 1183 ] } ], "e_veto_pick_types": [ - 1180, + 1200, { "distinct_on": [ - 1194, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -154994,19 +157274,19 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_veto_pick_types_aggregate": [ - 1181, + 1201, { "distinct_on": [ - 1194, + 1214, "[e_veto_pick_types_select_column!]" ], "limit": [ @@ -155016,16 +157296,16 @@ export default { 38 ], "order_by": [ - 1192, + 1212, "[e_veto_pick_types_order_by!]" ], "where": [ - 1183 + 1203 ] } ], "e_veto_pick_types_by_pk": [ - 1180, + 1200, { "value": [ 78, @@ -155034,26 +157314,26 @@ export default { } ], "e_veto_pick_types_stream": [ - 1180, + 1200, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1196, + 1216, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 1183 + 1203 ] } ], "e_winning_reasons": [ - 1200, + 1220, { "distinct_on": [ - 1214, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -155063,19 +157343,19 @@ export default { 38 ], "order_by": [ - 1212, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1203 + 1223 ] } ], "e_winning_reasons_aggregate": [ - 1201, + 1221, { "distinct_on": [ - 1214, + 1234, "[e_winning_reasons_select_column!]" ], "limit": [ @@ -155085,16 +157365,16 @@ export default { 38 ], "order_by": [ - 1212, + 1232, "[e_winning_reasons_order_by!]" ], "where": [ - 1203 + 1223 ] } ], "e_winning_reasons_by_pk": [ - 1200, + 1220, { "value": [ 78, @@ -155103,26 +157383,168 @@ export default { } ], "e_winning_reasons_stream": [ - 1200, + 1220, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1216, + 1236, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 1203 + 1223 + ] + } + ], + "event_media": [ + 1240, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], + "event_media_aggregate": [ + 1241, + { + "distinct_on": [ + 1303, + "[event_media_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1260, + "[event_media_order_by!]" + ], + "where": [ + 1249 + ] + } + ], + "event_media_by_pk": [ + 1240, + { + "id": [ + 4744, + "uuid!" + ] + } + ], + "event_media_players": [ + 1262, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "event_media_players_aggregate": [ + 1263, + { + "distinct_on": [ + 1283, + "[event_media_players_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1281, + "[event_media_players_order_by!]" + ], + "where": [ + 1271 + ] + } + ], + "event_media_players_by_pk": [ + 1262, + { + "media_id": [ + 4744, + "uuid!" + ], + "steam_id": [ + 180, + "bigint!" + ] + } + ], + "event_media_players_stream": [ + 1262, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1291, + "[event_media_players_stream_cursor_input]!" + ], + "where": [ + 1271 + ] + } + ], + "event_media_stream": [ + 1240, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1311, + "[event_media_stream_cursor_input]!" + ], + "where": [ + 1249 ] } ], "event_organizers": [ - 1220, + 1323, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -155132,19 +157554,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "event_organizers_aggregate": [ - 1221, + 1324, { "distinct_on": [ - 1241, + 1344, "[event_organizers_select_column!]" ], "limit": [ @@ -155154,19 +157576,19 @@ export default { 38 ], "order_by": [ - 1239, + 1342, "[event_organizers_order_by!]" ], "where": [ - 1229 + 1332 ] } ], "event_organizers_by_pk": [ - 1220, + 1323, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -155176,26 +157598,26 @@ export default { } ], "event_organizers_stream": [ - 1220, + 1323, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1249, + 1352, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1229 + 1332 ] } ], "event_players": [ - 1261, + 1364, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -155205,19 +157627,19 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "event_players_aggregate": [ - 1262, + 1365, { "distinct_on": [ - 1282, + 1385, "[event_players_select_column!]" ], "limit": [ @@ -155227,19 +157649,19 @@ export default { 38 ], "order_by": [ - 1280, + 1383, "[event_players_order_by!]" ], "where": [ - 1270 + 1373 ] } ], "event_players_by_pk": [ - 1261, + 1364, { "event_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -155249,26 +157671,26 @@ export default { } ], "event_players_stream": [ - 1261, + 1364, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1290, + 1393, "[event_players_stream_cursor_input]!" ], "where": [ - 1270 + 1373 ] } ], "event_teams": [ - 1302, + 1405, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -155278,19 +157700,19 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "event_teams_aggregate": [ - 1303, + 1406, { "distinct_on": [ - 1320, + 1423, "[event_teams_select_column!]" ], "limit": [ @@ -155300,48 +157722,48 @@ export default { 38 ], "order_by": [ - 1318, + 1421, "[event_teams_order_by!]" ], "where": [ - 1309 + 1412 ] } ], "event_teams_by_pk": [ - 1302, + 1405, { "event_id": [ - 4641, + 4744, "uuid!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "event_teams_stream": [ - 1302, + 1405, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1322, + 1425, "[event_teams_stream_cursor_input]!" ], "where": [ - 1309 + 1412 ] } ], "event_tournaments": [ - 1326, + 1429, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -155351,19 +157773,19 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], "event_tournaments_aggregate": [ - 1327, + 1430, { "distinct_on": [ - 1344, + 1447, "[event_tournaments_select_column!]" ], "limit": [ @@ -155373,48 +157795,48 @@ export default { 38 ], "order_by": [ - 1342, + 1445, "[event_tournaments_order_by!]" ], "where": [ - 1333 + 1436 ] } ], "event_tournaments_by_pk": [ - 1326, + 1429, { "event_id": [ - 4641, + 4744, "uuid!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "event_tournaments_stream": [ - 1326, + 1429, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1346, + 1449, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1333 + 1436 ] } ], "events": [ - 1350, + 1453, { "distinct_on": [ - 1365, + 1468, "[events_select_column!]" ], "limit": [ @@ -155424,19 +157846,19 @@ export default { 38 ], "order_by": [ - 1363, + 1466, "[events_order_by!]" ], "where": [ - 1354 + 1457 ] } ], "events_aggregate": [ - 1351, + 1454, { "distinct_on": [ - 1365, + 1468, "[events_select_column!]" ], "limit": [ @@ -155446,44 +157868,44 @@ export default { 38 ], "order_by": [ - 1363, + 1466, "[events_order_by!]" ], "where": [ - 1354 + 1457 ] } ], "events_by_pk": [ - 1350, + 1453, { "id": [ - 4641, + 4744, "uuid!" ] } ], "events_stream": [ - 1350, + 1453, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1370, + 1473, "[events_stream_cursor_input]!" ], "where": [ - 1354 + 1457 ] } ], "friends": [ - 1380, + 1483, { "distinct_on": [ - 1394, + 1497, "[friends_select_column!]" ], "limit": [ @@ -155493,19 +157915,19 @@ export default { 38 ], "order_by": [ - 1392, + 1495, "[friends_order_by!]" ], "where": [ - 1384 + 1487 ] } ], "friends_aggregate": [ - 1381, + 1484, { "distinct_on": [ - 1394, + 1497, "[friends_select_column!]" ], "limit": [ @@ -155515,16 +157937,16 @@ export default { 38 ], "order_by": [ - 1392, + 1495, "[friends_order_by!]" ], "where": [ - 1384 + 1487 ] } ], "friends_by_pk": [ - 1380, + 1483, { "other_player_steam_id": [ 180, @@ -155537,26 +157959,26 @@ export default { } ], "friends_stream": [ - 1380, + 1483, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1399, + 1502, "[friends_stream_cursor_input]!" ], "where": [ - 1384 + 1487 ] } ], "game_server_nodes": [ - 1407, + 1510, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -155566,19 +157988,19 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], "game_server_nodes_aggregate": [ - 1408, + 1511, { "distinct_on": [ - 1436, + 1539, "[game_server_nodes_select_column!]" ], "limit": [ @@ -155588,16 +158010,16 @@ export default { 38 ], "order_by": [ - 1433, + 1536, "[game_server_nodes_order_by!]" ], "where": [ - 1419 + 1522 ] } ], "game_server_nodes_by_pk": [ - 1407, + 1510, { "id": [ 78, @@ -155606,26 +158028,26 @@ export default { } ], "game_server_nodes_stream": [ - 1407, + 1510, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1446, + 1549, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1419 + 1522 ] } ], "game_versions": [ - 1458, + 1561, { "distinct_on": [ - 1478, + 1581, "[game_versions_select_column!]" ], "limit": [ @@ -155635,19 +158057,19 @@ export default { 38 ], "order_by": [ - 1475, + 1578, "[game_versions_order_by!]" ], "where": [ - 1463 + 1566 ] } ], "game_versions_aggregate": [ - 1459, + 1562, { "distinct_on": [ - 1478, + 1581, "[game_versions_select_column!]" ], "limit": [ @@ -155657,16 +158079,16 @@ export default { 38 ], "order_by": [ - 1475, + 1578, "[game_versions_order_by!]" ], "where": [ - 1463 + 1566 ] } ], "game_versions_by_pk": [ - 1458, + 1561, { "build_id": [ 38, @@ -155675,26 +158097,26 @@ export default { } ], "game_versions_stream": [ - 1458, + 1561, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1483, + 1586, "[game_versions_stream_cursor_input]!" ], "where": [ - 1463 + 1566 ] } ], "gamedata_signature_validations": [ - 1491, + 1594, { "distinct_on": [ - 1510, + 1613, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -155704,19 +158126,19 @@ export default { 38 ], "order_by": [ - 1507, + 1610, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1496 + 1599 ] } ], "gamedata_signature_validations_aggregate": [ - 1492, + 1595, { "distinct_on": [ - 1510, + 1613, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -155726,48 +158148,48 @@ export default { 38 ], "order_by": [ - 1507, + 1610, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1496 + 1599 ] } ], "gamedata_signature_validations_by_pk": [ - 1491, + 1594, { "id": [ - 4641, + 4744, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1491, + 1594, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1515, + 1618, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1496 + 1599 ] } ], "get_event_leaderboard": [ - 1534, + 1637, { "args": [ - 1523, + 1626, "get_event_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155777,23 +158199,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_event_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1523, + 1626, "get_event_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155803,23 +158225,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_leaderboard": [ - 1534, + 1637, { "args": [ - 1524, + 1627, "get_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155829,23 +158251,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1524, + 1627, "get_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155855,23 +158277,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_league_season_leaderboard": [ - 1534, + 1637, { "args": [ - 1525, + 1628, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155881,23 +158303,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_league_season_leaderboard_aggregate": [ - 1535, + 1638, { "args": [ - 1525, + 1628, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155907,23 +158329,23 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "get_player_leaderboard_rank": [ - 3101, + 3204, { "args": [ - 1526, + 1629, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -155933,23 +158355,23 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3102, + 3205, { "args": [ - 1526, + 1629, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -155959,19 +158381,19 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "leaderboard_entries": [ - 1534, + 1637, { "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -155981,19 +158403,19 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "leaderboard_entries_aggregate": [ - 1535, + 1638, { "distinct_on": [ - 1545, + 1648, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -156003,35 +158425,35 @@ export default { 38 ], "order_by": [ - 1544, + 1647, "[leaderboard_entries_order_by!]" ], "where": [ - 1538 + 1641 ] } ], "leaderboard_entries_stream": [ - 1534, + 1637, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1550, + 1653, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1538 + 1641 ] } ], "league_divisions": [ - 1558, + 1661, { "distinct_on": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "limit": [ @@ -156041,19 +158463,19 @@ export default { 38 ], "order_by": [ - 1571, + 1674, "[league_divisions_order_by!]" ], "where": [ - 1562 + 1665 ] } ], "league_divisions_aggregate": [ - 1559, + 1662, { "distinct_on": [ - 1573, + 1676, "[league_divisions_select_column!]" ], "limit": [ @@ -156063,44 +158485,44 @@ export default { 38 ], "order_by": [ - 1571, + 1674, "[league_divisions_order_by!]" ], "where": [ - 1562 + 1665 ] } ], "league_divisions_by_pk": [ - 1558, + 1661, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_divisions_stream": [ - 1558, + 1661, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1578, + 1681, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1562 + 1665 ] } ], "league_match_weeks": [ - 1586, + 1689, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -156110,19 +158532,19 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], "league_match_weeks_aggregate": [ - 1587, + 1690, { "distinct_on": [ - 1607, + 1710, "[league_match_weeks_select_column!]" ], "limit": [ @@ -156132,44 +158554,44 @@ export default { 38 ], "order_by": [ - 1605, + 1708, "[league_match_weeks_order_by!]" ], "where": [ - 1595 + 1698 ] } ], "league_match_weeks_by_pk": [ - 1586, + 1689, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_match_weeks_stream": [ - 1586, + 1689, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1615, + 1718, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1595 + 1698 ] } ], "league_relegation_playoffs": [ - 1627, + 1730, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -156179,19 +158601,19 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], "league_relegation_playoffs_aggregate": [ - 1628, + 1731, { "distinct_on": [ - 1648, + 1751, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -156201,44 +158623,44 @@ export default { 38 ], "order_by": [ - 1646, + 1749, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1636 + 1739 ] } ], "league_relegation_playoffs_by_pk": [ - 1627, + 1730, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1627, + 1730, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1656, + 1759, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1636 + 1739 ] } ], "league_scheduling_proposals": [ - 1668, + 1771, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -156248,19 +158670,19 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "league_scheduling_proposals_aggregate": [ - 1669, + 1772, { "distinct_on": [ - 1689, + 1792, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -156270,44 +158692,44 @@ export default { 38 ], "order_by": [ - 1687, + 1790, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1677 + 1780 ] } ], "league_scheduling_proposals_by_pk": [ - 1668, + 1771, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1668, + 1771, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1697, + 1800, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1677 + 1780 ] } ], "league_season_divisions": [ - 1709, + 1812, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -156317,19 +158739,19 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "league_season_divisions_aggregate": [ - 1710, + 1813, { "distinct_on": [ - 1728, + 1831, "[league_season_divisions_select_column!]" ], "limit": [ @@ -156339,44 +158761,44 @@ export default { 38 ], "order_by": [ - 1726, + 1829, "[league_season_divisions_order_by!]" ], "where": [ - 1716 + 1819 ] } ], "league_season_divisions_by_pk": [ - 1709, + 1812, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_season_divisions_stream": [ - 1709, + 1812, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1730, + 1833, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1716 + 1819 ] } ], "league_seasons": [ - 1734, + 1837, { "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -156386,19 +158808,19 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], "league_seasons_aggregate": [ - 1735, + 1838, { "distinct_on": [ - 1754, + 1857, "[league_seasons_select_column!]" ], "limit": [ @@ -156408,44 +158830,44 @@ export default { 38 ], "order_by": [ - 1751, + 1854, "[league_seasons_order_by!]" ], "where": [ - 1739 + 1842 ] } ], "league_seasons_by_pk": [ - 1734, + 1837, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_seasons_stream": [ - 1734, + 1837, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1759, + 1862, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1739 + 1842 ] } ], "league_team_movements": [ - 1767, + 1870, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -156455,19 +158877,19 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "league_team_movements_aggregate": [ - 1768, + 1871, { "distinct_on": [ - 1788, + 1891, "[league_team_movements_select_column!]" ], "limit": [ @@ -156477,44 +158899,44 @@ export default { 38 ], "order_by": [ - 1786, + 1889, "[league_team_movements_order_by!]" ], "where": [ - 1776 + 1879 ] } ], "league_team_movements_by_pk": [ - 1767, + 1870, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_team_movements_stream": [ - 1767, + 1870, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1796, + 1899, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1776 + 1879 ] } ], "league_team_rosters": [ - 1808, + 1911, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -156524,19 +158946,19 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "league_team_rosters_aggregate": [ - 1809, + 1912, { "distinct_on": [ - 1829, + 1932, "[league_team_rosters_select_column!]" ], "limit": [ @@ -156546,19 +158968,19 @@ export default { 38 ], "order_by": [ - 1827, + 1930, "[league_team_rosters_order_by!]" ], "where": [ - 1817 + 1920 ] } ], "league_team_rosters_by_pk": [ - 1808, + 1911, { "league_team_season_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -156568,26 +158990,26 @@ export default { } ], "league_team_rosters_stream": [ - 1808, + 1911, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1837, + 1940, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1817 + 1920 ] } ], "league_team_seasons": [ - 1849, + 1952, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -156597,19 +159019,19 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "league_team_seasons_aggregate": [ - 1850, + 1953, { "distinct_on": [ - 1871, + 1974, "[league_team_seasons_select_column!]" ], "limit": [ @@ -156619,44 +159041,44 @@ export default { 38 ], "order_by": [ - 1869, + 1972, "[league_team_seasons_order_by!]" ], "where": [ - 1858 + 1961 ] } ], "league_team_seasons_by_pk": [ - 1849, + 1952, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_team_seasons_stream": [ - 1849, + 1952, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1879, + 1982, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1858 + 1961 ] } ], "league_teams": [ - 1891, + 1994, { "distinct_on": [ - 1904, + 2007, "[league_teams_select_column!]" ], "limit": [ @@ -156666,19 +159088,19 @@ export default { 38 ], "order_by": [ - 1902, + 2005, "[league_teams_order_by!]" ], "where": [ - 1894 + 1997 ] } ], "league_teams_aggregate": [ - 1892, + 1995, { "distinct_on": [ - 1904, + 2007, "[league_teams_select_column!]" ], "limit": [ @@ -156688,44 +159110,44 @@ export default { 38 ], "order_by": [ - 1902, + 2005, "[league_teams_order_by!]" ], "where": [ - 1894 + 1997 ] } ], "league_teams_by_pk": [ - 1891, + 1994, { "id": [ - 4641, + 4744, "uuid!" ] } ], "league_teams_stream": [ - 1891, + 1994, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1906, + 2009, "[league_teams_stream_cursor_input]!" ], "where": [ - 1894 + 1997 ] } ], "lobbies": [ - 1910, + 2013, { "distinct_on": [ - 1923, + 2026, "[lobbies_select_column!]" ], "limit": [ @@ -156735,19 +159157,19 @@ export default { 38 ], "order_by": [ - 1921, + 2024, "[lobbies_order_by!]" ], "where": [ - 1913 + 2016 ] } ], "lobbies_aggregate": [ - 1911, + 2014, { "distinct_on": [ - 1923, + 2026, "[lobbies_select_column!]" ], "limit": [ @@ -156757,44 +159179,44 @@ export default { 38 ], "order_by": [ - 1921, + 2024, "[lobbies_order_by!]" ], "where": [ - 1913 + 2016 ] } ], "lobbies_by_pk": [ - 1910, + 2013, { "id": [ - 4641, + 4744, "uuid!" ] } ], "lobbies_stream": [ - 1910, + 2013, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1925, + 2028, "[lobbies_stream_cursor_input]!" ], "where": [ - 1913 + 2016 ] } ], "lobby_players": [ - 1929, + 2032, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -156804,19 +159226,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "lobby_players_aggregate": [ - 1930, + 2033, { "distinct_on": [ - 1952, + 2055, "[lobby_players_select_column!]" ], "limit": [ @@ -156826,19 +159248,19 @@ export default { 38 ], "order_by": [ - 1950, + 2053, "[lobby_players_order_by!]" ], "where": [ - 1940 + 2043 ] } ], "lobby_players_by_pk": [ - 1929, + 2032, { "lobby_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -156848,26 +159270,26 @@ export default { } ], "lobby_players_stream": [ - 1929, + 2032, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1962, + 2065, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1940 + 2043 ] } ], "map_pools": [ - 1974, + 2077, { "distinct_on": [ - 1987, + 2090, "[map_pools_select_column!]" ], "limit": [ @@ -156877,19 +159299,19 @@ export default { 38 ], "order_by": [ - 1985, + 2088, "[map_pools_order_by!]" ], "where": [ - 1977 + 2080 ] } ], "map_pools_aggregate": [ - 1975, + 2078, { "distinct_on": [ - 1987, + 2090, "[map_pools_select_column!]" ], "limit": [ @@ -156899,44 +159321,44 @@ export default { 38 ], "order_by": [ - 1985, + 2088, "[map_pools_order_by!]" ], "where": [ - 1977 + 2080 ] } ], "map_pools_by_pk": [ - 1974, + 2077, { "id": [ - 4641, + 4744, "uuid!" ] } ], "map_pools_stream": [ - 1974, + 2077, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1989, + 2092, "[map_pools_stream_cursor_input]!" ], "where": [ - 1977 + 2080 ] } ], "maps": [ - 1993, + 2096, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -156946,19 +159368,19 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], "maps_aggregate": [ - 1994, + 2097, { "distinct_on": [ - 2014, + 2117, "[maps_select_column!]" ], "limit": [ @@ -156968,44 +159390,44 @@ export default { 38 ], "order_by": [ - 2012, + 2115, "[maps_order_by!]" ], "where": [ - 2002 + 2105 ] } ], "maps_by_pk": [ - 1993, + 2096, { "id": [ - 4641, + 4744, "uuid!" ] } ], "maps_stream": [ - 1993, + 2096, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2018, + 2121, "[maps_stream_cursor_input]!" ], "where": [ - 2002 + 2105 ] } ], "match_clips": [ - 2022, + 2125, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -157015,19 +159437,19 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_aggregate": [ - 2023, + 2126, { "distinct_on": [ - 2044, + 2147, "[match_clips_select_column!]" ], "limit": [ @@ -157037,44 +159459,44 @@ export default { 38 ], "order_by": [ - 2042, + 2145, "[match_clips_order_by!]" ], "where": [ - 2031 + 2134 ] } ], "match_clips_by_pk": [ - 2022, + 2125, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_clips_stream": [ - 2022, + 2125, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2052, + 2155, "[match_clips_stream_cursor_input]!" ], "where": [ - 2031 + 2134 ] } ], "match_demo_sessions": [ - 2064, + 2167, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -157084,19 +159506,19 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], "match_demo_sessions_aggregate": [ - 2065, + 2168, { "distinct_on": [ - 2090, + 2193, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -157106,44 +159528,44 @@ export default { 38 ], "order_by": [ - 2087, + 2190, "[match_demo_sessions_order_by!]" ], "where": [ - 2074 + 2177 ] } ], "match_demo_sessions_by_pk": [ - 2064, + 2167, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2064, + 2167, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2098, + 2201, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2074 + 2177 ] } ], "match_lineup_players": [ - 2110, + 2213, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -157153,19 +159575,19 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "match_lineup_players_aggregate": [ - 2111, + 2214, { "distinct_on": [ - 2133, + 2236, "[match_lineup_players_select_column!]" ], "limit": [ @@ -157175,44 +159597,44 @@ export default { 38 ], "order_by": [ - 2131, + 2234, "[match_lineup_players_order_by!]" ], "where": [ - 2121 + 2224 ] } ], "match_lineup_players_by_pk": [ - 2110, + 2213, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_lineup_players_stream": [ - 2110, + 2213, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2143, + 2246, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2121 + 2224 ] } ], "match_lineups": [ - 2155, + 2258, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -157222,19 +159644,19 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "match_lineups_aggregate": [ - 2156, + 2259, { "distinct_on": [ - 2177, + 2280, "[match_lineups_select_column!]" ], "limit": [ @@ -157244,44 +159666,44 @@ export default { 38 ], "order_by": [ - 2175, + 2278, "[match_lineups_order_by!]" ], "where": [ - 2164 + 2267 ] } ], "match_lineups_by_pk": [ - 2155, + 2258, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_lineups_stream": [ - 2155, + 2258, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2185, + 2288, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2164 + 2267 ] } ], "match_map_demos": [ - 2197, + 2300, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -157291,19 +159713,19 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "match_map_demos_aggregate": [ - 2198, + 2301, { "distinct_on": [ - 2226, + 2329, "[match_map_demos_select_column!]" ], "limit": [ @@ -157313,44 +159735,44 @@ export default { 38 ], "order_by": [ - 2223, + 2326, "[match_map_demos_order_by!]" ], "where": [ - 2209 + 2312 ] } ], "match_map_demos_by_pk": [ - 2197, + 2300, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_demos_stream": [ - 2197, + 2300, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2236, + 2339, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2209 + 2312 ] } ], "match_map_rounds": [ - 2248, + 2351, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -157360,19 +159782,19 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "match_map_rounds_aggregate": [ - 2249, + 2352, { "distinct_on": [ - 2269, + 2372, "[match_map_rounds_select_column!]" ], "limit": [ @@ -157382,44 +159804,44 @@ export default { 38 ], "order_by": [ - 2267, + 2370, "[match_map_rounds_order_by!]" ], "where": [ - 2257 + 2360 ] } ], "match_map_rounds_by_pk": [ - 2248, + 2351, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_rounds_stream": [ - 2248, + 2351, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2277, + 2380, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2257 + 2360 ] } ], "match_map_veto_picks": [ - 2289, + 2392, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -157429,19 +159851,19 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_map_veto_picks_aggregate": [ - 2290, + 2393, { "distinct_on": [ - 2307, + 2410, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -157451,44 +159873,44 @@ export default { 38 ], "order_by": [ - 2305, + 2408, "[match_map_veto_picks_order_by!]" ], "where": [ - 2296 + 2399 ] } ], "match_map_veto_picks_by_pk": [ - 2289, + 2392, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2289, + 2392, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2309, + 2412, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2296 + 2399 ] } ], "match_maps": [ - 2313, + 2416, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -157498,19 +159920,19 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_aggregate": [ - 2314, + 2417, { "distinct_on": [ - 2335, + 2438, "[match_maps_select_column!]" ], "limit": [ @@ -157520,44 +159942,44 @@ export default { 38 ], "order_by": [ - 2333, + 2436, "[match_maps_order_by!]" ], "where": [ - 2322 + 2425 ] } ], "match_maps_by_pk": [ - 2313, + 2416, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_maps_stream": [ - 2313, + 2416, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2343, + 2446, "[match_maps_stream_cursor_input]!" ], "where": [ - 2322 + 2425 ] } ], "match_options": [ - 2355, + 2458, { "distinct_on": [ - 2370, + 2473, "[match_options_select_column!]" ], "limit": [ @@ -157567,19 +159989,19 @@ export default { 38 ], "order_by": [ - 2368, + 2471, "[match_options_order_by!]" ], "where": [ - 2359 + 2462 ] } ], "match_options_aggregate": [ - 2356, + 2459, { "distinct_on": [ - 2370, + 2473, "[match_options_select_column!]" ], "limit": [ @@ -157589,44 +160011,44 @@ export default { 38 ], "order_by": [ - 2368, + 2471, "[match_options_order_by!]" ], "where": [ - 2359 + 2462 ] } ], "match_options_by_pk": [ - 2355, + 2458, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_options_stream": [ - 2355, + 2458, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2375, + 2478, "[match_options_stream_cursor_input]!" ], "where": [ - 2359 + 2462 ] } ], "match_region_veto_picks": [ - 2383, + 2486, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -157636,19 +160058,19 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], "match_region_veto_picks_aggregate": [ - 2384, + 2487, { "distinct_on": [ - 2401, + 2504, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -157658,44 +160080,44 @@ export default { 38 ], "order_by": [ - 2399, + 2502, "[match_region_veto_picks_order_by!]" ], "where": [ - 2390 + 2493 ] } ], "match_region_veto_picks_by_pk": [ - 2383, + 2486, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2383, + 2486, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2403, + 2506, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2390 + 2493 ] } ], "match_streams": [ - 2407, + 2510, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -157705,19 +160127,19 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "match_streams_aggregate": [ - 2408, + 2511, { "distinct_on": [ - 2435, + 2538, "[match_streams_select_column!]" ], "limit": [ @@ -157727,44 +160149,44 @@ export default { 38 ], "order_by": [ - 2432, + 2535, "[match_streams_order_by!]" ], "where": [ - 2419 + 2522 ] } ], "match_streams_by_pk": [ - 2407, + 2510, { "id": [ - 4641, + 4744, "uuid!" ] } ], "match_streams_stream": [ - 2407, + 2510, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2445, + 2548, "[match_streams_stream_cursor_input]!" ], "where": [ - 2419 + 2522 ] } ], "match_type_cfgs": [ - 2457, + 2560, { "distinct_on": [ - 2469, + 2572, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -157774,19 +160196,19 @@ export default { 38 ], "order_by": [ - 2467, + 2570, "[match_type_cfgs_order_by!]" ], "where": [ - 2460 + 2563 ] } ], "match_type_cfgs_aggregate": [ - 2458, + 2561, { "distinct_on": [ - 2469, + 2572, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -157796,44 +160218,44 @@ export default { 38 ], "order_by": [ - 2467, + 2570, "[match_type_cfgs_order_by!]" ], "where": [ - 2460 + 2563 ] } ], "match_type_cfgs_by_pk": [ - 2457, + 2560, { "type": [ - 571, + 591, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 2457, + 2560, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2471, + 2574, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2460 + 2563 ] } ], "matches": [ - 2475, + 2578, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -157843,19 +160265,19 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_aggregate": [ - 2476, + 2579, { "distinct_on": [ - 2497, + 2600, "[matches_select_column!]" ], "limit": [ @@ -157865,44 +160287,44 @@ export default { 38 ], "order_by": [ - 2495, + 2598, "[matches_order_by!]" ], "where": [ - 2484 + 2587 ] } ], "matches_by_pk": [ - 2475, + 2578, { "id": [ - 4641, + 4744, "uuid!" ] } ], "matches_stream": [ - 2475, + 2578, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2505, + 2608, "[matches_stream_cursor_input]!" ], "where": [ - 2484 + 2587 ] } ], "migration_hashes_hashes": [ - 2517, + 2620, { "distinct_on": [ - 2529, + 2632, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -157912,19 +160334,19 @@ export default { 38 ], "order_by": [ - 2527, + 2630, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2520 + 2623 ] } ], "migration_hashes_hashes_aggregate": [ - 2518, + 2621, { "distinct_on": [ - 2529, + 2632, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -157934,16 +160356,16 @@ export default { 38 ], "order_by": [ - 2527, + 2630, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2520 + 2623 ] } ], "migration_hashes_hashes_by_pk": [ - 2517, + 2620, { "name": [ 78, @@ -157952,26 +160374,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2517, + 2620, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2531, + 2634, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2520 + 2623 ] } ], "my_friends": [ - 2535, + 2638, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -157981,19 +160403,19 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], "my_friends_aggregate": [ - 2536, + 2639, { "distinct_on": [ - 2560, + 2663, "[my_friends_select_column!]" ], "limit": [ @@ -158003,35 +160425,35 @@ export default { 38 ], "order_by": [ - 2558, + 2661, "[my_friends_order_by!]" ], "where": [ - 2547 + 2650 ] } ], "my_friends_stream": [ - 2535, + 2638, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2570, + 2673, "[my_friends_stream_cursor_input]!" ], "where": [ - 2547 + 2650 ] } ], "news_articles": [ - 2581, + 2684, { "distinct_on": [ - 2595, + 2698, "[news_articles_select_column!]" ], "limit": [ @@ -158041,19 +160463,19 @@ export default { 38 ], "order_by": [ - 2593, + 2696, "[news_articles_order_by!]" ], "where": [ - 2585 + 2688 ] } ], "news_articles_aggregate": [ - 2582, + 2685, { "distinct_on": [ - 2595, + 2698, "[news_articles_select_column!]" ], "limit": [ @@ -158063,44 +160485,44 @@ export default { 38 ], "order_by": [ - 2593, + 2696, "[news_articles_order_by!]" ], "where": [ - 2585 + 2688 ] } ], "news_articles_by_pk": [ - 2581, + 2684, { "id": [ - 4641, + 4744, "uuid!" ] } ], "news_articles_stream": [ - 2581, + 2684, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2600, + 2703, "[news_articles_stream_cursor_input]!" ], "where": [ - 2585 + 2688 ] } ], "notifications": [ - 2608, + 2711, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -158110,19 +160532,19 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "notifications_aggregate": [ - 2609, + 2712, { "distinct_on": [ - 2636, + 2739, "[notifications_select_column!]" ], "limit": [ @@ -158132,44 +160554,44 @@ export default { 38 ], "order_by": [ - 2633, + 2736, "[notifications_order_by!]" ], "where": [ - 2620 + 2723 ] } ], "notifications_by_pk": [ - 2608, + 2711, { "id": [ - 4641, + 4744, "uuid!" ] } ], "notifications_stream": [ - 2608, + 2711, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2646, + 2749, "[notifications_stream_cursor_input]!" ], "where": [ - 2620 + 2723 ] } ], "pending_match_import_players": [ - 2661, + 2764, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -158179,19 +160601,19 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "pending_match_import_players_aggregate": [ - 2662, + 2765, { "distinct_on": [ - 2682, + 2785, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -158201,48 +160623,48 @@ export default { 38 ], "order_by": [ - 2680, + 2783, "[pending_match_import_players_order_by!]" ], "where": [ - 2670 + 2773 ] } ], "pending_match_import_players_by_pk": [ - 2661, + 2764, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2661, + 2764, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2690, + 2793, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2670 + 2773 ] } ], "pending_match_imports": [ - 2702, + 2805, { "distinct_on": [ - 2717, + 2820, "[pending_match_imports_select_column!]" ], "limit": [ @@ -158252,19 +160674,19 @@ export default { 38 ], "order_by": [ - 2715, + 2818, "[pending_match_imports_order_by!]" ], "where": [ - 2706 + 2809 ] } ], "pending_match_imports_aggregate": [ - 2703, + 2806, { "distinct_on": [ - 2717, + 2820, "[pending_match_imports_select_column!]" ], "limit": [ @@ -158274,44 +160696,44 @@ export default { 38 ], "order_by": [ - 2715, + 2818, "[pending_match_imports_order_by!]" ], "where": [ - 2706 + 2809 ] } ], "pending_match_imports_by_pk": [ - 2702, + 2805, { "valve_match_id": [ - 2658, + 2761, "numeric!" ] } ], "pending_match_imports_stream": [ - 2702, + 2805, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2722, + 2825, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2706 + 2809 ] } ], "player_aim_stats_demo": [ - 2730, + 2833, { "distinct_on": [ - 2744, + 2847, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -158321,19 +160743,19 @@ export default { 38 ], "order_by": [ - 2742, + 2845, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2734 + 2837 ] } ], "player_aim_stats_demo_aggregate": [ - 2731, + 2834, { "distinct_on": [ - 2744, + 2847, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -158343,48 +160765,48 @@ export default { 38 ], "order_by": [ - 2742, + 2845, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2734 + 2837 ] } ], "player_aim_stats_demo_by_pk": [ - 2730, + 2833, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2730, + 2833, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2749, + 2852, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2734 + 2837 ] } ], "player_aim_weapon_stats": [ - 2757, + 2860, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -158394,19 +160816,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "player_aim_weapon_stats_aggregate": [ - 2758, + 2861, { "distinct_on": [ - 2778, + 2881, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -158416,19 +160838,19 @@ export default { 38 ], "order_by": [ - 2776, + 2879, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2766 + 2869 ] } ], "player_aim_weapon_stats_by_pk": [ - 2757, + 2860, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -158442,26 +160864,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2757, + 2860, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2786, + 2889, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2766 + 2869 ] } ], "player_assists": [ - 2798, + 2901, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -158471,19 +160893,19 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_aggregate": [ - 2799, + 2902, { "distinct_on": [ - 2821, + 2924, "[player_assists_select_column!]" ], "limit": [ @@ -158493,16 +160915,16 @@ export default { 38 ], "order_by": [ - 2819, + 2922, "[player_assists_order_by!]" ], "where": [ - 2809 + 2912 ] } ], "player_assists_by_pk": [ - 2798, + 2901, { "attacked_steam_id": [ 180, @@ -158513,36 +160935,36 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_assists_stream": [ - 2798, + 2901, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2831, + 2934, "[player_assists_stream_cursor_input]!" ], "where": [ - 2809 + 2912 ] } ], "player_career_stats_v": [ - 2843, + 2946, { "distinct_on": [ - 2851, + 2954, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -158552,19 +160974,19 @@ export default { 38 ], "order_by": [ - 2850, + 2953, "[player_career_stats_v_order_by!]" ], "where": [ - 2847 + 2950 ] } ], "player_career_stats_v_aggregate": [ - 2844, + 2947, { "distinct_on": [ - 2851, + 2954, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -158574,35 +160996,35 @@ export default { 38 ], "order_by": [ - 2850, + 2953, "[player_career_stats_v_order_by!]" ], "where": [ - 2847 + 2950 ] } ], "player_career_stats_v_stream": [ - 2843, + 2946, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2855, + 2958, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2847 + 2950 ] } ], "player_damages": [ - 2861, + 2964, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -158612,19 +161034,19 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_aggregate": [ - 2862, + 2965, { "distinct_on": [ - 2882, + 2985, "[player_damages_select_column!]" ], "limit": [ @@ -158634,52 +161056,52 @@ export default { 38 ], "order_by": [ - 2880, + 2983, "[player_damages_order_by!]" ], "where": [ - 2870 + 2973 ] } ], "player_damages_by_pk": [ - 2861, + 2964, { "id": [ - 4641, + 4744, "uuid!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_damages_stream": [ - 2861, + 2964, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2890, + 2993, "[player_damages_stream_cursor_input]!" ], "where": [ - 2870 + 2973 ] } ], "player_elo": [ - 2902, + 3005, { "distinct_on": [ - 2916, + 3019, "[player_elo_select_column!]" ], "limit": [ @@ -158689,19 +161111,19 @@ export default { 38 ], "order_by": [ - 2914, + 3017, "[player_elo_order_by!]" ], "where": [ - 2906 + 3009 ] } ], "player_elo_aggregate": [ - 2903, + 3006, { "distinct_on": [ - 2916, + 3019, "[player_elo_select_column!]" ], "limit": [ @@ -158711,19 +161133,19 @@ export default { 38 ], "order_by": [ - 2914, + 3017, "[player_elo_order_by!]" ], "where": [ - 2906 + 3009 ] } ], "player_elo_by_pk": [ - 2902, + 3005, { "match_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -158731,32 +161153,32 @@ export default { "bigint!" ], "type": [ - 840, + 860, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 2902, + 3005, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2921, + 3024, "[player_elo_stream_cursor_input]!" ], "where": [ - 2906 + 3009 ] } ], "player_faceit_rank_history": [ - 2929, + 3032, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -158766,19 +161188,19 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], "player_faceit_rank_history_aggregate": [ - 2930, + 3033, { "distinct_on": [ - 2950, + 3053, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -158788,44 +161210,44 @@ export default { 38 ], "order_by": [ - 2948, + 3051, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2938 + 3041 ] } ], "player_faceit_rank_history_by_pk": [ - 2929, + 3032, { "id": [ - 4641, + 4744, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2929, + 3032, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2958, + 3061, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2938 + 3041 ] } ], "player_flashes": [ - 2970, + 3073, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -158835,19 +161257,19 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_flashes_aggregate": [ - 2971, + 3074, { "distinct_on": [ - 2993, + 3096, "[player_flashes_select_column!]" ], "limit": [ @@ -158857,16 +161279,16 @@ export default { 38 ], "order_by": [ - 2991, + 3094, "[player_flashes_order_by!]" ], "where": [ - 2981 + 3084 ] } ], "player_flashes_by_pk": [ - 2970, + 3073, { "attacked_steam_id": [ 180, @@ -158877,36 +161299,36 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_flashes_stream": [ - 2970, + 3073, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3003, + 3106, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2981 + 3084 ] } ], "player_kills": [ - 3015, + 3118, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -158916,19 +161338,19 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_aggregate": [ - 3016, + 3119, { "distinct_on": [ - 3079, + 3182, "[player_kills_select_column!]" ], "limit": [ @@ -158938,16 +161360,16 @@ export default { 38 ], "order_by": [ - 3077, + 3180, "[player_kills_order_by!]" ], "where": [ - 3026 + 3129 ] } ], "player_kills_by_pk": [ - 3015, + 3118, { "attacked_steam_id": [ 180, @@ -158958,20 +161380,20 @@ export default { "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3027, + 3130, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -158981,19 +161403,19 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], "player_kills_by_weapon_aggregate": [ - 3028, + 3131, { "distinct_on": [ - 3048, + 3151, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -159003,16 +161425,16 @@ export default { 38 ], "order_by": [ - 3046, + 3149, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3036 + 3139 ] } ], "player_kills_by_weapon_by_pk": [ - 3027, + 3130, { "player_steam_id": [ 180, @@ -159025,42 +161447,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3027, + 3130, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3056, + 3159, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3036 + 3139 ] } ], "player_kills_stream": [ - 3015, + 3118, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3089, + 3192, "[player_kills_stream_cursor_input]!" ], "where": [ - 3026 + 3129 ] } ], "player_leaderboard_rank": [ - 3101, + 3204, { "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -159070,19 +161492,19 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "player_leaderboard_rank_aggregate": [ - 3102, + 3205, { "distinct_on": [ - 3112, + 3215, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -159092,35 +161514,35 @@ export default { 38 ], "order_by": [ - 3111, + 3214, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3105 + 3208 ] } ], "player_leaderboard_rank_stream": [ - 3101, + 3204, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3117, + 3220, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3105 + 3208 ] } ], "player_match_map_stats": [ - 3124, + 3227, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -159130,19 +161552,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "player_match_map_stats_aggregate": [ - 3125, + 3228, { "distinct_on": [ - 3145, + 3248, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -159152,19 +161574,19 @@ export default { 38 ], "order_by": [ - 3143, + 3246, "[player_match_map_stats_order_by!]" ], "where": [ - 3133 + 3236 ] } ], "player_match_map_stats_by_pk": [ - 3124, + 3227, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "steam_id": [ @@ -159174,26 +161596,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3124, + 3227, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3153, + 3256, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3133 + 3236 ] } ], "player_match_performance_v": [ - 3165, + 3268, { "distinct_on": [ - 3173, + 3276, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -159203,19 +161625,19 @@ export default { 38 ], "order_by": [ - 3172, + 3275, "[player_match_performance_v_order_by!]" ], "where": [ - 3169 + 3272 ] } ], "player_match_performance_v_aggregate": [ - 3166, + 3269, { "distinct_on": [ - 3173, + 3276, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -159225,35 +161647,35 @@ export default { 38 ], "order_by": [ - 3172, + 3275, "[player_match_performance_v_order_by!]" ], "where": [ - 3169 + 3272 ] } ], "player_match_performance_v_stream": [ - 3165, + 3268, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3177, + 3280, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3169 + 3272 ] } ], "player_match_stats_v": [ - 3183, + 3286, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -159263,19 +161685,19 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "player_match_stats_v_aggregate": [ - 3184, + 3287, { "distinct_on": [ - 3199, + 3302, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -159285,35 +161707,35 @@ export default { 38 ], "order_by": [ - 3198, + 3301, "[player_match_stats_v_order_by!]" ], "where": [ - 3192 + 3295 ] } ], "player_match_stats_v_stream": [ - 3183, + 3286, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3206, + 3309, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3192 + 3295 ] } ], "player_objectives": [ - 3216, + 3319, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -159323,19 +161745,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_aggregate": [ - 3217, + 3320, { "distinct_on": [ - 3237, + 3340, "[player_objectives_select_column!]" ], "limit": [ @@ -159345,19 +161767,19 @@ export default { 38 ], "order_by": [ - 3235, + 3338, "[player_objectives_order_by!]" ], "where": [ - 3225 + 3328 ] } ], "player_objectives_by_pk": [ - 3216, + 3319, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -159365,32 +161787,32 @@ export default { "bigint!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_objectives_stream": [ - 3216, + 3319, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3245, + 3348, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3225 + 3328 ] } ], "player_performance_v": [ - 3257, + 3360, { "distinct_on": [ - 3265, + 3368, "[player_performance_v_select_column!]" ], "limit": [ @@ -159400,19 +161822,19 @@ export default { 38 ], "order_by": [ - 3264, + 3367, "[player_performance_v_order_by!]" ], "where": [ - 3261 + 3364 ] } ], "player_performance_v_aggregate": [ - 3258, + 3361, { "distinct_on": [ - 3265, + 3368, "[player_performance_v_select_column!]" ], "limit": [ @@ -159422,35 +161844,35 @@ export default { 38 ], "order_by": [ - 3264, + 3367, "[player_performance_v_order_by!]" ], "where": [ - 3261 + 3364 ] } ], "player_performance_v_stream": [ - 3257, + 3360, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3269, + 3372, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3261 + 3364 ] } ], "player_premier_rank_history": [ - 3275, + 3378, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -159460,19 +161882,19 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "player_premier_rank_history_aggregate": [ - 3276, + 3379, { "distinct_on": [ - 3296, + 3399, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -159482,44 +161904,44 @@ export default { 38 ], "order_by": [ - 3294, + 3397, "[player_premier_rank_history_order_by!]" ], "where": [ - 3284 + 3387 ] } ], "player_premier_rank_history_by_pk": [ - 3275, + 3378, { "id": [ - 4641, + 4744, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3275, + 3378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3304, + 3407, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3284 + 3387 ] } ], "player_sanctions": [ - 3316, + 3419, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -159529,19 +161951,19 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "player_sanctions_aggregate": [ - 3317, + 3420, { "distinct_on": [ - 3337, + 3440, "[player_sanctions_select_column!]" ], "limit": [ @@ -159551,48 +161973,48 @@ export default { 38 ], "order_by": [ - 3335, + 3438, "[player_sanctions_order_by!]" ], "where": [ - 3325 + 3428 ] } ], "player_sanctions_by_pk": [ - 3316, + 3419, { "created_at": [ - 4203, + 4306, "timestamptz!" ], "id": [ - 4641, + 4744, "uuid!" ] } ], "player_sanctions_stream": [ - 3316, + 3419, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3345, + 3448, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3325 + 3428 ] } ], "player_season_stats": [ - 3357, + 3460, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -159602,19 +162024,19 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "player_season_stats_aggregate": [ - 3358, + 3461, { "distinct_on": [ - 3388, + 3491, "[player_season_stats_select_column!]" ], "limit": [ @@ -159624,48 +162046,48 @@ export default { 38 ], "order_by": [ - 3386, + 3489, "[player_season_stats_order_by!]" ], "where": [ - 3376 + 3479 ] } ], "player_season_stats_by_pk": [ - 3357, + 3460, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4641, + 4744, "uuid!" ] } ], "player_season_stats_stream": [ - 3357, + 3460, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3404, + 3507, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3376 + 3479 ] } ], "player_stats": [ - 3416, + 3519, { "distinct_on": [ - 3431, + 3534, "[player_stats_select_column!]" ], "limit": [ @@ -159675,19 +162097,19 @@ export default { 38 ], "order_by": [ - 3429, + 3532, "[player_stats_order_by!]" ], "where": [ - 3420 + 3523 ] } ], "player_stats_aggregate": [ - 3417, + 3520, { "distinct_on": [ - 3431, + 3534, "[player_stats_select_column!]" ], "limit": [ @@ -159697,16 +162119,16 @@ export default { 38 ], "order_by": [ - 3429, + 3532, "[player_stats_order_by!]" ], "where": [ - 3420 + 3523 ] } ], "player_stats_by_pk": [ - 3416, + 3519, { "player_steam_id": [ 180, @@ -159715,26 +162137,26 @@ export default { } ], "player_stats_stream": [ - 3416, + 3519, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3436, + 3539, "[player_stats_stream_cursor_input]!" ], "where": [ - 3420 + 3523 ] } ], "player_steam_bot_friend": [ - 3444, + 3547, { "distinct_on": [ - 3463, + 3566, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -159744,19 +162166,19 @@ export default { 38 ], "order_by": [ - 3460, + 3563, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3449 + 3552 ] } ], "player_steam_bot_friend_aggregate": [ - 3445, + 3548, { "distinct_on": [ - 3463, + 3566, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -159766,16 +162188,16 @@ export default { 38 ], "order_by": [ - 3460, + 3563, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3449 + 3552 ] } ], "player_steam_bot_friend_by_pk": [ - 3444, + 3547, { "steam_id": [ 180, @@ -159784,26 +162206,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3444, + 3547, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3468, + 3571, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3449 + 3552 ] } ], "player_steam_match_auth": [ - 3476, + 3579, { "distinct_on": [ - 3490, + 3593, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -159813,19 +162235,19 @@ export default { 38 ], "order_by": [ - 3488, + 3591, "[player_steam_match_auth_order_by!]" ], "where": [ - 3480 + 3583 ] } ], "player_steam_match_auth_aggregate": [ - 3477, + 3580, { "distinct_on": [ - 3490, + 3593, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -159835,16 +162257,16 @@ export default { 38 ], "order_by": [ - 3488, + 3591, "[player_steam_match_auth_order_by!]" ], "where": [ - 3480 + 3583 ] } ], "player_steam_match_auth_by_pk": [ - 3476, + 3579, { "steam_id": [ 180, @@ -159853,26 +162275,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3476, + 3579, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3495, + 3598, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3480 + 3583 ] } ], "player_unused_utility": [ - 3503, + 3606, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -159882,19 +162304,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utility_aggregate": [ - 3504, + 3607, { "distinct_on": [ - 3524, + 3627, "[player_unused_utility_select_column!]" ], "limit": [ @@ -159904,19 +162326,19 @@ export default { 38 ], "order_by": [ - 3522, + 3625, "[player_unused_utility_order_by!]" ], "where": [ - 3512 + 3615 ] } ], "player_unused_utility_by_pk": [ - 3503, + 3606, { "match_map_id": [ - 4641, + 4744, "uuid!" ], "player_steam_id": [ @@ -159926,26 +162348,26 @@ export default { } ], "player_unused_utility_stream": [ - 3503, + 3606, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3532, + 3635, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3512 + 3615 ] } ], "player_utility": [ - 3544, + 3647, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -159955,19 +162377,19 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utility_aggregate": [ - 3545, + 3648, { "distinct_on": [ - 3565, + 3668, "[player_utility_select_column!]" ], "limit": [ @@ -159977,52 +162399,52 @@ export default { 38 ], "order_by": [ - 3563, + 3666, "[player_utility_order_by!]" ], "where": [ - 3553 + 3656 ] } ], "player_utility_by_pk": [ - 3544, + 3647, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4641, + 4744, "uuid!" ], "time": [ - 4203, + 4306, "timestamptz!" ] } ], "player_utility_stream": [ - 3544, + 3647, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3573, + 3676, "[player_utility_stream_cursor_input]!" ], "where": [ - 3553 + 3656 ] } ], "player_weapon_stats_v": [ - 3585, + 3688, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -160032,19 +162454,19 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], "player_weapon_stats_v_aggregate": [ - 3586, + 3689, { "distinct_on": [ - 3601, + 3704, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -160054,35 +162476,35 @@ export default { 38 ], "order_by": [ - 3600, + 3703, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3594 + 3697 ] } ], "player_weapon_stats_v_stream": [ - 3585, + 3688, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3608, + 3711, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3594 + 3697 ] } ], "players": [ - 3618, + 3721, { "distinct_on": [ - 3633, + 3736, "[players_select_column!]" ], "limit": [ @@ -160092,19 +162514,19 @@ export default { 38 ], "order_by": [ - 3631, + 3734, "[players_order_by!]" ], "where": [ - 3622 + 3725 ] } ], "players_aggregate": [ - 3619, + 3722, { "distinct_on": [ - 3633, + 3736, "[players_select_column!]" ], "limit": [ @@ -160114,16 +162536,16 @@ export default { 38 ], "order_by": [ - 3631, + 3734, "[players_order_by!]" ], "where": [ - 3622 + 3725 ] } ], "players_by_pk": [ - 3618, + 3721, { "steam_id": [ 180, @@ -160132,26 +162554,26 @@ export default { } ], "players_stream": [ - 3618, + 3721, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3638, + 3741, "[players_stream_cursor_input]!" ], "where": [ - 3622 + 3725 ] } ], "plugin_versions": [ - 3646, + 3749, { "distinct_on": [ - 3660, + 3763, "[plugin_versions_select_column!]" ], "limit": [ @@ -160161,19 +162583,19 @@ export default { 38 ], "order_by": [ - 3658, + 3761, "[plugin_versions_order_by!]" ], "where": [ - 3650 + 3753 ] } ], "plugin_versions_aggregate": [ - 3647, + 3750, { "distinct_on": [ - 3660, + 3763, "[plugin_versions_select_column!]" ], "limit": [ @@ -160183,19 +162605,19 @@ export default { 38 ], "order_by": [ - 3658, + 3761, "[plugin_versions_order_by!]" ], "where": [ - 3650 + 3753 ] } ], "plugin_versions_by_pk": [ - 3646, + 3749, { "runtime": [ - 921, + 941, "e_plugin_runtimes_enum!" ], "version": [ @@ -160205,26 +162627,26 @@ export default { } ], "plugin_versions_stream": [ - 3646, + 3749, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3665, + 3768, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3650 + 3753 ] } ], "seasons": [ - 3677, + 3780, { "distinct_on": [ - 3692, + 3795, "[seasons_select_column!]" ], "limit": [ @@ -160234,19 +162656,19 @@ export default { 38 ], "order_by": [ - 3690, + 3793, "[seasons_order_by!]" ], "where": [ - 3681 + 3784 ] } ], "seasons_aggregate": [ - 3678, + 3781, { "distinct_on": [ - 3692, + 3795, "[seasons_select_column!]" ], "limit": [ @@ -160256,44 +162678,44 @@ export default { 38 ], "order_by": [ - 3690, + 3793, "[seasons_order_by!]" ], "where": [ - 3681 + 3784 ] } ], "seasons_by_pk": [ - 3677, + 3780, { "id": [ - 4641, + 4744, "uuid!" ] } ], "seasons_stream": [ - 3677, + 3780, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3697, + 3800, "[seasons_stream_cursor_input]!" ], "where": [ - 3681 + 3784 ] } ], "server_regions": [ - 3705, + 3808, { "distinct_on": [ - 3719, + 3822, "[server_regions_select_column!]" ], "limit": [ @@ -160303,19 +162725,19 @@ export default { 38 ], "order_by": [ - 3717, + 3820, "[server_regions_order_by!]" ], "where": [ - 3709 + 3812 ] } ], "server_regions_aggregate": [ - 3706, + 3809, { "distinct_on": [ - 3719, + 3822, "[server_regions_select_column!]" ], "limit": [ @@ -160325,16 +162747,16 @@ export default { 38 ], "order_by": [ - 3717, + 3820, "[server_regions_order_by!]" ], "where": [ - 3709 + 3812 ] } ], "server_regions_by_pk": [ - 3705, + 3808, { "value": [ 78, @@ -160343,26 +162765,26 @@ export default { } ], "server_regions_stream": [ - 3705, + 3808, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3724, + 3827, "[server_regions_stream_cursor_input]!" ], "where": [ - 3709 + 3812 ] } ], "servers": [ - 3732, + 3835, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -160372,19 +162794,19 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_aggregate": [ - 3733, + 3836, { "distinct_on": [ - 3756, + 3859, "[servers_select_column!]" ], "limit": [ @@ -160394,44 +162816,44 @@ export default { 38 ], "order_by": [ - 3754, + 3857, "[servers_order_by!]" ], "where": [ - 3743 + 3846 ] } ], "servers_by_pk": [ - 3732, + 3835, { "id": [ - 4641, + 4744, "uuid!" ] } ], "servers_stream": [ - 3732, + 3835, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3766, + 3869, "[servers_stream_cursor_input]!" ], "where": [ - 3743 + 3846 ] } ], "settings": [ - 3778, + 3881, { "distinct_on": [ - 3790, + 3893, "[settings_select_column!]" ], "limit": [ @@ -160441,19 +162863,19 @@ export default { 38 ], "order_by": [ - 3788, + 3891, "[settings_order_by!]" ], "where": [ - 3781 + 3884 ] } ], "settings_aggregate": [ - 3779, + 3882, { "distinct_on": [ - 3790, + 3893, "[settings_select_column!]" ], "limit": [ @@ -160463,16 +162885,16 @@ export default { 38 ], "order_by": [ - 3788, + 3891, "[settings_order_by!]" ], "where": [ - 3781 + 3884 ] } ], "settings_by_pk": [ - 3778, + 3881, { "name": [ 78, @@ -160481,26 +162903,26 @@ export default { } ], "settings_stream": [ - 3778, + 3881, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3792, + 3895, "[settings_stream_cursor_input]!" ], "where": [ - 3781 + 3884 ] } ], "steam_account_claims": [ - 3798, + 3901, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -160510,19 +162932,19 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "steam_account_claims_aggregate": [ - 3799, + 3902, { "distinct_on": [ - 3816, + 3919, "[steam_account_claims_select_column!]" ], "limit": [ @@ -160532,44 +162954,44 @@ export default { 38 ], "order_by": [ - 3814, + 3917, "[steam_account_claims_order_by!]" ], "where": [ - 3805 + 3908 ] } ], "steam_account_claims_by_pk": [ - 3798, + 3901, { "id": [ - 4641, + 4744, "uuid!" ] } ], "steam_account_claims_stream": [ - 3798, + 3901, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3818, + 3921, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3805 + 3908 ] } ], "steam_accounts": [ - 3822, + 3925, { "distinct_on": [ - 3837, + 3940, "[steam_accounts_select_column!]" ], "limit": [ @@ -160579,19 +163001,19 @@ export default { 38 ], "order_by": [ - 3835, + 3938, "[steam_accounts_order_by!]" ], "where": [ - 3826 + 3929 ] } ], "steam_accounts_aggregate": [ - 3823, + 3926, { "distinct_on": [ - 3837, + 3940, "[steam_accounts_select_column!]" ], "limit": [ @@ -160601,44 +163023,44 @@ export default { 38 ], "order_by": [ - 3835, + 3938, "[steam_accounts_order_by!]" ], "where": [ - 3826 + 3929 ] } ], "steam_accounts_by_pk": [ - 3822, + 3925, { "id": [ - 4641, + 4744, "uuid!" ] } ], "steam_accounts_stream": [ - 3822, + 3925, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3842, + 3945, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3826 + 3929 ] } ], "system_alerts": [ - 3850, + 3953, { "distinct_on": [ - 3864, + 3967, "[system_alerts_select_column!]" ], "limit": [ @@ -160648,19 +163070,19 @@ export default { 38 ], "order_by": [ - 3862, + 3965, "[system_alerts_order_by!]" ], "where": [ - 3854 + 3957 ] } ], "system_alerts_aggregate": [ - 3851, + 3954, { "distinct_on": [ - 3864, + 3967, "[system_alerts_select_column!]" ], "limit": [ @@ -160670,44 +163092,44 @@ export default { 38 ], "order_by": [ - 3862, + 3965, "[system_alerts_order_by!]" ], "where": [ - 3854 + 3957 ] } ], "system_alerts_by_pk": [ - 3850, + 3953, { "id": [ - 4641, + 4744, "uuid!" ] } ], "system_alerts_stream": [ - 3850, + 3953, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3869, + 3972, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3854 + 3957 ] } ], "team_invites": [ - 3877, + 3980, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -160717,19 +163139,19 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_invites_aggregate": [ - 3878, + 3981, { "distinct_on": [ - 3898, + 4001, "[team_invites_select_column!]" ], "limit": [ @@ -160739,44 +163161,44 @@ export default { 38 ], "order_by": [ - 3896, + 3999, "[team_invites_order_by!]" ], "where": [ - 3886 + 3989 ] } ], "team_invites_by_pk": [ - 3877, + 3980, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_invites_stream": [ - 3877, + 3980, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3906, + 4009, "[team_invites_stream_cursor_input]!" ], "where": [ - 3886 + 3989 ] } ], "team_roster": [ - 3918, + 4021, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -160786,19 +163208,19 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_roster_aggregate": [ - 3919, + 4022, { "distinct_on": [ - 3941, + 4044, "[team_roster_select_column!]" ], "limit": [ @@ -160808,48 +163230,48 @@ export default { 38 ], "order_by": [ - 3939, + 4042, "[team_roster_order_by!]" ], "where": [ - 3929 + 4032 ] } ], "team_roster_by_pk": [ - 3918, + 4021, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4641, + 4744, "uuid!" ] } ], "team_roster_stream": [ - 3918, + 4021, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3951, + 4054, "[team_roster_stream_cursor_input]!" ], "where": [ - 3929 + 4032 ] } ], "team_scrim_alerts": [ - 3963, + 4066, { "distinct_on": [ - 3977, + 4080, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -160859,19 +163281,19 @@ export default { 38 ], "order_by": [ - 3975, + 4078, "[team_scrim_alerts_order_by!]" ], "where": [ - 3967 + 4070 ] } ], "team_scrim_alerts_aggregate": [ - 3964, + 4067, { "distinct_on": [ - 3977, + 4080, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -160881,44 +163303,44 @@ export default { 38 ], "order_by": [ - 3975, + 4078, "[team_scrim_alerts_order_by!]" ], "where": [ - 3967 + 4070 ] } ], "team_scrim_alerts_by_pk": [ - 3963, + 4066, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 3963, + 4066, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3982, + 4085, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 3967 + 4070 ] } ], "team_scrim_availability": [ - 3990, + 4093, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -160928,19 +163350,19 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "team_scrim_availability_aggregate": [ - 3991, + 4094, { "distinct_on": [ - 4010, + 4113, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -160950,44 +163372,44 @@ export default { 38 ], "order_by": [ - 4008, + 4111, "[team_scrim_availability_order_by!]" ], "where": [ - 3999 + 4102 ] } ], "team_scrim_availability_by_pk": [ - 3990, + 4093, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_availability_stream": [ - 3990, + 4093, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4014, + 4117, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 3999 + 4102 ] } ], "team_scrim_request_proposals": [ - 4018, + 4121, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -160997,19 +163419,19 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "team_scrim_request_proposals_aggregate": [ - 4019, + 4122, { "distinct_on": [ - 4039, + 4142, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -161019,44 +163441,44 @@ export default { 38 ], "order_by": [ - 4037, + 4140, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4027 + 4130 ] } ], "team_scrim_request_proposals_by_pk": [ - 4018, + 4121, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4018, + 4121, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4047, + 4150, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4027 + 4130 ] } ], "team_scrim_requests": [ - 4059, + 4162, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -161066,19 +163488,19 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], "team_scrim_requests_aggregate": [ - 4060, + 4163, { "distinct_on": [ - 4083, + 4186, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -161088,44 +163510,44 @@ export default { 38 ], "order_by": [ - 4081, + 4184, "[team_scrim_requests_order_by!]" ], "where": [ - 4070 + 4173 ] } ], "team_scrim_requests_by_pk": [ - 4059, + 4162, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4059, + 4162, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4093, + 4196, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4070 + 4173 ] } ], "team_scrim_settings": [ - 4105, + 4208, { "distinct_on": [ - 4120, + 4223, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -161135,19 +163557,19 @@ export default { 38 ], "order_by": [ - 4118, + 4221, "[team_scrim_settings_order_by!]" ], "where": [ - 4109 + 4212 ] } ], "team_scrim_settings_aggregate": [ - 4106, + 4209, { "distinct_on": [ - 4120, + 4223, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -161157,44 +163579,44 @@ export default { 38 ], "order_by": [ - 4118, + 4221, "[team_scrim_settings_order_by!]" ], "where": [ - 4109 + 4212 ] } ], "team_scrim_settings_by_pk": [ - 4105, + 4208, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4105, + 4208, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4125, + 4228, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4109 + 4212 ] } ], "team_suggestions": [ - 4133, + 4236, { "distinct_on": [ - 4147, + 4250, "[team_suggestions_select_column!]" ], "limit": [ @@ -161204,19 +163626,19 @@ export default { 38 ], "order_by": [ - 4145, + 4248, "[team_suggestions_order_by!]" ], "where": [ - 4137 + 4240 ] } ], "team_suggestions_aggregate": [ - 4134, + 4237, { "distinct_on": [ - 4147, + 4250, "[team_suggestions_select_column!]" ], "limit": [ @@ -161226,44 +163648,44 @@ export default { 38 ], "order_by": [ - 4145, + 4248, "[team_suggestions_order_by!]" ], "where": [ - 4137 + 4240 ] } ], "team_suggestions_by_pk": [ - 4133, + 4236, { "id": [ - 4641, + 4744, "uuid!" ] } ], "team_suggestions_stream": [ - 4133, + 4236, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4152, + 4255, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4137 + 4240 ] } ], "teams": [ - 4160, + 4263, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -161273,19 +163695,19 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "teams_aggregate": [ - 4161, + 4264, { "distinct_on": [ - 4182, + 4285, "[teams_select_column!]" ], "limit": [ @@ -161295,44 +163717,44 @@ export default { 38 ], "order_by": [ - 4180, + 4283, "[teams_order_by!]" ], "where": [ - 4169 + 4272 ] } ], "teams_by_pk": [ - 4160, + 4263, { "id": [ - 4641, + 4744, "uuid!" ] } ], "teams_stream": [ - 4160, + 4263, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4190, + 4293, "[teams_stream_cursor_input]!" ], "where": [ - 4169 + 4272 ] } ], "tournament_brackets": [ - 4205, + 4308, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -161342,19 +163764,19 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "tournament_brackets_aggregate": [ - 4206, + 4309, { "distinct_on": [ - 4229, + 4332, "[tournament_brackets_select_column!]" ], "limit": [ @@ -161364,44 +163786,44 @@ export default { 38 ], "order_by": [ - 4227, + 4330, "[tournament_brackets_order_by!]" ], "where": [ - 4216 + 4319 ] } ], "tournament_brackets_by_pk": [ - 4205, + 4308, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_brackets_stream": [ - 4205, + 4308, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4239, + 4342, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4216 + 4319 ] } ], "tournament_organizers": [ - 4251, + 4354, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -161411,19 +163833,19 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_organizers_aggregate": [ - 4252, + 4355, { "distinct_on": [ - 4272, + 4375, "[tournament_organizers_select_column!]" ], "limit": [ @@ -161433,48 +163855,48 @@ export default { 38 ], "order_by": [ - 4270, + 4373, "[tournament_organizers_order_by!]" ], "where": [ - 4260 + 4363 ] } ], "tournament_organizers_by_pk": [ - 4251, + 4354, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_organizers_stream": [ - 4251, + 4354, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4280, + 4383, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4260 + 4363 ] } ], "tournament_stage_windows": [ - 4292, + 4395, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -161484,19 +163906,19 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], "tournament_stage_windows_aggregate": [ - 4293, + 4396, { "distinct_on": [ - 4313, + 4416, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -161506,44 +163928,44 @@ export default { 38 ], "order_by": [ - 4311, + 4414, "[tournament_stage_windows_order_by!]" ], "where": [ - 4301 + 4404 ] } ], "tournament_stage_windows_by_pk": [ - 4292, + 4395, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4292, + 4395, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4321, + 4424, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4301 + 4404 ] } ], "tournament_stages": [ - 4333, + 4436, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -161553,19 +163975,19 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "tournament_stages_aggregate": [ - 4334, + 4437, { "distinct_on": [ - 4362, + 4465, "[tournament_stages_select_column!]" ], "limit": [ @@ -161575,44 +163997,44 @@ export default { 38 ], "order_by": [ - 4359, + 4462, "[tournament_stages_order_by!]" ], "where": [ - 4345 + 4448 ] } ], "tournament_stages_by_pk": [ - 4333, + 4436, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_stages_stream": [ - 4333, + 4436, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4372, + 4475, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4345 + 4448 ] } ], "tournament_team_invites": [ - 4384, + 4487, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -161622,19 +164044,19 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], "tournament_team_invites_aggregate": [ - 4385, + 4488, { "distinct_on": [ - 4405, + 4508, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -161644,44 +164066,44 @@ export default { 38 ], "order_by": [ - 4403, + 4506, "[tournament_team_invites_order_by!]" ], "where": [ - 4393 + 4496 ] } ], "tournament_team_invites_by_pk": [ - 4384, + 4487, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4384, + 4487, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4413, + 4516, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4393 + 4496 ] } ], "tournament_team_roster": [ - 4425, + 4528, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -161691,19 +164113,19 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_team_roster_aggregate": [ - 4426, + 4529, { "distinct_on": [ - 4446, + 4549, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -161713,48 +164135,48 @@ export default { 38 ], "order_by": [ - 4444, + 4547, "[tournament_team_roster_order_by!]" ], "where": [ - 4434 + 4537 ] } ], "tournament_team_roster_by_pk": [ - 4425, + 4528, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4425, + 4528, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4454, + 4557, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4434 + 4537 ] } ], "tournament_teams": [ - 4466, + 4569, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -161764,19 +164186,19 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "tournament_teams_aggregate": [ - 4467, + 4570, { "distinct_on": [ - 4488, + 4591, "[tournament_teams_select_column!]" ], "limit": [ @@ -161786,44 +164208,44 @@ export default { 38 ], "order_by": [ - 4486, + 4589, "[tournament_teams_order_by!]" ], "where": [ - 4475 + 4578 ] } ], "tournament_teams_by_pk": [ - 4466, + 4569, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_teams_stream": [ - 4466, + 4569, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4496, + 4599, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4475 + 4578 ] } ], "tournament_trophies": [ - 4508, + 4611, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -161833,19 +164255,19 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophies_aggregate": [ - 4509, + 4612, { "distinct_on": [ - 4531, + 4634, "[tournament_trophies_select_column!]" ], "limit": [ @@ -161855,44 +164277,44 @@ export default { 38 ], "order_by": [ - 4529, + 4632, "[tournament_trophies_order_by!]" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophies_by_pk": [ - 4508, + 4611, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_trophies_stream": [ - 4508, + 4611, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4541, + 4644, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4519 + 4622 ] } ], "tournament_trophy_configs": [ - 4553, + 4656, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -161902,19 +164324,19 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], "tournament_trophy_configs_aggregate": [ - 4554, + 4657, { "distinct_on": [ - 4575, + 4678, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -161924,44 +164346,44 @@ export default { 38 ], "order_by": [ - 4573, + 4676, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4562 + 4665 ] } ], "tournament_trophy_configs_by_pk": [ - 4553, + 4656, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4553, + 4656, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4583, + 4686, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4562 + 4665 ] } ], "tournaments": [ - 4595, + 4698, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -161971,19 +164393,19 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_aggregate": [ - 4596, + 4699, { "distinct_on": [ - 4619, + 4722, "[tournaments_select_column!]" ], "limit": [ @@ -161993,44 +164415,104 @@ export default { 38 ], "order_by": [ - 4617, + 4720, "[tournaments_order_by!]" ], "where": [ - 4606 + 4709 ] } ], "tournaments_by_pk": [ - 4595, + 4698, { "id": [ - 4641, + 4744, "uuid!" ] } ], "tournaments_stream": [ - 4595, + 4698, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4629, + 4732, "[tournaments_stream_cursor_input]!" ], "where": [ - 4606 + 4709 + ] + } + ], + "v_event_matches": [ + 4747, + { + "distinct_on": [ + 4754, + "[v_event_matches_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4753, + "[v_event_matches_order_by!]" + ], + "where": [ + 4750 + ] + } + ], + "v_event_matches_aggregate": [ + 4748, + { + "distinct_on": [ + 4754, + "[v_event_matches_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 4753, + "[v_event_matches_order_by!]" + ], + "where": [ + 4750 + ] + } + ], + "v_event_matches_stream": [ + 4747, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 4755, + "[v_event_matches_stream_cursor_input]!" + ], + "where": [ + 4750 ] } ], "v_event_player_stats": [ - 4644, + 4757, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -162040,19 +164522,19 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "v_event_player_stats_aggregate": [ - 4645, + 4758, { "distinct_on": [ - 4670, + 4783, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -162062,35 +164544,35 @@ export default { 38 ], "order_by": [ - 4669, + 4782, "[v_event_player_stats_order_by!]" ], "where": [ - 4663 + 4776 ] } ], "v_event_player_stats_stream": [ - 4644, + 4757, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4685, + 4798, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 4663 + 4776 ] } ], "v_gpu_pool_status": [ - 4695, + 4808, { "distinct_on": [ - 4703, + 4816, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -162100,19 +164582,19 @@ export default { 38 ], "order_by": [ - 4702, + 4815, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4699 + 4812 ] } ], "v_gpu_pool_status_aggregate": [ - 4696, + 4809, { "distinct_on": [ - 4703, + 4816, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -162122,35 +164604,35 @@ export default { 38 ], "order_by": [ - 4702, + 4815, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4699 + 4812 ] } ], "v_gpu_pool_status_stream": [ - 4695, + 4808, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4707, + 4820, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4699 + 4812 ] } ], "v_league_division_standings": [ - 4713, + 4826, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -162160,19 +164642,19 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "v_league_division_standings_aggregate": [ - 4714, + 4827, { "distinct_on": [ - 4729, + 4842, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -162182,35 +164664,35 @@ export default { 38 ], "order_by": [ - 4728, + 4841, "[v_league_division_standings_order_by!]" ], "where": [ - 4722 + 4835 ] } ], "v_league_division_standings_stream": [ - 4713, + 4826, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4736, + 4849, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4722 + 4835 ] } ], "v_league_season_player_stats": [ - 4746, + 4859, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -162220,19 +164702,19 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], "v_league_season_player_stats_aggregate": [ - 4747, + 4860, { "distinct_on": [ - 4772, + 4885, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -162242,35 +164724,35 @@ export default { 38 ], "order_by": [ - 4771, + 4884, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4765 + 4878 ] } ], "v_league_season_player_stats_stream": [ - 4746, + 4859, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4787, + 4900, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4765 + 4878 ] } ], "v_match_captains": [ - 4797, + 4910, { "distinct_on": [ - 4809, + 4922, "[v_match_captains_select_column!]" ], "limit": [ @@ -162280,19 +164762,19 @@ export default { 38 ], "order_by": [ - 4808, + 4921, "[v_match_captains_order_by!]" ], "where": [ - 4801 + 4914 ] } ], "v_match_captains_aggregate": [ - 4798, + 4911, { "distinct_on": [ - 4809, + 4922, "[v_match_captains_select_column!]" ], "limit": [ @@ -162302,35 +164784,35 @@ export default { 38 ], "order_by": [ - 4808, + 4921, "[v_match_captains_order_by!]" ], "where": [ - 4801 + 4914 ] } ], "v_match_captains_stream": [ - 4797, + 4910, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4814, + 4927, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4801 + 4914 ] } ], "v_match_clutches": [ - 4821, + 4934, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -162340,19 +164822,19 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], "v_match_clutches_aggregate": [ - 4822, + 4935, { "distinct_on": [ - 4837, + 4950, "[v_match_clutches_select_column!]" ], "limit": [ @@ -162362,35 +164844,35 @@ export default { 38 ], "order_by": [ - 4836, + 4949, "[v_match_clutches_order_by!]" ], "where": [ - 4830 + 4943 ] } ], "v_match_clutches_stream": [ - 4821, + 4934, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4844, + 4957, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4830 + 4943 ] } ], "v_match_kill_pairs": [ - 4854, + 4967, { "distinct_on": [ - 4862, + 4975, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -162400,19 +164882,19 @@ export default { 38 ], "order_by": [ - 4861, + 4974, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4858 + 4971 ] } ], "v_match_kill_pairs_aggregate": [ - 4855, + 4968, { "distinct_on": [ - 4862, + 4975, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -162422,35 +164904,35 @@ export default { 38 ], "order_by": [ - 4861, + 4974, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4858 + 4971 ] } ], "v_match_kill_pairs_stream": [ - 4854, + 4967, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4866, + 4979, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4858 + 4971 ] } ], "v_match_lineup_buy_types": [ - 4872, + 4985, { "distinct_on": [ - 4880, + 4993, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -162460,19 +164942,19 @@ export default { 38 ], "order_by": [ - 4879, + 4992, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4876 + 4989 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4873, + 4986, { "distinct_on": [ - 4880, + 4993, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -162482,35 +164964,35 @@ export default { 38 ], "order_by": [ - 4879, + 4992, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4876 + 4989 ] } ], "v_match_lineup_buy_types_stream": [ - 4872, + 4985, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4884, + 4997, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4876 + 4989 ] } ], "v_match_lineup_map_stats": [ - 4890, + 5003, { "distinct_on": [ - 4898, + 5011, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -162520,19 +165002,19 @@ export default { 38 ], "order_by": [ - 4897, + 5010, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4894 + 5007 ] } ], "v_match_lineup_map_stats_aggregate": [ - 4891, + 5004, { "distinct_on": [ - 4898, + 5011, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -162542,35 +165024,35 @@ export default { 38 ], "order_by": [ - 4897, + 5010, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 4894 + 5007 ] } ], "v_match_lineup_map_stats_stream": [ - 4890, + 5003, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4902, + 5015, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 4894 + 5007 ] } ], "v_match_map_backup_rounds": [ - 4908, + 5021, { "distinct_on": [ - 4919, + 5032, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -162580,19 +165062,19 @@ export default { 38 ], "order_by": [ - 4918, + 5031, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4912 + 5025 ] } ], "v_match_map_backup_rounds_aggregate": [ - 4909, + 5022, { "distinct_on": [ - 4919, + 5032, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -162602,35 +165084,35 @@ export default { 38 ], "order_by": [ - 4918, + 5031, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 4912 + 5025 ] } ], "v_match_map_backup_rounds_stream": [ - 4908, + 5021, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4924, + 5037, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 4912 + 5025 ] } ], "v_match_player_buy_types": [ - 4931, + 5044, { "distinct_on": [ - 4939, + 5052, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -162640,19 +165122,19 @@ export default { 38 ], "order_by": [ - 4938, + 5051, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4935 + 5048 ] } ], "v_match_player_buy_types_aggregate": [ - 4932, + 5045, { "distinct_on": [ - 4939, + 5052, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -162662,35 +165144,35 @@ export default { 38 ], "order_by": [ - 4938, + 5051, "[v_match_player_buy_types_order_by!]" ], "where": [ - 4935 + 5048 ] } ], "v_match_player_buy_types_stream": [ - 4931, + 5044, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4943, + 5056, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 4935 + 5048 ] } ], "v_match_player_opening_duels": [ - 4949, + 5062, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -162700,19 +165182,19 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "v_match_player_opening_duels_aggregate": [ - 4950, + 5063, { "distinct_on": [ - 4965, + 5078, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -162722,35 +165204,35 @@ export default { 38 ], "order_by": [ - 4964, + 5077, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 4958 + 5071 ] } ], "v_match_player_opening_duels_stream": [ - 4949, + 5062, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4972, + 5085, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 4958 + 5071 ] } ], "v_player_arch_nemesis": [ - 4982, + 5095, { "distinct_on": [ - 4990, + 5103, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -162760,19 +165242,19 @@ export default { 38 ], "order_by": [ - 4989, + 5102, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4986 + 5099 ] } ], "v_player_arch_nemesis_aggregate": [ - 4983, + 5096, { "distinct_on": [ - 4990, + 5103, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -162782,35 +165264,35 @@ export default { 38 ], "order_by": [ - 4989, + 5102, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 4986 + 5099 ] } ], "v_player_arch_nemesis_stream": [ - 4982, + 5095, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4994, + 5107, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 4986 + 5099 ] } ], "v_player_damage": [ - 5000, + 5113, { "distinct_on": [ - 5008, + 5121, "[v_player_damage_select_column!]" ], "limit": [ @@ -162820,19 +165302,19 @@ export default { 38 ], "order_by": [ - 5007, + 5120, "[v_player_damage_order_by!]" ], "where": [ - 5004 + 5117 ] } ], "v_player_damage_aggregate": [ - 5001, + 5114, { "distinct_on": [ - 5008, + 5121, "[v_player_damage_select_column!]" ], "limit": [ @@ -162842,35 +165324,35 @@ export default { 38 ], "order_by": [ - 5007, + 5120, "[v_player_damage_order_by!]" ], "where": [ - 5004 + 5117 ] } ], "v_player_damage_stream": [ - 5000, + 5113, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5012, + 5125, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5004 + 5117 ] } ], "v_player_elo": [ - 5018, + 5131, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -162880,19 +165362,19 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "v_player_elo_aggregate": [ - 5019, + 5132, { "distinct_on": [ - 5044, + 5157, "[v_player_elo_select_column!]" ], "limit": [ @@ -162902,35 +165384,35 @@ export default { 38 ], "order_by": [ - 5043, + 5156, "[v_player_elo_order_by!]" ], "where": [ - 5037 + 5150 ] } ], "v_player_elo_stream": [ - 5018, + 5131, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5059, + 5172, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5037 + 5150 ] } ], "v_player_map_losses": [ - 5069, + 5182, { "distinct_on": [ - 5077, + 5190, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -162940,19 +165422,19 @@ export default { 38 ], "order_by": [ - 5076, + 5189, "[v_player_map_losses_order_by!]" ], "where": [ - 5073 + 5186 ] } ], "v_player_map_losses_aggregate": [ - 5070, + 5183, { "distinct_on": [ - 5077, + 5190, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -162962,35 +165444,35 @@ export default { 38 ], "order_by": [ - 5076, + 5189, "[v_player_map_losses_order_by!]" ], "where": [ - 5073 + 5186 ] } ], "v_player_map_losses_stream": [ - 5069, + 5182, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5081, + 5194, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5073 + 5186 ] } ], "v_player_map_wins": [ - 5087, + 5200, { "distinct_on": [ - 5095, + 5208, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -163000,19 +165482,19 @@ export default { 38 ], "order_by": [ - 5094, + 5207, "[v_player_map_wins_order_by!]" ], "where": [ - 5091 + 5204 ] } ], "v_player_map_wins_aggregate": [ - 5088, + 5201, { "distinct_on": [ - 5095, + 5208, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -163022,35 +165504,35 @@ export default { 38 ], "order_by": [ - 5094, + 5207, "[v_player_map_wins_order_by!]" ], "where": [ - 5091 + 5204 ] } ], "v_player_map_wins_stream": [ - 5087, + 5200, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5099, + 5212, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5091 + 5204 ] } ], "v_player_match_head_to_head": [ - 5105, + 5218, { "distinct_on": [ - 5113, + 5226, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -163060,19 +165542,19 @@ export default { 38 ], "order_by": [ - 5112, + 5225, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5109 + 5222 ] } ], "v_player_match_head_to_head_aggregate": [ - 5106, + 5219, { "distinct_on": [ - 5113, + 5226, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -163082,35 +165564,35 @@ export default { 38 ], "order_by": [ - 5112, + 5225, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5109 + 5222 ] } ], "v_player_match_head_to_head_stream": [ - 5105, + 5218, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5117, + 5230, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5109 + 5222 ] } ], "v_player_match_map_hltv": [ - 5123, + 5236, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -163120,19 +165602,19 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "v_player_match_map_hltv_aggregate": [ - 5124, + 5237, { "distinct_on": [ - 5141, + 5254, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -163142,35 +165624,35 @@ export default { 38 ], "order_by": [ - 5140, + 5253, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5132 + 5245 ] } ], "v_player_match_map_hltv_stream": [ - 5123, + 5236, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5149, + 5262, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5132 + 5245 ] } ], "v_player_match_map_roles": [ - 5160, + 5273, { "distinct_on": [ - 5168, + 5281, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -163180,19 +165662,19 @@ export default { 38 ], "order_by": [ - 5167, + 5280, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5164 + 5277 ] } ], "v_player_match_map_roles_aggregate": [ - 5161, + 5274, { "distinct_on": [ - 5168, + 5281, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -163202,35 +165684,35 @@ export default { 38 ], "order_by": [ - 5167, + 5280, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5164 + 5277 ] } ], "v_player_match_map_roles_stream": [ - 5160, + 5273, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5172, + 5285, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5164 + 5277 ] } ], "v_player_match_performance": [ - 5178, + 5291, { "distinct_on": [ - 5186, + 5299, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -163240,19 +165722,19 @@ export default { 38 ], "order_by": [ - 5185, + 5298, "[v_player_match_performance_order_by!]" ], "where": [ - 5182 + 5295 ] } ], "v_player_match_performance_aggregate": [ - 5179, + 5292, { "distinct_on": [ - 5186, + 5299, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -163262,35 +165744,35 @@ export default { 38 ], "order_by": [ - 5185, + 5298, "[v_player_match_performance_order_by!]" ], "where": [ - 5182 + 5295 ] } ], "v_player_match_performance_stream": [ - 5178, + 5291, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5190, + 5303, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5182 + 5295 ] } ], "v_player_match_rating": [ - 5196, + 5309, { "distinct_on": [ - 5204, + 5317, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -163300,19 +165782,19 @@ export default { 38 ], "order_by": [ - 5203, + 5316, "[v_player_match_rating_order_by!]" ], "where": [ - 5200 + 5313 ] } ], "v_player_match_rating_aggregate": [ - 5197, + 5310, { "distinct_on": [ - 5204, + 5317, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -163322,35 +165804,35 @@ export default { 38 ], "order_by": [ - 5203, + 5316, "[v_player_match_rating_order_by!]" ], "where": [ - 5200 + 5313 ] } ], "v_player_match_rating_stream": [ - 5196, + 5309, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5208, + 5321, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5200 + 5313 ] } ], "v_player_multi_kills": [ - 5214, + 5327, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -163360,19 +165842,19 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], "v_player_multi_kills_aggregate": [ - 5215, + 5328, { "distinct_on": [ - 5230, + 5343, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -163382,35 +165864,35 @@ export default { 38 ], "order_by": [ - 5229, + 5342, "[v_player_multi_kills_order_by!]" ], "where": [ - 5223 + 5336 ] } ], "v_player_multi_kills_stream": [ - 5214, + 5327, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5237, + 5350, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5223 + 5336 ] } ], "v_player_weapon_damage": [ - 5247, + 5360, { "distinct_on": [ - 5255, + 5368, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -163420,19 +165902,19 @@ export default { 38 ], "order_by": [ - 5254, + 5367, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5251 + 5364 ] } ], "v_player_weapon_damage_aggregate": [ - 5248, + 5361, { "distinct_on": [ - 5255, + 5368, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -163442,35 +165924,35 @@ export default { 38 ], "order_by": [ - 5254, + 5367, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5251 + 5364 ] } ], "v_player_weapon_damage_stream": [ - 5247, + 5360, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5259, + 5372, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5251 + 5364 ] } ], "v_player_weapon_kills": [ - 5265, + 5378, { "distinct_on": [ - 5273, + 5386, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -163480,19 +165962,19 @@ export default { 38 ], "order_by": [ - 5272, + 5385, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5269 + 5382 ] } ], "v_player_weapon_kills_aggregate": [ - 5266, + 5379, { "distinct_on": [ - 5273, + 5386, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -163502,35 +165984,35 @@ export default { 38 ], "order_by": [ - 5272, + 5385, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5269 + 5382 ] } ], "v_player_weapon_kills_stream": [ - 5265, + 5378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5277, + 5390, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5269 + 5382 ] } ], "v_pool_maps": [ - 5283, + 5396, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -163540,19 +166022,19 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], "v_pool_maps_aggregate": [ - 5284, + 5397, { "distinct_on": [ - 5300, + 5413, "[v_pool_maps_select_column!]" ], "limit": [ @@ -163562,35 +166044,35 @@ export default { 38 ], "order_by": [ - 5299, + 5412, "[v_pool_maps_order_by!]" ], "where": [ - 5292 + 5405 ] } ], "v_pool_maps_stream": [ - 5283, + 5396, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5304, + 5417, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5292 + 5405 ] } ], "v_steam_account_pool_status": [ - 5307, + 5420, { "distinct_on": [ - 5315, + 5428, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -163600,19 +166082,19 @@ export default { 38 ], "order_by": [ - 5314, + 5427, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5311 + 5424 ] } ], "v_steam_account_pool_status_aggregate": [ - 5308, + 5421, { "distinct_on": [ - 5315, + 5428, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -163622,35 +166104,35 @@ export default { 38 ], "order_by": [ - 5314, + 5427, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5311 + 5424 ] } ], "v_steam_account_pool_status_stream": [ - 5307, + 5420, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5319, + 5432, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5311 + 5424 ] } ], "v_team_ranks": [ - 5325, + 5438, { "distinct_on": [ - 5335, + 5448, "[v_team_ranks_select_column!]" ], "limit": [ @@ -163660,19 +166142,19 @@ export default { 38 ], "order_by": [ - 5334, + 5447, "[v_team_ranks_order_by!]" ], "where": [ - 5329 + 5442 ] } ], "v_team_ranks_aggregate": [ - 5326, + 5439, { "distinct_on": [ - 5335, + 5448, "[v_team_ranks_select_column!]" ], "limit": [ @@ -163682,35 +166164,35 @@ export default { 38 ], "order_by": [ - 5334, + 5447, "[v_team_ranks_order_by!]" ], "where": [ - 5329 + 5442 ] } ], "v_team_ranks_stream": [ - 5325, + 5438, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5339, + 5452, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5329 + 5442 ] } ], "v_team_reputation": [ - 5345, + 5458, { "distinct_on": [ - 5355, + 5468, "[v_team_reputation_select_column!]" ], "limit": [ @@ -163720,19 +166202,19 @@ export default { 38 ], "order_by": [ - 5354, + 5467, "[v_team_reputation_order_by!]" ], "where": [ - 5349 + 5462 ] } ], "v_team_reputation_aggregate": [ - 5346, + 5459, { "distinct_on": [ - 5355, + 5468, "[v_team_reputation_select_column!]" ], "limit": [ @@ -163742,35 +166224,35 @@ export default { 38 ], "order_by": [ - 5354, + 5467, "[v_team_reputation_order_by!]" ], "where": [ - 5349 + 5462 ] } ], "v_team_reputation_stream": [ - 5345, + 5458, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5359, + 5472, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5349 + 5462 ] } ], "v_team_stage_results": [ - 5365, + 5478, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -163780,19 +166262,19 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "v_team_stage_results_aggregate": [ - 5366, + 5479, { "distinct_on": [ - 5397, + 5510, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -163802,48 +166284,48 @@ export default { 38 ], "order_by": [ - 5395, + 5508, "[v_team_stage_results_order_by!]" ], "where": [ - 5384 + 5497 ] } ], "v_team_stage_results_by_pk": [ - 5365, + 5478, { "tournament_stage_id": [ - 4641, + 4744, "uuid!" ], "tournament_team_id": [ - 4641, + 4744, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5365, + 5478, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5413, + 5526, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5384 + 5497 ] } ], "v_team_tournament_results": [ - 5425, + 5538, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -163853,19 +166335,19 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "v_team_tournament_results_aggregate": [ - 5426, + 5539, { "distinct_on": [ - 5451, + 5564, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -163875,35 +166357,35 @@ export default { 38 ], "order_by": [ - 5450, + 5563, "[v_team_tournament_results_order_by!]" ], "where": [ - 5444 + 5557 ] } ], "v_team_tournament_results_stream": [ - 5425, + 5538, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5466, + 5579, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5444 + 5557 ] } ], "v_tournament_player_stats": [ - 5476, + 5589, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -163913,19 +166395,19 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], "v_tournament_player_stats_aggregate": [ - 5477, + 5590, { "distinct_on": [ - 5502, + 5615, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -163935,27 +166417,27 @@ export default { 38 ], "order_by": [ - 5501, + 5614, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5495 + 5608 ] } ], "v_tournament_player_stats_stream": [ - 5476, + 5589, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5517, + 5630, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5495 + 5608 ] } ], diff --git a/hasura/functions/events/event_access.sql b/hasura/functions/events/event_access.sql new file mode 100644 index 00000000..214350fc --- /dev/null +++ b/hasura/functions/events/event_access.sql @@ -0,0 +1,122 @@ +-- Visibility/upload access primitives for events. Single file so +-- is_event_member exists before its callers within one boot apply. + +-- LANGUAGE sql is safe here: every referenced relation is created in the +-- migrations boot phase, which runs before hasura/functions. +CREATE OR REPLACE FUNCTION public.is_event_member( + event public.events, + _steam_id bigint +) RETURNS boolean +LANGUAGE sql +STABLE +AS $$ + SELECT _steam_id IS NOT NULL AND ( + event.organizer_steam_id = _steam_id + OR EXISTS ( + SELECT 1 FROM public.event_organizers eo + WHERE eo.event_id = event.id AND eo.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 FROM public.event_players ep + WHERE ep.event_id = event.id AND ep.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_teams et + JOIN public.team_roster tr ON tr.team_id = et.team_id + WHERE et.event_id = event.id AND tr.player_steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_team_roster ttr + ON ttr.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND ttr.player_steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_organizers torg + ON torg.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND torg.steam_id = _steam_id + ) + OR EXISTS ( + SELECT 1 + FROM public.event_tournaments evt + JOIN public.tournament_teams tt + ON tt.tournament_id = evt.tournament_id + WHERE evt.event_id = event.id AND tt.owner_steam_id = _steam_id + ) + ); +$$; + +-- LANGUAGE plpgsql: bodies are not parsed for object references at CREATE +-- time, so ordering against sibling function files never matters on a +-- fresh install (see get_event_leaderboard.sql for the same rationale). +CREATE OR REPLACE FUNCTION public.can_view_event( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE plpgsql +STABLE +AS $$ +DECLARE + _steam_id bigint := nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint; +BEGIN + IF hasura_session ->> 'x-hasura-role' + IN ('admin', 'administrator', 'tournament_organizer') THEN + RETURN true; + END IF; + + IF event.visibility = 'Public' THEN + RETURN true; + END IF; + + IF _steam_id IS NULL THEN + RETURN false; + END IF; + + IF public.is_event_member(event, _steam_id) THEN + RETURN true; + END IF; + + IF event.visibility = 'Friends' THEN + -- friends holds one row per friendship regardless of direction, so + -- match the viewer against both columns (see v_my_friends.sql). + RETURN EXISTS ( + SELECT 1 + FROM public.friends f + WHERE f.status = 'Accepted' + AND (f.player_steam_id = _steam_id + OR f.other_player_steam_id = _steam_id) + AND public.is_event_member( + event, + CASE WHEN f.player_steam_id = _steam_id + THEN f.other_player_steam_id + ELSE f.player_steam_id END + ) + ); + END IF; + + RETURN false; +END; +$$; + +CREATE OR REPLACE FUNCTION public.can_upload_event_media( + event public.events, + hasura_session json +) RETURNS boolean +LANGUAGE plpgsql +STABLE +AS $$ +BEGIN + RETURN public.is_event_organizer(event, hasura_session) + OR ( + event.media_access = 'Involved' + AND public.is_event_member( + event, + nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint + ) + ); +END; +$$; diff --git a/hasura/functions/events/get_event_leaderboard.sql b/hasura/functions/events/get_event_leaderboard.sql index 8d48d08b..64f64b52 100644 --- a/hasura/functions/events/get_event_leaderboard.sql +++ b/hasura/functions/events/get_event_leaderboard.sql @@ -3,6 +3,7 @@ -- a second signature exists (SQLSTATE 42725). Drop known signatures first so -- re-applying this file always lands on exactly one get_event_leaderboard. DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); -- LANGUAGE plpgsql (not sql): a "sql"-language body is parsed for relation -- references at CREATE time, so this function would fail to create on a @@ -13,7 +14,8 @@ CREATE OR REPLACE FUNCTION public.get_event_leaderboard( _event_id UUID, _category TEXT, _match_type TEXT DEFAULT NULL, - _min_rounds INT DEFAULT 10 + _min_rounds INT DEFAULT 10, + hasura_session JSON DEFAULT NULL ) RETURNS SETOF public.leaderboard_entries LANGUAGE plpgsql STABLE @@ -29,25 +31,26 @@ BEGIN _min_rounds := 0; END IF; - -- Setup events are hidden from the public (see the events table select - -- permissions and the e_event_status enum). This function is exposed to the - -- guest role and takes an arbitrary event id, so guard it here: return an - -- empty leaderboard for a Setup or unknown event rather than computing and - -- leaking standings for an event that has not been made public yet. + -- This function is exposed to the guest role and takes an arbitrary event + -- id, so it must apply the same guard as the events table select + -- permissions: Private/Friends events are only visible per can_view_event. + -- Otherwise a caller could compute standings for an event they cannot see. IF NOT EXISTS ( - SELECT 1 FROM public.events WHERE id = _event_id AND status <> 'Setup' + SELECT 1 FROM public.events e + WHERE e.id = _event_id + AND public.can_view_event(e, hasura_session) ) THEN RETURN; END IF; RETURN QUERY + -- event_match_links is the trigger-maintained materialization of + -- v_event_matches (tournaments + windowed teams/players), so stats + -- aggregate over an indexed table instead of re-deriving the joins. WITH e_matches AS ( - SELECT DISTINCT tb.match_id - FROM event_tournaments et - JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id - JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id - WHERE et.event_id = _event_id - AND tb.match_id IS NOT NULL + SELECT eml.match_id + FROM public.event_match_links eml + WHERE eml.event_id = _event_id ), f_matches AS ( SELECT em.match_id diff --git a/hasura/functions/match/get_match_server_plugin_runtime.sql b/hasura/functions/match/get_match_server_plugin_runtime.sql new file mode 100644 index 00000000..0725c786 --- /dev/null +++ b/hasura/functions/match/get_match_server_plugin_runtime.sql @@ -0,0 +1,20 @@ +CREATE OR REPLACE FUNCTION public.get_match_server_plugin_runtime(match public.matches) +RETURNS text +LANGUAGE plpgsql +STABLE +AS $$ +DECLARE + runtime text; +BEGIN + IF match.server_id IS NULL THEN + RETURN NULL; + END IF; + + SELECT plugin_runtime + INTO runtime + FROM servers + WHERE id = match.server_id; + + RETURN runtime; +END +$$; diff --git a/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml index 8334aece..ece0d61b 100644 --- a/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml +++ b/hasura/metadata/databases/default/functions/public_get_event_leaderboard.yaml @@ -4,5 +4,6 @@ function: configuration: custom_root_fields: {} exposed_as: query + session_argument: hasura_session permissions: - role: guest diff --git a/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml b/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml new file mode 100644 index 00000000..853a71c4 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_event_media_access.yaml @@ -0,0 +1,12 @@ +table: + name: e_event_media_access + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_event_status.yaml b/hasura/metadata/databases/default/tables/public_e_event_visibility.yaml similarity index 86% rename from hasura/metadata/databases/default/tables/public_e_event_status.yaml rename to hasura/metadata/databases/default/tables/public_e_event_visibility.yaml index 4d5dd561..f3b9d2a6 100644 --- a/hasura/metadata/databases/default/tables/public_e_event_status.yaml +++ b/hasura/metadata/databases/default/tables/public_e_event_visibility.yaml @@ -1,5 +1,5 @@ table: - name: e_event_status + name: e_event_visibility schema: public is_enum: true select_permissions: diff --git a/hasura/metadata/databases/default/tables/public_event_match_links.yaml b/hasura/metadata/databases/default/tables/public_event_match_links.yaml new file mode 100644 index 00000000..fbea8b04 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_match_links.yaml @@ -0,0 +1,35 @@ +table: + name: event_match_links + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: match + using: + foreign_key_constraint_on: match_id +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - match_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - match_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_media.yaml b/hasura/metadata/databases/default/tables/public_event_media.yaml new file mode 100644 index 00000000..706588d5 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_media.yaml @@ -0,0 +1,75 @@ +table: + name: event_media + schema: public +object_relationships: + - name: event + using: + foreign_key_constraint_on: event_id + - name: uploader + using: + foreign_key_constraint_on: uploader_steam_id +array_relationships: + - name: players + using: + foreign_key_constraint_on: + column: media_id + table: + name: event_media_players + schema: public +select_permissions: + - role: guest + permission: + columns: + - created_at + - event_id + - filename + - id + - mime_type + - size + - thumbnail_filename + - title + - uploader_steam_id + filter: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - event_id + - filename + - id + - mime_type + - size + - thumbnail_filename + - title + - uploader_steam_id + filter: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +update_permissions: + - role: user + permission: + columns: + - title + filter: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + check: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_media_players.yaml b/hasura/metadata/databases/default/tables/public_event_media_players.yaml new file mode 100644 index 00000000..c5aee134 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_event_media_players.yaml @@ -0,0 +1,64 @@ +table: + name: event_media_players + schema: public +object_relationships: + - name: media + using: + foreign_key_constraint_on: media_id + - name: player + using: + foreign_key_constraint_on: steam_id +insert_permissions: + - role: user + permission: + check: + media: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + columns: + - media_id + - steam_id + comment: "" +select_permissions: + - role: guest + permission: + columns: + - created_at + - media_id + - steam_id + filter: + media: + event: + visibility: + _eq: Public + allow_aggregations: true + comment: "" + - role: user + permission: + columns: + - created_at + - media_id + - steam_id + filter: + media: + event: + can_view: + _eq: true + allow_aggregations: true + comment: "" +delete_permissions: + - role: user + permission: + filter: + media: + _or: + - uploader_steam_id: + _eq: X-Hasura-User-Id + - event: + is_organizer: + _eq: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_organizers.yaml b/hasura/metadata/databases/default/tables/public_event_organizers.yaml index e05fe3ff..7bb472cb 100644 --- a/hasura/metadata/databases/default/tables/public_event_organizers.yaml +++ b/hasura/metadata/databases/default/tables/public_event_organizers.yaml @@ -20,8 +20,8 @@ insert_permissions: permission: check: event: - organizer_steam_id: - _eq: X-Hasura-User-Id + is_organizer: + _eq: true columns: - event_id - steam_id @@ -35,8 +35,8 @@ select_permissions: - steam_id filter: event: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: user @@ -46,13 +46,9 @@ select_permissions: - event_id - steam_id filter: - _or: - - event: - is_organizer: - _eq: true - - event: - status: - _neq: Setup + event: + can_view: + _eq: true allow_aggregations: true comment: "" delete_permissions: @@ -64,6 +60,6 @@ delete_permissions: permission: filter: event: - organizer_steam_id: - _eq: X-Hasura-User-Id + is_organizer: + _eq: true comment: "" diff --git a/hasura/metadata/databases/default/tables/public_event_players.yaml b/hasura/metadata/databases/default/tables/public_event_players.yaml index df36b4fd..3c157f66 100644 --- a/hasura/metadata/databases/default/tables/public_event_players.yaml +++ b/hasura/metadata/databases/default/tables/public_event_players.yaml @@ -28,8 +28,8 @@ select_permissions: - steam_id filter: event: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: user @@ -39,13 +39,9 @@ select_permissions: - event_id - steam_id filter: - _or: - - event: - is_organizer: - _eq: true - - event: - status: - _neq: Setup + event: + can_view: + _eq: true allow_aggregations: true comment: "" delete_permissions: diff --git a/hasura/metadata/databases/default/tables/public_event_teams.yaml b/hasura/metadata/databases/default/tables/public_event_teams.yaml index 5cb46f97..da4ff3c9 100644 --- a/hasura/metadata/databases/default/tables/public_event_teams.yaml +++ b/hasura/metadata/databases/default/tables/public_event_teams.yaml @@ -28,8 +28,8 @@ select_permissions: - team_id filter: event: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: user @@ -39,13 +39,9 @@ select_permissions: - event_id - team_id filter: - _or: - - event: - is_organizer: - _eq: true - - event: - status: - _neq: Setup + event: + can_view: + _eq: true allow_aggregations: true comment: "" delete_permissions: diff --git a/hasura/metadata/databases/default/tables/public_event_tournaments.yaml b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml index 152d8145..4928ed68 100644 --- a/hasura/metadata/databases/default/tables/public_event_tournaments.yaml +++ b/hasura/metadata/databases/default/tables/public_event_tournaments.yaml @@ -28,8 +28,8 @@ select_permissions: - tournament_id filter: event: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: user @@ -39,13 +39,9 @@ select_permissions: - event_id - tournament_id filter: - _or: - - event: - is_organizer: - _eq: true - - event: - status: - _neq: Setup + event: + can_view: + _eq: true allow_aggregations: true comment: "" delete_permissions: diff --git a/hasura/metadata/databases/default/tables/public_events.yaml b/hasura/metadata/databases/default/tables/public_events.yaml index e40e0c82..b300b363 100644 --- a/hasura/metadata/databases/default/tables/public_events.yaml +++ b/hasura/metadata/databases/default/tables/public_events.yaml @@ -2,10 +2,20 @@ table: name: events schema: public object_relationships: + - name: banner + using: + foreign_key_constraint_on: banner_media_id - name: organizer using: foreign_key_constraint_on: organizer_steam_id array_relationships: + - name: media + using: + foreign_key_constraint_on: + column: event_id + table: + name: event_media + schema: public - name: organizers using: foreign_key_constraint_on: @@ -44,6 +54,18 @@ array_relationships: name: event_tournaments schema: public computed_fields: + - name: can_upload_media + definition: + function: + name: can_upload_event_media + schema: public + session_argument: hasura_session + - name: can_view + definition: + function: + name: can_view_event + schema: public + session_argument: hasura_session - name: is_organizer definition: function: @@ -52,97 +74,32 @@ computed_fields: session_argument: hasura_session insert_permissions: - role: administrator - permission: - check: {} - set: - organizer_steam_id: x-hasura-user-id - columns: - - description - - ends_at - - name - - starts_at - comment: "" - - role: match_organizer permission: check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role - - _exists: - _table: - name: settings - schema: public - _where: - _and: - - name: - _eq: public.create_events_role - - value: - _in: - - user - - verified_user - - streamer - - moderator - - match_organizer + _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.events_enabled + - value: + _eq: "true" set: organizer_steam_id: x-hasura-user-id columns: - description - ends_at + - media_access - name - starts_at + - visibility comment: "" - - role: moderator - permission: - check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role - - _exists: - _table: - name: settings - schema: public - _where: - _and: - - name: - _eq: public.create_events_role - - value: - _in: - - user - - verified_user - - streamer - - moderator - set: - organizer_steam_id: x-hasura-user-id - columns: - - description - - ends_at - - name - - starts_at - comment: "" - - role: streamer + - role: match_organizer permission: check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role + _and: - _exists: _table: name: settings @@ -150,32 +107,47 @@ insert_permissions: _where: _and: - name: - _eq: public.create_events_role + _eq: public.events_enabled - value: - _in: - - user - - verified_user - - streamer + _eq: "true" + - _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer set: organizer_steam_id: x-hasura-user-id columns: - description - ends_at + - media_access - name - starts_at + - visibility comment: "" - role: tournament_organizer permission: check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role + _and: - _exists: _table: name: settings @@ -183,156 +155,126 @@ insert_permissions: _where: _and: - name: - _eq: public.create_events_role + _eq: public.events_enabled - value: - _in: - - user - - verified_user - - streamer - - moderator - - match_organizer - - tournament_organizer - set: - organizer_steam_id: x-hasura-user-id - columns: - - description - - ends_at - - name - - starts_at - comment: "" - - role: user - permission: - check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role - - _exists: - _table: - name: settings - schema: public - _where: - _and: - - name: - _eq: public.create_events_role - - value: - _in: - - user - set: - organizer_steam_id: x-hasura-user-id - columns: - - description - - ends_at - - name - - starts_at - comment: "" - - role: verified_user - permission: - check: - _or: - - _not: - _exists: - _table: - name: settings - schema: public - _where: - name: - _eq: public.create_events_role - - _exists: - _table: - name: settings - schema: public - _where: - _and: - - name: - _eq: public.create_events_role - - value: - _in: - - user - - verified_user + _eq: "true" + - _or: + - _not: + _exists: + _table: + name: settings + schema: public + _where: + name: + _eq: public.create_events_role + - _exists: + _table: + name: settings + schema: public + _where: + _and: + - name: + _eq: public.create_events_role + - value: + _in: + - user + - verified_user + - streamer + - moderator + - match_organizer + - tournament_organizer set: organizer_steam_id: x-hasura-user-id columns: - description - ends_at + - media_access - name - starts_at + - visibility comment: "" select_permissions: - role: guest permission: columns: + - banner_media_id - created_at - description - ends_at + - hide_creator_organizer - id + - media_access - name - organizer_steam_id - starts_at - - status + - visibility computed_fields: + - can_upload_media + - can_view - is_organizer filter: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: tournament_organizer permission: columns: + - banner_media_id - created_at - description - ends_at + - hide_creator_organizer - id + - media_access - name - organizer_steam_id - starts_at - - status + - visibility computed_fields: + - can_upload_media + - can_view - is_organizer filter: - _or: - - is_organizer: - _eq: true - - status: - _neq: Setup + can_view: + _eq: true allow_aggregations: true comment: "" - role: user permission: columns: + - banner_media_id - created_at - description - ends_at + - hide_creator_organizer - id + - media_access - name - organizer_steam_id - starts_at - - status + - visibility computed_fields: + - can_upload_media + - can_view - is_organizer filter: - _or: - - is_organizer: - _eq: true - - status: - _neq: Setup + can_view: + _eq: true allow_aggregations: true comment: "" update_permissions: - role: tournament_organizer permission: columns: + - banner_media_id - description - ends_at + - hide_creator_organizer + - media_access - name - starts_at - - status + - visibility filter: is_organizer: _eq: true @@ -343,11 +285,14 @@ update_permissions: - role: user permission: columns: + - banner_media_id - description - ends_at + - hide_creator_organizer + - media_access - name - starts_at - - status + - visibility filter: is_organizer: _eq: true @@ -366,3 +311,14 @@ delete_permissions: organizer_steam_id: _eq: X-Hasura-User-Id comment: "" +event_triggers: + - name: events + definition: + delete: + columns: '*' + enable_manual: false + retry_conf: + interval_sec: 10 + num_retries: 6 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' diff --git a/hasura/metadata/databases/default/tables/public_matches.yaml b/hasura/metadata/databases/default/tables/public_matches.yaml index efbaf065..d8a1f237 100644 --- a/hasura/metadata/databases/default/tables/public_matches.yaml +++ b/hasura/metadata/databases/default/tables/public_matches.yaml @@ -317,6 +317,11 @@ computed_fields: name: match_requested_organizer schema: public session_argument: hasura_session + - name: server_plugin_runtime + definition: + function: + name: get_match_server_plugin_runtime + schema: public - name: server_region definition: function: @@ -564,6 +569,7 @@ select_permissions: - min_players_per_lineup - region_veto_picking_lineup_id - requested_organizer + - server_plugin_runtime - server_region - server_type - tv_connection_string @@ -623,6 +629,7 @@ select_permissions: - min_players_per_lineup - region_veto_picking_lineup_id - requested_organizer + - server_plugin_runtime - server_region - server_type - tv_connection_string diff --git a/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml index 30255132..ae6e2d63 100644 --- a/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml +++ b/hasura/metadata/databases/default/tables/public_v_event_player_stats.yaml @@ -35,8 +35,8 @@ select_permissions: - headshot_percentage filter: event: - status: - _neq: Setup + visibility: + _eq: Public allow_aggregations: true comment: "" - role: user @@ -52,12 +52,8 @@ select_permissions: - kdr - headshot_percentage filter: - _or: - - event: - is_organizer: - _eq: true - - event: - status: - _neq: Setup + event: + can_view: + _eq: true allow_aggregations: true comment: "" diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index 73958724..73ad2708 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -13,7 +13,8 @@ - "!include public_e_draft_game_mode.yaml" - "!include public_e_draft_game_player_status.yaml" - "!include public_e_draft_game_status.yaml" -- "!include public_e_event_status.yaml" +- "!include public_e_event_media_access.yaml" +- "!include public_e_event_visibility.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" - "!include public_e_game_server_node_statuses.yaml" @@ -47,6 +48,9 @@ - "!include public_e_utility_types.yaml" - "!include public_e_veto_pick_types.yaml" - "!include public_e_winning_reasons.yaml" +- "!include public_event_match_links.yaml" +- "!include public_event_media.yaml" +- "!include public_event_media_players.yaml" - "!include public_event_organizers.yaml" - "!include public_event_players.yaml" - "!include public_event_teams.yaml" diff --git a/hasura/migrations/default/1867000000300_events/down.sql b/hasura/migrations/default/1867000000300_events/down.sql index 11eae5dc..8e037e19 100644 --- a/hasura/migrations/default/1867000000300_events/down.sql +++ b/hasura/migrations/default/1867000000300_events/down.sql @@ -5,6 +5,7 @@ -- first argument (a hard dependency on the table's row type). DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); DROP VIEW IF EXISTS public.v_event_player_stats; +DROP VIEW IF EXISTS public.v_event_matches; DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); -- The boot loader (HasuraService.apply) skips re-creating a boot-phase object @@ -21,6 +22,7 @@ BEGIN WHERE name IN ( 'hasura/functions/events/get_event_leaderboard', 'hasura/functions/events/is_event_organizer', + 'hasura/views/v_event_matches', 'hasura/views/v_event_player_stats' ); END IF; diff --git a/hasura/migrations/default/1871000000000_event_visibility_media/down.sql b/hasura/migrations/default/1871000000000_event_visibility_media/down.sql new file mode 100644 index 00000000..3b97af61 --- /dev/null +++ b/hasura/migrations/default/1871000000000_event_visibility_media/down.sql @@ -0,0 +1,33 @@ +-- The access functions are created in a later boot phase (hasura/functions) +-- and depend on the columns dropped below (public.events row type includes +-- visibility/media_access/banner_media_id), so they must be dropped first. +-- get_event_leaderboard gains a hasura_session parameter in the same boot +-- phase; drop both signatures so either deployed version can re-apply. +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP FUNCTION IF EXISTS public.can_upload_event_media(public.events, json); +DROP FUNCTION IF EXISTS public.can_view_event(public.events, json); +DROP FUNCTION IF EXISTS public.is_event_member(public.events, bigint); + +-- Clear the boot-loader digests so the next boot re-applies the dropped +-- functions (see 1867000000300_events/down.sql for the full rationale). +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/functions/events/event_access', + 'hasura/functions/events/get_event_leaderboard' + ); + END IF; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +DROP FUNCTION IF EXISTS public.tg_events_banner_same_event(); + +ALTER TABLE public.events DROP COLUMN IF EXISTS banner_media_id; +DROP TABLE IF EXISTS public.event_media; +ALTER TABLE public.events DROP COLUMN IF EXISTS visibility; +ALTER TABLE public.events DROP COLUMN IF EXISTS media_access; +DROP TABLE IF EXISTS public.e_event_visibility; +DROP TABLE IF EXISTS public.e_event_media_access; diff --git a/hasura/migrations/default/1871000000000_event_visibility_media/up.sql b/hasura/migrations/default/1871000000000_event_visibility_media/up.sql new file mode 100644 index 00000000..77df8bcf --- /dev/null +++ b/hasura/migrations/default/1871000000000_event_visibility_media/up.sql @@ -0,0 +1,62 @@ +CREATE TABLE IF NOT EXISTS public.e_event_visibility ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_visibility (value, description) VALUES + ('Private', 'Only people involved in the event'), + ('Friends', 'Involved people and their friends'), + ('Public', 'Anyone') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.e_event_media_access ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_media_access (value, description) VALUES + ('Organizers', 'Organizers only'), + ('Involved', 'Anyone involved in the event') +ON CONFLICT (value) DO NOTHING; + +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS visibility text NOT NULL DEFAULT 'Public' + REFERENCES public.e_event_visibility(value); + +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS media_access text NOT NULL DEFAULT 'Organizers' + REFERENCES public.e_event_media_access(value); + +CREATE TABLE IF NOT EXISTS public.event_media ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + uploader_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + filename text NOT NULL, + mime_type text NOT NULL, + size bigint NOT NULL DEFAULT 0, + created_at timestamptz NOT NULL DEFAULT now(), + UNIQUE (event_id, filename) +); +CREATE INDEX IF NOT EXISTS idx_event_media_event ON public.event_media(event_id); + +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS banner_media_id uuid + REFERENCES public.event_media(id) ON DELETE SET NULL; + +-- A single-column FK cannot enforce that the banner belongs to this event. +CREATE OR REPLACE FUNCTION public.tg_events_banner_same_event() RETURNS trigger +LANGUAGE plpgsql AS $$ +BEGIN + IF NEW.banner_media_id IS NOT NULL AND NOT EXISTS ( + SELECT 1 FROM public.event_media m + WHERE m.id = NEW.banner_media_id AND m.event_id = NEW.id + ) THEN + RAISE EXCEPTION 'banner_media_id must reference media of the same event'; + END IF; + RETURN NEW; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +CREATE TRIGGER tg_events_banner_same_event + BEFORE INSERT OR UPDATE OF banner_media_id ON public.events + FOR EACH ROW EXECUTE FUNCTION public.tg_events_banner_same_event(); diff --git a/hasura/migrations/default/1872000000000_remove_event_status/down.sql b/hasura/migrations/default/1872000000000_remove_event_status/down.sql new file mode 100644 index 00000000..289c94de --- /dev/null +++ b/hasura/migrations/default/1872000000000_remove_event_status/down.sql @@ -0,0 +1,31 @@ +-- get_event_leaderboard's pre-1872 file version references e.status; drop it +-- and clear its boot digest so the next boot of the older release re-applies +-- its own version cleanly (see 1867000000300_events/down.sql for the pattern). +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name = 'hasura/functions/events/get_event_leaderboard'; + END IF; +END $$; + +CREATE TABLE IF NOT EXISTS public.e_event_status ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_status (value, description) VALUES + ('Setup', 'Event is being set up; hidden from the public'), + ('Live', 'Event is in progress'), + ('Finished', 'Event has finished') +ON CONFLICT (value) DO NOTHING; + +-- Backfill existing rows as Live (visible) rather than the original Setup +-- default, so a rollback does not hide every event on the instance; new rows +-- then get the original Setup default. +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS status text NOT NULL DEFAULT 'Live' + REFERENCES public.e_event_status(value); +ALTER TABLE public.events ALTER COLUMN status SET DEFAULT 'Setup'; diff --git a/hasura/migrations/default/1872000000000_remove_event_status/up.sql b/hasura/migrations/default/1872000000000_remove_event_status/up.sql new file mode 100644 index 00000000..c66c1c4c --- /dev/null +++ b/hasura/migrations/default/1872000000000_remove_event_status/up.sql @@ -0,0 +1,7 @@ +-- Event lifecycle is derived from starts_at/ends_at and hiding is handled by +-- the visibility column (Private/Friends/Public), so the status machine is +-- redundant. get_event_leaderboard referenced e.status and is re-applied in +-- the functions boot phase (its file changed in the same release); nothing +-- else reads the column. +ALTER TABLE public.events DROP COLUMN IF EXISTS status; +DROP TABLE IF EXISTS public.e_event_status; diff --git a/hasura/migrations/default/1873000000000_event_media_meta/down.sql b/hasura/migrations/default/1873000000000_event_media_meta/down.sql new file mode 100644 index 00000000..e71bee27 --- /dev/null +++ b/hasura/migrations/default/1873000000000_event_media_meta/down.sql @@ -0,0 +1,2 @@ +DROP TABLE IF EXISTS public.event_media_players; +ALTER TABLE public.event_media DROP COLUMN IF EXISTS title; diff --git a/hasura/migrations/default/1873000000000_event_media_meta/up.sql b/hasura/migrations/default/1873000000000_event_media_meta/up.sql new file mode 100644 index 00000000..cc03ddd3 --- /dev/null +++ b/hasura/migrations/default/1873000000000_event_media_meta/up.sql @@ -0,0 +1,12 @@ +ALTER TABLE public.event_media + ADD COLUMN IF NOT EXISTS title text; + +-- Media items can tag the players featured in them. +CREATE TABLE IF NOT EXISTS public.event_media_players ( + media_id uuid NOT NULL REFERENCES public.event_media(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (media_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_media_players_steam + ON public.event_media_players(steam_id); diff --git a/hasura/migrations/default/1874000000000_event_match_links/down.sql b/hasura/migrations/default/1874000000000_event_match_links/down.sql new file mode 100644 index 00000000..26775901 --- /dev/null +++ b/hasura/migrations/default/1874000000000_event_match_links/down.sql @@ -0,0 +1,35 @@ +-- The sync functions/triggers are created in the triggers boot phase and +-- depend on this table; drop them and clear their digest so the next boot of +-- an older release is consistent (see 1867000000300_events/down.sql). +DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; +DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; +DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; +DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; +DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; +DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; +DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_membership(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_bracket(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_match(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_mlp(); +DROP FUNCTION IF EXISTS public.sync_event_match_links(uuid); +DROP FUNCTION IF EXISTS public.sync_match_event_links(uuid); + +-- v_event_player_stats reads from the link table in this release; drop it so +-- the table drop succeeds, and clear its digest so the previous release's +-- version re-applies on next boot. +DROP VIEW IF EXISTS public.v_event_player_stats; + +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/triggers/event_match_links', + 'hasura/views/v_event_player_stats' + ); + END IF; +END $$; + +DROP TABLE IF EXISTS public.event_match_links; diff --git a/hasura/migrations/default/1874000000000_event_match_links/up.sql b/hasura/migrations/default/1874000000000_event_match_links/up.sql new file mode 100644 index 00000000..5ca70317 --- /dev/null +++ b/hasura/migrations/default/1874000000000_event_match_links/up.sql @@ -0,0 +1,12 @@ +-- Materialized event->match links. v_event_matches stays the single source +-- of truth for the derivation; triggers (hasura/triggers/event_match_links) +-- keep this table in sync so list queries paginate over an indexed table and +-- stats aggregate without re-deriving the windowed joins per query. +CREATE TABLE IF NOT EXISTS public.event_match_links ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + match_id uuid NOT NULL REFERENCES public.matches(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, match_id) +); +CREATE INDEX IF NOT EXISTS idx_event_match_links_match + ON public.event_match_links(match_id); diff --git a/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql b/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql new file mode 100644 index 00000000..c6731093 --- /dev/null +++ b/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql @@ -0,0 +1 @@ +ALTER TABLE public.event_media DROP COLUMN IF EXISTS thumbnail_filename; diff --git a/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql b/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql new file mode 100644 index 00000000..69a79b97 --- /dev/null +++ b/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql @@ -0,0 +1,4 @@ +-- Poster frame for video media, captured client-side at upload time so +-- gallery tiles never fetch the mp4 itself. +ALTER TABLE public.event_media + ADD COLUMN IF NOT EXISTS thumbnail_filename text; diff --git a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql new file mode 100644 index 00000000..a8b5f68b --- /dev/null +++ b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql @@ -0,0 +1 @@ +ALTER TABLE public.events DROP COLUMN IF EXISTS hide_creator_organizer; diff --git a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql new file mode 100644 index 00000000..9dce66e7 --- /dev/null +++ b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql @@ -0,0 +1,4 @@ +-- "Organized by" reflects the organizer list; the creator is shown by default +-- but can be hidden from that display (they remain the owner for permissions). +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS hide_creator_organizer boolean NOT NULL DEFAULT false; diff --git a/hasura/triggers/event_match_links.sql b/hasura/triggers/event_match_links.sql new file mode 100644 index 00000000..7a6dd25a --- /dev/null +++ b/hasura/triggers/event_match_links.sql @@ -0,0 +1,128 @@ +-- Keeps event_match_links (migration 1874) in sync with v_event_matches, the +-- single source of truth for "which matches belong to an event". Every input +-- of the derivation has a trigger: the event window, memberships, tournament +-- brackets, the matches themselves, and lineup membership. + +CREATE OR REPLACE FUNCTION public.sync_event_match_links(_event_id uuid) +RETURNS void LANGUAGE sql AS $$ + DELETE FROM public.event_match_links l + WHERE l.event_id = _event_id + AND NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); + INSERT INTO public.event_match_links (event_id, match_id) + SELECT v.event_id, v.match_id + FROM public.v_event_matches v + WHERE v.event_id = _event_id + ON CONFLICT DO NOTHING; +$$; + +CREATE OR REPLACE FUNCTION public.sync_match_event_links(_match_id uuid) +RETURNS void LANGUAGE sql AS $$ + DELETE FROM public.event_match_links l + WHERE l.match_id = _match_id + AND NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); + INSERT INTO public.event_match_links (event_id, match_id) + SELECT v.event_id, v.match_id + FROM public.v_event_matches v + WHERE v.match_id = _match_id + ON CONFLICT DO NOTHING; +$$; + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_event_match_links(NEW.id); + RETURN NEW; +END $$; +DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; +CREATE TRIGGER tg_events_sync_match_links + AFTER INSERT OR UPDATE OF starts_at, ends_at ON public.events + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_membership() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_event_match_links(COALESCE(NEW.event_id, OLD.event_id)); + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; +CREATE TRIGGER tg_event_teams_sync_match_links + AFTER INSERT OR DELETE ON public.event_teams + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); +DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; +CREATE TRIGGER tg_event_players_sync_match_links + AFTER INSERT OR DELETE ON public.event_players + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); +DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; +CREATE TRIGGER tg_event_tournaments_sync_match_links + AFTER INSERT OR DELETE ON public.event_tournaments + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_membership(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_bracket() +RETURNS trigger LANGUAGE plpgsql AS $$ +DECLARE + _event uuid; +BEGIN + FOR _event IN + SELECT et.event_id + FROM public.tournament_stages ts + JOIN public.event_tournaments et ON et.tournament_id = ts.tournament_id + WHERE ts.id = COALESCE(NEW.tournament_stage_id, OLD.tournament_stage_id) + LOOP + PERFORM public.sync_event_match_links(_event); + END LOOP; + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; +CREATE TRIGGER tg_brackets_sync_event_match_links + AFTER INSERT OR UPDATE OF match_id OR DELETE ON public.tournament_brackets + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_bracket(); + +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_match() +RETURNS trigger LANGUAGE plpgsql AS $$ +BEGIN + PERFORM public.sync_match_event_links(NEW.id); + RETURN NEW; +END $$; +DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; +CREATE TRIGGER tg_matches_sync_event_match_links + AFTER INSERT OR UPDATE OF scheduled_at, started_at, lineup_1_id, lineup_2_id + ON public.matches + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_match(); + +-- Player joins/leaves a lineup after the match row exists (player-derived +-- links depend on match_lineup_players). +CREATE OR REPLACE FUNCTION public.tg_sync_event_match_links_mlp() +RETURNS trigger LANGUAGE plpgsql AS $$ +DECLARE + _match uuid; +BEGIN + FOR _match IN + SELECT m.id FROM public.matches m + WHERE COALESCE(NEW.match_lineup_id, OLD.match_lineup_id) + IN (m.lineup_1_id, m.lineup_2_id) + LOOP + PERFORM public.sync_match_event_links(_match); + END LOOP; + RETURN COALESCE(NEW, OLD); +END $$; +DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; +CREATE TRIGGER tg_mlp_sync_event_match_links + AFTER INSERT OR DELETE ON public.match_lineup_players + FOR EACH ROW EXECUTE FUNCTION public.tg_sync_event_match_links_mlp(); + +-- Full backfill/prune. Runs only when this file's digest changes; keeps the +-- table exact after upgrades that alter the derivation. +DELETE FROM public.event_match_links l + WHERE NOT EXISTS ( + SELECT 1 FROM public.v_event_matches v + WHERE v.event_id = l.event_id AND v.match_id = l.match_id + ); +INSERT INTO public.event_match_links (event_id, match_id) +SELECT event_id, match_id FROM public.v_event_matches +ON CONFLICT DO NOTHING; diff --git a/hasura/views/v_event_matches.sql b/hasura/views/v_event_matches.sql new file mode 100644 index 00000000..cb67a825 --- /dev/null +++ b/hasura/views/v_event_matches.sql @@ -0,0 +1,51 @@ +-- The canonical "matches of an event" set, shared by the event page match +-- list (Hasura-tracked), get_event_leaderboard and v_event_player_stats so +-- the three can never disagree. +-- +-- A match belongs to an event when any of: +-- - it sits in a bracket of an attached tournament (no time window: the +-- tournament was explicitly attached, its matches are the event's); +-- - one of its lineups is an attached team and the match falls inside the +-- event window; +-- - one of its lineup players is an attached player and the match falls +-- inside the event window. +-- +-- The window end gets a day of grace so matches that start on the final +-- evening still count when ends_at is set to midday; missing dates leave +-- that side of the window open. +CREATE OR REPLACE VIEW public.v_event_matches AS +WITH windowed AS ( + SELECT + e.id AS event_id, + COALESCE(e.starts_at, '-infinity'::timestamptz) AS window_start, + COALESCE(e.ends_at + interval '1 day', 'infinity'::timestamptz) AS window_end + FROM events e +) +SELECT DISTINCT s.event_id, s.match_id +FROM ( + SELECT et.event_id, tb.match_id + FROM event_tournaments et + JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id + JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id + WHERE tb.match_id IS NOT NULL + + UNION ALL + + SELECT w.event_id, m.id AS match_id + FROM windowed w + JOIN event_teams et ON et.event_id = w.event_id + JOIN match_lineups ml ON ml.team_id = et.team_id + JOIN matches m ON ml.id IN (m.lineup_1_id, m.lineup_2_id) + WHERE COALESCE(m.started_at, m.scheduled_at, m.created_at) >= w.window_start + AND COALESCE(m.started_at, m.scheduled_at, m.created_at) < w.window_end + + UNION ALL + + SELECT w.event_id, m.id AS match_id + FROM windowed w + JOIN event_players ep ON ep.event_id = w.event_id + JOIN match_lineup_players mlp ON mlp.steam_id = ep.steam_id + JOIN matches m ON mlp.match_lineup_id IN (m.lineup_1_id, m.lineup_2_id) + WHERE COALESCE(m.started_at, m.scheduled_at, m.created_at) >= w.window_start + AND COALESCE(m.started_at, m.scheduled_at, m.created_at) < w.window_end +) s; diff --git a/hasura/views/v_event_player_stats.sql b/hasura/views/v_event_player_stats.sql index 93ebed7f..4870dd3f 100644 --- a/hasura/views/v_event_player_stats.sql +++ b/hasura/views/v_event_player_stats.sql @@ -4,13 +4,10 @@ CREATE OR REPLACE VIEW public.v_event_player_stats AS -- scan instead of being applied after a materialized CTE builds the match set for every -- event on the instance. WITH e_matches AS NOT MATERIALIZED ( - SELECT DISTINCT - et.event_id, - tb.match_id - FROM event_tournaments et - JOIN tournament_stages ts ON ts.tournament_id = et.tournament_id - JOIN tournament_brackets tb ON tb.tournament_stage_id = ts.id - WHERE tb.match_id IS NOT NULL + -- Trigger-maintained materialization of v_event_matches (see + -- hasura/triggers/event_match_links); indexed on both columns. + SELECT eml.event_id, eml.match_id + FROM event_match_links eml ), -- Kills, deaths and headshots come from the same player_kills rows. Unpivot -- each kill into one row per side via LATERAL VALUES so player_kills is diff --git a/src/app.module.ts b/src/app.module.ts index 0af1eacf..5c7da6e6 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -53,6 +53,7 @@ import { FaceitModule } from "./faceit/faceit.module"; import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-history.module"; import { SteamPresenceModule } from "./steam-presence/steam-presence.module"; import { NewsModule } from "./news/news.module"; +import { EventsModule } from "./events/events.module"; import { ScrimsModule } from "./scrims/scrims.module"; import { LeaguesModule } from "./leagues/leagues.module"; @@ -148,6 +149,7 @@ import { LeaguesModule } from "./leagues/leagues.module"; SteamMatchHistoryModule, SteamPresenceModule, NewsModule, + EventsModule, ScrimsModule, LeaguesModule, ], diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 06485d08..ed8294c2 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -447,6 +447,7 @@ export class ChatService { status: true, server: { id: true, + plugin_runtime: true, }, }, }); @@ -466,7 +467,12 @@ export class ChatService { return; } - return await rcon.send(`css_web_chat "${message}"`); + const command = + server.plugin_runtime === "counterstrikesharp" + ? "css_web_chat" + : "sw_web_chat"; + + return await rcon.send(`${command} "${message}"`); } catch (error) { this.logger.warn( `[${matchId}] unable to send match to server`, diff --git a/src/events/events.controller.ts b/src/events/events.controller.ts new file mode 100644 index 00000000..91d58407 --- /dev/null +++ b/src/events/events.controller.ts @@ -0,0 +1,570 @@ +import { + BadRequestException, + Body, + Controller, + Delete, + FileTypeValidator, + ForbiddenException, + Get, + InternalServerErrorException, + Logger, + MaxFileSizeValidator, + NotFoundException, + Param, + ParseFilePipe, + Post, + Req, + Res, + UploadedFile, + UseInterceptors, +} from "@nestjs/common"; +import { FileInterceptor } from "@nestjs/platform-express"; +import { Request, Response } from "express"; +import { HasuraEvent } from "../hasura/hasura.controller"; +import { signUploadToken } from "../steam-match-history/uploadToken"; +import { HasuraEventData } from "../hasura/types/HasuraEventData"; +import { S3Service } from "../s3/s3.service"; +import { User } from "../auth/types/User"; +import { EventsService } from "./events.service"; + +const IMAGE_MAX_SIZE = 10 * 1024 * 1024; +const VIDEO_MAX_SIZE = 512 * 1024 * 1024; +const AUDIO_MAX_SIZE = 50 * 1024 * 1024; +// Anything at or under this posts through the API exactly like avatars and +// news images. Only bigger files (long mp4s) need the multipart bypass — +// Cloudflare caps proxied request bodies at ~100MB and times slow ones out. +const DIRECT_MAX_SIZE = 90 * 1024 * 1024; +const UPLOAD_CHUNK_SIZE = 64 * 1024 * 1024; + +const EXTENSION_BY_MIMETYPE: Record = { + "image/png": "png", + "image/jpeg": "jpg", + "image/webp": "webp", + "image/gif": "gif", + "video/mp4": "mp4", + "audio/mpeg": "mp3", +}; + +const MAX_SIZE_BY_MIMETYPE: Record = + { + "image/png": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/jpeg": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/webp": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "image/gif": { maxSize: IMAGE_MAX_SIZE, label: "10MB" }, + "video/mp4": { maxSize: VIDEO_MAX_SIZE, label: "512MB" }, + "audio/mpeg": { maxSize: AUDIO_MAX_SIZE, label: "50MB" }, + }; + +const MULTIPART_MEDIA: Record< + string, + { mimeType: string; maxSize: number; label: string } +> = { + mp4: { mimeType: "video/mp4", maxSize: VIDEO_MAX_SIZE, label: "512MB" }, +}; + +// Static "events/media" prefix (rather than "events" + "media" in each route) +// so the panel ingress can expose exactly this path and nothing else that may +// ever be added under /events. +@Controller("events/media") +export class EventsController { + constructor( + private readonly eventsService: EventsService, + private readonly s3: S3Service, + private readonly logger: Logger, + ) {} + + @Post(":eventId/upload") + @UseInterceptors(FileInterceptor("file")) + public async uploadMedia( + @Param("eventId") eventId: string, + @Req() request: Request, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: DIRECT_MAX_SIZE }), + new FileTypeValidator({ + fileType: /(image\/(png|jpeg|webp|gif)|video\/mp4|audio\/mpeg)/, + }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + // ParseFilePipe applies the shared 90MB ceiling; per-type caps and (for + // audio/video, whose mimetype is client-claimed) magic bytes go here. + const cap = MAX_SIZE_BY_MIMETYPE[file.mimetype]; + if (!cap) { + throw new BadRequestException("unsupported file type"); + } + if (file.size > cap.maxSize) { + throw new BadRequestException(`file exceeds ${cap.label} limit`); + } + if ( + !file.mimetype.startsWith("image/") && + !this.hasValidMagicBytes(file.buffer.subarray(0, 12), file.mimetype) + ) { + throw new BadRequestException("file content does not match its type"); + } + + const extension = EXTENSION_BY_MIMETYPE[file.mimetype] || "png"; + const filename = this.eventsService.generateFilename(extension); + await this.s3.put( + this.eventsService.mediaKey(eventId, filename), + file.buffer, + file.mimetype, + ); + + const id = await this.eventsService.saveMedia({ + eventId, + uploaderSteamId: user.steam_id, + filename, + mimeType: file.mimetype, + size: file.size, + title: this.eventsService.titleFromFilename(file.originalname), + }); + + return { success: true, id, filename }; + } + + // Poster frame for a video item, captured client-side by the uploader at + // upload time so viewers never download the mp4 for a gallery tile. + @Post(":eventId/:mediaId/thumbnail") + @UseInterceptors(FileInterceptor("file")) + public async uploadThumbnail( + @Param("eventId") eventId: string, + @Param("mediaId") mediaId: string, + @Req() request: Request, + @UploadedFile( + new ParseFilePipe({ + validators: [ + new MaxFileSizeValidator({ maxSize: 3 * 1024 * 1024 }), + new FileTypeValidator({ fileType: /image\/(png|jpeg|webp)/ }), + ], + }), + ) + file: Express.Multer.File, + ) { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + if (!/^[0-9a-fA-F-]{36}$/.test(mediaId)) { + throw new NotFoundException("media not found"); + } + const media = await this.eventsService.getMediaById(eventId, mediaId); + if (!media) { + throw new NotFoundException("media not found"); + } + if ( + media.uploader_steam_id !== user.steam_id && + !(await this.eventsService.isOrganizer(eventId, user)) + ) { + throw new ForbiddenException( + "only the uploader or an organizer can set the thumbnail", + ); + } + + const extension = EXTENSION_BY_MIMETYPE[file.mimetype] || "webp"; + const thumbnailFilename = this.eventsService.generateFilename(extension); + await this.s3.put( + this.eventsService.mediaKey(eventId, thumbnailFilename), + file.buffer, + file.mimetype, + ); + await this.eventsService.setMediaThumbnail(media, thumbnailFilename); + return { success: true, filename: thumbnailFilename }; + } + + @Post(":eventId/initiate") + public async initiateUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { fileName?: string; fileSize?: number }, + ): Promise<{ + uploadId: string; + key: string; + chunkSize: number; + parts: Array<{ partNumber: number; url: string }>; + }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + const extension = (body.fileName ?? "").toLowerCase().split(".").pop(); + const media = extension ? MULTIPART_MEDIA[extension] : undefined; + if (!media) { + throw new BadRequestException("expected an .mp4 file"); + } + + const fileSize = Number(body.fileSize); + if (!Number.isFinite(fileSize) || fileSize <= 0) { + throw new BadRequestException("invalid file size"); + } + if (fileSize <= DIRECT_MAX_SIZE) { + // Small files must use the plain upload endpoint (same path as + // avatars/news); the multipart bypass exists only for bodies too big + // to proxy through Cloudflare. + throw new BadRequestException("file is small enough to upload directly"); + } + if (fileSize > media.maxSize) { + throw new BadRequestException(`file exceeds ${media.label} limit`); + } + + const filename = this.eventsService.generateFilename(extension); + const key = this.eventsService.mediaKey(eventId, filename); + const uploadId = await this.s3.createMultipartUpload(key); + const partCount = Math.ceil(fileSize / UPLOAD_CHUNK_SIZE); + const workerUrl = await this.eventsService.getCloudflareWorkerUrl(); + + // Cloudflare-worker deployments (B2-backed storage) must route part PUTs + // through the worker: it answers the CORS preflight and signs the B2 + // write itself. Each part URL carries a short-lived HMAC token bound to + // this key+uploadId so the worker never signs arbitrary writes (same + // scheme as the demo upload flow). + let uploadToken: string | null = null; + if (workerUrl) { + const signingSecret = process.env.S3_SECRET; + if (!signingSecret) { + throw new InternalServerErrorException( + "S3_SECRET is not configured; cannot authorize worker uploads", + ); + } + uploadToken = signUploadToken(signingSecret, key, uploadId); + } + + const parts: Array<{ partNumber: number; url: string }> = []; + for (let partNumber = 1; partNumber <= partCount; partNumber++) { + parts.push({ + partNumber, + url: workerUrl + ? `${workerUrl}/${key}?partNumber=${partNumber}&uploadId=${encodeURIComponent(uploadId)}&token=${encodeURIComponent(uploadToken!)}` + : await this.s3.getPresignedPartUrl(key, uploadId, partNumber), + }); + } + + this.logger.log( + `event media initiate steam_id=${user.steam_id} key=${key} parts=${partCount} bytes=${fileSize}`, + ); + + return { uploadId, key, chunkSize: UPLOAD_CHUNK_SIZE, parts }; + } + + @Post(":eventId/complete") + public async completeUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { uploadId?: string; key?: string; fileName?: string }, + ): Promise<{ success: boolean; id: string; filename: string }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + const { key, filename, media } = this.assertEventKey(eventId, body.key); + if (!body.uploadId) { + throw new BadRequestException("uploadId required"); + } + + try { + await this.s3.completeMultipartUpload(key, body.uploadId); + } catch (error) { + try { + await this.s3.abortMultipartUpload(key, body.uploadId); + } catch (abortError) { + this.logger.warn( + `abort after failed complete key=${key}: ${abortError}`, + ); + } + throw new BadRequestException( + `could not assemble upload: ${(error as Error)?.message ?? error}`, + ); + } + + // The size cap on /initiate trusts the client-claimed fileSize, so + // enforce the real assembled size here — presigned part PUTs aren't capped. + const { size } = await this.s3.stat(key); + if (size > media.maxSize) { + await this.s3.remove(key); + throw new BadRequestException(`file exceeds ${media.label} limit`); + } + + const header = await this.s3.readPrefix(key, 12); + if (!this.hasValidMagicBytes(header, media.mimeType)) { + await this.s3.remove(key); + throw new BadRequestException("file content does not match its type"); + } + + const id = await this.eventsService.saveMedia({ + eventId, + uploaderSteamId: user.steam_id, + filename, + mimeType: media.mimeType, + size, + title: this.eventsService.titleFromFilename(body.fileName), + }); + + this.logger.log( + `event media complete steam_id=${user.steam_id} key=${key}`, + ); + + return { success: true, id, filename }; + } + + @Post(":eventId/abort") + public async abortUpload( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { uploadId?: string; key?: string }, + ): Promise<{ success: boolean }> { + await this.assertCanUpload(eventId, request.user as User | undefined); + const { key } = this.assertEventKey(eventId, body.key); + if (!body.uploadId) { + throw new BadRequestException("uploadId required"); + } + try { + await this.s3.abortMultipartUpload(key, body.uploadId); + } catch (error) { + this.logger.warn(`abort multipart upload failed key=${key}: ${error}`); + } + return { success: true }; + } + + @Get(":eventId/:filename") + public async serveMedia( + @Param("eventId") eventId: string, + @Param("filename") filename: string, + @Req() request: Request, + @Res() response: Response, + ) { + if ( + !/^[0-9a-fA-F-]{36}$/.test(eventId) || + !/^[A-Za-z0-9._-]+$/.test(filename) + ) { + throw new NotFoundException("media not found"); + } + + const canView = await this.eventsService.canView( + eventId, + request.user as User | undefined, + ); + if (canView === null) { + throw new NotFoundException("media not found"); + } + if (!canView) { + throw new ForbiddenException( + "you do not have permission to view this event", + ); + } + + const media = await this.eventsService.getMedia(eventId, filename); + if (!media) { + throw new NotFoundException("media not found"); + } + + await this.stream( + this.eventsService.mediaKey(eventId, filename), + media.is_thumbnail ? "image/webp" : media.mime_type, + request, + response, + ); + } + + @Delete(":eventId/:mediaId") + public async deleteMedia( + @Param("eventId") eventId: string, + @Param("mediaId") mediaId: string, + @Req() request: Request, + ): Promise<{ success: boolean }> { + const user = request.user as User | undefined; + if (!user) { + throw new ForbiddenException("authentication required"); + } + if ( + !/^[0-9a-fA-F-]{36}$/.test(eventId) || + !/^[0-9a-fA-F-]{36}$/.test(mediaId) + ) { + throw new NotFoundException("media not found"); + } + + const media = await this.eventsService.getMediaById(eventId, mediaId); + if (!media) { + throw new NotFoundException("media not found"); + } + + if ( + media.uploader_steam_id !== user.steam_id && + !(await this.eventsService.isOrganizer(eventId, user)) + ) { + throw new ForbiddenException( + "only the uploader or an organizer can delete media", + ); + } + + await this.eventsService.deleteMedia(media); + return { success: true }; + } + + @HasuraEvent() + public async events(data: HasuraEventData<{ id: string }>) { + if (data.op === "DELETE" && data.old?.id) { + await this.eventsService.removeEventMedia(data.old.id); + } + } + + private async assertCanUpload(eventId: string, user?: User): Promise { + if (!user) { + throw new ForbiddenException("authentication required"); + } + if (!/^[0-9a-fA-F-]{36}$/.test(eventId)) { + throw new NotFoundException("event not found"); + } + + const canUpload = await this.eventsService.canUpload(eventId, user); + if (canUpload === null) { + throw new NotFoundException("event not found"); + } + if (!canUpload) { + throw new ForbiddenException( + "you do not have permission to upload media to this event", + ); + } + return user; + } + + private assertEventKey( + eventId: string, + key?: string, + ): { + key: string; + filename: string; + media: { mimeType: string; maxSize: number; label: string }; + } { + const expectedPrefix = `${EventsService.MEDIA_PREFIX}/${eventId}/`; + if ( + !key || + !key.startsWith(expectedPrefix) || + !/^[a-zA-Z0-9/_-]+\.mp4$/.test(key) + ) { + throw new BadRequestException("invalid upload key"); + } + const filename = key.slice(expectedPrefix.length); + if (filename.includes("/")) { + throw new BadRequestException("invalid upload key"); + } + const extension = filename.split(".").pop() as string; + return { key, filename, media: MULTIPART_MEDIA[extension] }; + } + + private hasValidMagicBytes(header: Buffer, mimeType: string): boolean { + if (mimeType === "video/mp4") { + return header.length >= 8 && header.subarray(4, 8).toString() === "ftyp"; + } + // MP3: ID3v2 tag or a bare MPEG frame sync (0xFFEx). + return ( + (header.length >= 3 && header.subarray(0, 3).toString() === "ID3") || + (header.length >= 2 && header[0] === 0xff && (header[1] & 0xe0) === 0xe0) + ); + } + + private async stream( + key: string, + contentType: string, + request: Request, + response: Response, + ) { + let stat; + try { + stat = await this.s3.stat(key); + } catch (error) { + if ((error as { code?: string })?.code === "NotFound") { + response.status(404).json({ error: "not found" }); + return; + } + this.logger.error(`failed to stat ${key}: ${(error as Error)?.message}`); + response.status(500).json({ error: "internal" }); + return; + } + + const size = stat.size; + response.setHeader("Content-Type", contentType); + response.setHeader("Accept-Ranges", "bytes"); + // Filenames are immutable but event visibility is not: never allow + // shared caches to hold media for an event that may go Private later. + response.setHeader("Cache-Control", "private, max-age=3600"); + + const rangeHeader = request.headers.range; + const range = rangeHeader ? this.parseRange(rangeHeader, size) : null; + + if (rangeHeader && !range) { + response.setHeader("Content-Range", `bytes */${size}`); + response.status(416).end(); + return; + } + + try { + if (range) { + const length = range.end - range.start + 1; + response.status(206); + response.setHeader( + "Content-Range", + `bytes ${range.start}-${range.end}/${size}`, + ); + response.setHeader("Content-Length", String(length)); + const stream = await this.s3.getPartial(key, range.start, length); + this.pipeWithCleanup(stream, response); + } else { + response.status(200); + response.setHeader("Content-Length", String(size)); + const stream = await this.s3.get(key); + this.pipeWithCleanup(stream, response); + } + } catch (error) { + this.logger.error( + `failed to stream ${key}: ${(error as Error)?.message}`, + ); + if (!response.headersSent) { + response.status(500).json({ error: "internal" }); + } else { + response.destroy(); + } + } + } + + private parseRange( + header: string, + size: number, + ): { start: number; end: number } | null { + const match = /^bytes=(\d*)-(\d*)$/.exec(header.trim()); + if (!match) return null; + const startStr = match[1]; + const endStr = match[2]; + let start: number; + let end: number; + if (startStr === "" && endStr === "") return null; + if (startStr === "") { + const suffix = parseInt(endStr, 10); + if (!Number.isFinite(suffix) || suffix <= 0) return null; + start = Math.max(0, size - suffix); + end = size - 1; + } else { + start = parseInt(startStr, 10); + end = endStr === "" ? size - 1 : parseInt(endStr, 10); + } + if (!Number.isFinite(start) || !Number.isFinite(end)) return null; + if (start < 0 || end < start || start >= size) return null; + if (end >= size) end = size - 1; + return { start, end }; + } + + private pipeWithCleanup(stream: NodeJS.ReadableStream, response: Response) { + response.on("close", () => { + (stream as unknown as { destroy?: () => void }).destroy?.(); + }); + stream.pipe(response); + } +} diff --git a/src/events/events.module.ts b/src/events/events.module.ts new file mode 100644 index 00000000..760faa72 --- /dev/null +++ b/src/events/events.module.ts @@ -0,0 +1,14 @@ +import { Module } from "@nestjs/common"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { S3Module } from "src/s3/s3.module"; +import { loggerFactory } from "src/utilities/LoggerFactory"; +import { EventsService } from "./events.service"; +import { EventsController } from "./events.controller"; + +@Module({ + imports: [PostgresModule, S3Module], + controllers: [EventsController], + providers: [EventsService, loggerFactory()], + exports: [EventsService], +}) +export class EventsModule {} diff --git a/src/events/events.service.ts b/src/events/events.service.ts new file mode 100644 index 00000000..d541a927 --- /dev/null +++ b/src/events/events.service.ts @@ -0,0 +1,206 @@ +import { Injectable, Logger } from "@nestjs/common"; +import { Readable } from "stream"; +import * as crypto from "crypto"; +import { PostgresService } from "src/postgres/postgres.service"; +import { S3Service } from "src/s3/s3.service"; +import { User } from "src/auth/types/User"; + +export type EventMediaRow = { + id: string; + event_id: string; + uploader_steam_id: string; + filename: string; + mime_type: string; + size: string; + thumbnail_filename: string | null; +}; + +@Injectable() +export class EventsService { + public static readonly MEDIA_PREFIX = "events"; + + constructor( + private readonly postgres: PostgresService, + private readonly s3: S3Service, + private readonly logger: Logger, + ) {} + + public mediaKey(eventId: string, filename: string): string { + return `${EventsService.MEDIA_PREFIX}/${eventId}/${filename}`; + } + + /** + * Access checks call the same Postgres functions the Hasura permissions + * use (can_view_event / can_upload_event_media / is_event_organizer), so + * REST media routes can never diverge from the GraphQL visibility rules. + */ + public async canView(eventId: string, user?: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.can_view_event(e, $2::json) AS can_view + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row ? row.can_view : null; + } + + public async canUpload(eventId: string, user: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.can_upload_event_media(e, $2::json) AS can_upload + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row ? row.can_upload : null; + } + + public async isOrganizer(eventId: string, user: User): Promise { + const [row] = await this.postgres.query>( + `SELECT public.is_event_organizer(e, $2::json) AS is_organizer + FROM public.events e + WHERE e.id = $1`, + [eventId, this.sessionJson(user)], + ); + return row?.is_organizer === true; + } + + // Same setting the demo-upload flow uses: when a Cloudflare worker fronts + // the B2 bucket, browser part PUTs must go through it — B2 has no CORS + // rules, so direct presigned PUTs fail the preflight. + public async getCloudflareWorkerUrl(): Promise { + const rows = await this.postgres.query>( + `SELECT value FROM public.settings WHERE name = 'cloudflare_worker_url' LIMIT 1`, + ); + const value = rows.at(0)?.value?.trim(); + return value ? value.replace(/\/+$/, "") : null; + } + + public generateFilename(extension: string): string { + return `${crypto.randomBytes(12).toString("hex")}.${extension}`; + } + + public async saveMedia(media: { + eventId: string; + uploaderSteamId: string; + filename: string; + mimeType: string; + size: number; + title?: string | null; + }): Promise { + const [row] = await this.postgres.query>( + `INSERT INTO public.event_media + (event_id, uploader_steam_id, filename, mime_type, size, title) + VALUES ($1, $2, $3, $4, $5, $6) + RETURNING id`, + [ + media.eventId, + media.uploaderSteamId, + media.filename, + media.mimeType, + media.size, + media.title ?? null, + ], + ); + this.logger.log( + `event media saved event=${media.eventId} file=${media.filename} bytes=${media.size}`, + ); + return row.id; + } + + // Matches either the media file itself or its poster frame, so both are + // served (with the right mime) from the same GET route. + public async getMedia( + eventId: string, + filename: string, + ): Promise<(EventMediaRow & { is_thumbnail: boolean }) | undefined> { + const [row] = await this.postgres.query< + Array + >( + `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, + thumbnail_filename, (thumbnail_filename = $2) AS is_thumbnail + FROM public.event_media + WHERE event_id = $1 AND (filename = $2 OR thumbnail_filename = $2)`, + [eventId, filename], + ); + return row; + } + + public async getMediaById( + eventId: string, + mediaId: string, + ): Promise { + const [row] = await this.postgres.query>( + `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, + thumbnail_filename + FROM public.event_media + WHERE event_id = $1 AND id = $2`, + [eventId, mediaId], + ); + return row; + } + + public async setMediaThumbnail( + media: EventMediaRow, + thumbnailFilename: string, + ): Promise { + if (media.thumbnail_filename) { + await this.s3.remove( + this.mediaKey(media.event_id, media.thumbnail_filename), + ); + } + await this.postgres.query( + `UPDATE public.event_media SET thumbnail_filename = $2 WHERE id = $1`, + [media.id, thumbnailFilename], + ); + } + + public async deleteMedia(media: EventMediaRow): Promise { + if (media.thumbnail_filename) { + await this.s3.remove( + this.mediaKey(media.event_id, media.thumbnail_filename), + ); + } + await this.s3.remove(this.mediaKey(media.event_id, media.filename)); + await this.postgres.query(`DELETE FROM public.event_media WHERE id = $1`, [ + media.id, + ]); + this.logger.log( + `event media deleted event=${media.event_id} file=${media.filename}`, + ); + } + + public async getMediaStream( + eventId: string, + filename: string, + ): Promise { + return await this.s3.get(this.mediaKey(eventId, filename)); + } + + public async removeEventMedia(eventId: string): Promise { + const removed = await this.s3.removePrefix( + `${EventsService.MEDIA_PREFIX}/${eventId}/`, + ); + if (removed > 0) { + this.logger.log(`removed ${removed} media objects for event ${eventId}`); + } + } + + // Default title: the uploaded file's name without its extension — far more + // useful in the gallery than "Untitled". + public titleFromFilename(name?: string | null): string | null { + if (!name) { + return null; + } + const stem = name.replace(/\.[^.]+$/, "").trim(); + return stem ? stem.slice(0, 120) : null; + } + + private sessionJson(user?: User): string { + // x-hasura-user-id is omitted (not empty) for guests: the SQL functions + // cast it with ::bigint and an empty string would throw. + return JSON.stringify({ + "x-hasura-role": user?.role ?? "guest", + ...(user ? { "x-hasura-user-id": user.steam_id } : {}), + }); + } +} diff --git a/src/matches/events/MatchMapResetRoundEvent.ts b/src/matches/events/MatchMapResetRoundEvent.ts index 403360f4..12b1bdd6 100644 --- a/src/matches/events/MatchMapResetRoundEvent.ts +++ b/src/matches/events/MatchMapResetRoundEvent.ts @@ -317,6 +317,10 @@ export default class MatchMapResetRoundEvent extends MatchEventProcessor<{ }); } + this.logger.log( + `[${this.matchId}] stats reset for round ${statsRound} complete, requesting server round restore`, + ); + await this.matchAssistant.restoreMatchRound(this.matchId, statsRound); } } diff --git a/src/matches/match-assistant/match-assistant.service.ts b/src/matches/match-assistant/match-assistant.service.ts index 9ddd9453..a45faf59 100644 --- a/src/matches/match-assistant/match-assistant.service.ts +++ b/src/matches/match-assistant/match-assistant.service.ts @@ -83,7 +83,16 @@ export class MatchAssistantService { public async restoreMatchRound(matchId: string, round: number) { try { - await this.command(matchId, `api_restore_round ${round}`); + this.logger.log( + `[${matchId}] sending api_restore_round ${round} to server`, + ); + const response = await this.command( + matchId, + `api_restore_round ${round}`, + ); + this.logger.log( + `[${matchId}] api_restore_round ${round} response: ${response ?? ""}`, + ); } catch (error) { this.logger.warn( `[${matchId}] unable to send restore round to server`, @@ -1353,6 +1362,9 @@ export class MatchAssistantService { const rcon = await this.rcon.connect(server.id); if (!rcon) { + this.logger.warn( + `[${matchId}] unable to connect to rcon for server ${server.id}`, + ); return; } diff --git a/src/matches/match-events.gateway.ts b/src/matches/match-events.gateway.ts index 69166a18..e8ca75cc 100644 --- a/src/matches/match-events.gateway.ts +++ b/src/matches/match-events.gateway.ts @@ -119,6 +119,10 @@ export class MatchEventsGateway { const { data, event } = message.data; + this.logger.debug( + `[${matchId}] received game event ${event} (messageId=${messageId})`, + ); + const Processor = MatchEvents[event as keyof typeof MatchEvents]; if (!Processor) { @@ -131,7 +135,18 @@ export class MatchEventsGateway { processor.setData(matchId, data); - await processor.process(); + try { + await processor.process(); + } catch (error) { + this.logger.error( + `[${matchId}] error processing game event ${event} (messageId=${messageId}): ${error.message}`, + error.stack, + ); + // withhold the ack and clear the dedup key so the game server's retry + // re-processes instead of being swallowed by the cache + await this.cache.forget(cacheKey); + return; + } return messageId; } diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index 518e6ebb..c67af8c4 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -6,6 +6,7 @@ export enum SystemSettingName { SupportsDiscordBot = "public.supports_discord_bot", SupportsGameServerNodes = "supports_game_server_nodes", SupportsGameServerVersionPinning = "supports_game_server_version_pinning", + EventsEnabled = "public.events_enabled", NewsEnabled = "public.news_enabled", NewsLabel = "public.news_label", PostNewsRole = "public.post_news_role", From d5d4784158d573a0d204e921fcc658eb6dc49258 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 10:53:57 -0400 Subject: [PATCH 04/11] wip --- generated/schema.graphql | 576 +- generated/schema.ts | 650 +- generated/types.ts | 47605 +++++++++++++++++++------------------ 3 files changed, 24731 insertions(+), 24100 deletions(-) diff --git a/generated/schema.graphql b/generated/schema.graphql index 9c4b1dc8..d804f719 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -12719,6 +12719,185 @@ input e_winning_reasons_updates { where: e_winning_reasons_bool_exp! } +""" +columns and relationships of "event_match_links" +""" +type event_match_links { + created_at: timestamptz! + + """An object relationship""" + event: events! + event_id: uuid! + + """An object relationship""" + match: matches! + match_id: uuid! +} + +""" +aggregated selection of "event_match_links" +""" +type event_match_links_aggregate { + aggregate: event_match_links_aggregate_fields + nodes: [event_match_links!]! +} + +""" +aggregate fields of "event_match_links" +""" +type event_match_links_aggregate_fields { + count(columns: [event_match_links_select_column!], distinct: Boolean): Int! + max: event_match_links_max_fields + min: event_match_links_min_fields +} + +""" +Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. +""" +input event_match_links_bool_exp { + _and: [event_match_links_bool_exp!] + _not: event_match_links_bool_exp + _or: [event_match_links_bool_exp!] + created_at: timestamptz_comparison_exp + event: events_bool_exp + event_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp +} + +""" +unique or primary key constraints on table "event_match_links" +""" +enum event_match_links_constraint { + """ + unique or primary key constraint on columns "event_id", "match_id" + """ + event_match_links_pkey +} + +""" +input type for inserting data into table "event_match_links" +""" +input event_match_links_insert_input { + created_at: timestamptz + event: events_obj_rel_insert_input + event_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid +} + +"""aggregate max on columns""" +type event_match_links_max_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +"""aggregate min on columns""" +type event_match_links_min_fields { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +response of any mutation on the table "event_match_links" +""" +type event_match_links_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [event_match_links!]! +} + +""" +on_conflict condition type for table "event_match_links" +""" +input event_match_links_on_conflict { + constraint: event_match_links_constraint! + update_columns: [event_match_links_update_column!]! = [] + where: event_match_links_bool_exp +} + +"""Ordering options when selecting data from "event_match_links".""" +input event_match_links_order_by { + created_at: order_by + event: events_order_by + event_id: order_by + match: matches_order_by + match_id: order_by +} + +"""primary key columns input for table: event_match_links""" +input event_match_links_pk_columns_input { + event_id: uuid! + match_id: uuid! +} + +""" +select columns of table "event_match_links" +""" +enum event_match_links_select_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +""" +input type for updating data in table "event_match_links" +""" +input event_match_links_set_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +Streaming cursor of the table "event_match_links" +""" +input event_match_links_stream_cursor_input { + """Stream column input with initial value""" + initial_value: event_match_links_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input event_match_links_stream_cursor_value_input { + created_at: timestamptz + event_id: uuid + match_id: uuid +} + +""" +update columns of table "event_match_links" +""" +enum event_match_links_update_column { + """column name""" + created_at + + """column name""" + event_id + + """column name""" + match_id +} + +input event_match_links_updates { + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! +} + """ columns and relationships of "event_media" """ @@ -12768,6 +12947,7 @@ type event_media { where: event_media_players_bool_exp ): event_media_players_aggregate! size: bigint! + thumbnail_filename: String title: String """An object relationship""" @@ -12868,6 +13048,7 @@ input event_media_bool_exp { players: event_media_players_bool_exp players_aggregate: event_media_players_aggregate_bool_exp size: bigint_comparison_exp + thumbnail_filename: String_comparison_exp title: String_comparison_exp uploader: players_bool_exp uploader_steam_id: bigint_comparison_exp @@ -12908,6 +13089,7 @@ input event_media_insert_input { mime_type: String players: event_media_players_arr_rel_insert_input size: bigint + thumbnail_filename: String title: String uploader: players_obj_rel_insert_input uploader_steam_id: bigint @@ -12921,6 +13103,7 @@ type event_media_max_fields { id: uuid mime_type: String size: bigint + thumbnail_filename: String title: String uploader_steam_id: bigint } @@ -12935,6 +13118,7 @@ input event_media_max_order_by { id: order_by mime_type: order_by size: order_by + thumbnail_filename: order_by title: order_by uploader_steam_id: order_by } @@ -12947,6 +13131,7 @@ type event_media_min_fields { id: uuid mime_type: String size: bigint + thumbnail_filename: String title: String uploader_steam_id: bigint } @@ -12961,6 +13146,7 @@ input event_media_min_order_by { id: order_by mime_type: order_by size: order_by + thumbnail_filename: order_by title: order_by uploader_steam_id: order_by } @@ -13005,6 +13191,7 @@ input event_media_order_by { mime_type: order_by players_aggregate: event_media_players_aggregate_order_by size: order_by + thumbnail_filename: order_by title: order_by uploader: players_order_by uploader_steam_id: order_by @@ -13386,6 +13573,9 @@ enum event_media_select_column { """column name""" size + """column name""" + thumbnail_filename + """column name""" title @@ -13403,6 +13593,7 @@ input event_media_set_input { id: uuid mime_type: String size: bigint + thumbnail_filename: String title: String uploader_steam_id: bigint } @@ -13468,6 +13659,7 @@ input event_media_stream_cursor_value_input { id: uuid mime_type: String size: bigint + thumbnail_filename: String title: String uploader_steam_id: bigint } @@ -13508,6 +13700,9 @@ enum event_media_update_column { """column name""" size + """column name""" + thumbnail_filename + """column name""" title @@ -14740,6 +14935,7 @@ type events { created_at: timestamptz! description: String ends_at: timestamptz + hide_creator_organizer: Boolean! id: uuid! """ @@ -15016,6 +15212,7 @@ input events_bool_exp { created_at: timestamptz_comparison_exp description: String_comparison_exp ends_at: timestamptz_comparison_exp + hide_creator_organizer: Boolean_comparison_exp id: uuid_comparison_exp is_organizer: Boolean_comparison_exp media: event_media_bool_exp @@ -15064,6 +15261,7 @@ input events_insert_input { created_at: timestamptz description: String ends_at: timestamptz + hide_creator_organizer: Boolean id: uuid media: event_media_arr_rel_insert_input media_access: e_event_media_access_enum @@ -15142,6 +15340,7 @@ input events_order_by { created_at: order_by description: order_by ends_at: order_by + hide_creator_organizer: order_by id: order_by is_organizer: order_by media_access: order_by @@ -15179,6 +15378,9 @@ enum events_select_column { """column name""" ends_at + """column name""" + hide_creator_organizer + """column name""" id @@ -15206,6 +15408,7 @@ input events_set_input { created_at: timestamptz description: String ends_at: timestamptz + hide_creator_organizer: Boolean id: uuid media_access: e_event_media_access_enum name: String @@ -15246,6 +15449,7 @@ input events_stream_cursor_value_input { created_at: timestamptz description: String ends_at: timestamptz + hide_creator_organizer: Boolean id: uuid media_access: e_event_media_access_enum name: String @@ -15275,6 +15479,9 @@ enum events_update_column { """column name""" ends_at + """column name""" + hide_creator_organizer + """column name""" id @@ -32216,6 +32423,11 @@ type matches { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -32502,6 +32714,7 @@ input matches_bool_exp { server: servers_bool_exp server_error: String_comparison_exp server_id: uuid_comparison_exp + server_plugin_runtime: String_comparison_exp server_region: String_comparison_exp server_type: String_comparison_exp source: String_comparison_exp @@ -32668,6 +32881,11 @@ type matches_max_fields { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -32776,6 +32994,11 @@ type matches_min_fields { server_error: String server_id: uuid + """ + A computed field, executes function "get_match_server_plugin_runtime" + """ + server_plugin_runtime: String + """ A computed field, executes function "get_match_server_region" """ @@ -32917,6 +33140,7 @@ input matches_order_by { server: servers_order_by server_error: order_by server_id: order_by + server_plugin_runtime: order_by server_region: order_by server_type: order_by source: order_by @@ -34249,6 +34473,19 @@ type mutation_root { """ delete_e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + delete data from the table: "event_match_links" + """ + delete_event_match_links( + """filter the rows which have to be deleted""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + delete single row from the table: "event_match_links" + """ + delete_event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + """ delete data from the table: "event_media" """ @@ -36574,6 +36811,28 @@ type mutation_root { on_conflict: e_winning_reasons_on_conflict ): e_winning_reasons + """ + insert data into the table: "event_match_links" + """ + insert_event_match_links( + """the rows to be inserted""" + objects: [event_match_links_insert_input!]! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links_mutation_response + + """ + insert a single row into the table: "event_match_links" + """ + insert_event_match_links_one( + """the row to be inserted""" + object: event_match_links_insert_input! + + """upsert condition""" + on_conflict: event_match_links_on_conflict + ): event_match_links + """ insert data into the table: "event_media" """ @@ -40446,6 +40705,34 @@ type mutation_root { updates: [e_winning_reasons_updates!]! ): [e_winning_reasons_mutation_response] + """ + update data of the table: "event_match_links" + """ + update_event_match_links( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + + """filter the rows which have to be updated""" + where: event_match_links_bool_exp! + ): event_match_links_mutation_response + + """ + update single row of the table: "event_match_links" + """ + update_event_match_links_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: event_match_links_set_input + pk_columns: event_match_links_pk_columns_input! + ): event_match_links + + """ + update multiples rows of table: "event_match_links" + """ + update_event_match_links_many( + """updates to execute, in order""" + updates: [event_match_links_updates!]! + ): [event_match_links_mutation_response] + """ update data of the table: "event_media" """ @@ -67770,6 +68057,51 @@ type query_root { """ e_winning_reasons_by_pk(value: String!): e_winning_reasons + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + """ fetch data from the table: "event_media" """ @@ -72241,46 +72573,6 @@ type query_root { """fetch data from the table: "tournaments" using primary key columns""" tournaments_by_pk(id: uuid!): tournaments - """ - fetch data from the table: "v_event_matches" - """ - v_event_matches( - """distinct select on columns""" - distinct_on: [v_event_matches_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: [v_event_matches_order_by!] - - """filter the rows returned""" - where: v_event_matches_bool_exp - ): [v_event_matches!]! - - """ - fetch aggregated fields from the table: "v_event_matches" - """ - v_event_matches_aggregate( - """distinct select on columns""" - distinct_on: [v_event_matches_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: [v_event_matches_order_by!] - - """filter the rows returned""" - where: v_event_matches_bool_exp - ): v_event_matches_aggregate! - """ fetch data from the table: "v_event_player_stats" """ @@ -78851,6 +79143,65 @@ type subscription_root { where: e_winning_reasons_bool_exp ): [e_winning_reasons!]! + """ + fetch data from the table: "event_match_links" + """ + event_match_links( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + + """ + fetch aggregated fields from the table: "event_match_links" + """ + event_match_links_aggregate( + """distinct select on columns""" + distinct_on: [event_match_links_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: [event_match_links_order_by!] + + """filter the rows returned""" + where: event_match_links_bool_exp + ): event_match_links_aggregate! + + """ + fetch data from the table: "event_match_links" using primary key columns + """ + event_match_links_by_pk(event_id: uuid!, match_id: uuid!): event_match_links + + """ + fetch data from the table in a streaming manner: "event_match_links" + """ + event_match_links_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [event_match_links_stream_cursor_input]! + + """filter the rows returned""" + where: event_match_links_bool_exp + ): [event_match_links!]! + """ fetch data from the table: "event_media" """ @@ -84619,60 +84970,6 @@ type subscription_root { where: tournaments_bool_exp ): [tournaments!]! - """ - fetch data from the table: "v_event_matches" - """ - v_event_matches( - """distinct select on columns""" - distinct_on: [v_event_matches_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: [v_event_matches_order_by!] - - """filter the rows returned""" - where: v_event_matches_bool_exp - ): [v_event_matches!]! - - """ - fetch aggregated fields from the table: "v_event_matches" - """ - v_event_matches_aggregate( - """distinct select on columns""" - distinct_on: [v_event_matches_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: [v_event_matches_order_by!] - - """filter the rows returned""" - where: v_event_matches_bool_exp - ): v_event_matches_aggregate! - - """ - fetch data from the table in a streaming manner: "v_event_matches" - """ - v_event_matches_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [v_event_matches_stream_cursor_input]! - - """filter the rows returned""" - where: v_event_matches_bool_exp - ): [v_event_matches!]! - """ fetch data from the table: "v_event_player_stats" """ @@ -96837,97 +97134,6 @@ input uuid_comparison_exp { _nin: [uuid!] } -""" -columns and relationships of "v_event_matches" -""" -type v_event_matches { - """An object relationship""" - event: events - event_id: uuid - - """An object relationship""" - match: matches - match_id: uuid -} - -""" -aggregated selection of "v_event_matches" -""" -type v_event_matches_aggregate { - aggregate: v_event_matches_aggregate_fields - nodes: [v_event_matches!]! -} - -""" -aggregate fields of "v_event_matches" -""" -type v_event_matches_aggregate_fields { - count(columns: [v_event_matches_select_column!], distinct: Boolean): Int! - max: v_event_matches_max_fields - min: v_event_matches_min_fields -} - -""" -Boolean expression to filter rows from the table "v_event_matches". All fields are combined with a logical 'AND'. -""" -input v_event_matches_bool_exp { - _and: [v_event_matches_bool_exp!] - _not: v_event_matches_bool_exp - _or: [v_event_matches_bool_exp!] - event: events_bool_exp - event_id: uuid_comparison_exp - match: matches_bool_exp - match_id: uuid_comparison_exp -} - -"""aggregate max on columns""" -type v_event_matches_max_fields { - event_id: uuid - match_id: uuid -} - -"""aggregate min on columns""" -type v_event_matches_min_fields { - event_id: uuid - match_id: uuid -} - -"""Ordering options when selecting data from "v_event_matches".""" -input v_event_matches_order_by { - event: events_order_by - event_id: order_by - match: matches_order_by - match_id: order_by -} - -""" -select columns of table "v_event_matches" -""" -enum v_event_matches_select_column { - """column name""" - event_id - - """column name""" - match_id -} - -""" -Streaming cursor of the table "v_event_matches" -""" -input v_event_matches_stream_cursor_input { - """Stream column input with initial value""" - initial_value: v_event_matches_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input v_event_matches_stream_cursor_value_input { - event_id: uuid - match_id: uuid -} - """ columns and relationships of "v_event_player_stats" """ diff --git a/generated/schema.ts b/generated/schema.ts index 6ff989e2..fd42978d 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -4715,6 +4715,76 @@ export type e_winning_reasons_select_column = 'description' | 'value' export type e_winning_reasons_update_column = 'description' | 'value' +/** columns and relationships of "event_match_links" */ +export interface event_match_links { + created_at: Scalars['timestamptz'] + /** An object relationship */ + event: events + event_id: Scalars['uuid'] + /** An object relationship */ + match: matches + match_id: Scalars['uuid'] + __typename: 'event_match_links' +} + + +/** aggregated selection of "event_match_links" */ +export interface event_match_links_aggregate { + aggregate: (event_match_links_aggregate_fields | null) + nodes: event_match_links[] + __typename: 'event_match_links_aggregate' +} + + +/** aggregate fields of "event_match_links" */ +export interface event_match_links_aggregate_fields { + count: Scalars['Int'] + max: (event_match_links_max_fields | null) + min: (event_match_links_min_fields | null) + __typename: 'event_match_links_aggregate_fields' +} + + +/** unique or primary key constraints on table "event_match_links" */ +export type event_match_links_constraint = 'event_match_links_pkey' + + +/** aggregate max on columns */ +export interface event_match_links_max_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_max_fields' +} + + +/** aggregate min on columns */ +export interface event_match_links_min_fields { + created_at: (Scalars['timestamptz'] | null) + event_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + __typename: 'event_match_links_min_fields' +} + + +/** response of any mutation on the table "event_match_links" */ +export interface event_match_links_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: event_match_links[] + __typename: 'event_match_links_mutation_response' +} + + +/** select columns of table "event_match_links" */ +export type event_match_links_select_column = 'created_at' | 'event_id' | 'match_id' + + +/** update columns of table "event_match_links" */ +export type event_match_links_update_column = 'created_at' | 'event_id' | 'match_id' + + /** columns and relationships of "event_media" */ export interface event_media { created_at: Scalars['timestamptz'] @@ -4729,6 +4799,7 @@ export interface event_media { /** An aggregate relationship */ players_aggregate: event_media_players_aggregate size: Scalars['bigint'] + thumbnail_filename: (Scalars['String'] | null) title: (Scalars['String'] | null) /** An object relationship */ uploader: players @@ -4782,6 +4853,7 @@ export interface event_media_max_fields { id: (Scalars['uuid'] | null) mime_type: (Scalars['String'] | null) size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) title: (Scalars['String'] | null) uploader_steam_id: (Scalars['bigint'] | null) __typename: 'event_media_max_fields' @@ -4796,6 +4868,7 @@ export interface event_media_min_fields { id: (Scalars['uuid'] | null) mime_type: (Scalars['String'] | null) size: (Scalars['bigint'] | null) + thumbnail_filename: (Scalars['String'] | null) title: (Scalars['String'] | null) uploader_steam_id: (Scalars['bigint'] | null) __typename: 'event_media_min_fields' @@ -4947,7 +5020,7 @@ export interface event_media_players_variance_fields { /** select columns of table "event_media" */ -export type event_media_select_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'title' | 'uploader_steam_id' +export type event_media_select_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' /** aggregate stddev on columns */ @@ -4983,7 +5056,7 @@ export interface event_media_sum_fields { /** update columns of table "event_media" */ -export type event_media_update_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'title' | 'uploader_steam_id' +export type event_media_update_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' /** aggregate var_pop on columns */ @@ -5430,6 +5503,7 @@ export interface events { created_at: Scalars['timestamptz'] description: (Scalars['String'] | null) ends_at: (Scalars['timestamptz'] | null) + hide_creator_organizer: Scalars['Boolean'] id: Scalars['uuid'] /** A computed field, executes function "is_event_organizer" */ is_organizer: (Scalars['Boolean'] | null) @@ -5543,7 +5617,7 @@ export interface events_mutation_response { /** select columns of table "events" */ -export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' +export type events_select_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate stddev on columns */ @@ -5575,7 +5649,7 @@ export interface events_sum_fields { /** update columns of table "events" */ -export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' +export type events_update_column = 'banner_media_id' | 'created_at' | 'description' | 'ends_at' | 'hide_creator_organizer' | 'id' | 'media_access' | 'name' | 'organizer_steam_id' | 'starts_at' | 'visibility' /** aggregate var_pop on columns */ @@ -10802,6 +10876,8 @@ export interface matches { server: (servers | null) server_error: (Scalars['String'] | null) server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_region" */ server_region: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_type" */ @@ -10904,6 +10980,8 @@ export interface matches_max_fields { scheduled_at: (Scalars['timestamptz'] | null) server_error: (Scalars['String'] | null) server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_region" */ server_region: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_type" */ @@ -10953,6 +11031,8 @@ export interface matches_min_fields { scheduled_at: (Scalars['timestamptz'] | null) server_error: (Scalars['String'] | null) server_id: (Scalars['uuid'] | null) + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_region" */ server_region: (Scalars['String'] | null) /** A computed field, executes function "get_match_server_type" */ @@ -11397,6 +11477,10 @@ export interface mutation_root { delete_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk: (e_winning_reasons | null) + /** delete data from the table: "event_match_links" */ + delete_event_match_links: (event_match_links_mutation_response | null) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk: (event_match_links | null) /** delete data from the table: "event_media" */ delete_event_media: (event_media_mutation_response | null) /** delete single row from the table: "event_media" */ @@ -11976,6 +12060,10 @@ export interface mutation_root { insert_e_winning_reasons: (e_winning_reasons_mutation_response | null) /** insert a single row into the table: "e_winning_reasons" */ insert_e_winning_reasons_one: (e_winning_reasons | null) + /** insert data into the table: "event_match_links" */ + insert_event_match_links: (event_match_links_mutation_response | null) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one: (event_match_links | null) /** insert data into the table: "event_media" */ insert_event_media: (event_media_mutation_response | null) /** insert a single row into the table: "event_media" */ @@ -12789,6 +12877,12 @@ export interface mutation_root { update_e_winning_reasons_by_pk: (e_winning_reasons | null) /** update multiples rows of table: "e_winning_reasons" */ update_e_winning_reasons_many: ((e_winning_reasons_mutation_response | null)[] | null) + /** update data of the table: "event_match_links" */ + update_event_match_links: (event_match_links_mutation_response | null) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk: (event_match_links | null) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many: ((event_match_links_mutation_response | null)[] | null) /** update data of the table: "event_media" */ update_event_media: (event_media_mutation_response | null) /** update single row of the table: "event_media" */ @@ -21786,6 +21880,12 @@ export interface query_root { e_winning_reasons_aggregate: e_winning_reasons_aggregate /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk: (e_winning_reasons | null) + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) /** fetch data from the table: "event_media" */ event_media: event_media[] /** fetch aggregated fields from the table: "event_media" */ @@ -22423,10 +22523,6 @@ export interface query_root { tournaments_aggregate: tournaments_aggregate /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk: (tournaments | null) - /** fetch data from the table: "v_event_matches" */ - v_event_matches: v_event_matches[] - /** fetch aggregated fields from the table: "v_event_matches" */ - v_event_matches_aggregate: v_event_matches_aggregate /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats: v_event_player_stats[] /** fetch aggregated fields from the table: "v_event_player_stats" */ @@ -23817,6 +23913,14 @@ export interface subscription_root { e_winning_reasons_by_pk: (e_winning_reasons | null) /** fetch data from the table in a streaming manner: "e_winning_reasons" */ e_winning_reasons_stream: e_winning_reasons[] + /** fetch data from the table: "event_match_links" */ + event_match_links: event_match_links[] + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate: event_match_links_aggregate + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk: (event_match_links | null) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream: event_match_links[] /** fetch data from the table: "event_media" */ event_media: event_media[] /** fetch aggregated fields from the table: "event_media" */ @@ -24601,12 +24705,6 @@ export interface subscription_root { tournaments_by_pk: (tournaments | null) /** fetch data from the table in a streaming manner: "tournaments" */ tournaments_stream: tournaments[] - /** fetch data from the table: "v_event_matches" */ - v_event_matches: v_event_matches[] - /** fetch aggregated fields from the table: "v_event_matches" */ - v_event_matches_aggregate: v_event_matches_aggregate - /** fetch data from the table in a streaming manner: "v_event_matches" */ - v_event_matches_stream: v_event_matches[] /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats: v_event_player_stats[] /** fetch aggregated fields from the table: "v_event_player_stats" */ @@ -28143,55 +28241,6 @@ export interface tournaments_variance_fields { } -/** columns and relationships of "v_event_matches" */ -export interface v_event_matches { - /** An object relationship */ - event: (events | null) - event_id: (Scalars['uuid'] | null) - /** An object relationship */ - match: (matches | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_event_matches' -} - - -/** aggregated selection of "v_event_matches" */ -export interface v_event_matches_aggregate { - aggregate: (v_event_matches_aggregate_fields | null) - nodes: v_event_matches[] - __typename: 'v_event_matches_aggregate' -} - - -/** aggregate fields of "v_event_matches" */ -export interface v_event_matches_aggregate_fields { - count: Scalars['Int'] - max: (v_event_matches_max_fields | null) - min: (v_event_matches_min_fields | null) - __typename: 'v_event_matches_aggregate_fields' -} - - -/** aggregate max on columns */ -export interface v_event_matches_max_fields { - event_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_event_matches_max_fields' -} - - -/** aggregate min on columns */ -export interface v_event_matches_min_fields { - event_id: (Scalars['uuid'] | null) - match_id: (Scalars['uuid'] | null) - __typename: 'v_event_matches_min_fields' -} - - -/** select columns of table "v_event_matches" */ -export type v_event_matches_select_column = 'event_id' | 'match_id' - - /** columns and relationships of "v_event_player_stats" */ export interface v_event_player_stats { assists: (Scalars['Int'] | null) @@ -41693,6 +41742,112 @@ _set?: (e_winning_reasons_set_input | null), where: e_winning_reasons_bool_exp} +/** columns and relationships of "event_match_links" */ +export interface event_match_linksGenqlSelection{ + created_at?: boolean | number + /** An object relationship */ + event?: eventsGenqlSelection + event_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "event_match_links" */ +export interface event_match_links_aggregateGenqlSelection{ + aggregate?: event_match_links_aggregate_fieldsGenqlSelection + nodes?: event_match_linksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "event_match_links" */ +export interface event_match_links_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (event_match_links_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: event_match_links_max_fieldsGenqlSelection + min?: event_match_links_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "event_match_links". All fields are combined with a logical 'AND'. */ +export interface event_match_links_bool_exp {_and?: (event_match_links_bool_exp[] | null),_not?: (event_match_links_bool_exp | null),_or?: (event_match_links_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} + + +/** input type for inserting data into table "event_match_links" */ +export interface event_match_links_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null)} + + +/** aggregate max on columns */ +export interface event_match_links_max_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface event_match_links_min_fieldsGenqlSelection{ + created_at?: boolean | number + event_id?: boolean | number + match_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "event_match_links" */ +export interface event_match_links_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: event_match_linksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "event_match_links" */ +export interface event_match_links_on_conflict {constraint: event_match_links_constraint,update_columns?: event_match_links_update_column[],where?: (event_match_links_bool_exp | null)} + + +/** Ordering options when selecting data from "event_match_links". */ +export interface event_match_links_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} + + +/** primary key columns input for table: event_match_links */ +export interface event_match_links_pk_columns_input {event_id: Scalars['uuid'],match_id: Scalars['uuid']} + + +/** input type for updating data in table "event_match_links" */ +export interface event_match_links_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} + + +/** Streaming cursor of the table "event_match_links" */ +export interface event_match_links_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: event_match_links_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface event_match_links_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} + +export interface event_match_links_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (event_match_links_set_input | null), +/** filter the rows which have to be updated */ +where: event_match_links_bool_exp} + + /** columns and relationships of "event_media" */ export interface event_mediaGenqlSelection{ created_at?: boolean | number @@ -41727,6 +41882,7 @@ export interface event_mediaGenqlSelection{ /** filter the rows returned */ where?: (event_media_players_bool_exp | null)} }) size?: boolean | number + thumbnail_filename?: boolean | number title?: boolean | number /** An object relationship */ uploader?: playersGenqlSelection @@ -41791,7 +41947,7 @@ export interface event_media_avg_order_by {size?: (order_by | null),uploader_ste /** Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. */ -export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} +export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),thumbnail_filename?: (String_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} /** input type for incrementing numeric columns in table "event_media" */ @@ -41799,7 +41955,7 @@ export interface event_media_inc_input {size?: (Scalars['bigint'] | null),upload /** input type for inserting data into table "event_media" */ -export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate max on columns */ @@ -41810,6 +41966,7 @@ export interface event_media_max_fieldsGenqlSelection{ id?: boolean | number mime_type?: boolean | number size?: boolean | number + thumbnail_filename?: boolean | number title?: boolean | number uploader_steam_id?: boolean | number __typename?: boolean | number @@ -41818,7 +41975,7 @@ export interface event_media_max_fieldsGenqlSelection{ /** order by max() on columns of table "event_media" */ -export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} /** aggregate min on columns */ @@ -41829,6 +41986,7 @@ export interface event_media_min_fieldsGenqlSelection{ id?: boolean | number mime_type?: boolean | number size?: boolean | number + thumbnail_filename?: boolean | number title?: boolean | number uploader_steam_id?: boolean | number __typename?: boolean | number @@ -41837,7 +41995,7 @@ export interface event_media_min_fieldsGenqlSelection{ /** order by min() on columns of table "event_media" */ -export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} /** response of any mutation on the table "event_media" */ @@ -41862,7 +42020,7 @@ export interface event_media_on_conflict {constraint: event_media_constraint,upd /** Ordering options when selecting data from "event_media". */ -export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} /** primary key columns input for table: event_media */ @@ -42108,7 +42266,7 @@ export interface event_media_players_variance_order_by {steam_id?: (order_by | n /** input type for updating data in table "event_media" */ -export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ @@ -42159,7 +42317,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate sum on columns */ @@ -42966,6 +43124,7 @@ export interface eventsGenqlSelection{ created_at?: boolean | number description?: boolean | number ends_at?: boolean | number + hide_creator_organizer?: boolean | number id?: boolean | number /** A computed field, executes function "is_event_organizer" */ is_organizer?: boolean | number @@ -43161,7 +43320,7 @@ export interface events_avg_fieldsGenqlSelection{ /** Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'. */ -export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),banner?: (event_media_bool_exp | null),banner_media_id?: (uuid_comparison_exp | null),can_upload_media?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),media?: (event_media_bool_exp | null),media_access?: (e_event_media_access_enum_comparison_exp | null),media_aggregate?: (event_media_aggregate_bool_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null),visibility?: (e_event_visibility_enum_comparison_exp | null)} +export interface events_bool_exp {_and?: (events_bool_exp[] | null),_not?: (events_bool_exp | null),_or?: (events_bool_exp[] | null),banner?: (event_media_bool_exp | null),banner_media_id?: (uuid_comparison_exp | null),can_upload_media?: (Boolean_comparison_exp | null),can_view?: (Boolean_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),description?: (String_comparison_exp | null),ends_at?: (timestamptz_comparison_exp | null),hide_creator_organizer?: (Boolean_comparison_exp | null),id?: (uuid_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),media?: (event_media_bool_exp | null),media_access?: (e_event_media_access_enum_comparison_exp | null),media_aggregate?: (event_media_aggregate_bool_exp | null),name?: (String_comparison_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),organizers?: (event_organizers_bool_exp | null),organizers_aggregate?: (event_organizers_aggregate_bool_exp | null),player_stats?: (v_event_player_stats_bool_exp | null),player_stats_aggregate?: (v_event_player_stats_aggregate_bool_exp | null),players?: (event_players_bool_exp | null),players_aggregate?: (event_players_aggregate_bool_exp | null),starts_at?: (timestamptz_comparison_exp | null),teams?: (event_teams_bool_exp | null),teams_aggregate?: (event_teams_aggregate_bool_exp | null),tournaments?: (event_tournaments_bool_exp | null),tournaments_aggregate?: (event_tournaments_aggregate_bool_exp | null),visibility?: (e_event_visibility_enum_comparison_exp | null)} /** input type for incrementing numeric columns in table "events" */ @@ -43169,7 +43328,7 @@ export interface events_inc_input {organizer_steam_id?: (Scalars['bigint'] | nul /** input type for inserting data into table "events" */ -export interface events_insert_input {banner?: (event_media_obj_rel_insert_input | null),banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media?: (event_media_arr_rel_insert_input | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null),visibility?: (e_event_visibility_enum | null)} +export interface events_insert_input {banner?: (event_media_obj_rel_insert_input | null),banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media?: (event_media_arr_rel_insert_input | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),organizers?: (event_organizers_arr_rel_insert_input | null),player_stats?: (v_event_player_stats_arr_rel_insert_input | null),players?: (event_players_arr_rel_insert_input | null),starts_at?: (Scalars['timestamptz'] | null),teams?: (event_teams_arr_rel_insert_input | null),tournaments?: (event_tournaments_arr_rel_insert_input | null),visibility?: (e_event_visibility_enum | null)} /** aggregate max on columns */ @@ -43224,7 +43383,7 @@ export interface events_on_conflict {constraint: events_constraint,update_column /** Ordering options when selecting data from "events". */ -export interface events_order_by {banner?: (event_media_order_by | null),banner_media_id?: (order_by | null),can_upload_media?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),media_access?: (order_by | null),media_aggregate?: (event_media_aggregate_order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null),visibility?: (order_by | null)} +export interface events_order_by {banner?: (event_media_order_by | null),banner_media_id?: (order_by | null),can_upload_media?: (order_by | null),can_view?: (order_by | null),created_at?: (order_by | null),description?: (order_by | null),ends_at?: (order_by | null),hide_creator_organizer?: (order_by | null),id?: (order_by | null),is_organizer?: (order_by | null),media_access?: (order_by | null),media_aggregate?: (event_media_aggregate_order_by | null),name?: (order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),organizers_aggregate?: (event_organizers_aggregate_order_by | null),player_stats_aggregate?: (v_event_player_stats_aggregate_order_by | null),players_aggregate?: (event_players_aggregate_order_by | null),starts_at?: (order_by | null),teams_aggregate?: (event_teams_aggregate_order_by | null),tournaments_aggregate?: (event_tournaments_aggregate_order_by | null),visibility?: (order_by | null)} /** primary key columns input for table: events */ @@ -43232,7 +43391,7 @@ export interface events_pk_columns_input {id: Scalars['uuid']} /** input type for updating data in table "events" */ -export interface events_set_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} +export interface events_set_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} /** aggregate stddev on columns */ @@ -43268,7 +43427,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} +export interface events_stream_cursor_value_input {banner_media_id?: (Scalars['uuid'] | null),created_at?: (Scalars['timestamptz'] | null),description?: (Scalars['String'] | null),ends_at?: (Scalars['timestamptz'] | null),hide_creator_organizer?: (Scalars['Boolean'] | null),id?: (Scalars['uuid'] | null),media_access?: (e_event_media_access_enum | null),name?: (Scalars['String'] | null),organizer_steam_id?: (Scalars['bigint'] | null),starts_at?: (Scalars['timestamptz'] | null),visibility?: (e_event_visibility_enum | null)} /** aggregate sum on columns */ @@ -52302,6 +52461,8 @@ export interface matchesGenqlSelection{ server?: serversGenqlSelection server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -52437,7 +52598,7 @@ export interface matches_avg_order_by {organizer_steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. */ -export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} +export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_plugin_runtime?: (String_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "matches" */ @@ -52484,6 +52645,8 @@ export interface matches_max_fieldsGenqlSelection{ scheduled_at?: boolean | number server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -52538,6 +52701,8 @@ export interface matches_min_fieldsGenqlSelection{ scheduled_at?: boolean | number server_error?: boolean | number server_id?: boolean | number + /** A computed field, executes function "get_match_server_plugin_runtime" */ + server_plugin_runtime?: boolean | number /** A computed field, executes function "get_match_server_region" */ server_region?: boolean | number /** A computed field, executes function "get_match_server_type" */ @@ -52578,7 +52743,7 @@ export interface matches_on_conflict {constraint: matches_constraint,update_colu /** Ordering options when selecting data from "matches". */ -export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} +export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_plugin_runtime?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: matches */ @@ -53215,6 +53380,12 @@ export interface mutation_rootGenqlSelection{ where: e_winning_reasons_bool_exp} }) /** delete single row from the table: "e_winning_reasons" */ delete_e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "event_match_links" */ + delete_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: event_match_links_bool_exp} }) + /** delete single row from the table: "event_match_links" */ + delete_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) /** delete data from the table: "event_media" */ delete_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -54382,6 +54553,18 @@ export interface mutation_rootGenqlSelection{ object: e_winning_reasons_insert_input, /** upsert condition */ on_conflict?: (e_winning_reasons_on_conflict | null)} }) + /** insert data into the table: "event_match_links" */ + insert_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: event_match_links_insert_input[], + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) + /** insert a single row into the table: "event_match_links" */ + insert_event_match_links_one?: (event_match_linksGenqlSelection & { __args: { + /** the row to be inserted */ + object: event_match_links_insert_input, + /** upsert condition */ + on_conflict?: (event_match_links_on_conflict | null)} }) /** insert data into the table: "event_media" */ insert_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -56451,6 +56634,20 @@ export interface mutation_rootGenqlSelection{ update_e_winning_reasons_many?: (e_winning_reasons_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_winning_reasons_updates[]} }) + /** update data of the table: "event_match_links" */ + update_event_match_links?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), + /** filter the rows which have to be updated */ + where: event_match_links_bool_exp} }) + /** update single row of the table: "event_match_links" */ + update_event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (event_match_links_set_input | null), pk_columns: event_match_links_pk_columns_input} }) + /** update multiples rows of table: "event_match_links" */ + update_event_match_links_many?: (event_match_links_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: event_match_links_updates[]} }) /** update data of the table: "event_media" */ update_event_media?: (event_media_mutation_responseGenqlSelection & { __args: { /** increments the numeric columns with given value of the filtered values */ @@ -71156,6 +71353,32 @@ export interface query_rootGenqlSelection{ where?: (e_winning_reasons_bool_exp | null)} }) /** fetch data from the table: "e_winning_reasons" using primary key columns */ e_winning_reasons_by_pk?: (e_winning_reasonsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) /** fetch data from the table: "event_media" */ event_media?: (event_mediaGenqlSelection & { __args?: { /** distinct select on columns */ @@ -73849,30 +74072,6 @@ export interface query_rootGenqlSelection{ where?: (tournaments_bool_exp | null)} }) /** fetch data from the table: "tournaments" using primary key columns */ tournaments_by_pk?: (tournamentsGenqlSelection & { __args: {id: Scalars['uuid']} }) - /** fetch data from the table: "v_event_matches" */ - v_event_matches?: (v_event_matchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_matches_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_event_matches" */ - v_event_matches_aggregate?: (v_event_matches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_matches_bool_exp | null)} }) /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -77632,6 +77831,40 @@ export interface subscription_rootGenqlSelection{ cursor: (e_winning_reasons_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_winning_reasons_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" */ + event_match_links?: (event_match_linksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch aggregated fields from the table: "event_match_links" */ + event_match_links_aggregate?: (event_match_links_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (event_match_links_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?: (event_match_links_order_by[] | null), + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) + /** fetch data from the table: "event_match_links" using primary key columns */ + event_match_links_by_pk?: (event_match_linksGenqlSelection & { __args: {event_id: Scalars['uuid'], match_id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "event_match_links" */ + event_match_links_stream?: (event_match_linksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (event_match_links_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (event_match_links_bool_exp | null)} }) /** fetch data from the table: "event_media" */ event_media?: (event_mediaGenqlSelection & { __args?: { /** distinct select on columns */ @@ -81060,38 +81293,6 @@ export interface subscription_rootGenqlSelection{ cursor: (tournaments_stream_cursor_input | null)[], /** filter the rows returned */ where?: (tournaments_bool_exp | null)} }) - /** fetch data from the table: "v_event_matches" */ - v_event_matches?: (v_event_matchesGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_matches_bool_exp | null)} }) - /** fetch aggregated fields from the table: "v_event_matches" */ - v_event_matches_aggregate?: (v_event_matches_aggregateGenqlSelection & { __args?: { - /** distinct select on columns */ - distinct_on?: (v_event_matches_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?: (v_event_matches_order_by[] | null), - /** filter the rows returned */ - where?: (v_event_matches_bool_exp | null)} }) - /** fetch data from the table in a streaming manner: "v_event_matches" */ - v_event_matches_stream?: (v_event_matchesGenqlSelection & { __args: { - /** maximum number of rows returned in a single batch */ - batch_size: Scalars['Int'], - /** cursor to stream the results returned by the query */ - cursor: (v_event_matches_stream_cursor_input | null)[], - /** filter the rows returned */ - where?: (v_event_matches_bool_exp | null)} }) /** fetch data from the table: "v_event_player_stats" */ v_event_player_stats?: (v_event_player_statsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -87777,76 +87978,6 @@ _contains?: (Scalars['uuid'][] | null),_eq?: (Scalars['uuid'][] | null),_gt?: (S export interface uuid_comparison_exp {_eq?: (Scalars['uuid'] | null),_gt?: (Scalars['uuid'] | null),_gte?: (Scalars['uuid'] | null),_in?: (Scalars['uuid'][] | null),_is_null?: (Scalars['Boolean'] | null),_lt?: (Scalars['uuid'] | null),_lte?: (Scalars['uuid'] | null),_neq?: (Scalars['uuid'] | null),_nin?: (Scalars['uuid'][] | null)} -/** columns and relationships of "v_event_matches" */ -export interface v_event_matchesGenqlSelection{ - /** An object relationship */ - event?: eventsGenqlSelection - event_id?: boolean | number - /** An object relationship */ - match?: matchesGenqlSelection - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregated selection of "v_event_matches" */ -export interface v_event_matches_aggregateGenqlSelection{ - aggregate?: v_event_matches_aggregate_fieldsGenqlSelection - nodes?: v_event_matchesGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate fields of "v_event_matches" */ -export interface v_event_matches_aggregate_fieldsGenqlSelection{ - count?: { __args: {columns?: (v_event_matches_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number - max?: v_event_matches_max_fieldsGenqlSelection - min?: v_event_matches_min_fieldsGenqlSelection - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Boolean expression to filter rows from the table "v_event_matches". All fields are combined with a logical 'AND'. */ -export interface v_event_matches_bool_exp {_and?: (v_event_matches_bool_exp[] | null),_not?: (v_event_matches_bool_exp | null),_or?: (v_event_matches_bool_exp[] | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null)} - - -/** aggregate max on columns */ -export interface v_event_matches_max_fieldsGenqlSelection{ - event_id?: boolean | number - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** aggregate min on columns */ -export interface v_event_matches_min_fieldsGenqlSelection{ - event_id?: boolean | number - match_id?: boolean | number - __typename?: boolean | number - __scalar?: boolean | number -} - - -/** Ordering options when selecting data from "v_event_matches". */ -export interface v_event_matches_order_by {event?: (events_order_by | null),event_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null)} - - -/** Streaming cursor of the table "v_event_matches" */ -export interface v_event_matches_stream_cursor_input { -/** Stream column input with initial value */ -initial_value: v_event_matches_stream_cursor_value_input, -/** cursor ordering */ -ordering?: (cursor_ordering | null)} - - -/** Initial value of the column from where the streaming should start */ -export interface v_event_matches_stream_cursor_value_input {event_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null)} - - /** columns and relationships of "v_event_player_stats" */ export interface v_event_player_statsGenqlSelection{ assists?: boolean | number @@ -98822,6 +98953,54 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const event_match_links_possibleTypes: string[] = ['event_match_links'] + export const isevent_match_links = (obj?: { __typename?: any } | null): obj is event_match_links => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links"') + return event_match_links_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_aggregate_possibleTypes: string[] = ['event_match_links_aggregate'] + export const isevent_match_links_aggregate = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate"') + return event_match_links_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_aggregate_fields_possibleTypes: string[] = ['event_match_links_aggregate_fields'] + export const isevent_match_links_aggregate_fields = (obj?: { __typename?: any } | null): obj is event_match_links_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_aggregate_fields"') + return event_match_links_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_max_fields_possibleTypes: string[] = ['event_match_links_max_fields'] + export const isevent_match_links_max_fields = (obj?: { __typename?: any } | null): obj is event_match_links_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_max_fields"') + return event_match_links_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_min_fields_possibleTypes: string[] = ['event_match_links_min_fields'] + export const isevent_match_links_min_fields = (obj?: { __typename?: any } | null): obj is event_match_links_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_min_fields"') + return event_match_links_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const event_match_links_mutation_response_possibleTypes: string[] = ['event_match_links_mutation_response'] + export const isevent_match_links_mutation_response = (obj?: { __typename?: any } | null): obj is event_match_links_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isevent_match_links_mutation_response"') + return event_match_links_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const event_media_possibleTypes: string[] = ['event_media'] export const isevent_media = (obj?: { __typename?: any } | null): obj is event_media => { if (!obj?.__typename) throw new Error('__typename is missing in "isevent_media"') @@ -108886,46 +109065,6 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection - const v_event_matches_possibleTypes: string[] = ['v_event_matches'] - export const isv_event_matches = (obj?: { __typename?: any } | null): obj is v_event_matches => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches"') - return v_event_matches_possibleTypes.includes(obj.__typename) - } - - - - const v_event_matches_aggregate_possibleTypes: string[] = ['v_event_matches_aggregate'] - export const isv_event_matches_aggregate = (obj?: { __typename?: any } | null): obj is v_event_matches_aggregate => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_aggregate"') - return v_event_matches_aggregate_possibleTypes.includes(obj.__typename) - } - - - - const v_event_matches_aggregate_fields_possibleTypes: string[] = ['v_event_matches_aggregate_fields'] - export const isv_event_matches_aggregate_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_aggregate_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_aggregate_fields"') - return v_event_matches_aggregate_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_matches_max_fields_possibleTypes: string[] = ['v_event_matches_max_fields'] - export const isv_event_matches_max_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_max_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_max_fields"') - return v_event_matches_max_fields_possibleTypes.includes(obj.__typename) - } - - - - const v_event_matches_min_fields_possibleTypes: string[] = ['v_event_matches_min_fields'] - export const isv_event_matches_min_fields = (obj?: { __typename?: any } | null): obj is v_event_matches_min_fields => { - if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_matches_min_fields"') - return v_event_matches_min_fields_possibleTypes.includes(obj.__typename) - } - - - const v_event_player_stats_possibleTypes: string[] = ['v_event_player_stats'] export const isv_event_player_stats = (obj?: { __typename?: any } | null): obj is v_event_player_stats => { if (!obj?.__typename) throw new Error('__typename is missing in "isv_event_player_stats"') @@ -113407,6 +113546,22 @@ export const enumEWinningReasonsUpdateColumn = { value: 'value' as const } +export const enumEventMatchLinksConstraint = { + event_match_links_pkey: 'event_match_links_pkey' as const +} + +export const enumEventMatchLinksSelectColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + +export const enumEventMatchLinksUpdateColumn = { + created_at: 'created_at' as const, + event_id: 'event_id' as const, + match_id: 'match_id' as const +} + export const enumEventMediaConstraint = { event_media_event_id_filename_key: 'event_media_event_id_filename_key' as const, event_media_pkey: 'event_media_pkey' as const @@ -113435,6 +113590,7 @@ export const enumEventMediaSelectColumn = { id: 'id' as const, mime_type: 'mime_type' as const, size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, title: 'title' as const, uploader_steam_id: 'uploader_steam_id' as const } @@ -113446,6 +113602,7 @@ export const enumEventMediaUpdateColumn = { id: 'id' as const, mime_type: 'mime_type' as const, size: 'size' as const, + thumbnail_filename: 'thumbnail_filename' as const, title: 'title' as const, uploader_steam_id: 'uploader_steam_id' as const } @@ -113523,6 +113680,7 @@ export const enumEventsSelectColumn = { created_at: 'created_at' as const, description: 'description' as const, ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, id: 'id' as const, media_access: 'media_access' as const, name: 'name' as const, @@ -113536,6 +113694,7 @@ export const enumEventsUpdateColumn = { created_at: 'created_at' as const, description: 'description' as const, ends_at: 'ends_at' as const, + hide_creator_organizer: 'hide_creator_organizer' as const, id: 'id' as const, media_access: 'media_access' as const, name: 'name' as const, @@ -116752,11 +116911,6 @@ export const enumTournamentsUpdateColumn = { trophies_enabled: 'trophies_enabled' as const } -export const enumVEventMatchesSelectColumn = { - event_id: 'event_id' as const, - match_id: 'match_id' as const -} - export const enumVEventPlayerStatsSelectColumn = { assists: 'assists' as const, deaths: 'deaths' as const, diff --git a/generated/types.ts b/generated/types.ts index 3152a5f7..2c19fd80 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -204,425 +204,427 @@ export default { 1225, 1234, 1238, - 1250, - 1272, - 1283, - 1295, - 1303, - 1315, + 1244, + 1252, + 1256, + 1268, + 1290, + 1301, + 1313, + 1321, 1333, - 1344, - 1356, + 1351, + 1362, 1374, - 1385, - 1397, - 1413, - 1423, - 1427, - 1437, - 1447, - 1451, - 1458, - 1468, + 1392, + 1403, + 1415, + 1431, + 1441, + 1445, + 1455, + 1465, + 1469, 1476, - 1481, - 1488, - 1497, - 1505, + 1486, + 1494, + 1499, + 1506, + 1515, 1523, - 1539, - 1540, 1541, - 1553, - 1567, - 1581, - 1589, - 1600, - 1613, - 1621, - 1630, - 1632, - 1634, + 1557, + 1558, + 1559, + 1571, + 1585, + 1599, + 1607, + 1618, + 1631, + 1639, 1648, + 1650, + 1652, 1666, - 1676, 1684, - 1699, - 1710, - 1722, + 1694, + 1702, + 1717, + 1728, 1740, - 1751, - 1763, + 1758, + 1769, 1781, - 1792, - 1804, - 1820, - 1831, - 1835, - 1843, - 1857, - 1865, - 1880, - 1891, - 1903, + 1799, + 1810, + 1822, + 1838, + 1849, + 1853, + 1861, + 1875, + 1883, + 1898, + 1909, 1921, - 1932, - 1944, + 1939, + 1950, 1962, - 1974, - 1986, - 1998, - 2007, - 2011, - 2017, - 2026, - 2030, + 1980, + 1992, + 2004, + 2016, + 2025, + 2029, + 2035, 2044, - 2055, - 2056, - 2057, - 2069, - 2081, - 2090, - 2094, - 2106, - 2117, - 2118, - 2119, - 2123, + 2048, + 2062, + 2073, + 2074, + 2075, + 2087, + 2099, + 2108, + 2112, + 2124, 2135, - 2147, - 2159, - 2178, - 2193, - 2205, - 2225, - 2236, - 2237, - 2238, - 2250, + 2136, + 2137, + 2141, + 2153, + 2165, + 2177, + 2196, + 2211, + 2223, + 2243, + 2254, + 2255, + 2256, 2268, - 2280, - 2292, - 2313, - 2329, - 2330, + 2286, + 2298, + 2310, 2331, - 2343, + 2347, + 2348, + 2349, 2361, - 2372, - 2384, - 2400, - 2410, - 2414, - 2426, - 2438, - 2450, - 2463, - 2473, + 2379, + 2390, + 2402, + 2418, + 2428, + 2432, + 2444, + 2456, + 2468, 2481, - 2494, - 2504, - 2508, - 2523, - 2538, - 2539, - 2540, - 2552, - 2564, - 2572, - 2576, - 2588, - 2600, - 2612, - 2624, - 2632, - 2636, - 2663, - 2664, - 2665, - 2689, - 2698, - 2706, + 2491, + 2499, + 2512, + 2522, + 2526, + 2541, + 2556, + 2557, + 2558, + 2570, + 2582, + 2590, + 2594, + 2606, + 2618, + 2630, + 2642, + 2650, + 2654, + 2681, + 2682, + 2683, + 2707, + 2716, 2724, - 2739, - 2740, - 2741, - 2753, - 2761, - 2763, - 2774, - 2785, - 2797, - 2810, - 2820, + 2742, + 2757, + 2758, + 2759, + 2771, + 2779, + 2781, + 2792, + 2803, + 2815, 2828, 2838, - 2847, - 2855, - 2870, - 2881, - 2893, - 2913, - 2924, - 2925, - 2926, - 2938, - 2954, - 2974, - 2985, - 2997, - 3010, - 3019, - 3027, - 3042, - 3053, - 3065, - 3085, - 3096, - 3097, - 3098, - 3110, - 3140, - 3151, - 3163, - 3171, - 3182, - 3183, - 3184, - 3196, - 3215, - 3237, - 3248, - 3260, - 3276, - 3302, - 3329, - 3340, - 3352, - 3368, - 3388, - 3399, - 3411, + 2846, + 2856, + 2865, + 2873, + 2888, + 2899, + 2911, + 2931, + 2942, + 2943, + 2944, + 2956, + 2972, + 2992, + 3003, + 3015, + 3028, + 3037, + 3045, + 3060, + 3071, + 3083, + 3103, + 3114, + 3115, + 3116, + 3128, + 3158, + 3169, + 3181, + 3189, + 3200, + 3201, + 3202, + 3214, + 3233, + 3255, + 3266, + 3278, + 3294, + 3320, + 3347, + 3358, + 3370, + 3386, + 3406, + 3417, 3429, - 3440, - 3452, - 3480, - 3491, - 3492, - 3493, - 3494, - 3495, - 3496, - 3497, + 3447, + 3458, + 3470, 3498, - 3499, + 3509, + 3510, 3511, - 3524, - 3534, + 3512, + 3513, + 3514, + 3515, + 3516, + 3517, + 3529, 3542, - 3553, - 3566, - 3574, + 3552, + 3560, + 3571, 3584, - 3593, - 3601, - 3616, - 3627, - 3639, + 3592, + 3602, + 3611, + 3619, + 3634, + 3645, 3657, - 3668, - 3680, - 3704, - 3726, - 3736, + 3675, + 3686, + 3698, + 3722, 3744, 3754, - 3763, - 3771, - 3785, - 3795, + 3762, + 3772, + 3781, + 3789, 3803, 3813, - 3822, - 3830, - 3847, - 3859, - 3860, - 3861, - 3873, - 3885, - 3893, - 3897, - 3899, - 3909, - 3919, - 3923, - 3930, - 3940, + 3821, + 3831, + 3840, + 3848, + 3865, + 3877, + 3878, + 3879, + 3891, + 3903, + 3911, + 3915, + 3917, + 3927, + 3937, + 3941, 3948, 3958, - 3967, - 3975, - 3990, - 4001, - 4013, - 4033, - 4044, - 4045, - 4046, - 4058, - 4071, - 4080, - 4088, - 4103, - 4113, - 4114, - 4115, - 4119, + 3966, + 3976, + 3985, + 3993, + 4008, + 4019, + 4031, + 4051, + 4062, + 4063, + 4064, + 4076, + 4089, + 4098, + 4106, + 4121, 4131, - 4142, - 4154, - 4174, - 4186, - 4187, - 4188, - 4200, - 4213, - 4223, + 4132, + 4133, + 4137, + 4149, + 4160, + 4172, + 4192, + 4204, + 4205, + 4206, + 4218, 4231, 4241, - 4250, - 4258, - 4273, - 4285, - 4297, - 4305, - 4306, - 4320, - 4332, - 4333, - 4334, - 4346, + 4249, + 4259, + 4268, + 4276, + 4291, + 4303, + 4315, + 4323, + 4324, + 4338, + 4350, + 4351, + 4352, 4364, - 4375, - 4387, + 4382, + 4393, 4405, - 4416, - 4428, - 4449, - 4465, - 4466, + 4423, + 4434, + 4446, 4467, - 4479, + 4483, + 4484, + 4485, 4497, - 4508, - 4520, + 4515, + 4526, 4538, - 4549, - 4561, + 4556, + 4567, 4579, - 4591, - 4603, - 4623, - 4634, - 4635, - 4636, - 4648, + 4597, + 4609, + 4621, + 4641, + 4652, + 4653, + 4654, 4666, - 4678, - 4690, - 4710, - 4722, - 4723, - 4724, - 4736, - 4744, + 4684, + 4696, + 4708, + 4728, + 4740, + 4741, + 4742, 4754, - 4783, - 4784, - 4785, - 4786, - 4787, - 4788, - 4789, - 4790, + 4762, 4791, - 4816, - 4842, - 4885, - 4886, - 4887, - 4888, - 4889, - 4890, - 4891, - 4892, + 4792, + 4793, + 4794, + 4795, + 4796, + 4797, + 4798, + 4799, + 4824, + 4850, 4893, - 4922, - 4950, - 4975, - 4993, - 5011, - 5032, - 5052, - 5078, - 5103, - 5121, - 5157, - 5158, - 5159, - 5160, - 5161, - 5162, - 5163, - 5164, + 4894, + 4895, + 4896, + 4897, + 4898, + 4899, + 4900, + 4901, + 4930, + 4958, + 4983, + 5001, + 5019, + 5040, + 5060, + 5086, + 5111, + 5129, 5165, - 5190, - 5208, - 5226, - 5254, - 5281, - 5299, - 5317, - 5343, - 5368, - 5386, - 5413, - 5414, - 5415, - 5428, - 5448, - 5468, - 5498, - 5510, - 5511, - 5512, - 5513, - 5514, - 5515, - 5516, - 5517, + 5166, + 5167, + 5168, + 5169, + 5170, + 5171, + 5172, + 5173, + 5198, + 5216, + 5234, + 5262, + 5289, + 5307, + 5325, + 5351, + 5376, + 5394, + 5421, + 5422, + 5423, + 5436, + 5456, + 5476, + 5506, 5518, - 5530, - 5564, - 5565, - 5566, - 5567, - 5568, - 5569, - 5570, - 5571, + 5519, + 5520, + 5521, + 5522, + 5523, + 5524, + 5525, + 5526, + 5538, 5572, - 5615, - 5616, - 5617, - 5618, - 5619, - 5620, - 5621, - 5622, - 5623 + 5573, + 5574, + 5575, + 5576, + 5577, + 5578, + 5579, + 5580, + 5623, + 5624, + 5625, + 5626, + 5627, + 5628, + 5629, + 5630, + 5631 ], "types": { "ActiveConnection": { @@ -639,7 +641,7 @@ export default { 78 ], "query_start": [ - 4305 + 4323 ], "state": [ 78 @@ -668,7 +670,7 @@ export default { 78 ], "query_start": [ - 4305 + 4323 ], "state": [ 78 @@ -766,7 +768,7 @@ export default { 38 ], "payload": [ - 1634 + 1652 ], "start_ms": [ 38 @@ -800,7 +802,7 @@ export default { 78 ], "match_map_id": [ - 4744 + 4762 ], "output": [ 6 @@ -860,7 +862,7 @@ export default { }, "CpuStat": { "time": [ - 4305 + 4323 ], "total": [ 180 @@ -877,7 +879,7 @@ export default { }, "CreateClipRenderOutput": { "job_id": [ - 4744 + 4762 ], "success": [ 3 @@ -888,7 +890,7 @@ export default { }, "CreateDraftGameOutput": { "draftGameId": [ - 4744 + 4762 ], "__typename": [ 78 @@ -896,7 +898,7 @@ export default { }, "CreateScheduledMatchOutput": { "matchId": [ - 4744 + 4762 ], "__typename": [ 78 @@ -1052,7 +1054,7 @@ export default { 20 ], "time": [ - 4305 + 4323 ], "__typename": [ 78 @@ -1078,7 +1080,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "mode": [ 78 @@ -1157,7 +1159,7 @@ export default { 3 ], "modified": [ - 4305 + 4323 ], "name": [ 78 @@ -1261,7 +1263,7 @@ export default { 32 ], "time": [ - 4305 + 4323 ], "__typename": [ 78 @@ -1503,7 +1505,7 @@ export default { 78 ], "player": [ - 3721 + 3739 ], "profile_url": [ 78 @@ -1520,7 +1522,7 @@ export default { }, "MemoryStat": { "time": [ - 4305 + 4323 ], "total": [ 180 @@ -1537,7 +1539,7 @@ export default { 49 ], "time": [ - 4305 + 4323 ], "__typename": [ 78 @@ -1557,7 +1559,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "published_at": [ 78 @@ -2315,16 +2317,16 @@ export default { 38 ], "last_analyze": [ - 4305 + 4323 ], "last_autoanalyze": [ - 4305 + 4323 ], "last_autovacuum": [ - 4305 + 4323 ], "last_vacuum": [ - 4305 + 4323 ], "n_dead_tup": [ 38 @@ -2398,7 +2400,7 @@ export default { 78 ], "next_start": [ - 4305 + 4323 ], "__typename": [ 78 @@ -2420,7 +2422,7 @@ export default { }, "TournamentMatchResetImpact": { "bracket_id": [ - 4744 + 4762 ], "depth": [ 38 @@ -2429,7 +2431,7 @@ export default { 3 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 @@ -2472,10 +2474,10 @@ export default { }, "_map_pool": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2526,10 +2528,10 @@ export default { 95 ], "map_id": [ - 4746 + 4764 ], "map_pool_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -2538,10 +2540,10 @@ export default { "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2549,10 +2551,10 @@ export default { }, "_map_pool_max_fields": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2560,10 +2562,10 @@ export default { }, "_map_pool_min_fields": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2596,10 +2598,10 @@ export default { }, "_map_pool_order_by": { "map_id": [ - 2763 + 2781 ], "map_pool_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -2607,10 +2609,10 @@ export default { }, "_map_pool_pk_columns_input": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2619,10 +2621,10 @@ export default { "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2641,10 +2643,10 @@ export default { }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2665,10 +2667,10 @@ export default { "_uuid": {}, "abandoned_matches": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -2765,7 +2767,7 @@ export default { 119 ], "count": [ - 2763 + 2781 ], "max": [ 125 @@ -2819,7 +2821,7 @@ export default { }, "abandoned_matches_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -2836,10 +2838,10 @@ export default { 120 ], "abandoned_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "steam_id": [ 182 @@ -2859,10 +2861,10 @@ export default { }, "abandoned_matches_insert_input": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -2873,10 +2875,10 @@ export default { }, "abandoned_matches_max_fields": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -2887,13 +2889,13 @@ export default { }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -2901,10 +2903,10 @@ export default { }, "abandoned_matches_min_fields": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -2915,13 +2917,13 @@ export default { }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -2954,13 +2956,13 @@ export default { }, "abandoned_matches_order_by": { "abandoned_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -2968,7 +2970,7 @@ export default { }, "abandoned_matches_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -2977,10 +2979,10 @@ export default { "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -2999,7 +3001,7 @@ export default { }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3015,7 +3017,7 @@ export default { }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3031,7 +3033,7 @@ export default { }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3050,10 +3052,10 @@ export default { }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -3072,7 +3074,7 @@ export default { }, "abandoned_matches_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3103,7 +3105,7 @@ export default { }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3119,7 +3121,7 @@ export default { }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3135,7 +3137,7 @@ export default { }, "abandoned_matches_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3143,16 +3145,16 @@ export default { }, "api_keys": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3238,16 +3240,16 @@ export default { 156 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "label": [ 80 ], "last_used_at": [ - 4307 + 4325 ], "steam_id": [ 182 @@ -3267,16 +3269,16 @@ export default { }, "api_keys_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3287,16 +3289,16 @@ export default { }, "api_keys_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3307,16 +3309,16 @@ export default { }, "api_keys_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3352,19 +3354,19 @@ export default { }, "api_keys_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "last_used_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3372,7 +3374,7 @@ export default { }, "api_keys_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -3381,16 +3383,16 @@ export default { "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3436,16 +3438,16 @@ export default { }, "api_keys_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "last_used_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -3503,7 +3505,7 @@ export default { }, "approve_league_season_movements_args": { "_league_season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -3615,49 +3617,49 @@ export default { }, "clip_render_jobs": { "clip": [ - 2125 + 2143 ], "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1510 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map": [ - 2416 + 2434 ], "match_map_demo": [ - 2300 + 2318 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "paused": [ 3 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -3666,7 +3668,7 @@ export default { 38 ], "spec": [ - 1634, + 1652, { "path": [ 78 @@ -3677,7 +3679,7 @@ export default { 78 ], "status_history": [ - 1634, + 1652, { "path": [ 78 @@ -3685,7 +3687,7 @@ export default { } ], "user": [ - 3721 + 3739 ], "user_steam_id": [ 180 @@ -3822,7 +3824,7 @@ export default { 196 ], "count": [ - 2763 + 2781 ], "max": [ 205 @@ -3857,10 +3859,10 @@ export default { }, "clip_render_jobs_append_input": { "spec": [ - 1634 + 1652 ], "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -3893,13 +3895,13 @@ export default { }, "clip_render_jobs_avg_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -3916,49 +3918,49 @@ export default { 197 ], "clip": [ - 2134 + 2152 ], "clip_id": [ - 4746 + 4764 ], "created_at": [ - 4307 + 4325 ], "error_message": [ 80 ], "game_server_node": [ - 1522 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4746 + 4764 ], "k8s_job_name": [ 80 ], "last_status_at": [ - 4307 + 4325 ], "match_map": [ - 2425 + 2443 ], "match_map_demo": [ - 2312 + 2330 ], "match_map_demo_id": [ - 4746 + 4764 ], "match_map_id": [ - 4746 + 4764 ], "paused": [ 4 ], "progress": [ - 2762 + 2780 ], "session_token": [ 80 @@ -3967,16 +3969,16 @@ export default { 39 ], "spec": [ - 1636 + 1654 ], "status": [ 80 ], "status_history": [ - 1636 + 1654 ], "user": [ - 3725 + 3743 ], "user_steam_id": [ 182 @@ -4021,7 +4023,7 @@ export default { }, "clip_render_jobs_inc_input": { "progress": [ - 2761 + 2779 ], "sort_index": [ 38 @@ -4035,49 +4037,49 @@ export default { }, "clip_render_jobs_insert_input": { "clip": [ - 2143 + 2161 ], "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1534 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map": [ - 2434 + 2452 ], "match_map_demo": [ - 2324 + 2342 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "paused": [ 3 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -4086,16 +4088,16 @@ export default { 38 ], "spec": [ - 1634 + 1652 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "user": [ - 3732 + 3750 ], "user_steam_id": [ 180 @@ -4106,10 +4108,10 @@ export default { }, "clip_render_jobs_max_fields": { "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -4118,22 +4120,22 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -4153,46 +4155,46 @@ export default { }, "clip_render_jobs_max_order_by": { "clip_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "progress": [ - 2763 + 2781 ], "session_token": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4200,10 +4202,10 @@ export default { }, "clip_render_jobs_min_fields": { "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -4212,22 +4214,22 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -4247,46 +4249,46 @@ export default { }, "clip_render_jobs_min_order_by": { "clip_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "progress": [ - 2763 + 2781 ], "session_token": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4319,70 +4321,70 @@ export default { }, "clip_render_jobs_order_by": { "clip": [ - 2145 + 2163 ], "clip_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node": [ - 1536 + 1554 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_demo": [ - 2326 + 2344 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "paused": [ - 2763 + 2781 ], "progress": [ - 2763 + 2781 ], "session_token": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "spec": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "status_history": [ - 2763 + 2781 ], "user": [ - 3734 + 3752 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4390,7 +4392,7 @@ export default { }, "clip_render_jobs_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -4398,10 +4400,10 @@ export default { }, "clip_render_jobs_prepend_input": { "spec": [ - 1634 + 1652 ], "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -4412,10 +4414,10 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -4424,25 +4426,25 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "paused": [ 3 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -4451,13 +4453,13 @@ export default { 38 ], "spec": [ - 1634 + 1652 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "user_steam_id": [ 180 @@ -4482,13 +4484,13 @@ export default { }, "clip_render_jobs_stddev_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4510,13 +4512,13 @@ export default { }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4538,13 +4540,13 @@ export default { }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4563,10 +4565,10 @@ export default { }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -4575,25 +4577,25 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "paused": [ 3 ], "progress": [ - 2761 + 2779 ], "session_token": [ 78 @@ -4602,13 +4604,13 @@ export default { 38 ], "spec": [ - 1634 + 1652 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "user_steam_id": [ 180 @@ -4619,7 +4621,7 @@ export default { }, "clip_render_jobs_sum_fields": { "progress": [ - 2761 + 2779 ], "sort_index": [ 38 @@ -4633,13 +4635,13 @@ export default { }, "clip_render_jobs_sum_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4691,13 +4693,13 @@ export default { }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4719,13 +4721,13 @@ export default { }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4747,13 +4749,13 @@ export default { }, "clip_render_jobs_variance_order_by": { "progress": [ - 2763 + 2781 ], "sort_index": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4761,7 +4763,7 @@ export default { }, "clone_league_season_args": { "_league_season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -4770,10 +4772,10 @@ export default { "cursor_ordering": {}, "db_backups": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -4862,10 +4864,10 @@ export default { 241 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "name": [ 80 @@ -4888,10 +4890,10 @@ export default { }, "db_backups_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -4905,10 +4907,10 @@ export default { }, "db_backups_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -4922,10 +4924,10 @@ export default { }, "db_backups_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -4964,16 +4966,16 @@ export default { }, "db_backups_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "__typename": [ 78 @@ -4981,7 +4983,7 @@ export default { }, "db_backups_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -4990,10 +4992,10 @@ export default { "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -5042,10 +5044,10 @@ export default { }, "db_backups_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -5109,22 +5111,22 @@ export default { 3 ], "captain": [ - 3721 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "draft_game": [ 354 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "is_organizer": [ 3 @@ -5133,7 +5135,7 @@ export default { 38 ], "picked": [ - 3721 + 3739 ], "picked_steam_id": [ 180 @@ -5270,7 +5272,7 @@ export default { 274 ], "count": [ - 2763 + 2781 ], "max": [ 280 @@ -5330,13 +5332,13 @@ export default { }, "draft_game_picks_avg_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5356,22 +5358,22 @@ export default { 4 ], "captain": [ - 3725 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4307 + 4325 ], "draft_game": [ 365 ], "draft_game_id": [ - 4746 + 4764 ], "id": [ - 4746 + 4764 ], "is_organizer": [ 4 @@ -5380,7 +5382,7 @@ export default { 39 ], "picked": [ - 3725 + 3743 ], "picked_steam_id": [ 182 @@ -5409,28 +5411,28 @@ export default { 3 ], "captain": [ - 3732 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "draft_game": [ 374 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "lineup": [ 38 ], "picked": [ - 3732 + 3750 ], "picked_steam_id": [ 180 @@ -5444,13 +5446,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "lineup": [ 38 @@ -5464,22 +5466,22 @@ export default { }, "draft_game_picks_max_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "draft_game_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5490,13 +5492,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "lineup": [ 38 @@ -5510,22 +5512,22 @@ export default { }, "draft_game_picks_min_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "draft_game_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5558,37 +5560,37 @@ export default { }, "draft_game_picks_order_by": { "auto_picked": [ - 2763 + 2781 ], "captain": [ - 3734 + 3752 ], "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "draft_game": [ 376 ], "draft_game_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked": [ - 3734 + 3752 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5596,7 +5598,7 @@ export default { }, "draft_game_picks_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -5613,13 +5615,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "lineup": [ 38 @@ -5647,13 +5649,13 @@ export default { }, "draft_game_picks_stddev_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5675,13 +5677,13 @@ export default { }, "draft_game_picks_stddev_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5703,13 +5705,13 @@ export default { }, "draft_game_picks_stddev_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5734,13 +5736,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "draft_game_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "lineup": [ 38 @@ -5768,13 +5770,13 @@ export default { }, "draft_game_picks_sum_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5811,13 +5813,13 @@ export default { }, "draft_game_picks_var_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5839,13 +5841,13 @@ export default { }, "draft_game_picks_var_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5867,13 +5869,13 @@ export default { }, "draft_game_picks_variance_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "picked_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -5884,7 +5886,7 @@ export default { 354 ], "draft_game_id": [ - 4744 + 4762 ], "e_draft_game_player_status": [ 483 @@ -5899,7 +5901,7 @@ export default { 3 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -5908,7 +5910,7 @@ export default { 38 ], "player": [ - 3721 + 3739 ], "status": [ 488 @@ -6048,7 +6050,7 @@ export default { 319 ], "count": [ - 2763 + 2781 ], "max": [ 325 @@ -6111,16 +6113,16 @@ export default { }, "draft_game_players_avg_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6140,7 +6142,7 @@ export default { 365 ], "draft_game_id": [ - 4746 + 4764 ], "e_draft_game_player_status": [ 486 @@ -6155,7 +6157,7 @@ export default { 4 ], "joined_at": [ - 4307 + 4325 ], "lineup": [ 39 @@ -6164,7 +6166,7 @@ export default { 39 ], "player": [ - 3725 + 3743 ], "status": [ 489 @@ -6199,7 +6201,7 @@ export default { 374 ], "draft_game_id": [ - 4744 + 4762 ], "e_draft_game_player_status": [ 494 @@ -6211,7 +6213,7 @@ export default { 3 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -6220,7 +6222,7 @@ export default { 38 ], "player": [ - 3732 + 3750 ], "status": [ 488 @@ -6234,13 +6236,13 @@ export default { }, "draft_game_players_max_fields": { "draft_game_id": [ - 4744 + 4762 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -6257,22 +6259,22 @@ export default { }, "draft_game_players_max_order_by": { "draft_game_id": [ - 2763 + 2781 ], "elo_snapshot": [ - 2763 + 2781 ], "joined_at": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6280,13 +6282,13 @@ export default { }, "draft_game_players_min_fields": { "draft_game_id": [ - 4744 + 4762 ], "elo_snapshot": [ 38 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -6303,22 +6305,22 @@ export default { }, "draft_game_players_min_order_by": { "draft_game_id": [ - 2763 + 2781 ], "elo_snapshot": [ - 2763 + 2781 ], "joined_at": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6354,37 +6356,37 @@ export default { 376 ], "draft_game_id": [ - 2763 + 2781 ], "e_draft_game_player_status": [ 496 ], "elo_snapshot": [ - 2763 + 2781 ], "is_captain": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "joined_at": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "status": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6392,7 +6394,7 @@ export default { }, "draft_game_players_pk_columns_input": { "draft_game_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -6406,7 +6408,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": [ - 4744 + 4762 ], "elo_snapshot": [ 38 @@ -6415,7 +6417,7 @@ export default { 3 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -6452,16 +6454,16 @@ export default { }, "draft_game_players_stddev_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6486,16 +6488,16 @@ export default { }, "draft_game_players_stddev_pop_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6520,16 +6522,16 @@ export default { }, "draft_game_players_stddev_samp_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6548,7 +6550,7 @@ export default { }, "draft_game_players_stream_cursor_value_input": { "draft_game_id": [ - 4744 + 4762 ], "elo_snapshot": [ 38 @@ -6557,7 +6559,7 @@ export default { 3 ], "joined_at": [ - 4306 + 4324 ], "lineup": [ 38 @@ -6594,16 +6596,16 @@ export default { }, "draft_game_players_sum_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6643,16 +6645,16 @@ export default { }, "draft_game_players_var_pop_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6677,16 +6679,16 @@ export default { }, "draft_game_players_var_samp_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6711,16 +6713,16 @@ export default { }, "draft_game_players_variance_order_by": { "elo_snapshot": [ - 2763 + 2781 ], "lineup": [ - 2763 + 2781 ], "pick_order": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -6737,7 +6739,7 @@ export default { 425 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 @@ -6761,40 +6763,40 @@ export default { 711 ], "expires_at": [ - 4306 + 4324 ], "host": [ - 3721 + 3739 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4744 + 4762 ], "is_organizer": [ 3 ], "map_pool": [ - 2077 + 2095 ], "map_pool_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -6806,10 +6808,10 @@ export default { 467 ], "options": [ - 2458 + 2476 ], "pattern": [ - 1634, + 1652, { "path": [ 78 @@ -6817,7 +6819,7 @@ export default { } ], "pick_deadline": [ - 4306 + 4324 ], "picks": [ 264, @@ -6914,28 +6916,28 @@ export default { 3 ], "scheduled_at": [ - 4306 + 4324 ], "status": [ 509 ], "team_1": [ - 4263 + 4281 ], "team_1_id": [ - 4744 + 4762 ], "team_2": [ - 4263 + 4281 ], "team_2_id": [ - 4744 + 4762 ], "type": [ 860 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -7069,7 +7071,7 @@ export default { 364 ], "count": [ - 2763 + 2781 ], "max": [ 370 @@ -7135,19 +7137,19 @@ export default { }, "draft_games_avg_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -7173,7 +7175,7 @@ export default { 426 ], "created_at": [ - 4307 + 4325 ], "current_pick_lineup": [ 39 @@ -7197,40 +7199,40 @@ export default { 714 ], "expires_at": [ - 4307 + 4325 ], "host": [ - 3725 + 3743 ], "host_steam_id": [ 182 ], "id": [ - 4746 + 4764 ], "inner_squad": [ 4 ], "invite_code": [ - 4746 + 4764 ], "is_organizer": [ 4 ], "map_pool": [ - 2080 + 2098 ], "map_pool_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_options_id": [ - 4746 + 4764 ], "max_elo": [ 39 @@ -7242,13 +7244,13 @@ export default { 468 ], "options": [ - 2462 + 2480 ], "pattern": [ - 1636 + 1654 ], "pick_deadline": [ - 4307 + 4325 ], "picks": [ 275 @@ -7269,28 +7271,28 @@ export default { 4 ], "scheduled_at": [ - 4307 + 4325 ], "status": [ 510 ], "team_1": [ - 4272 + 4290 ], "team_1_id": [ - 4746 + 4764 ], "team_2": [ - 4272 + 4290 ], "team_2_id": [ - 4746 + 4764 ], "type": [ 861 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -7328,7 +7330,7 @@ export default { 425 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 @@ -7352,37 +7354,37 @@ export default { 722 ], "expires_at": [ - 4306 + 4324 ], "host": [ - 3732 + 3750 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4744 + 4762 ], "map_pool": [ - 2086 + 2104 ], "map_pool_id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -7394,10 +7396,10 @@ export default { 467 ], "options": [ - 2469 + 2487 ], "pick_deadline": [ - 4306 + 4324 ], "picks": [ 272 @@ -7412,28 +7414,28 @@ export default { 3 ], "scheduled_at": [ - 4306 + 4324 ], "status": [ 509 ], "team_1": [ - 4281 + 4299 ], "team_1_id": [ - 4744 + 4762 ], "team_2": [ - 4281 + 4299 ], "team_2_id": [ - 4744 + 4762 ], "type": [ 860 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -7444,31 +7446,31 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4306 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "invite_code": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -7477,22 +7479,22 @@ export default { 38 ], "pick_deadline": [ - 4306 + 4324 ], "regions": [ 78 ], "scheduled_at": [ - 4306 + 4324 ], "team_1_id": [ - 4744 + 4762 ], "team_2_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -7500,58 +7502,58 @@ export default { }, "draft_games_max_order_by": { "capacity": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invite_code": [ - 2763 + 2781 ], "map_pool_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "pick_deadline": [ - 2763 + 2781 ], "regions": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "team_1_id": [ - 2763 + 2781 ], "team_2_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -7562,31 +7564,31 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 ], "expires_at": [ - 4306 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "invite_code": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -7595,22 +7597,22 @@ export default { 38 ], "pick_deadline": [ - 4306 + 4324 ], "regions": [ 78 ], "scheduled_at": [ - 4306 + 4324 ], "team_1_id": [ - 4744 + 4762 ], "team_2_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -7618,58 +7620,58 @@ export default { }, "draft_games_min_order_by": { "capacity": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invite_code": [ - 2763 + 2781 ], "map_pool_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "pick_deadline": [ - 2763 + 2781 ], "regions": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "team_1_id": [ - 2763 + 2781 ], "team_2_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -7713,22 +7715,22 @@ export default { }, "draft_games_order_by": { "access": [ - 2763 + 2781 ], "capacity": [ - 2763 + 2781 ], "captain_selection": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "draft_order": [ - 2763 + 2781 ], "e_draft_game_captain_selection": [ 433 @@ -7746,58 +7748,58 @@ export default { 724 ], "expires_at": [ - 2763 + 2781 ], "host": [ - 3734 + 3752 ], "host_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "inner_squad": [ - 2763 + 2781 ], "invite_code": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "map_pool": [ - 2088 + 2106 ], "map_pool_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "mode": [ - 2763 + 2781 ], "options": [ - 2471 + 2489 ], "pattern": [ - 2763 + 2781 ], "pick_deadline": [ - 2763 + 2781 ], "picks_aggregate": [ 271 @@ -7806,34 +7808,34 @@ export default { 316 ], "regions": [ - 2763 + 2781 ], "require_approval": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "team_1": [ - 4283 + 4301 ], "team_1_id": [ - 2763 + 2781 ], "team_2": [ - 4283 + 4301 ], "team_2_id": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -7841,7 +7843,7 @@ export default { }, "draft_games_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -7861,7 +7863,7 @@ export default { 425 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 @@ -7870,28 +7872,28 @@ export default { 446 ], "expires_at": [ - 4306 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -7903,7 +7905,7 @@ export default { 467 ], "pick_deadline": [ - 4306 + 4324 ], "regions": [ 78 @@ -7912,22 +7914,22 @@ export default { 3 ], "scheduled_at": [ - 4306 + 4324 ], "status": [ 509 ], "team_1_id": [ - 4744 + 4762 ], "team_2_id": [ - 4744 + 4762 ], "type": [ 860 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -7955,19 +7957,19 @@ export default { }, "draft_games_stddev_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -7995,19 +7997,19 @@ export default { }, "draft_games_stddev_pop_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8035,19 +8037,19 @@ export default { }, "draft_games_stddev_samp_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8075,7 +8077,7 @@ export default { 425 ], "created_at": [ - 4306 + 4324 ], "current_pick_lineup": [ 38 @@ -8084,28 +8086,28 @@ export default { 446 ], "expires_at": [ - 4306 + 4324 ], "host_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "inner_squad": [ 3 ], "invite_code": [ - 4744 + 4762 ], "map_pool_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_elo": [ 38 @@ -8117,7 +8119,7 @@ export default { 467 ], "pick_deadline": [ - 4306 + 4324 ], "regions": [ 78 @@ -8126,22 +8128,22 @@ export default { 3 ], "scheduled_at": [ - 4306 + 4324 ], "status": [ 509 ], "team_1_id": [ - 4744 + 4762 ], "team_2_id": [ - 4744 + 4762 ], "type": [ 860 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -8169,19 +8171,19 @@ export default { }, "draft_games_sum_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8224,19 +8226,19 @@ export default { }, "draft_games_var_pop_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8264,19 +8266,19 @@ export default { }, "draft_games_var_samp_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8304,19 +8306,19 @@ export default { }, "draft_games_variance_order_by": { "capacity": [ - 2763 + 2781 ], "current_pick_lineup": [ - 2763 + 2781 ], "host_steam_id": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8469,10 +8471,10 @@ export default { }, "e_check_in_settings_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8690,10 +8692,10 @@ export default { }, "e_draft_game_captain_selection_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -8911,10 +8913,10 @@ export default { }, "e_draft_game_draft_order_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -9132,10 +9134,10 @@ export default { }, "e_draft_game_mode_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -9353,10 +9355,10 @@ export default { }, "e_draft_game_player_status_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -9574,10 +9576,10 @@ export default { }, "e_draft_game_status_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -9784,10 +9786,10 @@ export default { }, "e_event_media_access_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -9994,10 +9996,10 @@ export default { }, "e_event_visibility_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -10215,10 +10217,10 @@ export default { }, "e_friend_status_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -10425,10 +10427,10 @@ export default { }, "e_game_cfg_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -10646,10 +10648,10 @@ export default { }, "e_game_server_node_statuses_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -10867,10 +10869,10 @@ export default { }, "e_league_movement_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -11088,10 +11090,10 @@ export default { }, "e_league_proposal_statuses_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -11309,10 +11311,10 @@ export default { }, "e_league_registration_statuses_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -11530,10 +11532,10 @@ export default { }, "e_league_season_statuses_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -11751,10 +11753,10 @@ export default { }, "e_lobby_access_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -11961,10 +11963,10 @@ export default { }, "e_lobby_player_status_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -12182,10 +12184,10 @@ export default { }, "e_map_pool_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -12250,10 +12252,10 @@ export default { 78 ], "match_clips": [ - 2125, + 2143, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -12263,19 +12265,19 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_aggregate": [ - 2126, + 2144, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -12285,11 +12287,11 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], @@ -12348,10 +12350,10 @@ export default { 80 ], "match_clips": [ - 2134 + 2152 ], "match_clips_aggregate": [ - 2127 + 2145 ], "value": [ 80 @@ -12387,7 +12389,7 @@ export default { 78 ], "match_clips": [ - 2131 + 2149 ], "value": [ 78 @@ -12445,13 +12447,13 @@ export default { }, "e_match_clip_visibility_order_by": { "description": [ - 2763 + 2781 ], "match_clips_aggregate": [ - 2130 + 2148 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -12516,10 +12518,10 @@ export default { 78 ], "match_maps": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -12529,19 +12531,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -12551,11 +12553,11 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], @@ -12614,10 +12616,10 @@ export default { 80 ], "match_maps": [ - 2425 + 2443 ], "match_maps_aggregate": [ - 2418 + 2436 ], "value": [ 80 @@ -12653,7 +12655,7 @@ export default { 78 ], "match_maps": [ - 2422 + 2440 ], "value": [ 78 @@ -12722,13 +12724,13 @@ export default { }, "e_match_map_status_order_by": { "description": [ - 2763 + 2781 ], "match_maps_aggregate": [ - 2421 + 2439 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -12935,10 +12937,10 @@ export default { }, "e_match_mode_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -13003,10 +13005,10 @@ export default { 78 ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -13016,19 +13018,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_aggregate": [ - 2579, + 2597, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -13038,11 +13040,11 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], @@ -13101,10 +13103,10 @@ export default { 80 ], "matches": [ - 2587 + 2605 ], "matches_aggregate": [ - 2580 + 2598 ], "value": [ 80 @@ -13140,7 +13142,7 @@ export default { 78 ], "matches": [ - 2584 + 2602 ], "value": [ 78 @@ -13209,13 +13211,13 @@ export default { }, "e_match_status_order_by": { "description": [ - 2763 + 2781 ], "matches_aggregate": [ - 2583 + 2601 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -13280,10 +13282,10 @@ export default { 78 ], "maps": [ - 2096, + 2114, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -13293,19 +13295,19 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], "maps_aggregate": [ - 2097, + 2115, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -13315,11 +13317,11 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], @@ -13378,10 +13380,10 @@ export default { 80 ], "maps": [ - 2105 + 2123 ], "maps_aggregate": [ - 2098 + 2116 ], "value": [ 80 @@ -13417,7 +13419,7 @@ export default { 78 ], "maps": [ - 2104 + 2122 ], "value": [ 78 @@ -13486,13 +13488,13 @@ export default { }, "e_match_types_order_by": { "description": [ - 2763 + 2781 ], "maps_aggregate": [ - 2103 + 2121 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -13699,10 +13701,10 @@ export default { }, "e_notification_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -13767,10 +13769,10 @@ export default { 78 ], "player_objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -13780,19 +13782,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -13802,11 +13804,11 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], @@ -13865,10 +13867,10 @@ export default { 80 ], "player_objectives": [ - 3328 + 3346 ], "player_objectives_aggregate": [ - 3321 + 3339 ], "value": [ 80 @@ -13904,7 +13906,7 @@ export default { 78 ], "player_objectives": [ - 3325 + 3343 ], "value": [ 78 @@ -13962,13 +13964,13 @@ export default { }, "e_objective_types_order_by": { "description": [ - 2763 + 2781 ], "player_objectives_aggregate": [ - 3324 + 3342 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -14175,10 +14177,10 @@ export default { }, "e_player_roles_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -14385,10 +14387,10 @@ export default { }, "e_plugin_runtimes_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -14595,10 +14597,10 @@ export default { }, "e_ready_settings_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -14816,10 +14818,10 @@ export default { }, "e_sanction_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -14884,10 +14886,10 @@ export default { 78 ], "scrim_requests": [ - 4162, + 4180, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14897,19 +14899,19 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], "scrim_requests_aggregate": [ - 4163, + 4181, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -14919,11 +14921,11 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], @@ -14982,10 +14984,10 @@ export default { 80 ], "scrim_requests": [ - 4173 + 4191 ], "scrim_requests_aggregate": [ - 4164 + 4182 ], "value": [ 80 @@ -15021,7 +15023,7 @@ export default { 78 ], "scrim_requests": [ - 4170 + 4188 ], "value": [ 78 @@ -15079,13 +15081,13 @@ export default { }, "e_scrim_request_statuses_order_by": { "description": [ - 2763 + 2781 ], "scrim_requests_aggregate": [ - 4169 + 4187 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -15150,10 +15152,10 @@ export default { 78 ], "servers": [ - 3835, + 3853, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -15163,19 +15165,19 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_aggregate": [ - 3836, + 3854, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -15185,11 +15187,11 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], @@ -15248,10 +15250,10 @@ export default { 80 ], "servers": [ - 3846 + 3864 ], "servers_aggregate": [ - 3837 + 3855 ], "value": [ 80 @@ -15287,7 +15289,7 @@ export default { 78 ], "servers": [ - 3843 + 3861 ], "value": [ 78 @@ -15345,13 +15347,13 @@ export default { }, "e_server_types_order_by": { "description": [ - 2763 + 2781 ], "servers_aggregate": [ - 3842 + 3860 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -15416,10 +15418,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15429,19 +15431,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_map_lineup_1_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15451,19 +15453,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_map_lineup_2": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15473,19 +15475,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_map_lineup_2_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -15495,11 +15497,11 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], @@ -15558,16 +15560,16 @@ export default { 80 ], "match_map_lineup_1": [ - 2425 + 2443 ], "match_map_lineup_1_aggregate": [ - 2418 + 2436 ], "match_map_lineup_2": [ - 2425 + 2443 ], "match_map_lineup_2_aggregate": [ - 2418 + 2436 ], "value": [ 80 @@ -15603,10 +15605,10 @@ export default { 78 ], "match_map_lineup_1": [ - 2422 + 2440 ], "match_map_lineup_2": [ - 2422 + 2440 ], "value": [ 78 @@ -15664,16 +15666,16 @@ export default { }, "e_sides_order_by": { "description": [ - 2763 + 2781 ], "match_map_lineup_1_aggregate": [ - 2421 + 2439 ], "match_map_lineup_2_aggregate": [ - 2421 + 2439 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -15880,10 +15882,10 @@ export default { }, "e_system_alert_types_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -15948,10 +15950,10 @@ export default { 78 ], "team_rosters": [ - 4021, + 4039, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -15961,19 +15963,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_rosters_aggregate": [ - 4022, + 4040, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -15983,19 +15985,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "tournament_team_rosters": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16005,19 +16007,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_team_rosters_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -16027,11 +16029,11 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], @@ -16090,16 +16092,16 @@ export default { 80 ], "team_rosters": [ - 4032 + 4050 ], "team_rosters_aggregate": [ - 4023 + 4041 ], "tournament_team_rosters": [ - 4537 + 4555 ], "tournament_team_rosters_aggregate": [ - 4530 + 4548 ], "value": [ 80 @@ -16135,10 +16137,10 @@ export default { 78 ], "team_rosters": [ - 4029 + 4047 ], "tournament_team_rosters": [ - 4534 + 4552 ], "value": [ 78 @@ -16207,16 +16209,16 @@ export default { }, "e_team_roles_order_by": { "description": [ - 2763 + 2781 ], "team_rosters_aggregate": [ - 4028 + 4046 ], "tournament_team_rosters_aggregate": [ - 4533 + 4551 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -16423,10 +16425,10 @@ export default { }, "e_team_roster_statuses_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -16633,10 +16635,10 @@ export default { }, "e_timeout_settings_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -16701,10 +16703,10 @@ export default { 78 ], "tournament_stages": [ - 4436, + 4454, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -16714,19 +16716,19 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "tournament_stages_aggregate": [ - 4437, + 4455, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -16736,11 +16738,11 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], @@ -16799,10 +16801,10 @@ export default { 80 ], "tournament_stages": [ - 4448 + 4466 ], "tournament_stages_aggregate": [ - 4438 + 4456 ], "value": [ 80 @@ -16838,7 +16840,7 @@ export default { 78 ], "tournament_stages": [ - 4445 + 4463 ], "value": [ 78 @@ -16907,13 +16909,13 @@ export default { }, "e_tournament_stage_types_order_by": { "description": [ - 2763 + 2781 ], "tournament_stages_aggregate": [ - 4443 + 4461 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -16978,10 +16980,10 @@ export default { 78 ], "tournaments": [ - 4698, + 4716, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -16991,19 +16993,19 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_aggregate": [ - 4699, + 4717, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -17013,11 +17015,11 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], @@ -17076,10 +17078,10 @@ export default { 80 ], "tournaments": [ - 4709 + 4727 ], "tournaments_aggregate": [ - 4700 + 4718 ], "value": [ 80 @@ -17115,7 +17117,7 @@ export default { 78 ], "tournaments": [ - 4706 + 4724 ], "value": [ 78 @@ -17184,13 +17186,13 @@ export default { }, "e_tournament_status_order_by": { "description": [ - 2763 + 2781 ], "tournaments_aggregate": [ - 4705 + 4723 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -17255,10 +17257,10 @@ export default { 78 ], "player_utilities": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -17268,19 +17270,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utilities_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -17290,11 +17292,11 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], @@ -17353,10 +17355,10 @@ export default { 80 ], "player_utilities": [ - 3656 + 3674 ], "player_utilities_aggregate": [ - 3649 + 3667 ], "value": [ 80 @@ -17392,7 +17394,7 @@ export default { 78 ], "player_utilities": [ - 3653 + 3671 ], "value": [ 78 @@ -17450,13 +17452,13 @@ export default { }, "e_utility_types_order_by": { "description": [ - 2763 + 2781 ], "player_utilities_aggregate": [ - 3652 + 3670 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -17521,10 +17523,10 @@ export default { 78 ], "match_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17534,19 +17536,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -17556,11 +17558,11 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], @@ -17619,10 +17621,10 @@ export default { 80 ], "match_veto_picks": [ - 2399 + 2417 ], "match_veto_picks_aggregate": [ - 2394 + 2412 ], "value": [ 80 @@ -17658,7 +17660,7 @@ export default { 78 ], "match_veto_picks": [ - 2398 + 2416 ], "value": [ 78 @@ -17716,13 +17718,13 @@ export default { }, "e_veto_pick_types_order_by": { "description": [ - 2763 + 2781 ], "match_veto_picks_aggregate": [ - 2397 + 2415 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -17929,10 +17931,10 @@ export default { }, "e_winning_reasons_order_by": { "description": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -17992,30 +17994,270 @@ export default { 78 ] }, + "event_match_links": { + "created_at": [ + 4324 + ], + "event": [ + 1471 + ], + "event_id": [ + 4762 + ], + "match": [ + 2596 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_aggregate": { + "aggregate": [ + 1242 + ], + "nodes": [ + 1240 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_aggregate_fields": { + "count": [ + 38, + { + "columns": [ + 1252, + "[event_match_links_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 1246 + ], + "min": [ + 1247 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_bool_exp": { + "_and": [ + 1243 + ], + "_not": [ + 1243 + ], + "_or": [ + 1243 + ], + "created_at": [ + 4325 + ], + "event": [ + 1475 + ], + "event_id": [ + 4764 + ], + "match": [ + 2605 + ], + "match_id": [ + 4764 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_constraint": {}, + "event_match_links_insert_input": { + "created_at": [ + 4324 + ], + "event": [ + 1482 + ], + "event_id": [ + 4762 + ], + "match": [ + 2614 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_max_fields": { + "created_at": [ + 4324 + ], + "event_id": [ + 4762 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_min_fields": { + "created_at": [ + 4324 + ], + "event_id": [ + 4762 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_mutation_response": { + "affected_rows": [ + 38 + ], + "returning": [ + 1240 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_on_conflict": { + "constraint": [ + 1244 + ], + "update_columns": [ + 1256 + ], + "where": [ + 1243 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_order_by": { + "created_at": [ + 2781 + ], + "event": [ + 1484 + ], + "event_id": [ + 2781 + ], + "match": [ + 2616 + ], + "match_id": [ + 2781 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_pk_columns_input": { + "event_id": [ + 4762 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_select_column": {}, + "event_match_links_set_input": { + "created_at": [ + 4324 + ], + "event_id": [ + 4762 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_stream_cursor_input": { + "initial_value": [ + 1255 + ], + "ordering": [ + 236 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_stream_cursor_value_input": { + "created_at": [ + 4324 + ], + "event_id": [ + 4762 + ], + "match_id": [ + 4762 + ], + "__typename": [ + 78 + ] + }, + "event_match_links_update_column": {}, + "event_match_links_updates": { + "_set": [ + 1253 + ], + "where": [ + 1243 + ], + "__typename": [ + 78 + ] + }, "event_media": { "created_at": [ - 4306 + 4324 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 ], "players": [ - 1262, + 1280, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -18025,19 +18267,19 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "players_aggregate": [ - 1263, + 1281, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -18047,22 +18289,25 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], "uploader": [ - 3721 + 3739 ], "uploader_steam_id": [ 180 @@ -18073,10 +18318,10 @@ export default { }, "event_media_aggregate": { "aggregate": [ - 1244 + 1262 ], "nodes": [ - 1240 + 1258 ], "__typename": [ 78 @@ -18084,7 +18329,7 @@ export default { }, "event_media_aggregate_bool_exp": { "count": [ - 1243 + 1261 ], "__typename": [ 78 @@ -18092,13 +18337,13 @@ export default { }, "event_media_aggregate_bool_exp_count": { "arguments": [ - 1303 + 1321 ], "distinct": [ 3 ], "filter": [ - 1249 + 1267 ], "predicate": [ 39 @@ -18109,13 +18354,13 @@ export default { }, "event_media_aggregate_fields": { "avg": [ - 1247 + 1265 ], "count": [ 38, { "columns": [ - 1303, + 1321, "[event_media_select_column!]" ], "distinct": [ @@ -18124,31 +18369,31 @@ export default { } ], "max": [ - 1253 + 1271 ], "min": [ - 1255 + 1273 ], "stddev": [ - 1305 + 1323 ], "stddev_pop": [ - 1307 + 1325 ], "stddev_samp": [ - 1309 + 1327 ], "sum": [ - 1313 + 1331 ], "var_pop": [ - 1317 + 1335 ], "var_samp": [ - 1319 + 1337 ], "variance": [ - 1321 + 1339 ], "__typename": [ 78 @@ -18156,37 +18401,37 @@ export default { }, "event_media_aggregate_order_by": { "avg": [ - 1248 + 1266 ], "count": [ - 2763 + 2781 ], "max": [ - 1254 + 1272 ], "min": [ - 1256 + 1274 ], "stddev": [ - 1306 + 1324 ], "stddev_pop": [ - 1308 + 1326 ], "stddev_samp": [ - 1310 + 1328 ], "sum": [ - 1314 + 1332 ], "var_pop": [ - 1318 + 1336 ], "var_samp": [ - 1320 + 1338 ], "variance": [ - 1322 + 1340 ], "__typename": [ 78 @@ -18194,10 +18439,10 @@ export default { }, "event_media_arr_rel_insert_input": { "data": [ - 1252 + 1270 ], "on_conflict": [ - 1259 + 1277 ], "__typename": [ 78 @@ -18216,10 +18461,10 @@ export default { }, "event_media_avg_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18227,46 +18472,49 @@ export default { }, "event_media_bool_exp": { "_and": [ - 1249 + 1267 ], "_not": [ - 1249 + 1267 ], "_or": [ - 1249 + 1267 ], "created_at": [ - 4307 + 4325 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "filename": [ 80 ], "id": [ - 4746 + 4764 ], "mime_type": [ 80 ], "players": [ - 1271 + 1289 ], "players_aggregate": [ - 1264 + 1282 ], "size": [ 182 ], + "thumbnail_filename": [ + 80 + ], "title": [ 80 ], "uploader": [ - 3725 + 3743 ], "uploader_steam_id": [ 182 @@ -18289,34 +18537,37 @@ export default { }, "event_media_insert_input": { "created_at": [ - 4306 + 4324 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 ], "players": [ - 1268 + 1286 ], "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], "uploader": [ - 3732 + 3750 ], "uploader_steam_id": [ 180 @@ -18327,16 +18578,16 @@ export default { }, "event_media_max_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 @@ -18344,6 +18595,9 @@ export default { "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], @@ -18356,28 +18610,31 @@ export default { }, "event_media_max_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "filename": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "mime_type": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 + ], + "thumbnail_filename": [ + 2781 ], "title": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18385,16 +18642,16 @@ export default { }, "event_media_min_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 @@ -18402,6 +18659,9 @@ export default { "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], @@ -18414,28 +18674,31 @@ export default { }, "event_media_min_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "filename": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "mime_type": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 + ], + "thumbnail_filename": [ + 2781 ], "title": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18446,7 +18709,7 @@ export default { 38 ], "returning": [ - 1240 + 1258 ], "__typename": [ 78 @@ -18454,10 +18717,10 @@ export default { }, "event_media_obj_rel_insert_input": { "data": [ - 1252 + 1270 ], "on_conflict": [ - 1259 + 1277 ], "__typename": [ 78 @@ -18465,13 +18728,13 @@ export default { }, "event_media_on_conflict": { "constraint": [ - 1250 + 1268 ], "update_columns": [ - 1315 + 1333 ], "where": [ - 1249 + 1267 ], "__typename": [ 78 @@ -18479,37 +18742,40 @@ export default { }, "event_media_order_by": { "created_at": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "filename": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "mime_type": [ - 2763 + 2781 ], "players_aggregate": [ - 1267 + 1285 ], "size": [ - 2763 + 2781 + ], + "thumbnail_filename": [ + 2781 ], "title": [ - 2763 + 2781 ], "uploader": [ - 3734 + 3752 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18517,7 +18783,7 @@ export default { }, "event_media_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -18525,16 +18791,16 @@ export default { }, "event_media_players": { "created_at": [ - 4306 + 4324 ], "media": [ - 1240 + 1258 ], "media_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 @@ -18545,10 +18811,10 @@ export default { }, "event_media_players_aggregate": { "aggregate": [ - 1266 + 1284 ], "nodes": [ - 1262 + 1280 ], "__typename": [ 78 @@ -18556,7 +18822,7 @@ export default { }, "event_media_players_aggregate_bool_exp": { "count": [ - 1265 + 1283 ], "__typename": [ 78 @@ -18564,13 +18830,13 @@ export default { }, "event_media_players_aggregate_bool_exp_count": { "arguments": [ - 1283 + 1301 ], "distinct": [ 3 ], "filter": [ - 1271 + 1289 ], "predicate": [ 39 @@ -18581,13 +18847,13 @@ export default { }, "event_media_players_aggregate_fields": { "avg": [ - 1269 + 1287 ], "count": [ 38, { "columns": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "distinct": [ @@ -18596,31 +18862,31 @@ export default { } ], "max": [ - 1275 + 1293 ], "min": [ - 1277 + 1295 ], "stddev": [ - 1285 + 1303 ], "stddev_pop": [ - 1287 + 1305 ], "stddev_samp": [ - 1289 + 1307 ], "sum": [ - 1293 + 1311 ], "var_pop": [ - 1297 + 1315 ], "var_samp": [ - 1299 + 1317 ], "variance": [ - 1301 + 1319 ], "__typename": [ 78 @@ -18628,37 +18894,37 @@ export default { }, "event_media_players_aggregate_order_by": { "avg": [ - 1270 + 1288 ], "count": [ - 2763 + 2781 ], "max": [ - 1276 + 1294 ], "min": [ - 1278 + 1296 ], "stddev": [ - 1286 + 1304 ], "stddev_pop": [ - 1288 + 1306 ], "stddev_samp": [ - 1290 + 1308 ], "sum": [ - 1294 + 1312 ], "var_pop": [ - 1298 + 1316 ], "var_samp": [ - 1300 + 1318 ], "variance": [ - 1302 + 1320 ], "__typename": [ 78 @@ -18666,10 +18932,10 @@ export default { }, "event_media_players_arr_rel_insert_input": { "data": [ - 1274 + 1292 ], "on_conflict": [ - 1280 + 1298 ], "__typename": [ 78 @@ -18685,7 +18951,7 @@ export default { }, "event_media_players_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18693,25 +18959,25 @@ export default { }, "event_media_players_bool_exp": { "_and": [ - 1271 + 1289 ], "_not": [ - 1271 + 1289 ], "_or": [ - 1271 + 1289 ], "created_at": [ - 4307 + 4325 ], "media": [ - 1249 + 1267 ], "media_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 @@ -18731,16 +18997,16 @@ export default { }, "event_media_players_insert_input": { "created_at": [ - 4306 + 4324 ], "media": [ - 1258 + 1276 ], "media_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 @@ -18751,10 +19017,10 @@ export default { }, "event_media_players_max_fields": { "created_at": [ - 4306 + 4324 ], "media_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -18765,13 +19031,13 @@ export default { }, "event_media_players_max_order_by": { "created_at": [ - 2763 + 2781 ], "media_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18779,10 +19045,10 @@ export default { }, "event_media_players_min_fields": { "created_at": [ - 4306 + 4324 ], "media_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -18793,13 +19059,13 @@ export default { }, "event_media_players_min_order_by": { "created_at": [ - 2763 + 2781 ], "media_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18810,7 +19076,7 @@ export default { 38 ], "returning": [ - 1262 + 1280 ], "__typename": [ 78 @@ -18818,13 +19084,13 @@ export default { }, "event_media_players_on_conflict": { "constraint": [ - 1272 + 1290 ], "update_columns": [ - 1295 + 1313 ], "where": [ - 1271 + 1289 ], "__typename": [ 78 @@ -18832,19 +19098,19 @@ export default { }, "event_media_players_order_by": { "created_at": [ - 2763 + 2781 ], "media": [ - 1260 + 1278 ], "media_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18852,7 +19118,7 @@ export default { }, "event_media_players_pk_columns_input": { "media_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -18864,10 +19130,10 @@ export default { "event_media_players_select_column": {}, "event_media_players_set_input": { "created_at": [ - 4306 + 4324 ], "media_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -18886,7 +19152,7 @@ export default { }, "event_media_players_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18902,7 +19168,7 @@ export default { }, "event_media_players_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18918,7 +19184,7 @@ export default { }, "event_media_players_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18926,7 +19192,7 @@ export default { }, "event_media_players_stream_cursor_input": { "initial_value": [ - 1292 + 1310 ], "ordering": [ 236 @@ -18937,10 +19203,10 @@ export default { }, "event_media_players_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "media_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -18959,7 +19225,7 @@ export default { }, "event_media_players_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -18968,13 +19234,13 @@ export default { "event_media_players_update_column": {}, "event_media_players_updates": { "_inc": [ - 1273 + 1291 ], "_set": [ - 1284 + 1302 ], "where": [ - 1271 + 1289 ], "__typename": [ 78 @@ -18990,7 +19256,7 @@ export default { }, "event_media_players_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19006,7 +19272,7 @@ export default { }, "event_media_players_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19022,7 +19288,7 @@ export default { }, "event_media_players_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19031,16 +19297,16 @@ export default { "event_media_select_column": {}, "event_media_set_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 @@ -19048,6 +19314,9 @@ export default { "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], @@ -19071,10 +19340,10 @@ export default { }, "event_media_stddev_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19093,10 +19362,10 @@ export default { }, "event_media_stddev_pop_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19115,10 +19384,10 @@ export default { }, "event_media_stddev_samp_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19126,7 +19395,7 @@ export default { }, "event_media_stream_cursor_input": { "initial_value": [ - 1312 + 1330 ], "ordering": [ 236 @@ -19137,16 +19406,16 @@ export default { }, "event_media_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "filename": [ 78 ], "id": [ - 4744 + 4762 ], "mime_type": [ 78 @@ -19154,6 +19423,9 @@ export default { "size": [ 180 ], + "thumbnail_filename": [ + 78 + ], "title": [ 78 ], @@ -19177,10 +19449,10 @@ export default { }, "event_media_sum_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19189,13 +19461,13 @@ export default { "event_media_update_column": {}, "event_media_updates": { "_inc": [ - 1251 + 1269 ], "_set": [ - 1304 + 1322 ], "where": [ - 1249 + 1267 ], "__typename": [ 78 @@ -19214,10 +19486,10 @@ export default { }, "event_media_var_pop_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19236,10 +19508,10 @@ export default { }, "event_media_var_samp_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19258,10 +19530,10 @@ export default { }, "event_media_variance_order_by": { "size": [ - 2763 + 2781 ], "uploader_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19269,16 +19541,16 @@ export default { }, "event_organizers": { "created_at": [ - 4306 + 4324 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "organizer": [ - 3721 + 3739 ], "steam_id": [ 180 @@ -19289,10 +19561,10 @@ export default { }, "event_organizers_aggregate": { "aggregate": [ - 1327 + 1345 ], "nodes": [ - 1323 + 1341 ], "__typename": [ 78 @@ -19300,7 +19572,7 @@ export default { }, "event_organizers_aggregate_bool_exp": { "count": [ - 1326 + 1344 ], "__typename": [ 78 @@ -19308,13 +19580,13 @@ export default { }, "event_organizers_aggregate_bool_exp_count": { "arguments": [ - 1344 + 1362 ], "distinct": [ 3 ], "filter": [ - 1332 + 1350 ], "predicate": [ 39 @@ -19325,13 +19597,13 @@ export default { }, "event_organizers_aggregate_fields": { "avg": [ - 1330 + 1348 ], "count": [ 38, { "columns": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "distinct": [ @@ -19340,31 +19612,31 @@ export default { } ], "max": [ - 1336 + 1354 ], "min": [ - 1338 + 1356 ], "stddev": [ - 1346 + 1364 ], "stddev_pop": [ - 1348 + 1366 ], "stddev_samp": [ - 1350 + 1368 ], "sum": [ - 1354 + 1372 ], "var_pop": [ - 1358 + 1376 ], "var_samp": [ - 1360 + 1378 ], "variance": [ - 1362 + 1380 ], "__typename": [ 78 @@ -19372,37 +19644,37 @@ export default { }, "event_organizers_aggregate_order_by": { "avg": [ - 1331 + 1349 ], "count": [ - 2763 + 2781 ], "max": [ - 1337 + 1355 ], "min": [ - 1339 + 1357 ], "stddev": [ - 1347 + 1365 ], "stddev_pop": [ - 1349 + 1367 ], "stddev_samp": [ - 1351 + 1369 ], "sum": [ - 1355 + 1373 ], "var_pop": [ - 1359 + 1377 ], "var_samp": [ - 1361 + 1379 ], "variance": [ - 1363 + 1381 ], "__typename": [ 78 @@ -19410,10 +19682,10 @@ export default { }, "event_organizers_arr_rel_insert_input": { "data": [ - 1335 + 1353 ], "on_conflict": [ - 1341 + 1359 ], "__typename": [ 78 @@ -19429,7 +19701,7 @@ export default { }, "event_organizers_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19437,25 +19709,25 @@ export default { }, "event_organizers_bool_exp": { "_and": [ - 1332 + 1350 ], "_not": [ - 1332 + 1350 ], "_or": [ - 1332 + 1350 ], "created_at": [ - 4307 + 4325 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "organizer": [ - 3725 + 3743 ], "steam_id": [ 182 @@ -19475,16 +19747,16 @@ export default { }, "event_organizers_insert_input": { "created_at": [ - 4306 + 4324 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "organizer": [ - 3732 + 3750 ], "steam_id": [ 180 @@ -19495,10 +19767,10 @@ export default { }, "event_organizers_max_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -19509,13 +19781,13 @@ export default { }, "event_organizers_max_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19523,10 +19795,10 @@ export default { }, "event_organizers_min_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -19537,13 +19809,13 @@ export default { }, "event_organizers_min_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19554,7 +19826,7 @@ export default { 38 ], "returning": [ - 1323 + 1341 ], "__typename": [ 78 @@ -19562,13 +19834,13 @@ export default { }, "event_organizers_on_conflict": { "constraint": [ - 1333 + 1351 ], "update_columns": [ - 1356 + 1374 ], "where": [ - 1332 + 1350 ], "__typename": [ 78 @@ -19576,19 +19848,19 @@ export default { }, "event_organizers_order_by": { "created_at": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "organizer": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19596,7 +19868,7 @@ export default { }, "event_organizers_pk_columns_input": { "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -19608,10 +19880,10 @@ export default { "event_organizers_select_column": {}, "event_organizers_set_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -19630,7 +19902,7 @@ export default { }, "event_organizers_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19646,7 +19918,7 @@ export default { }, "event_organizers_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19662,7 +19934,7 @@ export default { }, "event_organizers_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19670,7 +19942,7 @@ export default { }, "event_organizers_stream_cursor_input": { "initial_value": [ - 1353 + 1371 ], "ordering": [ 236 @@ -19681,10 +19953,10 @@ export default { }, "event_organizers_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -19703,7 +19975,7 @@ export default { }, "event_organizers_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19712,13 +19984,13 @@ export default { "event_organizers_update_column": {}, "event_organizers_updates": { "_inc": [ - 1334 + 1352 ], "_set": [ - 1345 + 1363 ], "where": [ - 1332 + 1350 ], "__typename": [ 78 @@ -19734,7 +20006,7 @@ export default { }, "event_organizers_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19750,7 +20022,7 @@ export default { }, "event_organizers_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19766,7 +20038,7 @@ export default { }, "event_organizers_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19774,16 +20046,16 @@ export default { }, "event_players": { "created_at": [ - 4306 + 4324 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 @@ -19794,10 +20066,10 @@ export default { }, "event_players_aggregate": { "aggregate": [ - 1368 + 1386 ], "nodes": [ - 1364 + 1382 ], "__typename": [ 78 @@ -19805,7 +20077,7 @@ export default { }, "event_players_aggregate_bool_exp": { "count": [ - 1367 + 1385 ], "__typename": [ 78 @@ -19813,13 +20085,13 @@ export default { }, "event_players_aggregate_bool_exp_count": { "arguments": [ - 1385 + 1403 ], "distinct": [ 3 ], "filter": [ - 1373 + 1391 ], "predicate": [ 39 @@ -19830,13 +20102,13 @@ export default { }, "event_players_aggregate_fields": { "avg": [ - 1371 + 1389 ], "count": [ 38, { "columns": [ - 1385, + 1403, "[event_players_select_column!]" ], "distinct": [ @@ -19845,31 +20117,31 @@ export default { } ], "max": [ - 1377 + 1395 ], "min": [ - 1379 + 1397 ], "stddev": [ - 1387 + 1405 ], "stddev_pop": [ - 1389 + 1407 ], "stddev_samp": [ - 1391 + 1409 ], "sum": [ - 1395 + 1413 ], "var_pop": [ - 1399 + 1417 ], "var_samp": [ - 1401 + 1419 ], "variance": [ - 1403 + 1421 ], "__typename": [ 78 @@ -19877,37 +20149,37 @@ export default { }, "event_players_aggregate_order_by": { "avg": [ - 1372 + 1390 ], "count": [ - 2763 + 2781 ], "max": [ - 1378 + 1396 ], "min": [ - 1380 + 1398 ], "stddev": [ - 1388 + 1406 ], "stddev_pop": [ - 1390 + 1408 ], "stddev_samp": [ - 1392 + 1410 ], "sum": [ - 1396 + 1414 ], "var_pop": [ - 1400 + 1418 ], "var_samp": [ - 1402 + 1420 ], "variance": [ - 1404 + 1422 ], "__typename": [ 78 @@ -19915,10 +20187,10 @@ export default { }, "event_players_arr_rel_insert_input": { "data": [ - 1376 + 1394 ], "on_conflict": [ - 1382 + 1400 ], "__typename": [ 78 @@ -19934,7 +20206,7 @@ export default { }, "event_players_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -19942,25 +20214,25 @@ export default { }, "event_players_bool_exp": { "_and": [ - 1373 + 1391 ], "_not": [ - 1373 + 1391 ], "_or": [ - 1373 + 1391 ], "created_at": [ - 4307 + 4325 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 @@ -19980,16 +20252,16 @@ export default { }, "event_players_insert_input": { "created_at": [ - 4306 + 4324 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 @@ -20000,10 +20272,10 @@ export default { }, "event_players_max_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -20014,13 +20286,13 @@ export default { }, "event_players_max_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20028,10 +20300,10 @@ export default { }, "event_players_min_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -20042,13 +20314,13 @@ export default { }, "event_players_min_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20059,7 +20331,7 @@ export default { 38 ], "returning": [ - 1364 + 1382 ], "__typename": [ 78 @@ -20067,13 +20339,13 @@ export default { }, "event_players_on_conflict": { "constraint": [ - 1374 + 1392 ], "update_columns": [ - 1397 + 1415 ], "where": [ - 1373 + 1391 ], "__typename": [ 78 @@ -20081,19 +20353,19 @@ export default { }, "event_players_order_by": { "created_at": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20101,7 +20373,7 @@ export default { }, "event_players_pk_columns_input": { "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -20113,10 +20385,10 @@ export default { "event_players_select_column": {}, "event_players_set_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -20135,7 +20407,7 @@ export default { }, "event_players_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20151,7 +20423,7 @@ export default { }, "event_players_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20167,7 +20439,7 @@ export default { }, "event_players_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20175,7 +20447,7 @@ export default { }, "event_players_stream_cursor_input": { "initial_value": [ - 1394 + 1412 ], "ordering": [ 236 @@ -20186,10 +20458,10 @@ export default { }, "event_players_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -20208,7 +20480,7 @@ export default { }, "event_players_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20217,13 +20489,13 @@ export default { "event_players_update_column": {}, "event_players_updates": { "_inc": [ - 1375 + 1393 ], "_set": [ - 1386 + 1404 ], "where": [ - 1373 + 1391 ], "__typename": [ 78 @@ -20239,7 +20511,7 @@ export default { }, "event_players_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20255,7 +20527,7 @@ export default { }, "event_players_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20271,7 +20543,7 @@ export default { }, "event_players_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20279,19 +20551,19 @@ export default { }, "event_teams": { "created_at": [ - 4306 + 4324 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20299,10 +20571,10 @@ export default { }, "event_teams_aggregate": { "aggregate": [ - 1409 + 1427 ], "nodes": [ - 1405 + 1423 ], "__typename": [ 78 @@ -20310,7 +20582,7 @@ export default { }, "event_teams_aggregate_bool_exp": { "count": [ - 1408 + 1426 ], "__typename": [ 78 @@ -20318,13 +20590,13 @@ export default { }, "event_teams_aggregate_bool_exp_count": { "arguments": [ - 1423 + 1441 ], "distinct": [ 3 ], "filter": [ - 1412 + 1430 ], "predicate": [ 39 @@ -20338,7 +20610,7 @@ export default { 38, { "columns": [ - 1423, + 1441, "[event_teams_select_column!]" ], "distinct": [ @@ -20347,10 +20619,10 @@ export default { } ], "max": [ - 1415 + 1433 ], "min": [ - 1417 + 1435 ], "__typename": [ 78 @@ -20358,13 +20630,13 @@ export default { }, "event_teams_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 1416 + 1434 ], "min": [ - 1418 + 1436 ], "__typename": [ 78 @@ -20372,10 +20644,10 @@ export default { }, "event_teams_arr_rel_insert_input": { "data": [ - 1414 + 1432 ], "on_conflict": [ - 1420 + 1438 ], "__typename": [ 78 @@ -20383,28 +20655,28 @@ export default { }, "event_teams_bool_exp": { "_and": [ - 1412 + 1430 ], "_not": [ - 1412 + 1430 ], "_or": [ - 1412 + 1430 ], "created_at": [ - 4307 + 4325 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -20413,19 +20685,19 @@ export default { "event_teams_constraint": {}, "event_teams_insert_input": { "created_at": [ - 4306 + 4324 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20433,13 +20705,13 @@ export default { }, "event_teams_max_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20447,13 +20719,13 @@ export default { }, "event_teams_max_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20461,13 +20733,13 @@ export default { }, "event_teams_min_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20475,13 +20747,13 @@ export default { }, "event_teams_min_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20492,7 +20764,7 @@ export default { 38 ], "returning": [ - 1405 + 1423 ], "__typename": [ 78 @@ -20500,13 +20772,13 @@ export default { }, "event_teams_on_conflict": { "constraint": [ - 1413 + 1431 ], "update_columns": [ - 1427 + 1445 ], "where": [ - 1412 + 1430 ], "__typename": [ 78 @@ -20514,19 +20786,19 @@ export default { }, "event_teams_order_by": { "created_at": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20534,10 +20806,10 @@ export default { }, "event_teams_pk_columns_input": { "event_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20546,13 +20818,13 @@ export default { "event_teams_select_column": {}, "event_teams_set_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20560,7 +20832,7 @@ export default { }, "event_teams_stream_cursor_input": { "initial_value": [ - 1426 + 1444 ], "ordering": [ 236 @@ -20571,13 +20843,13 @@ export default { }, "event_teams_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20586,10 +20858,10 @@ export default { "event_teams_update_column": {}, "event_teams_updates": { "_set": [ - 1424 + 1442 ], "where": [ - 1412 + 1430 ], "__typename": [ 78 @@ -20597,19 +20869,19 @@ export default { }, "event_tournaments": { "created_at": [ - 4306 + 4324 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20617,10 +20889,10 @@ export default { }, "event_tournaments_aggregate": { "aggregate": [ - 1433 + 1451 ], "nodes": [ - 1429 + 1447 ], "__typename": [ 78 @@ -20628,7 +20900,7 @@ export default { }, "event_tournaments_aggregate_bool_exp": { "count": [ - 1432 + 1450 ], "__typename": [ 78 @@ -20636,13 +20908,13 @@ export default { }, "event_tournaments_aggregate_bool_exp_count": { "arguments": [ - 1447 + 1465 ], "distinct": [ 3 ], "filter": [ - 1436 + 1454 ], "predicate": [ 39 @@ -20656,7 +20928,7 @@ export default { 38, { "columns": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "distinct": [ @@ -20665,10 +20937,10 @@ export default { } ], "max": [ - 1439 + 1457 ], "min": [ - 1441 + 1459 ], "__typename": [ 78 @@ -20676,13 +20948,13 @@ export default { }, "event_tournaments_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 1440 + 1458 ], "min": [ - 1442 + 1460 ], "__typename": [ 78 @@ -20690,10 +20962,10 @@ export default { }, "event_tournaments_arr_rel_insert_input": { "data": [ - 1438 + 1456 ], "on_conflict": [ - 1444 + 1462 ], "__typename": [ 78 @@ -20701,28 +20973,28 @@ export default { }, "event_tournaments_bool_exp": { "_and": [ - 1436 + 1454 ], "_not": [ - 1436 + 1454 ], "_or": [ - 1436 + 1454 ], "created_at": [ - 4307 + 4325 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -20731,19 +21003,19 @@ export default { "event_tournaments_constraint": {}, "event_tournaments_insert_input": { "created_at": [ - 4306 + 4324 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20751,13 +21023,13 @@ export default { }, "event_tournaments_max_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20765,13 +21037,13 @@ export default { }, "event_tournaments_max_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20779,13 +21051,13 @@ export default { }, "event_tournaments_min_fields": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20793,13 +21065,13 @@ export default { }, "event_tournaments_min_order_by": { "created_at": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20810,7 +21082,7 @@ export default { 38 ], "returning": [ - 1429 + 1447 ], "__typename": [ 78 @@ -20818,13 +21090,13 @@ export default { }, "event_tournaments_on_conflict": { "constraint": [ - 1437 + 1455 ], "update_columns": [ - 1451 + 1469 ], "where": [ - 1436 + 1454 ], "__typename": [ 78 @@ -20832,19 +21104,19 @@ export default { }, "event_tournaments_order_by": { "created_at": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -20852,10 +21124,10 @@ export default { }, "event_tournaments_pk_columns_input": { "event_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20864,13 +21136,13 @@ export default { "event_tournaments_select_column": {}, "event_tournaments_set_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20878,7 +21150,7 @@ export default { }, "event_tournaments_stream_cursor_input": { "initial_value": [ - 1450 + 1468 ], "ordering": [ 236 @@ -20889,13 +21161,13 @@ export default { }, "event_tournaments_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "event_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -20904,10 +21176,10 @@ export default { "event_tournaments_update_column": {}, "event_tournaments_updates": { "_set": [ - 1448 + 1466 ], "where": [ - 1436 + 1454 ], "__typename": [ 78 @@ -20915,10 +21187,10 @@ export default { }, "events": { "banner": [ - 1240 + 1258 ], "banner_media_id": [ - 4744 + 4762 ], "can_upload_media": [ 3 @@ -20927,25 +21199,28 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 + ], + "hide_creator_organizer": [ + 3 ], "id": [ - 4744 + 4762 ], "is_organizer": [ 3 ], "media": [ - 1240, + 1258, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -20955,11 +21230,11 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], @@ -20967,10 +21242,10 @@ export default { 530 ], "media_aggregate": [ - 1241, + 1259, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -20980,11 +21255,11 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], @@ -20992,16 +21267,16 @@ export default { 78 ], "organizer": [ - 3721 + 3739 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1323, + 1341, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -21011,19 +21286,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "organizers_aggregate": [ - 1324, + 1342, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -21033,19 +21308,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "player_stats": [ - 4757, + 4765, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -21055,19 +21330,19 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "player_stats_aggregate": [ - 4758, + 4766, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -21077,19 +21352,19 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "players": [ - 1364, + 1382, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -21099,19 +21374,19 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "players_aggregate": [ - 1365, + 1383, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -21121,22 +21396,22 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "starts_at": [ - 4306 + 4324 ], "teams": [ - 1405, + 1423, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -21146,19 +21421,19 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "teams_aggregate": [ - 1406, + 1424, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -21168,19 +21443,19 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "tournaments": [ - 1429, + 1447, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -21190,19 +21465,19 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], "tournaments_aggregate": [ - 1430, + 1448, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -21212,11 +21487,11 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], @@ -21229,10 +21504,10 @@ export default { }, "events_aggregate": { "aggregate": [ - 1455 + 1473 ], "nodes": [ - 1453 + 1471 ], "__typename": [ 78 @@ -21240,13 +21515,13 @@ export default { }, "events_aggregate_fields": { "avg": [ - 1456 + 1474 ], "count": [ 38, { "columns": [ - 1468, + 1486, "[events_select_column!]" ], "distinct": [ @@ -21255,31 +21530,31 @@ export default { } ], "max": [ - 1461 + 1479 ], "min": [ - 1462 + 1480 ], "stddev": [ - 1470 + 1488 ], "stddev_pop": [ - 1471 + 1489 ], "stddev_samp": [ - 1472 + 1490 ], "sum": [ - 1475 + 1493 ], "var_pop": [ - 1478 + 1496 ], "var_samp": [ - 1479 + 1497 ], "variance": [ - 1480 + 1498 ], "__typename": [ 78 @@ -21295,19 +21570,19 @@ export default { }, "events_bool_exp": { "_and": [ - 1457 + 1475 ], "_not": [ - 1457 + 1475 ], "_or": [ - 1457 + 1475 ], "banner": [ - 1249 + 1267 ], "banner_media_id": [ - 4746 + 4764 ], "can_upload_media": [ 4 @@ -21316,70 +21591,73 @@ export default { 4 ], "created_at": [ - 4307 + 4325 ], "description": [ 80 ], "ends_at": [ - 4307 + 4325 + ], + "hide_creator_organizer": [ + 4 ], "id": [ - 4746 + 4764 ], "is_organizer": [ 4 ], "media": [ - 1249 + 1267 ], "media_access": [ 531 ], "media_aggregate": [ - 1242 + 1260 ], "name": [ 80 ], "organizer": [ - 3725 + 3743 ], "organizer_steam_id": [ 182 ], "organizers": [ - 1332 + 1350 ], "organizers_aggregate": [ - 1325 + 1343 ], "player_stats": [ - 4776 + 4784 ], "player_stats_aggregate": [ - 4759 + 4767 ], "players": [ - 1373 + 1391 ], "players_aggregate": [ - 1366 + 1384 ], "starts_at": [ - 4307 + 4325 ], "teams": [ - 1412 + 1430 ], "teams_aggregate": [ - 1407 + 1425 ], "tournaments": [ - 1436 + 1454 ], "tournaments_aggregate": [ - 1431 + 1449 ], "visibility": [ 551 @@ -21399,25 +21677,28 @@ export default { }, "events_insert_input": { "banner": [ - 1258 + 1276 ], "banner_media_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 + ], + "hide_creator_organizer": [ + 3 ], "id": [ - 4744 + 4762 ], "media": [ - 1246 + 1264 ], "media_access": [ 530 @@ -21426,28 +21707,28 @@ export default { 78 ], "organizer": [ - 3732 + 3750 ], "organizer_steam_id": [ 180 ], "organizers": [ - 1329 + 1347 ], "player_stats": [ - 4773 + 4781 ], "players": [ - 1370 + 1388 ], "starts_at": [ - 4306 + 4324 ], "teams": [ - 1411 + 1429 ], "tournaments": [ - 1435 + 1453 ], "visibility": [ 550 @@ -21458,19 +21739,19 @@ export default { }, "events_max_fields": { "banner_media_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -21479,7 +21760,7 @@ export default { 180 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -21487,19 +21768,19 @@ export default { }, "events_min_fields": { "banner_media_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -21508,7 +21789,7 @@ export default { 180 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -21519,7 +21800,7 @@ export default { 38 ], "returning": [ - 1453 + 1471 ], "__typename": [ 78 @@ -21527,10 +21808,10 @@ export default { }, "events_obj_rel_insert_input": { "data": [ - 1460 + 1478 ], "on_conflict": [ - 1465 + 1483 ], "__typename": [ 78 @@ -21538,13 +21819,13 @@ export default { }, "events_on_conflict": { "constraint": [ - 1458 + 1476 ], "update_columns": [ - 1476 + 1494 ], "where": [ - 1457 + 1475 ], "__typename": [ 78 @@ -21552,67 +21833,70 @@ export default { }, "events_order_by": { "banner": [ - 1260 + 1278 ], "banner_media_id": [ - 2763 + 2781 ], "can_upload_media": [ - 2763 + 2781 ], "can_view": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "ends_at": [ - 2763 + 2781 + ], + "hide_creator_organizer": [ + 2781 ], "id": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "media_access": [ - 2763 + 2781 ], "media_aggregate": [ - 1245 + 1263 ], "name": [ - 2763 + 2781 ], "organizer": [ - 3734 + 3752 ], "organizer_steam_id": [ - 2763 + 2781 ], "organizers_aggregate": [ - 1328 + 1346 ], "player_stats_aggregate": [ - 4772 + 4780 ], "players_aggregate": [ - 1369 + 1387 ], "starts_at": [ - 2763 + 2781 ], "teams_aggregate": [ - 1410 + 1428 ], "tournaments_aggregate": [ - 1434 + 1452 ], "visibility": [ - 2763 + 2781 ], "__typename": [ 78 @@ -21620,7 +21904,7 @@ export default { }, "events_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -21629,19 +21913,22 @@ export default { "events_select_column": {}, "events_set_input": { "banner_media_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 + ], + "hide_creator_organizer": [ + 3 ], "id": [ - 4744 + 4762 ], "media_access": [ 530 @@ -21653,7 +21940,7 @@ export default { 180 ], "starts_at": [ - 4306 + 4324 ], "visibility": [ 550 @@ -21688,7 +21975,7 @@ export default { }, "events_stream_cursor_input": { "initial_value": [ - 1474 + 1492 ], "ordering": [ 236 @@ -21699,19 +21986,22 @@ export default { }, "events_stream_cursor_value_input": { "banner_media_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 + ], + "hide_creator_organizer": [ + 3 ], "id": [ - 4744 + 4762 ], "media_access": [ 530 @@ -21723,7 +22013,7 @@ export default { 180 ], "starts_at": [ - 4306 + 4324 ], "visibility": [ 550 @@ -21743,13 +22033,13 @@ export default { "events_update_column": {}, "events_updates": { "_inc": [ - 1459 + 1477 ], "_set": [ - 1469 + 1487 ], "where": [ - 1457 + 1475 ], "__typename": [ 78 @@ -21782,31 +22072,31 @@ export default { "float8": {}, "float8_comparison_exp": { "_eq": [ - 1481 + 1499 ], "_gt": [ - 1481 + 1499 ], "_gte": [ - 1481 + 1499 ], "_in": [ - 1481 + 1499 ], "_is_null": [ 3 ], "_lt": [ - 1481 + 1499 ], "_lte": [ - 1481 + 1499 ], "_neq": [ - 1481 + 1499 ], "_nin": [ - 1481 + 1499 ], "__typename": [ 78 @@ -21831,10 +22121,10 @@ export default { }, "friends_aggregate": { "aggregate": [ - 1485 + 1503 ], "nodes": [ - 1483 + 1501 ], "__typename": [ 78 @@ -21842,13 +22132,13 @@ export default { }, "friends_aggregate_fields": { "avg": [ - 1486 + 1504 ], "count": [ 38, { "columns": [ - 1497, + 1515, "[friends_select_column!]" ], "distinct": [ @@ -21857,31 +22147,31 @@ export default { } ], "max": [ - 1491 + 1509 ], "min": [ - 1492 + 1510 ], "stddev": [ - 1499 + 1517 ], "stddev_pop": [ - 1500 + 1518 ], "stddev_samp": [ - 1501 + 1519 ], "sum": [ - 1504 + 1522 ], "var_pop": [ - 1507 + 1525 ], "var_samp": [ - 1508 + 1526 ], "variance": [ - 1509 + 1527 ], "__typename": [ 78 @@ -21900,13 +22190,13 @@ export default { }, "friends_bool_exp": { "_and": [ - 1487 + 1505 ], "_not": [ - 1487 + 1505 ], "_or": [ - 1487 + 1505 ], "e_status": [ 568 @@ -21980,7 +22270,7 @@ export default { 38 ], "returning": [ - 1483 + 1501 ], "__typename": [ 78 @@ -21988,13 +22278,13 @@ export default { }, "friends_on_conflict": { "constraint": [ - 1488 + 1506 ], "update_columns": [ - 1505 + 1523 ], "where": [ - 1487 + 1505 ], "__typename": [ 78 @@ -22005,13 +22295,13 @@ export default { 578 ], "other_player_steam_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "__typename": [ 78 @@ -22078,7 +22368,7 @@ export default { }, "friends_stream_cursor_input": { "initial_value": [ - 1503 + 1521 ], "ordering": [ 236 @@ -22115,13 +22405,13 @@ export default { "friends_update_column": {}, "friends_updates": { "_inc": [ - 1489 + 1507 ], "_set": [ - 1498 + 1516 ], "where": [ - 1487 + 1505 ], "__typename": [ 78 @@ -22171,7 +22461,7 @@ export default { 38 ], "cpu_frequency_info": [ - 1634, + 1652, { "path": [ 78 @@ -22179,7 +22469,7 @@ export default { } ], "cpu_governor_info": [ - 1634, + 1652, { "path": [ 78 @@ -22193,7 +22483,7 @@ export default { 38 ], "cs2_launch_options": [ - 1634, + 1652, { "path": [ 78 @@ -22201,7 +22491,7 @@ export default { } ], "cs2_video_settings": [ - 1634, + 1652, { "path": [ 78 @@ -22221,7 +22511,7 @@ export default { 38 ], "e_region": [ - 3808 + 3826 ], "e_status": [ 606 @@ -22242,7 +22532,7 @@ export default { 3 ], "gpu_info": [ - 1634, + 1652, { "path": [ 78 @@ -22262,13 +22552,13 @@ export default { 78 ], "lan_ip": [ - 1630 + 1648 ], "node_ip": [ - 1630 + 1648 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -22280,22 +22570,22 @@ export default { 78 ], "pinned_version": [ - 1561 + 1579 ], "plugin_supported": [ 3 ], "public_ip": [ - 1630 + 1648 ], "region": [ 78 ], "servers": [ - 3835, + 3853, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -22305,19 +22595,19 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_aggregate": [ - 3836, + 3854, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -22327,16 +22617,16 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -22345,7 +22635,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1634, + 1652, { "path": [ 78 @@ -22374,7 +22664,7 @@ export default { 78 ], "version": [ - 1561 + 1579 ], "__typename": [ 78 @@ -22382,10 +22672,10 @@ export default { }, "game_server_nodes_aggregate": { "aggregate": [ - 1516 + 1534 ], "nodes": [ - 1510 + 1528 ], "__typename": [ 78 @@ -22393,13 +22683,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 1513 + 1531 ], "bool_or": [ - 1514 + 1532 ], "count": [ - 1515 + 1533 ], "__typename": [ 78 @@ -22407,13 +22697,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 1540 + 1558 ], "distinct": [ 3 ], "filter": [ - 1522 + 1540 ], "predicate": [ 4 @@ -22424,13 +22714,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 1541 + 1559 ], "distinct": [ 3 ], "filter": [ - 1522 + 1540 ], "predicate": [ 4 @@ -22441,13 +22731,13 @@ export default { }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 1539 + 1557 ], "distinct": [ 3 ], "filter": [ - 1522 + 1540 ], "predicate": [ 39 @@ -22458,13 +22748,13 @@ export default { }, "game_server_nodes_aggregate_fields": { "avg": [ - 1520 + 1538 ], "count": [ 38, { "columns": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -22473,31 +22763,31 @@ export default { } ], "max": [ - 1529 + 1547 ], "min": [ - 1531 + 1549 ], "stddev": [ - 1543 + 1561 ], "stddev_pop": [ - 1545 + 1563 ], "stddev_samp": [ - 1547 + 1565 ], "sum": [ - 1551 + 1569 ], "var_pop": [ - 1555 + 1573 ], "var_samp": [ - 1557 + 1575 ], "variance": [ - 1559 + 1577 ], "__typename": [ 78 @@ -22505,37 +22795,37 @@ export default { }, "game_server_nodes_aggregate_order_by": { "avg": [ - 1521 + 1539 ], "count": [ - 2763 + 2781 ], "max": [ - 1530 + 1548 ], "min": [ - 1532 + 1550 ], "stddev": [ - 1544 + 1562 ], "stddev_pop": [ - 1546 + 1564 ], "stddev_samp": [ - 1548 + 1566 ], "sum": [ - 1552 + 1570 ], "var_pop": [ - 1556 + 1574 ], "var_samp": [ - 1558 + 1576 ], "variance": [ - 1560 + 1578 ], "__typename": [ 78 @@ -22543,22 +22833,22 @@ export default { }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 1634 + 1652 ], "cpu_governor_info": [ - 1634 + 1652 ], "cs2_launch_options": [ - 1634 + 1652 ], "cs2_video_settings": [ - 1634 + 1652 ], "gpu_info": [ - 1634 + 1652 ], "shader_bake_status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -22566,10 +22856,10 @@ export default { }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 1528 + 1546 ], "on_conflict": [ - 1535 + 1553 ], "__typename": [ 78 @@ -22624,40 +22914,40 @@ export default { }, "game_server_nodes_avg_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -22665,13 +22955,13 @@ export default { }, "game_server_nodes_bool_exp": { "_and": [ - 1522 + 1540 ], "_not": [ - 1522 + 1540 ], "_or": [ - 1522 + 1540 ], "available_server_count": [ 39 @@ -22683,10 +22973,10 @@ export default { 39 ], "cpu_frequency_info": [ - 1636 + 1654 ], "cpu_governor_info": [ - 1636 + 1654 ], "cpu_sockets": [ 39 @@ -22695,10 +22985,10 @@ export default { 39 ], "cs2_launch_options": [ - 1636 + 1654 ], "cs2_video_settings": [ - 1636 + 1654 ], "csgo_build_id": [ 39 @@ -22713,7 +23003,7 @@ export default { 39 ], "e_region": [ - 3812 + 3830 ], "e_status": [ 609 @@ -22734,7 +23024,7 @@ export default { 4 ], "gpu_info": [ - 1636 + 1654 ], "gpu_rendering_enabled": [ 4 @@ -22749,13 +23039,13 @@ export default { 80 ], "lan_ip": [ - 1631 + 1649 ], "node_ip": [ - 1631 + 1649 ], "offline_at": [ - 4307 + 4325 ], "pin_build_id": [ 39 @@ -22767,25 +23057,25 @@ export default { 80 ], "pinned_version": [ - 1566 + 1584 ], "plugin_supported": [ 4 ], "public_ip": [ - 1631 + 1649 ], "region": [ 80 ], "servers": [ - 3846 + 3864 ], "servers_aggregate": [ - 3837 + 3855 ], "shader_bake_progress": [ - 2762 + 2780 ], "shader_bake_progress_stage": [ 80 @@ -22794,7 +23084,7 @@ export default { 80 ], "shader_bake_status_history": [ - 1636 + 1654 ], "start_port_range": [ 39 @@ -22818,7 +23108,7 @@ export default { 80 ], "version": [ - 1566 + 1584 ], "__typename": [ 78 @@ -22926,7 +23216,7 @@ export default { 38 ], "shader_bake_progress": [ - 2761 + 2779 ], "start_port_range": [ 38 @@ -22943,10 +23233,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1634 + 1652 ], "cpu_governor_info": [ - 1634 + 1652 ], "cpu_sockets": [ 38 @@ -22955,10 +23245,10 @@ export default { 38 ], "cs2_launch_options": [ - 1634 + 1652 ], "cs2_video_settings": [ - 1634 + 1652 ], "csgo_build_id": [ 38 @@ -22973,7 +23263,7 @@ export default { 38 ], "e_region": [ - 3818 + 3836 ], "e_status": [ 617 @@ -22994,7 +23284,7 @@ export default { 3 ], "gpu_info": [ - 1634 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -23009,13 +23299,13 @@ export default { 78 ], "lan_ip": [ - 1630 + 1648 ], "node_ip": [ - 1630 + 1648 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -23027,19 +23317,19 @@ export default { 78 ], "pinned_version": [ - 1576 + 1594 ], "public_ip": [ - 1630 + 1648 ], "region": [ 78 ], "servers": [ - 3843 + 3861 ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -23048,7 +23338,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1634 + 1652 ], "start_port_range": [ 38 @@ -23069,7 +23359,7 @@ export default { 78 ], "version": [ - 1576 + 1594 ], "__typename": [ 78 @@ -23113,7 +23403,7 @@ export default { 78 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -23128,7 +23418,7 @@ export default { 78 ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -23154,70 +23444,70 @@ export default { }, "game_server_nodes_max_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "pin_plugin_runtime": [ - 2763 + 2781 ], "pin_plugin_version": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "shader_bake_progress_stage": [ - 2763 + 2781 ], "shader_bake_status": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "token": [ - 2763 + 2781 ], "update_status": [ - 2763 + 2781 ], "__typename": [ 78 @@ -23261,7 +23551,7 @@ export default { 78 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -23276,7 +23566,7 @@ export default { 78 ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -23302,70 +23592,70 @@ export default { }, "game_server_nodes_min_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "pin_plugin_runtime": [ - 2763 + 2781 ], "pin_plugin_version": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "shader_bake_progress_stage": [ - 2763 + 2781 ], "shader_bake_status": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "token": [ - 2763 + 2781 ], "update_status": [ - 2763 + 2781 ], "__typename": [ 78 @@ -23376,7 +23666,7 @@ export default { 38 ], "returning": [ - 1510 + 1528 ], "__typename": [ 78 @@ -23384,10 +23674,10 @@ export default { }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 1528 + 1546 ], "on_conflict": [ - 1535 + 1553 ], "__typename": [ 78 @@ -23395,13 +23685,13 @@ export default { }, "game_server_nodes_on_conflict": { "constraint": [ - 1523 + 1541 ], "update_columns": [ - 1553 + 1571 ], "where": [ - 1522 + 1540 ], "__typename": [ 78 @@ -23409,148 +23699,148 @@ export default { }, "game_server_nodes_order_by": { "available_server_count": [ - 2763 + 2781 ], "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_frequency_info": [ - 2763 + 2781 ], "cpu_governor_info": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "cs2_launch_options": [ - 2763 + 2781 ], "cs2_video_settings": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "e_region": [ - 3820 + 3838 ], "e_status": [ 619 ], "enabled": [ - 2763 + 2781 ], "enabled_for_match_making": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "gpu": [ - 2763 + 2781 ], "gpu_demos_enabled": [ - 2763 + 2781 ], "gpu_info": [ - 2763 + 2781 ], "gpu_rendering_enabled": [ - 2763 + 2781 ], "gpu_streaming_enabled": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "lan_ip": [ - 2763 + 2781 ], "node_ip": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "pin_plugin_runtime": [ - 2763 + 2781 ], "pin_plugin_version": [ - 2763 + 2781 ], "pinned_version": [ - 1578 + 1596 ], "plugin_supported": [ - 2763 + 2781 ], "public_ip": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "servers_aggregate": [ - 3842 + 3860 ], "shader_bake_progress": [ - 2763 + 2781 ], "shader_bake_progress_stage": [ - 2763 + 2781 ], "shader_bake_status": [ - 2763 + 2781 ], "shader_bake_status_history": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "supports_cpu_pinning": [ - 2763 + 2781 ], "supports_low_latency": [ - 2763 + 2781 ], "token": [ - 2763 + 2781 ], "total_server_count": [ - 2763 + 2781 ], "update_status": [ - 2763 + 2781 ], "version": [ - 1578 + 1596 ], "__typename": [ 78 @@ -23566,22 +23856,22 @@ export default { }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 1634 + 1652 ], "cpu_governor_info": [ - 1634 + 1652 ], "cs2_launch_options": [ - 1634 + 1652 ], "cs2_video_settings": [ - 1634 + 1652 ], "gpu_info": [ - 1634 + 1652 ], "shader_bake_status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -23598,10 +23888,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1634 + 1652 ], "cpu_governor_info": [ - 1634 + 1652 ], "cpu_sockets": [ 38 @@ -23610,10 +23900,10 @@ export default { 38 ], "cs2_launch_options": [ - 1634 + 1652 ], "cs2_video_settings": [ - 1634 + 1652 ], "csgo_build_id": [ 38 @@ -23643,7 +23933,7 @@ export default { 3 ], "gpu_info": [ - 1634 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -23658,13 +23948,13 @@ export default { 78 ], "lan_ip": [ - 1630 + 1648 ], "node_ip": [ - 1630 + 1648 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -23676,13 +23966,13 @@ export default { 78 ], "public_ip": [ - 1630 + 1648 ], "region": [ 78 ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -23691,7 +23981,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1634 + 1652 ], "start_port_range": [ 38 @@ -23764,40 +24054,40 @@ export default { }, "game_server_nodes_stddev_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -23852,40 +24142,40 @@ export default { }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -23940,40 +24230,40 @@ export default { }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -23981,7 +24271,7 @@ export default { }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 1550 + 1568 ], "ordering": [ 236 @@ -23998,10 +24288,10 @@ export default { 38 ], "cpu_frequency_info": [ - 1634 + 1652 ], "cpu_governor_info": [ - 1634 + 1652 ], "cpu_sockets": [ 38 @@ -24010,10 +24300,10 @@ export default { 38 ], "cs2_launch_options": [ - 1634 + 1652 ], "cs2_video_settings": [ - 1634 + 1652 ], "csgo_build_id": [ 38 @@ -24043,7 +24333,7 @@ export default { 3 ], "gpu_info": [ - 1634 + 1652 ], "gpu_rendering_enabled": [ 3 @@ -24058,13 +24348,13 @@ export default { 78 ], "lan_ip": [ - 1630 + 1648 ], "node_ip": [ - 1630 + 1648 ], "offline_at": [ - 4306 + 4324 ], "pin_build_id": [ 38 @@ -24076,13 +24366,13 @@ export default { 78 ], "public_ip": [ - 1630 + 1648 ], "region": [ 78 ], "shader_bake_progress": [ - 2761 + 2779 ], "shader_bake_progress_stage": [ 78 @@ -24091,7 +24381,7 @@ export default { 78 ], "shader_bake_status_history": [ - 1634 + 1652 ], "start_port_range": [ 38 @@ -24150,7 +24440,7 @@ export default { 38 ], "shader_bake_progress": [ - 2761 + 2779 ], "start_port_range": [ 38 @@ -24164,40 +24454,40 @@ export default { }, "game_server_nodes_sum_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -24206,28 +24496,28 @@ export default { "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 1518 + 1536 ], "_delete_at_path": [ - 1524 + 1542 ], "_delete_elem": [ - 1525 + 1543 ], "_delete_key": [ - 1526 + 1544 ], "_inc": [ - 1527 + 1545 ], "_prepend": [ - 1538 + 1556 ], "_set": [ - 1542 + 1560 ], "where": [ - 1522 + 1540 ], "__typename": [ 78 @@ -24282,40 +24572,40 @@ export default { }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -24370,40 +24660,40 @@ export default { }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -24458,40 +24748,40 @@ export default { }, "game_server_nodes_variance_order_by": { "build_id": [ - 2763 + 2781 ], "cpu_cores_per_socket": [ - 2763 + 2781 ], "cpu_sockets": [ - 2763 + 2781 ], "cpu_threads_per_core": [ - 2763 + 2781 ], "csgo_build_id": [ - 2763 + 2781 ], "demo_network_limiter": [ - 2763 + 2781 ], "disk_available_gb": [ - 2763 + 2781 ], "disk_used_percent": [ - 2763 + 2781 ], "end_port_range": [ - 2763 + 2781 ], "pin_build_id": [ - 2763 + 2781 ], "shader_bake_progress": [ - 2763 + 2781 ], "start_port_range": [ - 2763 + 2781 ], "__typename": [ 78 @@ -24511,7 +24801,7 @@ export default { 78 ], "downloads": [ - 1634, + 1652, { "path": [ 78 @@ -24519,7 +24809,7 @@ export default { } ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24530,10 +24820,10 @@ export default { }, "game_versions_aggregate": { "aggregate": [ - 1563 + 1581 ], "nodes": [ - 1561 + 1579 ], "__typename": [ 78 @@ -24541,13 +24831,13 @@ export default { }, "game_versions_aggregate_fields": { "avg": [ - 1565 + 1583 ], "count": [ 38, { "columns": [ - 1581, + 1599, "[game_versions_select_column!]" ], "distinct": [ @@ -24556,31 +24846,31 @@ export default { } ], "max": [ - 1573 + 1591 ], "min": [ - 1574 + 1592 ], "stddev": [ - 1583 + 1601 ], "stddev_pop": [ - 1584 + 1602 ], "stddev_samp": [ - 1585 + 1603 ], "sum": [ - 1588 + 1606 ], "var_pop": [ - 1591 + 1609 ], "var_samp": [ - 1592 + 1610 ], "variance": [ - 1593 + 1611 ], "__typename": [ 78 @@ -24588,7 +24878,7 @@ export default { }, "game_versions_append_input": { "downloads": [ - 1634 + 1652 ], "__typename": [ 78 @@ -24604,13 +24894,13 @@ export default { }, "game_versions_bool_exp": { "_and": [ - 1566 + 1584 ], "_not": [ - 1566 + 1584 ], "_or": [ - 1566 + 1584 ], "build_id": [ 39 @@ -24625,10 +24915,10 @@ export default { 80 ], "downloads": [ - 1636 + 1654 ], "updated_at": [ - 4307 + 4325 ], "version": [ 80 @@ -24684,10 +24974,10 @@ export default { 78 ], "downloads": [ - 1634 + 1652 ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24704,7 +24994,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24721,7 +25011,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24735,7 +25025,7 @@ export default { 38 ], "returning": [ - 1561 + 1579 ], "__typename": [ 78 @@ -24743,10 +25033,10 @@ export default { }, "game_versions_obj_rel_insert_input": { "data": [ - 1572 + 1590 ], "on_conflict": [ - 1577 + 1595 ], "__typename": [ 78 @@ -24754,13 +25044,13 @@ export default { }, "game_versions_on_conflict": { "constraint": [ - 1567 + 1585 ], "update_columns": [ - 1589 + 1607 ], "where": [ - 1566 + 1584 ], "__typename": [ 78 @@ -24768,25 +25058,25 @@ export default { }, "game_versions_order_by": { "build_id": [ - 2763 + 2781 ], "current": [ - 2763 + 2781 ], "cvars": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "downloads": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "version": [ - 2763 + 2781 ], "__typename": [ 78 @@ -24802,7 +25092,7 @@ export default { }, "game_versions_prepend_input": { "downloads": [ - 1634 + 1652 ], "__typename": [ 78 @@ -24823,10 +25113,10 @@ export default { 78 ], "downloads": [ - 1634 + 1652 ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24861,7 +25151,7 @@ export default { }, "game_versions_stream_cursor_input": { "initial_value": [ - 1587 + 1605 ], "ordering": [ 236 @@ -24884,10 +25174,10 @@ export default { 78 ], "downloads": [ - 1634 + 1652 ], "updated_at": [ - 4306 + 4324 ], "version": [ 78 @@ -24907,28 +25197,28 @@ export default { "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 1564 + 1582 ], "_delete_at_path": [ - 1568 + 1586 ], "_delete_elem": [ - 1569 + 1587 ], "_delete_key": [ - 1570 + 1588 ], "_inc": [ - 1571 + 1589 ], "_prepend": [ - 1580 + 1598 ], "_set": [ - 1582 + 1600 ], "where": [ - 1566 + 1584 ], "__typename": [ 78 @@ -24966,13 +25256,13 @@ export default { 38 ], "game_version": [ - 1561 + 1579 ], "id": [ - 4744 + 4762 ], "results": [ - 1634, + 1652, { "path": [ 78 @@ -24983,7 +25273,7 @@ export default { 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -24991,10 +25281,10 @@ export default { }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 1596 + 1614 ], "nodes": [ - 1594 + 1612 ], "__typename": [ 78 @@ -25002,13 +25292,13 @@ export default { }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 1598 + 1616 ], "count": [ 38, { "columns": [ - 1613, + 1631, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -25017,31 +25307,31 @@ export default { } ], "max": [ - 1606 + 1624 ], "min": [ - 1607 + 1625 ], "stddev": [ - 1615 + 1633 ], "stddev_pop": [ - 1616 + 1634 ], "stddev_samp": [ - 1617 + 1635 ], "sum": [ - 1620 + 1638 ], "var_pop": [ - 1623 + 1641 ], "var_samp": [ - 1624 + 1642 ], "variance": [ - 1625 + 1643 ], "__typename": [ 78 @@ -25049,7 +25339,7 @@ export default { }, "gamedata_signature_validations_append_input": { "results": [ - 1634 + 1652 ], "__typename": [ 78 @@ -25065,13 +25355,13 @@ export default { }, "gamedata_signature_validations_bool_exp": { "_and": [ - 1599 + 1617 ], "_not": [ - 1599 + 1617 ], "_or": [ - 1599 + 1617 ], "branch": [ 80 @@ -25080,19 +25370,19 @@ export default { 39 ], "game_version": [ - 1566 + 1584 ], "id": [ - 4746 + 4764 ], "results": [ - 1636 + 1654 ], "status": [ 80 ], "validated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -25139,19 +25429,19 @@ export default { 38 ], "game_version": [ - 1576 + 1594 ], "id": [ - 4744 + 4762 ], "results": [ - 1634 + 1652 ], "status": [ 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -25165,13 +25455,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "status": [ 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -25185,13 +25475,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "status": [ 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -25202,7 +25492,7 @@ export default { 38 ], "returning": [ - 1594 + 1612 ], "__typename": [ 78 @@ -25210,13 +25500,13 @@ export default { }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 1600 + 1618 ], "update_columns": [ - 1621 + 1639 ], "where": [ - 1599 + 1617 ], "__typename": [ 78 @@ -25224,25 +25514,25 @@ export default { }, "gamedata_signature_validations_order_by": { "branch": [ - 2763 + 2781 ], "build_id": [ - 2763 + 2781 ], "game_version": [ - 1578 + 1596 ], "id": [ - 2763 + 2781 ], "results": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "validated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -25250,7 +25540,7 @@ export default { }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -25258,7 +25548,7 @@ export default { }, "gamedata_signature_validations_prepend_input": { "results": [ - 1634 + 1652 ], "__typename": [ 78 @@ -25273,16 +25563,16 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "results": [ - 1634 + 1652 ], "status": [ 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -25314,7 +25604,7 @@ export default { }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 1619 + 1637 ], "ordering": [ 236 @@ -25331,16 +25621,16 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "results": [ - 1634 + 1652 ], "status": [ 78 ], "validated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -25357,28 +25647,28 @@ export default { "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 1597 + 1615 ], "_delete_at_path": [ - 1601 + 1619 ], "_delete_elem": [ - 1602 + 1620 ], "_delete_key": [ - 1603 + 1621 ], "_inc": [ - 1604 + 1622 ], "_prepend": [ - 1612 + 1630 ], "_set": [ - 1614 + 1632 ], "where": [ - 1599 + 1617 ], "__typename": [ 78 @@ -25413,7 +25703,7 @@ export default { 78 ], "_event_id": [ - 4744 + 4762 ], "_match_type": [ 78 @@ -25439,7 +25729,7 @@ export default { 78 ], "_season_id": [ - 4744 + 4762 ], "_window_days": [ 38 @@ -25453,7 +25743,7 @@ export default { 78 ], "_league_season_id": [ - 4744 + 4762 ], "_role": [ 78 @@ -25476,7 +25766,7 @@ export default { 78 ], "_season_id": [ - 4744 + 4762 ], "_window_days": [ 38 @@ -25488,31 +25778,31 @@ export default { "inet": {}, "inet_comparison_exp": { "_eq": [ - 1630 + 1648 ], "_gt": [ - 1630 + 1648 ], "_gte": [ - 1630 + 1648 ], "_in": [ - 1630 + 1648 ], "_is_null": [ 3 ], "_lt": [ - 1630 + 1648 ], "_lte": [ - 1630 + 1648 ], "_neq": [ - 1630 + 1648 ], "_nin": [ - 1630 + 1648 ], "__typename": [ 78 @@ -25521,31 +25811,31 @@ export default { "json": {}, "json_comparison_exp": { "_eq": [ - 1632 + 1650 ], "_gt": [ - 1632 + 1650 ], "_gte": [ - 1632 + 1650 ], "_in": [ - 1632 + 1650 ], "_is_null": [ 3 ], "_lt": [ - 1632 + 1650 ], "_lte": [ - 1632 + 1650 ], "_neq": [ - 1632 + 1650 ], "_nin": [ - 1632 + 1650 ], "__typename": [ 78 @@ -25562,22 +25852,22 @@ export default { }, "jsonb_comparison_exp": { "_cast": [ - 1635 + 1653 ], "_contained_in": [ - 1634 + 1652 ], "_contains": [ - 1634 + 1652 ], "_eq": [ - 1634 + 1652 ], "_gt": [ - 1634 + 1652 ], "_gte": [ - 1634 + 1652 ], "_has_key": [ 78 @@ -25589,22 +25879,22 @@ export default { 78 ], "_in": [ - 1634 + 1652 ], "_is_null": [ 3 ], "_lt": [ - 1634 + 1652 ], "_lte": [ - 1634 + 1652 ], "_neq": [ - 1634 + 1652 ], "_nin": [ - 1634 + 1652 ], "__typename": [ 78 @@ -25627,13 +25917,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25641,10 +25931,10 @@ export default { }, "leaderboard_entries_aggregate": { "aggregate": [ - 1639 + 1657 ], "nodes": [ - 1637 + 1655 ], "__typename": [ 78 @@ -25652,13 +25942,13 @@ export default { }, "leaderboard_entries_aggregate_fields": { "avg": [ - 1640 + 1658 ], "count": [ 38, { "columns": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -25667,31 +25957,31 @@ export default { } ], "max": [ - 1644 + 1662 ], "min": [ - 1645 + 1663 ], "stddev": [ - 1650 + 1668 ], "stddev_pop": [ - 1651 + 1669 ], "stddev_samp": [ - 1652 + 1670 ], "sum": [ - 1655 + 1673 ], "var_pop": [ - 1657 + 1675 ], "var_samp": [ - 1658 + 1676 ], "variance": [ - 1659 + 1677 ], "__typename": [ 78 @@ -25716,13 +26006,13 @@ export default { }, "leaderboard_entries_bool_exp": { "_and": [ - 1641 + 1659 ], "_not": [ - 1641 + 1659 ], "_or": [ - 1641 + 1659 ], "matches_played": [ 39 @@ -25740,13 +26030,13 @@ export default { 80 ], "secondary_value": [ - 1482 + 1500 ], "tertiary_value": [ - 1482 + 1500 ], "value": [ - 1482 + 1500 ], "__typename": [ 78 @@ -25757,13 +26047,13 @@ export default { 38 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25786,13 +26076,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25815,13 +26105,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25844,13 +26134,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25861,7 +26151,7 @@ export default { 38 ], "returning": [ - 1637 + 1655 ], "__typename": [ 78 @@ -25869,28 +26159,28 @@ export default { }, "leaderboard_entries_order_by": { "matches_played": [ - 2763 + 2781 ], "player_avatar_url": [ - 2763 + 2781 ], "player_country": [ - 2763 + 2781 ], "player_name": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "secondary_value": [ - 2763 + 2781 ], "tertiary_value": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -25914,13 +26204,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -25979,7 +26269,7 @@ export default { }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 1654 + 1672 ], "ordering": [ 236 @@ -26005,13 +26295,13 @@ export default { 78 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -26022,13 +26312,13 @@ export default { 38 ], "secondary_value": [ - 1481 + 1499 ], "tertiary_value": [ - 1481 + 1499 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -26036,13 +26326,13 @@ export default { }, "leaderboard_entries_updates": { "_inc": [ - 1642 + 1660 ], "_set": [ - 1649 + 1667 ], "where": [ - 1641 + 1659 ], "__typename": [ 78 @@ -26101,10 +26391,10 @@ export default { }, "league_award_forfeit_args": { "_tournament_bracket_id": [ - 4744 + 4762 ], "_winning_tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -26112,19 +26402,19 @@ export default { }, "league_divisions": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "season_divisions": [ - 1812, + 1830, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26134,19 +26424,19 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "season_divisions_aggregate": [ - 1813, + 1831, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -26156,16 +26446,16 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26173,10 +26463,10 @@ export default { }, "league_divisions_aggregate": { "aggregate": [ - 1663 + 1681 ], "nodes": [ - 1661 + 1679 ], "__typename": [ 78 @@ -26184,13 +26474,13 @@ export default { }, "league_divisions_aggregate_fields": { "avg": [ - 1664 + 1682 ], "count": [ 38, { "columns": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "distinct": [ @@ -26199,31 +26489,31 @@ export default { } ], "max": [ - 1669 + 1687 ], "min": [ - 1670 + 1688 ], "stddev": [ - 1678 + 1696 ], "stddev_pop": [ - 1679 + 1697 ], "stddev_samp": [ - 1680 + 1698 ], "sum": [ - 1683 + 1701 ], "var_pop": [ - 1686 + 1704 ], "var_samp": [ - 1687 + 1705 ], "variance": [ - 1688 + 1706 ], "__typename": [ 78 @@ -26239,31 +26529,31 @@ export default { }, "league_divisions_bool_exp": { "_and": [ - 1665 + 1683 ], "_not": [ - 1665 + 1683 ], "_or": [ - 1665 + 1683 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "name": [ 80 ], "season_divisions": [ - 1819 + 1837 ], "season_divisions_aggregate": [ - 1814 + 1832 ], "tier": [ - 3900 + 3918 ], "__typename": [ 78 @@ -26272,7 +26562,7 @@ export default { "league_divisions_constraint": {}, "league_divisions_inc_input": { "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26280,19 +26570,19 @@ export default { }, "league_divisions_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "season_divisions": [ - 1818 + 1836 ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26300,16 +26590,16 @@ export default { }, "league_divisions_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26317,16 +26607,16 @@ export default { }, "league_divisions_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26337,7 +26627,7 @@ export default { 38 ], "returning": [ - 1661 + 1679 ], "__typename": [ 78 @@ -26345,10 +26635,10 @@ export default { }, "league_divisions_obj_rel_insert_input": { "data": [ - 1668 + 1686 ], "on_conflict": [ - 1673 + 1691 ], "__typename": [ 78 @@ -26356,13 +26646,13 @@ export default { }, "league_divisions_on_conflict": { "constraint": [ - 1666 + 1684 ], "update_columns": [ - 1684 + 1702 ], "where": [ - 1665 + 1683 ], "__typename": [ 78 @@ -26370,19 +26660,19 @@ export default { }, "league_divisions_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "season_divisions_aggregate": [ - 1817 + 1835 ], "tier": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26390,7 +26680,7 @@ export default { }, "league_divisions_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -26399,16 +26689,16 @@ export default { "league_divisions_select_column": {}, "league_divisions_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26440,7 +26730,7 @@ export default { }, "league_divisions_stream_cursor_input": { "initial_value": [ - 1682 + 1700 ], "ordering": [ 236 @@ -26451,16 +26741,16 @@ export default { }, "league_divisions_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 ], "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26468,7 +26758,7 @@ export default { }, "league_divisions_sum_fields": { "tier": [ - 3899 + 3917 ], "__typename": [ 78 @@ -26477,13 +26767,13 @@ export default { "league_divisions_update_column": {}, "league_divisions_updates": { "_inc": [ - 1667 + 1685 ], "_set": [ - 1677 + 1695 ], "where": [ - 1665 + 1683 ], "__typename": [ 78 @@ -26515,25 +26805,25 @@ export default { }, "league_match_weeks": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "season": [ - 1837 + 1855 ], "week_number": [ 38 @@ -26544,10 +26834,10 @@ export default { }, "league_match_weeks_aggregate": { "aggregate": [ - 1693 + 1711 ], "nodes": [ - 1689 + 1707 ], "__typename": [ 78 @@ -26555,7 +26845,7 @@ export default { }, "league_match_weeks_aggregate_bool_exp": { "count": [ - 1692 + 1710 ], "__typename": [ 78 @@ -26563,13 +26853,13 @@ export default { }, "league_match_weeks_aggregate_bool_exp_count": { "arguments": [ - 1710 + 1728 ], "distinct": [ 3 ], "filter": [ - 1698 + 1716 ], "predicate": [ 39 @@ -26580,13 +26870,13 @@ export default { }, "league_match_weeks_aggregate_fields": { "avg": [ - 1696 + 1714 ], "count": [ 38, { "columns": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "distinct": [ @@ -26595,31 +26885,31 @@ export default { } ], "max": [ - 1702 + 1720 ], "min": [ - 1704 + 1722 ], "stddev": [ - 1712 + 1730 ], "stddev_pop": [ - 1714 + 1732 ], "stddev_samp": [ - 1716 + 1734 ], "sum": [ - 1720 + 1738 ], "var_pop": [ - 1724 + 1742 ], "var_samp": [ - 1726 + 1744 ], "variance": [ - 1728 + 1746 ], "__typename": [ 78 @@ -26627,37 +26917,37 @@ export default { }, "league_match_weeks_aggregate_order_by": { "avg": [ - 1697 + 1715 ], "count": [ - 2763 + 2781 ], "max": [ - 1703 + 1721 ], "min": [ - 1705 + 1723 ], "stddev": [ - 1713 + 1731 ], "stddev_pop": [ - 1715 + 1733 ], "stddev_samp": [ - 1717 + 1735 ], "sum": [ - 1721 + 1739 ], "var_pop": [ - 1725 + 1743 ], "var_samp": [ - 1727 + 1745 ], "variance": [ - 1729 + 1747 ], "__typename": [ 78 @@ -26665,10 +26955,10 @@ export default { }, "league_match_weeks_arr_rel_insert_input": { "data": [ - 1701 + 1719 ], "on_conflict": [ - 1707 + 1725 ], "__typename": [ 78 @@ -26684,7 +26974,7 @@ export default { }, "league_match_weeks_avg_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26692,34 +26982,34 @@ export default { }, "league_match_weeks_bool_exp": { "_and": [ - 1698 + 1716 ], "_not": [ - 1698 + 1716 ], "_or": [ - 1698 + 1716 ], "closes_at": [ - 4307 + 4325 ], "created_at": [ - 4307 + 4325 ], "default_match_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "opens_at": [ - 4307 + 4325 ], "season": [ - 1842 + 1860 ], "week_number": [ 39 @@ -26739,25 +27029,25 @@ export default { }, "league_match_weeks_insert_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "season": [ - 1852 + 1870 ], "week_number": [ 38 @@ -26768,22 +27058,22 @@ export default { }, "league_match_weeks_max_fields": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "week_number": [ 38 @@ -26794,25 +27084,25 @@ export default { }, "league_match_weeks_max_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26820,22 +27110,22 @@ export default { }, "league_match_weeks_min_fields": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "week_number": [ 38 @@ -26846,25 +27136,25 @@ export default { }, "league_match_weeks_min_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26875,7 +27165,7 @@ export default { 38 ], "returning": [ - 1689 + 1707 ], "__typename": [ 78 @@ -26883,13 +27173,13 @@ export default { }, "league_match_weeks_on_conflict": { "constraint": [ - 1699 + 1717 ], "update_columns": [ - 1722 + 1740 ], "where": [ - 1698 + 1716 ], "__typename": [ 78 @@ -26897,28 +27187,28 @@ export default { }, "league_match_weeks_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "season": [ - 1854 + 1872 ], "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26926,7 +27216,7 @@ export default { }, "league_match_weeks_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -26935,22 +27225,22 @@ export default { "league_match_weeks_select_column": {}, "league_match_weeks_set_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "week_number": [ 38 @@ -26969,7 +27259,7 @@ export default { }, "league_match_weeks_stddev_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -26985,7 +27275,7 @@ export default { }, "league_match_weeks_stddev_pop_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27001,7 +27291,7 @@ export default { }, "league_match_weeks_stddev_samp_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27009,7 +27299,7 @@ export default { }, "league_match_weeks_stream_cursor_input": { "initial_value": [ - 1719 + 1737 ], "ordering": [ 236 @@ -27020,22 +27310,22 @@ export default { }, "league_match_weeks_stream_cursor_value_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "week_number": [ 38 @@ -27054,7 +27344,7 @@ export default { }, "league_match_weeks_sum_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27063,13 +27353,13 @@ export default { "league_match_weeks_update_column": {}, "league_match_weeks_updates": { "_inc": [ - 1700 + 1718 ], "_set": [ - 1711 + 1729 ], "where": [ - 1698 + 1716 ], "__typename": [ 78 @@ -27085,7 +27375,7 @@ export default { }, "league_match_weeks_var_pop_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27101,7 +27391,7 @@ export default { }, "league_match_weeks_var_samp_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27117,7 +27407,7 @@ export default { }, "league_match_weeks_variance_order_by": { "week_number": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27125,40 +27415,40 @@ export default { }, "league_relegation_playoffs": { "created_at": [ - 4306 + 4324 ], "higher_division": [ - 1661 + 1679 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division": [ - 1661 + 1679 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "season": [ - 1837 + 1855 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27166,10 +27456,10 @@ export default { }, "league_relegation_playoffs_aggregate": { "aggregate": [ - 1734 + 1752 ], "nodes": [ - 1730 + 1748 ], "__typename": [ 78 @@ -27177,7 +27467,7 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp": { "count": [ - 1733 + 1751 ], "__typename": [ 78 @@ -27185,13 +27475,13 @@ export default { }, "league_relegation_playoffs_aggregate_bool_exp_count": { "arguments": [ - 1751 + 1769 ], "distinct": [ 3 ], "filter": [ - 1739 + 1757 ], "predicate": [ 39 @@ -27202,13 +27492,13 @@ export default { }, "league_relegation_playoffs_aggregate_fields": { "avg": [ - 1737 + 1755 ], "count": [ 38, { "columns": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "distinct": [ @@ -27217,31 +27507,31 @@ export default { } ], "max": [ - 1743 + 1761 ], "min": [ - 1745 + 1763 ], "stddev": [ - 1753 + 1771 ], "stddev_pop": [ - 1755 + 1773 ], "stddev_samp": [ - 1757 + 1775 ], "sum": [ - 1761 + 1779 ], "var_pop": [ - 1765 + 1783 ], "var_samp": [ - 1767 + 1785 ], "variance": [ - 1769 + 1787 ], "__typename": [ 78 @@ -27249,37 +27539,37 @@ export default { }, "league_relegation_playoffs_aggregate_order_by": { "avg": [ - 1738 + 1756 ], "count": [ - 2763 + 2781 ], "max": [ - 1744 + 1762 ], "min": [ - 1746 + 1764 ], "stddev": [ - 1754 + 1772 ], "stddev_pop": [ - 1756 + 1774 ], "stddev_samp": [ - 1758 + 1776 ], "sum": [ - 1762 + 1780 ], "var_pop": [ - 1766 + 1784 ], "var_samp": [ - 1768 + 1786 ], "variance": [ - 1770 + 1788 ], "__typename": [ 78 @@ -27287,10 +27577,10 @@ export default { }, "league_relegation_playoffs_arr_rel_insert_input": { "data": [ - 1742 + 1760 ], "on_conflict": [ - 1748 + 1766 ], "__typename": [ 78 @@ -27306,7 +27596,7 @@ export default { }, "league_relegation_playoffs_avg_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27314,49 +27604,49 @@ export default { }, "league_relegation_playoffs_bool_exp": { "_and": [ - 1739 + 1757 ], "_not": [ - 1739 + 1757 ], "_or": [ - 1739 + 1757 ], "created_at": [ - 4307 + 4325 ], "higher_division": [ - 1665 + 1683 ], "higher_division_id": [ - 4746 + 4764 ], "higher_slots": [ 39 ], "id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "lower_division": [ - 1665 + 1683 ], "lower_division_id": [ - 4746 + 4764 ], "resolved_at": [ - 4307 + 4325 ], "season": [ - 1842 + 1860 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -27373,40 +27663,40 @@ export default { }, "league_relegation_playoffs_insert_input": { "created_at": [ - 4306 + 4324 ], "higher_division": [ - 1672 + 1690 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division": [ - 1672 + 1690 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "season": [ - 1852 + 1870 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27414,28 +27704,28 @@ export default { }, "league_relegation_playoffs_max_fields": { "created_at": [ - 4306 + 4324 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27443,28 +27733,28 @@ export default { }, "league_relegation_playoffs_max_order_by": { "created_at": [ - 2763 + 2781 ], "higher_division_id": [ - 2763 + 2781 ], "higher_slots": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "lower_division_id": [ - 2763 + 2781 ], "resolved_at": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27472,28 +27762,28 @@ export default { }, "league_relegation_playoffs_min_fields": { "created_at": [ - 4306 + 4324 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27501,28 +27791,28 @@ export default { }, "league_relegation_playoffs_min_order_by": { "created_at": [ - 2763 + 2781 ], "higher_division_id": [ - 2763 + 2781 ], "higher_slots": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "lower_division_id": [ - 2763 + 2781 ], "resolved_at": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27533,7 +27823,7 @@ export default { 38 ], "returning": [ - 1730 + 1748 ], "__typename": [ 78 @@ -27541,13 +27831,13 @@ export default { }, "league_relegation_playoffs_on_conflict": { "constraint": [ - 1740 + 1758 ], "update_columns": [ - 1763 + 1781 ], "where": [ - 1739 + 1757 ], "__typename": [ 78 @@ -27555,40 +27845,40 @@ export default { }, "league_relegation_playoffs_order_by": { "created_at": [ - 2763 + 2781 ], "higher_division": [ - 1674 + 1692 ], "higher_division_id": [ - 2763 + 2781 ], "higher_slots": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "lower_division": [ - 1674 + 1692 ], "lower_division_id": [ - 2763 + 2781 ], "resolved_at": [ - 2763 + 2781 ], "season": [ - 1854 + 1872 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27596,7 +27886,7 @@ export default { }, "league_relegation_playoffs_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27605,28 +27895,28 @@ export default { "league_relegation_playoffs_select_column": {}, "league_relegation_playoffs_set_input": { "created_at": [ - 4306 + 4324 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27642,7 +27932,7 @@ export default { }, "league_relegation_playoffs_stddev_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27658,7 +27948,7 @@ export default { }, "league_relegation_playoffs_stddev_pop_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27674,7 +27964,7 @@ export default { }, "league_relegation_playoffs_stddev_samp_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27682,7 +27972,7 @@ export default { }, "league_relegation_playoffs_stream_cursor_input": { "initial_value": [ - 1760 + 1778 ], "ordering": [ 236 @@ -27693,28 +27983,28 @@ export default { }, "league_relegation_playoffs_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "higher_division_id": [ - 4744 + 4762 ], "higher_slots": [ 38 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "lower_division_id": [ - 4744 + 4762 ], "resolved_at": [ - 4306 + 4324 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27730,7 +28020,7 @@ export default { }, "league_relegation_playoffs_sum_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27739,13 +28029,13 @@ export default { "league_relegation_playoffs_update_column": {}, "league_relegation_playoffs_updates": { "_inc": [ - 1741 + 1759 ], "_set": [ - 1752 + 1770 ], "where": [ - 1739 + 1757 ], "__typename": [ 78 @@ -27761,7 +28051,7 @@ export default { }, "league_relegation_playoffs_var_pop_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27777,7 +28067,7 @@ export default { }, "league_relegation_playoffs_var_samp_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27793,7 +28083,7 @@ export default { }, "league_relegation_playoffs_variance_order_by": { "higher_slots": [ - 2763 + 2781 ], "__typename": [ 78 @@ -27801,34 +28091,34 @@ export default { }, "league_scheduling_proposals": { "bracket": [ - 4308 + 4326 ], "created_at": [ - 4306 + 4324 ], "e_proposal_status": [ 648 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by": [ - 3721 + 3739 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by": [ - 3721 + 3739 ], "responded_by_steam_id": [ 180 @@ -27837,10 +28127,10 @@ export default { 653 ], "team_season": [ - 1952 + 1970 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -27848,10 +28138,10 @@ export default { }, "league_scheduling_proposals_aggregate": { "aggregate": [ - 1775 + 1793 ], "nodes": [ - 1771 + 1789 ], "__typename": [ 78 @@ -27859,7 +28149,7 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp": { "count": [ - 1774 + 1792 ], "__typename": [ 78 @@ -27867,13 +28157,13 @@ export default { }, "league_scheduling_proposals_aggregate_bool_exp_count": { "arguments": [ - 1792 + 1810 ], "distinct": [ 3 ], "filter": [ - 1780 + 1798 ], "predicate": [ 39 @@ -27884,13 +28174,13 @@ export default { }, "league_scheduling_proposals_aggregate_fields": { "avg": [ - 1778 + 1796 ], "count": [ 38, { "columns": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "distinct": [ @@ -27899,31 +28189,31 @@ export default { } ], "max": [ - 1784 + 1802 ], "min": [ - 1786 + 1804 ], "stddev": [ - 1794 + 1812 ], "stddev_pop": [ - 1796 + 1814 ], "stddev_samp": [ - 1798 + 1816 ], "sum": [ - 1802 + 1820 ], "var_pop": [ - 1806 + 1824 ], "var_samp": [ - 1808 + 1826 ], "variance": [ - 1810 + 1828 ], "__typename": [ 78 @@ -27931,37 +28221,37 @@ export default { }, "league_scheduling_proposals_aggregate_order_by": { "avg": [ - 1779 + 1797 ], "count": [ - 2763 + 2781 ], "max": [ - 1785 + 1803 ], "min": [ - 1787 + 1805 ], "stddev": [ - 1795 + 1813 ], "stddev_pop": [ - 1797 + 1815 ], "stddev_samp": [ - 1799 + 1817 ], "sum": [ - 1803 + 1821 ], "var_pop": [ - 1807 + 1825 ], "var_samp": [ - 1809 + 1827 ], "variance": [ - 1811 + 1829 ], "__typename": [ 78 @@ -27969,10 +28259,10 @@ export default { }, "league_scheduling_proposals_arr_rel_insert_input": { "data": [ - 1783 + 1801 ], "on_conflict": [ - 1789 + 1807 ], "__typename": [ 78 @@ -27991,10 +28281,10 @@ export default { }, "league_scheduling_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28002,43 +28292,43 @@ export default { }, "league_scheduling_proposals_bool_exp": { "_and": [ - 1780 + 1798 ], "_not": [ - 1780 + 1798 ], "_or": [ - 1780 + 1798 ], "bracket": [ - 4319 + 4337 ], "created_at": [ - 4307 + 4325 ], "e_proposal_status": [ 651 ], "id": [ - 4746 + 4764 ], "message": [ 80 ], "proposed_by": [ - 3725 + 3743 ], "proposed_by_league_team_season_id": [ - 4746 + 4764 ], "proposed_by_steam_id": [ 182 ], "proposed_time": [ - 4307 + 4325 ], "responded_by": [ - 3725 + 3743 ], "responded_by_steam_id": [ 182 @@ -28047,10 +28337,10 @@ export default { 654 ], "team_season": [ - 1961 + 1979 ], "tournament_bracket_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -28070,34 +28360,34 @@ export default { }, "league_scheduling_proposals_insert_input": { "bracket": [ - 4328 + 4346 ], "created_at": [ - 4306 + 4324 ], "e_proposal_status": [ 659 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by": [ - 3732 + 3750 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by": [ - 3732 + 3750 ], "responded_by_steam_id": [ 180 @@ -28106,10 +28396,10 @@ export default { 653 ], "team_season": [ - 1970 + 1988 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28117,28 +28407,28 @@ export default { }, "league_scheduling_proposals_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28146,28 +28436,28 @@ export default { }, "league_scheduling_proposals_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "proposed_by_league_team_season_id": [ - 2763 + 2781 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_time": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "tournament_bracket_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28175,28 +28465,28 @@ export default { }, "league_scheduling_proposals_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by_steam_id": [ 180 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28204,28 +28494,28 @@ export default { }, "league_scheduling_proposals_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "proposed_by_league_team_season_id": [ - 2763 + 2781 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_time": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "tournament_bracket_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28236,7 +28526,7 @@ export default { 38 ], "returning": [ - 1771 + 1789 ], "__typename": [ 78 @@ -28244,13 +28534,13 @@ export default { }, "league_scheduling_proposals_on_conflict": { "constraint": [ - 1781 + 1799 ], "update_columns": [ - 1804 + 1822 ], "where": [ - 1780 + 1798 ], "__typename": [ 78 @@ -28258,46 +28548,46 @@ export default { }, "league_scheduling_proposals_order_by": { "bracket": [ - 4330 + 4348 ], "created_at": [ - 2763 + 2781 ], "e_proposal_status": [ 661 ], "id": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "proposed_by": [ - 3734 + 3752 ], "proposed_by_league_team_season_id": [ - 2763 + 2781 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_time": [ - 2763 + 2781 ], "responded_by": [ - 3734 + 3752 ], "responded_by_steam_id": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "team_season": [ - 1972 + 1990 ], "tournament_bracket_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28305,7 +28595,7 @@ export default { }, "league_scheduling_proposals_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28314,22 +28604,22 @@ export default { "league_scheduling_proposals_select_column": {}, "league_scheduling_proposals_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by_steam_id": [ 180 @@ -28338,7 +28628,7 @@ export default { 653 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28357,10 +28647,10 @@ export default { }, "league_scheduling_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28379,10 +28669,10 @@ export default { }, "league_scheduling_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28401,10 +28691,10 @@ export default { }, "league_scheduling_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28412,7 +28702,7 @@ export default { }, "league_scheduling_proposals_stream_cursor_input": { "initial_value": [ - 1801 + 1819 ], "ordering": [ 236 @@ -28423,22 +28713,22 @@ export default { }, "league_scheduling_proposals_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 ], "proposed_by_league_team_season_id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_time": [ - 4306 + 4324 ], "responded_by_steam_id": [ 180 @@ -28447,7 +28737,7 @@ export default { 653 ], "tournament_bracket_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28466,10 +28756,10 @@ export default { }, "league_scheduling_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28478,13 +28768,13 @@ export default { "league_scheduling_proposals_update_column": {}, "league_scheduling_proposals_updates": { "_inc": [ - 1782 + 1800 ], "_set": [ - 1793 + 1811 ], "where": [ - 1780 + 1798 ], "__typename": [ 78 @@ -28503,10 +28793,10 @@ export default { }, "league_scheduling_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28525,10 +28815,10 @@ export default { }, "league_scheduling_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28547,10 +28837,10 @@ export default { }, "league_scheduling_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "responded_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28558,28 +28848,28 @@ export default { }, "league_season_divisions": { "created_at": [ - 4306 + 4324 ], "division": [ - 1661 + 1679 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "season": [ - 1837 + 1855 ], "standings": [ - 4826, + 4834, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28589,19 +28879,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "standings_aggregate": [ - 4827, + 4835, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -28611,19 +28901,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28631,10 +28921,10 @@ export default { }, "league_season_divisions_aggregate": { "aggregate": [ - 1816 + 1834 ], "nodes": [ - 1812 + 1830 ], "__typename": [ 78 @@ -28642,7 +28932,7 @@ export default { }, "league_season_divisions_aggregate_bool_exp": { "count": [ - 1815 + 1833 ], "__typename": [ 78 @@ -28650,13 +28940,13 @@ export default { }, "league_season_divisions_aggregate_bool_exp_count": { "arguments": [ - 1831 + 1849 ], "distinct": [ 3 ], "filter": [ - 1819 + 1837 ], "predicate": [ 39 @@ -28670,7 +28960,7 @@ export default { 38, { "columns": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "distinct": [ @@ -28679,10 +28969,10 @@ export default { } ], "max": [ - 1822 + 1840 ], "min": [ - 1824 + 1842 ], "__typename": [ 78 @@ -28690,13 +28980,13 @@ export default { }, "league_season_divisions_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 1823 + 1841 ], "min": [ - 1825 + 1843 ], "__typename": [ 78 @@ -28704,10 +28994,10 @@ export default { }, "league_season_divisions_arr_rel_insert_input": { "data": [ - 1821 + 1839 ], "on_conflict": [ - 1828 + 1846 ], "__typename": [ 78 @@ -28715,43 +29005,43 @@ export default { }, "league_season_divisions_bool_exp": { "_and": [ - 1819 + 1837 ], "_not": [ - 1819 + 1837 ], "_or": [ - 1819 + 1837 ], "created_at": [ - 4307 + 4325 ], "division": [ - 1665 + 1683 ], "id": [ - 4746 + 4764 ], "league_division_id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "season": [ - 1842 + 1860 ], "standings": [ - 4835 + 4843 ], "standings_aggregate": [ - 4828 + 4836 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -28760,31 +29050,31 @@ export default { "league_season_divisions_constraint": {}, "league_season_divisions_insert_input": { "created_at": [ - 4306 + 4324 ], "division": [ - 1672 + 1690 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "season": [ - 1852 + 1870 ], "standings": [ - 4832 + 4840 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28792,19 +29082,19 @@ export default { }, "league_season_divisions_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28812,19 +29102,19 @@ export default { }, "league_season_divisions_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28832,19 +29122,19 @@ export default { }, "league_season_divisions_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28852,19 +29142,19 @@ export default { }, "league_season_divisions_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28875,7 +29165,7 @@ export default { 38 ], "returning": [ - 1812 + 1830 ], "__typename": [ 78 @@ -28883,10 +29173,10 @@ export default { }, "league_season_divisions_obj_rel_insert_input": { "data": [ - 1821 + 1839 ], "on_conflict": [ - 1828 + 1846 ], "__typename": [ 78 @@ -28894,13 +29184,13 @@ export default { }, "league_season_divisions_on_conflict": { "constraint": [ - 1820 + 1838 ], "update_columns": [ - 1835 + 1853 ], "where": [ - 1819 + 1837 ], "__typename": [ 78 @@ -28908,31 +29198,31 @@ export default { }, "league_season_divisions_order_by": { "created_at": [ - 2763 + 2781 ], "division": [ - 1674 + 1692 ], "id": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "season": [ - 1854 + 1872 ], "standings_aggregate": [ - 4831 + 4839 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -28940,7 +29230,7 @@ export default { }, "league_season_divisions_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28949,19 +29239,19 @@ export default { "league_season_divisions_select_column": {}, "league_season_divisions_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -28969,7 +29259,7 @@ export default { }, "league_season_divisions_stream_cursor_input": { "initial_value": [ - 1834 + 1852 ], "ordering": [ 236 @@ -28980,19 +29270,19 @@ export default { }, "league_season_divisions_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "league_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -29001,10 +29291,10 @@ export default { "league_season_divisions_update_column": {}, "league_season_divisions_updates": { "_set": [ - 1832 + 1850 ], "where": [ - 1819 + 1837 ], "__typename": [ 78 @@ -29018,7 +29308,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -29039,7 +29329,7 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "is_league_admin": [ 3 @@ -29048,13 +29338,13 @@ export default { 3 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks": [ - 1689, + 1707, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29064,19 +29354,19 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], "match_weeks_aggregate": [ - 1690, + 1708, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -29086,11 +29376,11 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], @@ -29104,10 +29394,10 @@ export default { 38 ], "movements": [ - 1870, + 1888, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -29117,19 +29407,19 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "movements_aggregate": [ - 1871, + 1889, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -29139,19 +29429,19 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "my_registration": [ - 1952, + 1970, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29161,11 +29451,11 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], @@ -29173,13 +29463,13 @@ export default { 78 ], "options": [ - 2458 + 2476 ], "player_stats": [ - 4859, + 4867, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29189,19 +29479,19 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], "player_stats_aggregate": [ - 4860, + 4868, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -29211,11 +29501,11 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], @@ -29223,7 +29513,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1634, + 1652, { "path": [ 78 @@ -29252,10 +29542,10 @@ export default { 38 ], "relegation_playoffs": [ - 1730, + 1748, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29265,19 +29555,19 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], "relegation_playoffs_aggregate": [ - 1731, + 1749, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -29287,11 +29577,11 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], @@ -29299,13 +29589,13 @@ export default { 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_divisions": [ - 1812, + 1830, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29315,19 +29605,19 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "season_divisions_aggregate": [ - 1813, + 1831, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -29337,11 +29627,11 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], @@ -29349,16 +29639,16 @@ export default { 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "standings": [ - 4826, + 4834, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29368,19 +29658,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "standings_aggregate": [ - 4827, + 4835, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -29390,25 +29680,25 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "starts_at": [ - 4306 + 4324 ], "status": [ 695 ], "team_seasons": [ - 1952, + 1970, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29418,19 +29708,19 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "team_seasons_aggregate": [ - 1953, + 1971, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -29440,16 +29730,16 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "week_best_of": [ - 1634, + 1652, { "path": [ 78 @@ -29462,10 +29752,10 @@ export default { }, "league_seasons_aggregate": { "aggregate": [ - 1839 + 1857 ], "nodes": [ - 1837 + 1855 ], "__typename": [ 78 @@ -29473,13 +29763,13 @@ export default { }, "league_seasons_aggregate_fields": { "avg": [ - 1841 + 1859 ], "count": [ 38, { "columns": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "distinct": [ @@ -29488,31 +29778,31 @@ export default { } ], "max": [ - 1849 + 1867 ], "min": [ - 1850 + 1868 ], "stddev": [ - 1859 + 1877 ], "stddev_pop": [ - 1860 + 1878 ], "stddev_samp": [ - 1861 + 1879 ], "sum": [ - 1864 + 1882 ], "var_pop": [ - 1867 + 1885 ], "var_samp": [ - 1868 + 1886 ], "variance": [ - 1869 + 1887 ], "__typename": [ 78 @@ -29520,10 +29810,10 @@ export default { }, "league_seasons_append_input": { "playoff_round_best_of": [ - 1634 + 1652 ], "week_best_of": [ - 1634 + 1652 ], "__typename": [ 78 @@ -29581,13 +29871,13 @@ export default { }, "league_seasons_bool_exp": { "_and": [ - 1842 + 1860 ], "_not": [ - 1842 + 1860 ], "_or": [ - 1842 + 1860 ], "auto_regular_season_format": [ 4 @@ -29596,7 +29886,7 @@ export default { 4 ], "created_at": [ - 4307 + 4325 ], "created_by_steam_id": [ 182 @@ -29617,7 +29907,7 @@ export default { 39 ], "id": [ - 4746 + 4764 ], "is_league_admin": [ 4 @@ -29626,13 +29916,13 @@ export default { 4 ], "match_options_id": [ - 4746 + 4764 ], "match_weeks": [ - 1698 + 1716 ], "match_weeks_aggregate": [ - 1691 + 1709 ], "match_weeks_count": [ 39 @@ -29644,31 +29934,31 @@ export default { 39 ], "movements": [ - 1879 + 1897 ], "movements_aggregate": [ - 1872 + 1890 ], "my_registration": [ - 1961 + 1979 ], "name": [ 80 ], "options": [ - 2462 + 2480 ], "player_stats": [ - 4878 + 4886 ], "player_stats_aggregate": [ - 4861 + 4869 ], "playoff_best_of": [ 39 ], "playoff_round_best_of": [ - 1636 + 1654 ], "playoff_seats": [ 39 @@ -29692,52 +29982,52 @@ export default { 39 ], "relegation_playoffs": [ - 1739 + 1757 ], "relegation_playoffs_aggregate": [ - 1732 + 1750 ], "relegation_up_count": [ 39 ], "roster_lock_at": [ - 4307 + 4325 ], "season_divisions": [ - 1819 + 1837 ], "season_divisions_aggregate": [ - 1814 + 1832 ], "season_number": [ 39 ], "signup_closes_at": [ - 4307 + 4325 ], "signup_opens_at": [ - 4307 + 4325 ], "standings": [ - 4835 + 4843 ], "standings_aggregate": [ - 4828 + 4836 ], "starts_at": [ - 4307 + 4325 ], "status": [ 696 ], "team_seasons": [ - 1961 + 1979 ], "team_seasons_aggregate": [ - 1954 + 1972 ], "week_best_of": [ - 1636 + 1654 ], "__typename": [ 78 @@ -29832,7 +30122,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -29853,13 +30143,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks": [ - 1695 + 1713 ], "match_weeks_count": [ 38 @@ -29871,22 +30161,22 @@ export default { 38 ], "movements": [ - 1876 + 1894 ], "name": [ 78 ], "options": [ - 2469 + 2487 ], "player_stats": [ - 4875 + 4883 ], "playoff_best_of": [ 38 ], "playoff_round_best_of": [ - 1634 + 1652 ], "playoff_seats": [ 38 @@ -29910,40 +30200,40 @@ export default { 38 ], "relegation_playoffs": [ - 1736 + 1754 ], "relegation_up_count": [ 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_divisions": [ - 1818 + 1836 ], "season_number": [ 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "standings": [ - 4832 + 4840 ], "starts_at": [ - 4306 + 4324 ], "status": [ 695 ], "team_seasons": [ - 1958 + 1976 ], "week_best_of": [ - 1634 + 1652 ], "__typename": [ 78 @@ -29951,7 +30241,7 @@ export default { }, "league_seasons_max_fields": { "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -29969,10 +30259,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks_count": [ 38 @@ -30005,19 +30295,19 @@ export default { 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -30025,7 +30315,7 @@ export default { }, "league_seasons_min_fields": { "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -30043,10 +30333,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks_count": [ 38 @@ -30079,19 +30369,19 @@ export default { 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -30102,7 +30392,7 @@ export default { 38 ], "returning": [ - 1837 + 1855 ], "__typename": [ 78 @@ -30110,10 +30400,10 @@ export default { }, "league_seasons_obj_rel_insert_input": { "data": [ - 1848 + 1866 ], "on_conflict": [ - 1853 + 1871 ], "__typename": [ 78 @@ -30121,13 +30411,13 @@ export default { }, "league_seasons_on_conflict": { "constraint": [ - 1843 + 1861 ], "update_columns": [ - 1865 + 1883 ], "where": [ - 1842 + 1860 ], "__typename": [ 78 @@ -30135,133 +30425,133 @@ export default { }, "league_seasons_order_by": { "auto_regular_season_format": [ - 2763 + 2781 ], "can_register": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "created_by_steam_id": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "direct_promote_count": [ - 2763 + 2781 ], "direct_relegate_count": [ - 2763 + 2781 ], "e_league_season_status": [ 703 ], "games_per_week": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_league_admin": [ - 2763 + 2781 ], "is_roster_locked": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "match_weeks_aggregate": [ - 1694 + 1712 ], "match_weeks_count": [ - 2763 + 2781 ], "max_roster_size": [ - 2763 + 2781 ], "min_roster_size": [ - 2763 + 2781 ], "movements_aggregate": [ - 1875 + 1893 ], "my_registration_aggregate": [ - 1957 + 1975 ], "name": [ - 2763 + 2781 ], "options": [ - 2471 + 2489 ], "player_stats_aggregate": [ - 4874 + 4882 ], "playoff_best_of": [ - 2763 + 2781 ], "playoff_round_best_of": [ - 2763 + 2781 ], "playoff_seats": [ - 2763 + 2781 ], "playoff_stage_type": [ - 2763 + 2781 ], "playoff_third_place_match": [ - 2763 + 2781 ], "promote_count": [ - 2763 + 2781 ], "regular_season_stage_type": [ - 2763 + 2781 ], "relegate_count": [ - 2763 + 2781 ], "relegation_down_count": [ - 2763 + 2781 ], "relegation_playoffs_aggregate": [ - 1735 + 1753 ], "relegation_up_count": [ - 2763 + 2781 ], "roster_lock_at": [ - 2763 + 2781 ], "season_divisions_aggregate": [ - 1817 + 1835 ], "season_number": [ - 2763 + 2781 ], "signup_closes_at": [ - 2763 + 2781 ], "signup_opens_at": [ - 2763 + 2781 ], "standings_aggregate": [ - 4831 + 4839 ], "starts_at": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "team_seasons_aggregate": [ - 1957 + 1975 ], "week_best_of": [ - 2763 + 2781 ], "__typename": [ 78 @@ -30269,7 +30559,7 @@ export default { }, "league_seasons_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -30277,10 +30567,10 @@ export default { }, "league_seasons_prepend_input": { "playoff_round_best_of": [ - 1634 + 1652 ], "week_best_of": [ - 1634 + 1652 ], "__typename": [ 78 @@ -30292,7 +30582,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -30310,10 +30600,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks_count": [ 38 @@ -30331,7 +30621,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1634 + 1652 ], "playoff_seats": [ 38 @@ -30358,25 +30648,25 @@ export default { 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "starts_at": [ - 4306 + 4324 ], "status": [ 695 ], "week_best_of": [ - 1634 + 1652 ], "__typename": [ 78 @@ -30534,7 +30824,7 @@ export default { }, "league_seasons_stream_cursor_input": { "initial_value": [ - 1863 + 1881 ], "ordering": [ 236 @@ -30548,7 +30838,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "created_by_steam_id": [ 180 @@ -30566,10 +30856,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_weeks_count": [ 38 @@ -30587,7 +30877,7 @@ export default { 38 ], "playoff_round_best_of": [ - 1634 + 1652 ], "playoff_seats": [ 38 @@ -30614,25 +30904,25 @@ export default { 38 ], "roster_lock_at": [ - 4306 + 4324 ], "season_number": [ 38 ], "signup_closes_at": [ - 4306 + 4324 ], "signup_opens_at": [ - 4306 + 4324 ], "starts_at": [ - 4306 + 4324 ], "status": [ 695 ], "week_best_of": [ - 1634 + 1652 ], "__typename": [ 78 @@ -30691,28 +30981,28 @@ export default { "league_seasons_update_column": {}, "league_seasons_updates": { "_append": [ - 1840 + 1858 ], "_delete_at_path": [ - 1844 + 1862 ], "_delete_elem": [ - 1845 + 1863 ], "_delete_key": [ - 1846 + 1864 ], "_inc": [ - 1847 + 1865 ], "_prepend": [ - 1856 + 1874 ], "_set": [ - 1858 + 1876 ], "where": [ - 1842 + 1860 ], "__typename": [ 78 @@ -30870,22 +31160,22 @@ export default { }, "league_team_movements": { "approved_at": [ - 4306 + 4324 ], "approved_by": [ - 3721 + 3739 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1661 + 1679 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "e_movement_type": [ 627 @@ -30894,31 +31184,31 @@ export default { 38 ], "final_to_division": [ - 1661 + 1679 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division": [ - 1661 + 1679 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 1994 + 2012 ], "league_team_id": [ - 4744 + 4762 ], "season": [ - 1837 + 1855 ], "type": [ 632 @@ -30929,10 +31219,10 @@ export default { }, "league_team_movements_aggregate": { "aggregate": [ - 1874 + 1892 ], "nodes": [ - 1870 + 1888 ], "__typename": [ 78 @@ -30940,7 +31230,7 @@ export default { }, "league_team_movements_aggregate_bool_exp": { "count": [ - 1873 + 1891 ], "__typename": [ 78 @@ -30948,13 +31238,13 @@ export default { }, "league_team_movements_aggregate_bool_exp_count": { "arguments": [ - 1891 + 1909 ], "distinct": [ 3 ], "filter": [ - 1879 + 1897 ], "predicate": [ 39 @@ -30965,13 +31255,13 @@ export default { }, "league_team_movements_aggregate_fields": { "avg": [ - 1877 + 1895 ], "count": [ 38, { "columns": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "distinct": [ @@ -30980,31 +31270,31 @@ export default { } ], "max": [ - 1883 + 1901 ], "min": [ - 1885 + 1903 ], "stddev": [ - 1893 + 1911 ], "stddev_pop": [ - 1895 + 1913 ], "stddev_samp": [ - 1897 + 1915 ], "sum": [ - 1901 + 1919 ], "var_pop": [ - 1905 + 1923 ], "var_samp": [ - 1907 + 1925 ], "variance": [ - 1909 + 1927 ], "__typename": [ 78 @@ -31012,37 +31302,37 @@ export default { }, "league_team_movements_aggregate_order_by": { "avg": [ - 1878 + 1896 ], "count": [ - 2763 + 2781 ], "max": [ - 1884 + 1902 ], "min": [ - 1886 + 1904 ], "stddev": [ - 1894 + 1912 ], "stddev_pop": [ - 1896 + 1914 ], "stddev_samp": [ - 1898 + 1916 ], "sum": [ - 1902 + 1920 ], "var_pop": [ - 1906 + 1924 ], "var_samp": [ - 1908 + 1926 ], "variance": [ - 1910 + 1928 ], "__typename": [ 78 @@ -31050,10 +31340,10 @@ export default { }, "league_team_movements_arr_rel_insert_input": { "data": [ - 1882 + 1900 ], "on_conflict": [ - 1888 + 1906 ], "__typename": [ 78 @@ -31072,10 +31362,10 @@ export default { }, "league_team_movements_avg_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31083,31 +31373,31 @@ export default { }, "league_team_movements_bool_exp": { "_and": [ - 1879 + 1897 ], "_not": [ - 1879 + 1897 ], "_or": [ - 1879 + 1897 ], "approved_at": [ - 4307 + 4325 ], "approved_by": [ - 3725 + 3743 ], "approved_by_steam_id": [ 182 ], "computed_to_division": [ - 1665 + 1683 ], "computed_to_division_id": [ - 4746 + 4764 ], "created_at": [ - 4307 + 4325 ], "e_movement_type": [ 630 @@ -31116,31 +31406,31 @@ export default { 39 ], "final_to_division": [ - 1665 + 1683 ], "final_to_division_id": [ - 4746 + 4764 ], "from_division": [ - 1665 + 1683 ], "from_division_id": [ - 4746 + 4764 ], "id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "league_team": [ - 1997 + 2015 ], "league_team_id": [ - 4746 + 4764 ], "season": [ - 1842 + 1860 ], "type": [ 633 @@ -31163,22 +31453,22 @@ export default { }, "league_team_movements_insert_input": { "approved_at": [ - 4306 + 4324 ], "approved_by": [ - 3732 + 3750 ], "approved_by_steam_id": [ 180 ], "computed_to_division": [ - 1672 + 1690 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "e_movement_type": [ 638 @@ -31187,31 +31477,31 @@ export default { 38 ], "final_to_division": [ - 1672 + 1690 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division": [ - 1672 + 1690 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 2003 + 2021 ], "league_team_id": [ - 4744 + 4762 ], "season": [ - 1852 + 1870 ], "type": [ 632 @@ -31222,34 +31512,34 @@ export default { }, "league_team_movements_max_fields": { "approved_at": [ - 4306 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -31257,34 +31547,34 @@ export default { }, "league_team_movements_max_order_by": { "approved_at": [ - 2763 + 2781 ], "approved_by_steam_id": [ - 2763 + 2781 ], "computed_to_division_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "final_to_division_id": [ - 2763 + 2781 ], "from_division_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31292,34 +31582,34 @@ export default { }, "league_team_movements_min_fields": { "approved_at": [ - 4306 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -31327,34 +31617,34 @@ export default { }, "league_team_movements_min_order_by": { "approved_at": [ - 2763 + 2781 ], "approved_by_steam_id": [ - 2763 + 2781 ], "computed_to_division_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "final_to_division_id": [ - 2763 + 2781 ], "from_division_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31365,7 +31655,7 @@ export default { 38 ], "returning": [ - 1870 + 1888 ], "__typename": [ 78 @@ -31373,13 +31663,13 @@ export default { }, "league_team_movements_on_conflict": { "constraint": [ - 1880 + 1898 ], "update_columns": [ - 1903 + 1921 ], "where": [ - 1879 + 1897 ], "__typename": [ 78 @@ -31387,58 +31677,58 @@ export default { }, "league_team_movements_order_by": { "approved_at": [ - 2763 + 2781 ], "approved_by": [ - 3734 + 3752 ], "approved_by_steam_id": [ - 2763 + 2781 ], "computed_to_division": [ - 1674 + 1692 ], "computed_to_division_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "e_movement_type": [ 640 ], "final_rank": [ - 2763 + 2781 ], "final_to_division": [ - 1674 + 1692 ], "final_to_division_id": [ - 2763 + 2781 ], "from_division": [ - 1674 + 1692 ], "from_division_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team": [ - 2005 + 2023 ], "league_team_id": [ - 2763 + 2781 ], "season": [ - 1854 + 1872 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31446,7 +31736,7 @@ export default { }, "league_team_movements_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -31455,34 +31745,34 @@ export default { "league_team_movements_select_column": {}, "league_team_movements_set_input": { "approved_at": [ - 4306 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "type": [ 632 @@ -31504,10 +31794,10 @@ export default { }, "league_team_movements_stddev_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31526,10 +31816,10 @@ export default { }, "league_team_movements_stddev_pop_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31548,10 +31838,10 @@ export default { }, "league_team_movements_stddev_samp_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31559,7 +31849,7 @@ export default { }, "league_team_movements_stream_cursor_input": { "initial_value": [ - 1900 + 1918 ], "ordering": [ 236 @@ -31570,34 +31860,34 @@ export default { }, "league_team_movements_stream_cursor_value_input": { "approved_at": [ - 4306 + 4324 ], "approved_by_steam_id": [ 180 ], "computed_to_division_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "final_rank": [ 38 ], "final_to_division_id": [ - 4744 + 4762 ], "from_division_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "type": [ 632 @@ -31619,10 +31909,10 @@ export default { }, "league_team_movements_sum_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31631,13 +31921,13 @@ export default { "league_team_movements_update_column": {}, "league_team_movements_updates": { "_inc": [ - 1881 + 1899 ], "_set": [ - 1892 + 1910 ], "where": [ - 1879 + 1897 ], "__typename": [ 78 @@ -31656,10 +31946,10 @@ export default { }, "league_team_movements_var_pop_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31678,10 +31968,10 @@ export default { }, "league_team_movements_var_samp_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31700,10 +31990,10 @@ export default { }, "league_team_movements_variance_order_by": { "approved_by_steam_id": [ - 2763 + 2781 ], "final_rank": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31711,19 +32001,19 @@ export default { }, "league_team_rosters": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -31732,7 +32022,7 @@ export default { 1103 ], "team_season": [ - 1952 + 1970 ], "__typename": [ 78 @@ -31740,10 +32030,10 @@ export default { }, "league_team_rosters_aggregate": { "aggregate": [ - 1915 + 1933 ], "nodes": [ - 1911 + 1929 ], "__typename": [ 78 @@ -31751,7 +32041,7 @@ export default { }, "league_team_rosters_aggregate_bool_exp": { "count": [ - 1914 + 1932 ], "__typename": [ 78 @@ -31759,13 +32049,13 @@ export default { }, "league_team_rosters_aggregate_bool_exp_count": { "arguments": [ - 1932 + 1950 ], "distinct": [ 3 ], "filter": [ - 1920 + 1938 ], "predicate": [ 39 @@ -31776,13 +32066,13 @@ export default { }, "league_team_rosters_aggregate_fields": { "avg": [ - 1918 + 1936 ], "count": [ 38, { "columns": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "distinct": [ @@ -31791,31 +32081,31 @@ export default { } ], "max": [ - 1924 + 1942 ], "min": [ - 1926 + 1944 ], "stddev": [ - 1934 + 1952 ], "stddev_pop": [ - 1936 + 1954 ], "stddev_samp": [ - 1938 + 1956 ], "sum": [ - 1942 + 1960 ], "var_pop": [ - 1946 + 1964 ], "var_samp": [ - 1948 + 1966 ], "variance": [ - 1950 + 1968 ], "__typename": [ 78 @@ -31823,37 +32113,37 @@ export default { }, "league_team_rosters_aggregate_order_by": { "avg": [ - 1919 + 1937 ], "count": [ - 2763 + 2781 ], "max": [ - 1925 + 1943 ], "min": [ - 1927 + 1945 ], "stddev": [ - 1935 + 1953 ], "stddev_pop": [ - 1937 + 1955 ], "stddev_samp": [ - 1939 + 1957 ], "sum": [ - 1943 + 1961 ], "var_pop": [ - 1947 + 1965 ], "var_samp": [ - 1949 + 1967 ], "variance": [ - 1951 + 1969 ], "__typename": [ 78 @@ -31861,10 +32151,10 @@ export default { }, "league_team_rosters_arr_rel_insert_input": { "data": [ - 1923 + 1941 ], "on_conflict": [ - 1929 + 1947 ], "__typename": [ 78 @@ -31880,7 +32170,7 @@ export default { }, "league_team_rosters_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -31888,28 +32178,28 @@ export default { }, "league_team_rosters_bool_exp": { "_and": [ - 1920 + 1938 ], "_not": [ - 1920 + 1938 ], "_or": [ - 1920 + 1938 ], "added_at": [ - 4307 + 4325 ], "league_team_season_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 ], "removed_at": [ - 4307 + 4325 ], "removed_reason": [ 80 @@ -31918,7 +32208,7 @@ export default { 1104 ], "team_season": [ - 1961 + 1979 ], "__typename": [ 78 @@ -31935,19 +32225,19 @@ export default { }, "league_team_rosters_insert_input": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -31956,7 +32246,7 @@ export default { 1103 ], "team_season": [ - 1970 + 1988 ], "__typename": [ 78 @@ -31964,16 +32254,16 @@ export default { }, "league_team_rosters_max_fields": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -31984,19 +32274,19 @@ export default { }, "league_team_rosters_max_order_by": { "added_at": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "removed_at": [ - 2763 + 2781 ], "removed_reason": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32004,16 +32294,16 @@ export default { }, "league_team_rosters_min_fields": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -32024,19 +32314,19 @@ export default { }, "league_team_rosters_min_order_by": { "added_at": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "removed_at": [ - 2763 + 2781 ], "removed_reason": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32047,7 +32337,7 @@ export default { 38 ], "returning": [ - 1911 + 1929 ], "__typename": [ 78 @@ -32055,13 +32345,13 @@ export default { }, "league_team_rosters_on_conflict": { "constraint": [ - 1921 + 1939 ], "update_columns": [ - 1944 + 1962 ], "where": [ - 1920 + 1938 ], "__typename": [ 78 @@ -32069,28 +32359,28 @@ export default { }, "league_team_rosters_order_by": { "added_at": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "removed_at": [ - 2763 + 2781 ], "removed_reason": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "team_season": [ - 1972 + 1990 ], "__typename": [ 78 @@ -32098,7 +32388,7 @@ export default { }, "league_team_rosters_pk_columns_input": { "league_team_season_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -32110,16 +32400,16 @@ export default { "league_team_rosters_select_column": {}, "league_team_rosters_set_input": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -32141,7 +32431,7 @@ export default { }, "league_team_rosters_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32157,7 +32447,7 @@ export default { }, "league_team_rosters_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32173,7 +32463,7 @@ export default { }, "league_team_rosters_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32181,7 +32471,7 @@ export default { }, "league_team_rosters_stream_cursor_input": { "initial_value": [ - 1941 + 1959 ], "ordering": [ 236 @@ -32192,16 +32482,16 @@ export default { }, "league_team_rosters_stream_cursor_value_input": { "added_at": [ - 4306 + 4324 ], "league_team_season_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 ], "removed_at": [ - 4306 + 4324 ], "removed_reason": [ 78 @@ -32223,7 +32513,7 @@ export default { }, "league_team_rosters_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32232,13 +32522,13 @@ export default { "league_team_rosters_update_column": {}, "league_team_rosters_updates": { "_inc": [ - 1922 + 1940 ], "_set": [ - 1933 + 1951 ], "where": [ - 1920 + 1938 ], "__typename": [ 78 @@ -32254,7 +32544,7 @@ export default { }, "league_team_rosters_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32270,7 +32560,7 @@ export default { }, "league_team_rosters_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32286,7 +32576,7 @@ export default { }, "league_team_rosters_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32294,19 +32584,19 @@ export default { }, "league_team_seasons": { "assigned_division": [ - 1661 + 1679 ], "assigned_division_id": [ - 4744 + 4762 ], "captain": [ - 3721 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 @@ -32315,34 +32605,34 @@ export default { 669 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 1994 + 2012 ], "league_team_id": [ - 4744 + 4762 ], "registered_by": [ - 3721 + 3739 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1661 + 1679 ], "requested_division_id": [ - 4744 + 4762 ], "roster": [ - 1911, + 1929, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32352,19 +32642,19 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "roster_aggregate": [ - 1912, + 1930, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -32374,16 +32664,16 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "season": [ - 1837 + 1855 ], "seed": [ 38 @@ -32392,10 +32682,10 @@ export default { 674 ], "tournament_team": [ - 4569 + 4587 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -32403,10 +32693,10 @@ export default { }, "league_team_seasons_aggregate": { "aggregate": [ - 1956 + 1974 ], "nodes": [ - 1952 + 1970 ], "__typename": [ 78 @@ -32414,7 +32704,7 @@ export default { }, "league_team_seasons_aggregate_bool_exp": { "count": [ - 1955 + 1973 ], "__typename": [ 78 @@ -32422,13 +32712,13 @@ export default { }, "league_team_seasons_aggregate_bool_exp_count": { "arguments": [ - 1974 + 1992 ], "distinct": [ 3 ], "filter": [ - 1961 + 1979 ], "predicate": [ 39 @@ -32439,13 +32729,13 @@ export default { }, "league_team_seasons_aggregate_fields": { "avg": [ - 1959 + 1977 ], "count": [ 38, { "columns": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "distinct": [ @@ -32454,31 +32744,31 @@ export default { } ], "max": [ - 1965 + 1983 ], "min": [ - 1967 + 1985 ], "stddev": [ - 1976 + 1994 ], "stddev_pop": [ - 1978 + 1996 ], "stddev_samp": [ - 1980 + 1998 ], "sum": [ - 1984 + 2002 ], "var_pop": [ - 1988 + 2006 ], "var_samp": [ - 1990 + 2008 ], "variance": [ - 1992 + 2010 ], "__typename": [ 78 @@ -32486,37 +32776,37 @@ export default { }, "league_team_seasons_aggregate_order_by": { "avg": [ - 1960 + 1978 ], "count": [ - 2763 + 2781 ], "max": [ - 1966 + 1984 ], "min": [ - 1968 + 1986 ], "stddev": [ - 1977 + 1995 ], "stddev_pop": [ - 1979 + 1997 ], "stddev_samp": [ - 1981 + 1999 ], "sum": [ - 1985 + 2003 ], "var_pop": [ - 1989 + 2007 ], "var_samp": [ - 1991 + 2009 ], "variance": [ - 1993 + 2011 ], "__typename": [ 78 @@ -32524,10 +32814,10 @@ export default { }, "league_team_seasons_arr_rel_insert_input": { "data": [ - 1964 + 1982 ], "on_conflict": [ - 1971 + 1989 ], "__typename": [ 78 @@ -32549,13 +32839,13 @@ export default { }, "league_team_seasons_avg_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32563,28 +32853,28 @@ export default { }, "league_team_seasons_bool_exp": { "_and": [ - 1961 + 1979 ], "_not": [ - 1961 + 1979 ], "_or": [ - 1961 + 1979 ], "assigned_division": [ - 1665 + 1683 ], "assigned_division_id": [ - 4746 + 4764 ], "captain": [ - 3725 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4307 + 4325 ], "decline_reason": [ 80 @@ -32593,37 +32883,37 @@ export default { 672 ], "id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "league_team": [ - 1997 + 2015 ], "league_team_id": [ - 4746 + 4764 ], "registered_by": [ - 3725 + 3743 ], "registered_by_steam_id": [ 182 ], "requested_division": [ - 1665 + 1683 ], "requested_division_id": [ - 4746 + 4764 ], "roster": [ - 1920 + 1938 ], "roster_aggregate": [ - 1913 + 1931 ], "season": [ - 1842 + 1860 ], "seed": [ 39 @@ -32632,10 +32922,10 @@ export default { 675 ], "tournament_team": [ - 4578 + 4596 ], "tournament_team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -32658,19 +32948,19 @@ export default { }, "league_team_seasons_insert_input": { "assigned_division": [ - 1672 + 1690 ], "assigned_division_id": [ - 4744 + 4762 ], "captain": [ - 3732 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 @@ -32679,34 +32969,34 @@ export default { 680 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 2003 + 2021 ], "league_team_id": [ - 4744 + 4762 ], "registered_by": [ - 3732 + 3750 ], "registered_by_steam_id": [ 180 ], "requested_division": [ - 1672 + 1690 ], "requested_division_id": [ - 4744 + 4762 ], "roster": [ - 1917 + 1935 ], "season": [ - 1852 + 1870 ], "seed": [ 38 @@ -32715,10 +33005,10 @@ export default { 674 ], "tournament_team": [ - 4587 + 4605 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -32726,37 +33016,37 @@ export default { }, "league_team_seasons_max_fields": { "assigned_division_id": [ - 4744 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4744 + 4762 ], "seed": [ 38 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -32764,37 +33054,37 @@ export default { }, "league_team_seasons_max_order_by": { "assigned_division_id": [ - 2763 + 2781 ], "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "decline_reason": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "requested_division_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32802,37 +33092,37 @@ export default { }, "league_team_seasons_min_fields": { "assigned_division_id": [ - 4744 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4744 + 4762 ], "seed": [ 38 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -32840,37 +33130,37 @@ export default { }, "league_team_seasons_min_order_by": { "assigned_division_id": [ - 2763 + 2781 ], "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "decline_reason": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "requested_division_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32881,7 +33171,7 @@ export default { 38 ], "returning": [ - 1952 + 1970 ], "__typename": [ 78 @@ -32889,10 +33179,10 @@ export default { }, "league_team_seasons_obj_rel_insert_input": { "data": [ - 1964 + 1982 ], "on_conflict": [ - 1971 + 1989 ], "__typename": [ 78 @@ -32900,13 +33190,13 @@ export default { }, "league_team_seasons_on_conflict": { "constraint": [ - 1962 + 1980 ], "update_columns": [ - 1986 + 2004 ], "where": [ - 1961 + 1979 ], "__typename": [ 78 @@ -32914,67 +33204,67 @@ export default { }, "league_team_seasons_order_by": { "assigned_division": [ - 1674 + 1692 ], "assigned_division_id": [ - 2763 + 2781 ], "captain": [ - 3734 + 3752 ], "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "decline_reason": [ - 2763 + 2781 ], "e_registration_status": [ 682 ], "id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team": [ - 2005 + 2023 ], "league_team_id": [ - 2763 + 2781 ], "registered_by": [ - 3734 + 3752 ], "registered_by_steam_id": [ - 2763 + 2781 ], "requested_division": [ - 1674 + 1692 ], "requested_division_id": [ - 2763 + 2781 ], "roster_aggregate": [ - 1916 + 1934 ], "season": [ - 1854 + 1872 ], "seed": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "tournament_team": [ - 4589 + 4607 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -32982,7 +33272,7 @@ export default { }, "league_team_seasons_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -32991,31 +33281,31 @@ export default { "league_team_seasons_select_column": {}, "league_team_seasons_set_input": { "assigned_division_id": [ - 4744 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4744 + 4762 ], "seed": [ 38 @@ -33024,7 +33314,7 @@ export default { 674 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33046,13 +33336,13 @@ export default { }, "league_team_seasons_stddev_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33074,13 +33364,13 @@ export default { }, "league_team_seasons_stddev_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33102,13 +33392,13 @@ export default { }, "league_team_seasons_stddev_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33116,7 +33406,7 @@ export default { }, "league_team_seasons_stream_cursor_input": { "initial_value": [ - 1983 + 2001 ], "ordering": [ 236 @@ -33127,31 +33417,31 @@ export default { }, "league_team_seasons_stream_cursor_value_input": { "assigned_division_id": [ - 4744 + 4762 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "decline_reason": [ 78 ], "id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "registered_by_steam_id": [ 180 ], "requested_division_id": [ - 4744 + 4762 ], "seed": [ 38 @@ -33160,7 +33450,7 @@ export default { 674 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33182,13 +33472,13 @@ export default { }, "league_team_seasons_sum_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33197,13 +33487,13 @@ export default { "league_team_seasons_update_column": {}, "league_team_seasons_updates": { "_inc": [ - 1963 + 1981 ], "_set": [ - 1975 + 1993 ], "where": [ - 1961 + 1979 ], "__typename": [ 78 @@ -33225,13 +33515,13 @@ export default { }, "league_team_seasons_var_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33253,13 +33543,13 @@ export default { }, "league_team_seasons_var_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33281,13 +33571,13 @@ export default { }, "league_team_seasons_variance_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "registered_by_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -33295,16 +33585,16 @@ export default { }, "league_teams": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "movements": [ - 1870, + 1888, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -33314,19 +33604,19 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "movements_aggregate": [ - 1871, + 1889, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -33336,25 +33626,25 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "team_seasons": [ - 1952, + 1970, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33364,19 +33654,19 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "team_seasons_aggregate": [ - 1953, + 1971, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -33386,11 +33676,11 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], @@ -33400,10 +33690,10 @@ export default { }, "league_teams_aggregate": { "aggregate": [ - 1996 + 2014 ], "nodes": [ - 1994 + 2012 ], "__typename": [ 78 @@ -33414,7 +33704,7 @@ export default { 38, { "columns": [ - 2007, + 2025, "[league_teams_select_column!]" ], "distinct": [ @@ -33423,10 +33713,10 @@ export default { } ], "max": [ - 2000 + 2018 ], "min": [ - 2001 + 2019 ], "__typename": [ 78 @@ -33434,37 +33724,37 @@ export default { }, "league_teams_bool_exp": { "_and": [ - 1997 + 2015 ], "_not": [ - 1997 + 2015 ], "_or": [ - 1997 + 2015 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "movements": [ - 1879 + 1897 ], "movements_aggregate": [ - 1872 + 1890 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "team_seasons": [ - 1961 + 1979 ], "team_seasons_aggregate": [ - 1954 + 1972 ], "__typename": [ 78 @@ -33473,22 +33763,22 @@ export default { "league_teams_constraint": {}, "league_teams_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "movements": [ - 1876 + 1894 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "team_seasons": [ - 1958 + 1976 ], "__typename": [ 78 @@ -33496,13 +33786,13 @@ export default { }, "league_teams_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33510,13 +33800,13 @@ export default { }, "league_teams_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33527,7 +33817,7 @@ export default { 38 ], "returning": [ - 1994 + 2012 ], "__typename": [ 78 @@ -33535,10 +33825,10 @@ export default { }, "league_teams_obj_rel_insert_input": { "data": [ - 1999 + 2017 ], "on_conflict": [ - 2004 + 2022 ], "__typename": [ 78 @@ -33546,13 +33836,13 @@ export default { }, "league_teams_on_conflict": { "constraint": [ - 1998 + 2016 ], "update_columns": [ - 2011 + 2029 ], "where": [ - 1997 + 2015 ], "__typename": [ 78 @@ -33560,22 +33850,22 @@ export default { }, "league_teams_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "movements_aggregate": [ - 1875 + 1893 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "team_seasons_aggregate": [ - 1957 + 1975 ], "__typename": [ 78 @@ -33583,7 +33873,7 @@ export default { }, "league_teams_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33592,13 +33882,13 @@ export default { "league_teams_select_column": {}, "league_teams_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33606,7 +33896,7 @@ export default { }, "league_teams_stream_cursor_input": { "initial_value": [ - 2010 + 2028 ], "ordering": [ 236 @@ -33617,13 +33907,13 @@ export default { }, "league_teams_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33632,10 +33922,10 @@ export default { "league_teams_update_column": {}, "league_teams_updates": { "_set": [ - 2008 + 2026 ], "where": [ - 1997 + 2015 ], "__typename": [ 78 @@ -33646,19 +33936,19 @@ export default { 716 ], "created_at": [ - 4306 + 4324 ], "e_lobby_access": [ 711 ], "id": [ - 4744 + 4762 ], "players": [ - 2032, + 2050, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -33668,19 +33958,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "players_aggregate": [ - 2033, + 2051, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -33690,11 +33980,11 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], @@ -33704,10 +33994,10 @@ export default { }, "lobbies_aggregate": { "aggregate": [ - 2015 + 2033 ], "nodes": [ - 2013 + 2031 ], "__typename": [ 78 @@ -33718,7 +34008,7 @@ export default { 38, { "columns": [ - 2026, + 2044, "[lobbies_select_column!]" ], "distinct": [ @@ -33727,10 +34017,10 @@ export default { } ], "max": [ - 2019 + 2037 ], "min": [ - 2020 + 2038 ], "__typename": [ 78 @@ -33738,31 +34028,31 @@ export default { }, "lobbies_bool_exp": { "_and": [ - 2016 + 2034 ], "_not": [ - 2016 + 2034 ], "_or": [ - 2016 + 2034 ], "access": [ 717 ], "created_at": [ - 4307 + 4325 ], "e_lobby_access": [ 714 ], "id": [ - 4746 + 4764 ], "players": [ - 2043 + 2061 ], "players_aggregate": [ - 2034 + 2052 ], "__typename": [ 78 @@ -33774,16 +34064,16 @@ export default { 716 ], "created_at": [ - 4306 + 4324 ], "e_lobby_access": [ 722 ], "id": [ - 4744 + 4762 ], "players": [ - 2040 + 2058 ], "__typename": [ 78 @@ -33791,10 +34081,10 @@ export default { }, "lobbies_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33802,10 +34092,10 @@ export default { }, "lobbies_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33816,7 +34106,7 @@ export default { 38 ], "returning": [ - 2013 + 2031 ], "__typename": [ 78 @@ -33824,10 +34114,10 @@ export default { }, "lobbies_obj_rel_insert_input": { "data": [ - 2018 + 2036 ], "on_conflict": [ - 2023 + 2041 ], "__typename": [ 78 @@ -33835,13 +34125,13 @@ export default { }, "lobbies_on_conflict": { "constraint": [ - 2017 + 2035 ], "update_columns": [ - 2030 + 2048 ], "where": [ - 2016 + 2034 ], "__typename": [ 78 @@ -33849,19 +34139,19 @@ export default { }, "lobbies_order_by": { "access": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "e_lobby_access": [ 724 ], "id": [ - 2763 + 2781 ], "players_aggregate": [ - 2039 + 2057 ], "__typename": [ 78 @@ -33869,7 +34159,7 @@ export default { }, "lobbies_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33881,10 +34171,10 @@ export default { 716 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33892,7 +34182,7 @@ export default { }, "lobbies_stream_cursor_input": { "initial_value": [ - 2029 + 2047 ], "ordering": [ 236 @@ -33906,10 +34196,10 @@ export default { 716 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -33918,10 +34208,10 @@ export default { "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 2027 + 2045 ], "where": [ - 2016 + 2034 ], "__typename": [ 78 @@ -33935,13 +34225,13 @@ export default { 180 ], "lobby": [ - 2013 + 2031 ], "lobby_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "status": [ 737 @@ -33955,10 +34245,10 @@ export default { }, "lobby_players_aggregate": { "aggregate": [ - 2038 + 2056 ], "nodes": [ - 2032 + 2050 ], "__typename": [ 78 @@ -33966,13 +34256,13 @@ export default { }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 2035 + 2053 ], "bool_or": [ - 2036 + 2054 ], "count": [ - 2037 + 2055 ], "__typename": [ 78 @@ -33980,13 +34270,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2056 + 2074 ], "distinct": [ 3 ], "filter": [ - 2043 + 2061 ], "predicate": [ 4 @@ -33997,13 +34287,13 @@ export default { }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2057 + 2075 ], "distinct": [ 3 ], "filter": [ - 2043 + 2061 ], "predicate": [ 4 @@ -34014,13 +34304,13 @@ export default { }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 2055 + 2073 ], "distinct": [ 3 ], "filter": [ - 2043 + 2061 ], "predicate": [ 39 @@ -34031,13 +34321,13 @@ export default { }, "lobby_players_aggregate_fields": { "avg": [ - 2041 + 2059 ], "count": [ 38, { "columns": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "distinct": [ @@ -34046,31 +34336,31 @@ export default { } ], "max": [ - 2047 + 2065 ], "min": [ - 2049 + 2067 ], "stddev": [ - 2059 + 2077 ], "stddev_pop": [ - 2061 + 2079 ], "stddev_samp": [ - 2063 + 2081 ], "sum": [ - 2067 + 2085 ], "var_pop": [ - 2071 + 2089 ], "var_samp": [ - 2073 + 2091 ], "variance": [ - 2075 + 2093 ], "__typename": [ 78 @@ -34078,37 +34368,37 @@ export default { }, "lobby_players_aggregate_order_by": { "avg": [ - 2042 + 2060 ], "count": [ - 2763 + 2781 ], "max": [ - 2048 + 2066 ], "min": [ - 2050 + 2068 ], "stddev": [ - 2060 + 2078 ], "stddev_pop": [ - 2062 + 2080 ], "stddev_samp": [ - 2064 + 2082 ], "sum": [ - 2068 + 2086 ], "var_pop": [ - 2072 + 2090 ], "var_samp": [ - 2074 + 2092 ], "variance": [ - 2076 + 2094 ], "__typename": [ 78 @@ -34116,10 +34406,10 @@ export default { }, "lobby_players_arr_rel_insert_input": { "data": [ - 2046 + 2064 ], "on_conflict": [ - 2052 + 2070 ], "__typename": [ 78 @@ -34138,10 +34428,10 @@ export default { }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34149,13 +34439,13 @@ export default { }, "lobby_players_bool_exp": { "_and": [ - 2043 + 2061 ], "_not": [ - 2043 + 2061 ], "_or": [ - 2043 + 2061 ], "captain": [ 4 @@ -34164,13 +34454,13 @@ export default { 182 ], "lobby": [ - 2016 + 2034 ], "lobby_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "status": [ 738 @@ -34202,13 +34492,13 @@ export default { 180 ], "lobby": [ - 2022 + 2040 ], "lobby_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "status": [ 737 @@ -34225,7 +34515,7 @@ export default { 180 ], "lobby_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -34236,13 +34526,13 @@ export default { }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "lobby_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34253,7 +34543,7 @@ export default { 180 ], "lobby_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -34264,13 +34554,13 @@ export default { }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "lobby_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34281,7 +34571,7 @@ export default { 38 ], "returning": [ - 2032 + 2050 ], "__typename": [ 78 @@ -34289,13 +34579,13 @@ export default { }, "lobby_players_on_conflict": { "constraint": [ - 2044 + 2062 ], "update_columns": [ - 2069 + 2087 ], "where": [ - 2043 + 2061 ], "__typename": [ 78 @@ -34303,25 +34593,25 @@ export default { }, "lobby_players_order_by": { "captain": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "lobby": [ - 2024 + 2042 ], "lobby_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "status": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34329,7 +34619,7 @@ export default { }, "lobby_players_pk_columns_input": { "lobby_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -34349,7 +34639,7 @@ export default { 180 ], "lobby_id": [ - 4744 + 4762 ], "status": [ 737 @@ -34374,10 +34664,10 @@ export default { }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34396,10 +34686,10 @@ export default { }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34418,10 +34708,10 @@ export default { }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34429,7 +34719,7 @@ export default { }, "lobby_players_stream_cursor_input": { "initial_value": [ - 2066 + 2084 ], "ordering": [ 236 @@ -34446,7 +34736,7 @@ export default { 180 ], "lobby_id": [ - 4744 + 4762 ], "status": [ 737 @@ -34471,10 +34761,10 @@ export default { }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34483,13 +34773,13 @@ export default { "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 2045 + 2063 ], "_set": [ - 2058 + 2076 ], "where": [ - 2043 + 2061 ], "__typename": [ 78 @@ -34508,10 +34798,10 @@ export default { }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34530,10 +34820,10 @@ export default { }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34552,10 +34842,10 @@ export default { }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34569,13 +34859,13 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "maps": [ - 5396, + 5404, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34585,19 +34875,19 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], "maps_aggregate": [ - 5397, + 5405, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -34607,11 +34897,11 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], @@ -34627,10 +34917,10 @@ export default { }, "map_pools_aggregate": { "aggregate": [ - 2079 + 2097 ], "nodes": [ - 2077 + 2095 ], "__typename": [ 78 @@ -34641,7 +34931,7 @@ export default { 38, { "columns": [ - 2090, + 2108, "[map_pools_select_column!]" ], "distinct": [ @@ -34650,10 +34940,10 @@ export default { } ], "max": [ - 2083 + 2101 ], "min": [ - 2084 + 2102 ], "__typename": [ 78 @@ -34661,13 +34951,13 @@ export default { }, "map_pools_bool_exp": { "_and": [ - 2080 + 2098 ], "_not": [ - 2080 + 2098 ], "_or": [ - 2080 + 2098 ], "e_type": [ 755 @@ -34676,13 +34966,13 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "maps": [ - 5405 + 5413 ], "maps_aggregate": [ - 5398 + 5406 ], "seed": [ 4 @@ -34703,10 +34993,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "maps": [ - 5404 + 5412 ], "seed": [ 3 @@ -34720,7 +35010,7 @@ export default { }, "map_pools_max_fields": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -34728,7 +35018,7 @@ export default { }, "map_pools_min_fields": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -34739,7 +35029,7 @@ export default { 38 ], "returning": [ - 2077 + 2095 ], "__typename": [ 78 @@ -34747,10 +35037,10 @@ export default { }, "map_pools_obj_rel_insert_input": { "data": [ - 2082 + 2100 ], "on_conflict": [ - 2087 + 2105 ], "__typename": [ 78 @@ -34758,13 +35048,13 @@ export default { }, "map_pools_on_conflict": { "constraint": [ - 2081 + 2099 ], "update_columns": [ - 2094 + 2112 ], "where": [ - 2080 + 2098 ], "__typename": [ 78 @@ -34775,19 +35065,19 @@ export default { 765 ], "enabled": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "maps_aggregate": [ - 5403 + 5411 ], "seed": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -34795,7 +35085,7 @@ export default { }, "map_pools_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -34807,7 +35097,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "seed": [ 3 @@ -34821,7 +35111,7 @@ export default { }, "map_pools_stream_cursor_input": { "initial_value": [ - 2093 + 2111 ], "ordering": [ 236 @@ -34835,7 +35125,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "seed": [ 3 @@ -34850,10 +35140,10 @@ export default { "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 2091 + 2109 ], "where": [ - 2080 + 2098 ], "__typename": [ 78 @@ -34870,16 +35160,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "match_maps": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -34889,19 +35179,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -34911,19 +35201,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34933,19 +35223,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -34955,11 +35245,11 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], @@ -34984,10 +35274,10 @@ export default { }, "maps_aggregate": { "aggregate": [ - 2102 + 2120 ], "nodes": [ - 2096 + 2114 ], "__typename": [ 78 @@ -34995,13 +35285,13 @@ export default { }, "maps_aggregate_bool_exp": { "bool_and": [ - 2099 + 2117 ], "bool_or": [ - 2100 + 2118 ], "count": [ - 2101 + 2119 ], "__typename": [ 78 @@ -35009,13 +35299,13 @@ export default { }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 2118 + 2136 ], "distinct": [ 3 ], "filter": [ - 2105 + 2123 ], "predicate": [ 4 @@ -35026,13 +35316,13 @@ export default { }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 2119 + 2137 ], "distinct": [ 3 ], "filter": [ - 2105 + 2123 ], "predicate": [ 4 @@ -35043,13 +35333,13 @@ export default { }, "maps_aggregate_bool_exp_count": { "arguments": [ - 2117 + 2135 ], "distinct": [ 3 ], "filter": [ - 2105 + 2123 ], "predicate": [ 39 @@ -35063,7 +35353,7 @@ export default { 38, { "columns": [ - 2117, + 2135, "[maps_select_column!]" ], "distinct": [ @@ -35072,10 +35362,10 @@ export default { } ], "max": [ - 2108 + 2126 ], "min": [ - 2110 + 2128 ], "__typename": [ 78 @@ -35083,13 +35373,13 @@ export default { }, "maps_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 2109 + 2127 ], "min": [ - 2111 + 2129 ], "__typename": [ 78 @@ -35097,10 +35387,10 @@ export default { }, "maps_arr_rel_insert_input": { "data": [ - 2107 + 2125 ], "on_conflict": [ - 2114 + 2132 ], "__typename": [ 78 @@ -35108,13 +35398,13 @@ export default { }, "maps_bool_exp": { "_and": [ - 2105 + 2123 ], "_not": [ - 2105 + 2123 ], "_or": [ - 2105 + 2123 ], "active_pool": [ 4 @@ -35126,22 +35416,22 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "label": [ 80 ], "match_maps": [ - 2425 + 2443 ], "match_maps_aggregate": [ - 2418 + 2436 ], "match_veto_picks": [ - 2399 + 2417 ], "match_veto_picks_aggregate": [ - 2394 + 2412 ], "name": [ 80 @@ -35174,16 +35464,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "match_maps": [ - 2422 + 2440 ], "match_veto_picks": [ - 2398 + 2416 ], "name": [ 78 @@ -35206,7 +35496,7 @@ export default { }, "maps_max_fields": { "id": [ - 4744 + 4762 ], "label": [ 78 @@ -35229,22 +35519,22 @@ export default { }, "maps_max_order_by": { "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -35252,7 +35542,7 @@ export default { }, "maps_min_fields": { "id": [ - 4744 + 4762 ], "label": [ 78 @@ -35275,22 +35565,22 @@ export default { }, "maps_min_order_by": { "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -35301,7 +35591,7 @@ export default { 38 ], "returning": [ - 2096 + 2114 ], "__typename": [ 78 @@ -35309,10 +35599,10 @@ export default { }, "maps_obj_rel_insert_input": { "data": [ - 2107 + 2125 ], "on_conflict": [ - 2114 + 2132 ], "__typename": [ 78 @@ -35320,13 +35610,13 @@ export default { }, "maps_on_conflict": { "constraint": [ - 2106 + 2124 ], "update_columns": [ - 2123 + 2141 ], "where": [ - 2105 + 2123 ], "__typename": [ 78 @@ -35334,40 +35624,40 @@ export default { }, "maps_order_by": { "active_pool": [ - 2763 + 2781 ], "e_match_type": [ 868 ], "enabled": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "match_maps_aggregate": [ - 2421 + 2439 ], "match_veto_picks_aggregate": [ - 2397 + 2415 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -35375,7 +35665,7 @@ export default { }, "maps_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -35392,7 +35682,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 @@ -35418,7 +35708,7 @@ export default { }, "maps_stream_cursor_input": { "initial_value": [ - 2122 + 2140 ], "ordering": [ 236 @@ -35435,7 +35725,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 @@ -35462,10 +35752,10 @@ export default { "maps_update_column": {}, "maps_updates": { "_set": [ - 2120 + 2138 ], "where": [ - 2105 + 2123 ], "__typename": [ 78 @@ -35473,7 +35763,7 @@ export default { }, "match_clips": { "created_at": [ - 4306 + 4324 ], "download_url": [ 78 @@ -35485,22 +35775,22 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map": [ - 2416 + 2434 ], "match_map_demo": [ - 2300 + 2318 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "render_jobs": [ 185, @@ -35553,7 +35843,7 @@ export default { 180 ], "target": [ - 3721 + 3739 ], "target_steam_id": [ 180 @@ -35568,7 +35858,7 @@ export default { 78 ], "user": [ - 3721 + 3739 ], "user_steam_id": [ 180 @@ -35585,10 +35875,10 @@ export default { }, "match_clips_aggregate": { "aggregate": [ - 2129 + 2147 ], "nodes": [ - 2125 + 2143 ], "__typename": [ 78 @@ -35596,7 +35886,7 @@ export default { }, "match_clips_aggregate_bool_exp": { "count": [ - 2128 + 2146 ], "__typename": [ 78 @@ -35604,13 +35894,13 @@ export default { }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 2147 + 2165 ], "distinct": [ 3 ], "filter": [ - 2134 + 2152 ], "predicate": [ 39 @@ -35621,13 +35911,13 @@ export default { }, "match_clips_aggregate_fields": { "avg": [ - 2132 + 2150 ], "count": [ 38, { "columns": [ - 2147, + 2165, "[match_clips_select_column!]" ], "distinct": [ @@ -35636,31 +35926,31 @@ export default { } ], "max": [ - 2138 + 2156 ], "min": [ - 2140 + 2158 ], "stddev": [ - 2149 + 2167 ], "stddev_pop": [ - 2151 + 2169 ], "stddev_samp": [ - 2153 + 2171 ], "sum": [ - 2157 + 2175 ], "var_pop": [ - 2161 + 2179 ], "var_samp": [ - 2163 + 2181 ], "variance": [ - 2165 + 2183 ], "__typename": [ 78 @@ -35668,37 +35958,37 @@ export default { }, "match_clips_aggregate_order_by": { "avg": [ - 2133 + 2151 ], "count": [ - 2763 + 2781 ], "max": [ - 2139 + 2157 ], "min": [ - 2141 + 2159 ], "stddev": [ - 2150 + 2168 ], "stddev_pop": [ - 2152 + 2170 ], "stddev_samp": [ - 2154 + 2172 ], "sum": [ - 2158 + 2176 ], "var_pop": [ - 2162 + 2180 ], "var_samp": [ - 2164 + 2182 ], "variance": [ - 2166 + 2184 ], "__typename": [ 78 @@ -35706,10 +35996,10 @@ export default { }, "match_clips_arr_rel_insert_input": { "data": [ - 2137 + 2155 ], "on_conflict": [ - 2144 + 2162 ], "__typename": [ 78 @@ -35743,25 +36033,25 @@ export default { }, "match_clips_avg_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -35769,16 +36059,16 @@ export default { }, "match_clips_bool_exp": { "_and": [ - 2134 + 2152 ], "_not": [ - 2134 + 2152 ], "_or": [ - 2134 + 2152 ], "created_at": [ - 4307 + 4325 ], "download_url": [ 80 @@ -35790,22 +36080,22 @@ export default { 80 ], "id": [ - 4746 + 4764 ], "kills_count": [ 39 ], "match_map": [ - 2425 + 2443 ], "match_map_demo": [ - 2312 + 2330 ], "match_map_demo_id": [ - 4746 + 4764 ], "match_map_id": [ - 4746 + 4764 ], "render_jobs": [ 197 @@ -35820,7 +36110,7 @@ export default { 182 ], "target": [ - 3725 + 3743 ], "target_steam_id": [ 182 @@ -35835,7 +36125,7 @@ export default { 80 ], "user": [ - 3725 + 3743 ], "user_steam_id": [ 182 @@ -35879,7 +36169,7 @@ export default { }, "match_clips_insert_input": { "created_at": [ - 4306 + 4324 ], "duration_ms": [ 38 @@ -35888,22 +36178,22 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map": [ - 2434 + 2452 ], "match_map_demo": [ - 2324 + 2342 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "render_jobs": [ 194 @@ -35915,7 +36205,7 @@ export default { 180 ], "target": [ - 3732 + 3750 ], "target_steam_id": [ 180 @@ -35927,7 +36217,7 @@ export default { 78 ], "user": [ - 3732 + 3750 ], "user_steam_id": [ 180 @@ -35944,7 +36234,7 @@ export default { }, "match_clips_max_fields": { "created_at": [ - 4306 + 4324 ], "download_url": [ 78 @@ -35956,16 +36246,16 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -35997,46 +36287,46 @@ export default { }, "match_clips_max_order_by": { "created_at": [ - 2763 + 2781 ], "duration_ms": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "thumbnail_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36044,7 +36334,7 @@ export default { }, "match_clips_min_fields": { "created_at": [ - 4306 + 4324 ], "download_url": [ 78 @@ -36056,16 +36346,16 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -36097,46 +36387,46 @@ export default { }, "match_clips_min_order_by": { "created_at": [ - 2763 + 2781 ], "duration_ms": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "thumbnail_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36147,7 +36437,7 @@ export default { 38 ], "returning": [ - 2125 + 2143 ], "__typename": [ 78 @@ -36155,10 +36445,10 @@ export default { }, "match_clips_obj_rel_insert_input": { "data": [ - 2137 + 2155 ], "on_conflict": [ - 2144 + 2162 ], "__typename": [ 78 @@ -36166,13 +36456,13 @@ export default { }, "match_clips_on_conflict": { "constraint": [ - 2135 + 2153 ], "update_columns": [ - 2159 + 2177 ], "where": [ - 2134 + 2152 ], "__typename": [ 78 @@ -36180,70 +36470,70 @@ export default { }, "match_clips_order_by": { "created_at": [ - 2763 + 2781 ], "download_url": [ - 2763 + 2781 ], "duration_ms": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_demo": [ - 2326 + 2344 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "render_jobs_aggregate": [ 192 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target": [ - 3734 + 3752 ], "target_steam_id": [ - 2763 + 2781 ], "thumbnail_download_url": [ - 2763 + 2781 ], "thumbnail_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "user": [ - 3734 + 3752 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "visibility": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36251,7 +36541,7 @@ export default { }, "match_clips_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -36260,7 +36550,7 @@ export default { "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 4306 + 4324 ], "duration_ms": [ 38 @@ -36269,16 +36559,16 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -36336,25 +36626,25 @@ export default { }, "match_clips_stddev_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36388,25 +36678,25 @@ export default { }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36440,25 +36730,25 @@ export default { }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36466,7 +36756,7 @@ export default { }, "match_clips_stream_cursor_input": { "initial_value": [ - 2156 + 2174 ], "ordering": [ 236 @@ -36477,7 +36767,7 @@ export default { }, "match_clips_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "duration_ms": [ 38 @@ -36486,16 +36776,16 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "kills_count": [ 38 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -36553,25 +36843,25 @@ export default { }, "match_clips_sum_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36580,13 +36870,13 @@ export default { "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 2136 + 2154 ], "_set": [ - 2148 + 2166 ], "where": [ - 2134 + 2152 ], "__typename": [ 78 @@ -36620,25 +36910,25 @@ export default { }, "match_clips_var_pop_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36672,25 +36962,25 @@ export default { }, "match_clips_var_samp_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36724,25 +37014,25 @@ export default { }, "match_clips_variance_order_by": { "duration_ms": [ - 2763 + 2781 ], "kills_count": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "target_steam_id": [ - 2763 + 2781 ], "user_steam_id": [ - 2763 + 2781 ], "views_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36750,52 +37040,52 @@ export default { }, "match_demo_sessions": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1510 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_demo": [ - 2300 + 2318 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 ], "status_history": [ - 1634, + 1652, { "path": [ 78 @@ -36806,7 +37096,7 @@ export default { 78 ], "watcher": [ - 3721 + 3739 ], "watcher_steam_id": [ 180 @@ -36817,10 +37107,10 @@ export default { }, "match_demo_sessions_aggregate": { "aggregate": [ - 2171 + 2189 ], "nodes": [ - 2167 + 2185 ], "__typename": [ 78 @@ -36828,7 +37118,7 @@ export default { }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 2170 + 2188 ], "__typename": [ 78 @@ -36836,13 +37126,13 @@ export default { }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 2193 + 2211 ], "distinct": [ 3 ], "filter": [ - 2177 + 2195 ], "predicate": [ 39 @@ -36853,13 +37143,13 @@ export default { }, "match_demo_sessions_aggregate_fields": { "avg": [ - 2175 + 2193 ], "count": [ 38, { "columns": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -36868,31 +37158,31 @@ export default { } ], "max": [ - 2184 + 2202 ], "min": [ - 2186 + 2204 ], "stddev": [ - 2195 + 2213 ], "stddev_pop": [ - 2197 + 2215 ], "stddev_samp": [ - 2199 + 2217 ], "sum": [ - 2203 + 2221 ], "var_pop": [ - 2207 + 2225 ], "var_samp": [ - 2209 + 2227 ], "variance": [ - 2211 + 2229 ], "__typename": [ 78 @@ -36900,37 +37190,37 @@ export default { }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 2176 + 2194 ], "count": [ - 2763 + 2781 ], "max": [ - 2185 + 2203 ], "min": [ - 2187 + 2205 ], "stddev": [ - 2196 + 2214 ], "stddev_pop": [ - 2198 + 2216 ], "stddev_samp": [ - 2200 + 2218 ], "sum": [ - 2204 + 2222 ], "var_pop": [ - 2208 + 2226 ], "var_samp": [ - 2210 + 2228 ], "variance": [ - 2212 + 2230 ], "__typename": [ 78 @@ -36938,7 +37228,7 @@ export default { }, "match_demo_sessions_append_input": { "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -36946,10 +37236,10 @@ export default { }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 2183 + 2201 ], "on_conflict": [ - 2189 + 2207 ], "__typename": [ 78 @@ -36965,7 +37255,7 @@ export default { }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -36973,67 +37263,67 @@ export default { }, "match_demo_sessions_bool_exp": { "_and": [ - 2177 + 2195 ], "_not": [ - 2177 + 2195 ], "_or": [ - 2177 + 2195 ], "created_at": [ - 4307 + 4325 ], "error_message": [ 80 ], "game_server_node": [ - 1522 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4746 + 4764 ], "k8s_job_name": [ 80 ], "last_activity_at": [ - 4307 + 4325 ], "last_status_at": [ - 4307 + 4325 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_demo": [ - 2312 + 2330 ], "match_map_demo_id": [ - 4746 + 4764 ], "match_map_id": [ - 4746 + 4764 ], "status": [ 80 ], "status_history": [ - 1636 + 1654 ], "stream_url": [ 80 ], "watcher": [ - 3725 + 3743 ], "watcher_steam_id": [ 182 @@ -37077,58 +37367,58 @@ export default { }, "match_demo_sessions_insert_input": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 ], "game_server_node": [ - 1534 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_demo": [ - 2324 + 2342 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 ], "watcher": [ - 3732 + 3750 ], "watcher_steam_id": [ 180 @@ -37139,7 +37429,7 @@ export default { }, "match_demo_sessions_max_fields": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -37148,25 +37438,25 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 @@ -37183,43 +37473,43 @@ export default { }, "match_demo_sessions_max_order_by": { "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_activity_at": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37227,7 +37517,7 @@ export default { }, "match_demo_sessions_min_fields": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -37236,25 +37526,25 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 @@ -37271,43 +37561,43 @@ export default { }, "match_demo_sessions_min_order_by": { "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_activity_at": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37318,7 +37608,7 @@ export default { 38 ], "returning": [ - 2167 + 2185 ], "__typename": [ 78 @@ -37326,13 +37616,13 @@ export default { }, "match_demo_sessions_on_conflict": { "constraint": [ - 2178 + 2196 ], "update_columns": [ - 2205 + 2223 ], "where": [ - 2177 + 2195 ], "__typename": [ 78 @@ -37340,61 +37630,61 @@ export default { }, "match_demo_sessions_order_by": { "created_at": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node": [ - 1536 + 1554 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "last_activity_at": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_demo": [ - 2326 + 2344 ], "match_map_demo_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "status_history": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "watcher": [ - 3734 + 3752 ], "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37402,7 +37692,7 @@ export default { }, "match_demo_sessions_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -37410,7 +37700,7 @@ export default { }, "match_demo_sessions_prepend_input": { "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -37419,7 +37709,7 @@ export default { "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -37428,31 +37718,31 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 @@ -37474,7 +37764,7 @@ export default { }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37490,7 +37780,7 @@ export default { }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37506,7 +37796,7 @@ export default { }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37514,7 +37804,7 @@ export default { }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 2202 + 2220 ], "ordering": [ 236 @@ -37525,7 +37815,7 @@ export default { }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "error_message": [ 78 @@ -37534,31 +37824,31 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "last_activity_at": [ - 4306 + 4324 ], "last_status_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "status": [ 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 @@ -37580,7 +37870,7 @@ export default { }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37589,28 +37879,28 @@ export default { "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 2173 + 2191 ], "_delete_at_path": [ - 2179 + 2197 ], "_delete_elem": [ - 2180 + 2198 ], "_delete_key": [ - 2181 + 2199 ], "_inc": [ - 2182 + 2200 ], "_prepend": [ - 2192 + 2210 ], "_set": [ - 2194 + 2212 ], "where": [ - 2177 + 2195 ], "__typename": [ 78 @@ -37626,7 +37916,7 @@ export default { }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37642,7 +37932,7 @@ export default { }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37658,7 +37948,7 @@ export default { }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37675,19 +37965,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 @@ -37698,10 +37988,10 @@ export default { }, "match_lineup_players_aggregate": { "aggregate": [ - 2219 + 2237 ], "nodes": [ - 2213 + 2231 ], "__typename": [ 78 @@ -37709,13 +37999,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 2216 + 2234 ], "bool_or": [ - 2217 + 2235 ], "count": [ - 2218 + 2236 ], "__typename": [ 78 @@ -37723,13 +38013,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 2237 + 2255 ], "distinct": [ 3 ], "filter": [ - 2224 + 2242 ], "predicate": [ 4 @@ -37740,13 +38030,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 2238 + 2256 ], "distinct": [ 3 ], "filter": [ - 2224 + 2242 ], "predicate": [ 4 @@ -37757,13 +38047,13 @@ export default { }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 2236 + 2254 ], "distinct": [ 3 ], "filter": [ - 2224 + 2242 ], "predicate": [ 39 @@ -37774,13 +38064,13 @@ export default { }, "match_lineup_players_aggregate_fields": { "avg": [ - 2222 + 2240 ], "count": [ 38, { "columns": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -37789,31 +38079,31 @@ export default { } ], "max": [ - 2228 + 2246 ], "min": [ - 2230 + 2248 ], "stddev": [ - 2240 + 2258 ], "stddev_pop": [ - 2242 + 2260 ], "stddev_samp": [ - 2244 + 2262 ], "sum": [ - 2248 + 2266 ], "var_pop": [ - 2252 + 2270 ], "var_samp": [ - 2254 + 2272 ], "variance": [ - 2256 + 2274 ], "__typename": [ 78 @@ -37821,37 +38111,37 @@ export default { }, "match_lineup_players_aggregate_order_by": { "avg": [ - 2223 + 2241 ], "count": [ - 2763 + 2781 ], "max": [ - 2229 + 2247 ], "min": [ - 2231 + 2249 ], "stddev": [ - 2241 + 2259 ], "stddev_pop": [ - 2243 + 2261 ], "stddev_samp": [ - 2245 + 2263 ], "sum": [ - 2249 + 2267 ], "var_pop": [ - 2253 + 2271 ], "var_samp": [ - 2255 + 2273 ], "variance": [ - 2257 + 2275 ], "__typename": [ 78 @@ -37859,10 +38149,10 @@ export default { }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 2227 + 2245 ], "on_conflict": [ - 2233 + 2251 ], "__typename": [ 78 @@ -37878,7 +38168,7 @@ export default { }, "match_lineup_players_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -37886,13 +38176,13 @@ export default { }, "match_lineup_players_bool_exp": { "_and": [ - 2224 + 2242 ], "_not": [ - 2224 + 2242 ], "_or": [ - 2224 + 2242 ], "captain": [ 4 @@ -37904,19 +38194,19 @@ export default { 80 ], "id": [ - 4746 + 4764 ], "lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "placeholder_name": [ 80 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 @@ -37945,19 +38235,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 @@ -37971,10 +38261,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -37988,19 +38278,19 @@ export default { }, "match_lineup_players_max_order_by": { "discord_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "placeholder_name": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38011,10 +38301,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -38028,19 +38318,19 @@ export default { }, "match_lineup_players_min_order_by": { "discord_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "placeholder_name": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38051,7 +38341,7 @@ export default { 38 ], "returning": [ - 2213 + 2231 ], "__typename": [ 78 @@ -38059,13 +38349,13 @@ export default { }, "match_lineup_players_on_conflict": { "constraint": [ - 2225 + 2243 ], "update_columns": [ - 2250 + 2268 ], "where": [ - 2224 + 2242 ], "__typename": [ 78 @@ -38073,31 +38363,31 @@ export default { }, "match_lineup_players_order_by": { "captain": [ - 2763 + 2781 ], "checked_in": [ - 2763 + 2781 ], "discord_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "placeholder_name": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38105,7 +38395,7 @@ export default { }, "match_lineup_players_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -38125,10 +38415,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -38150,7 +38440,7 @@ export default { }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38166,7 +38456,7 @@ export default { }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38182,7 +38472,7 @@ export default { }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38190,7 +38480,7 @@ export default { }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 2247 + 2265 ], "ordering": [ 236 @@ -38210,10 +38500,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -38235,7 +38525,7 @@ export default { }, "match_lineup_players_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38244,13 +38534,13 @@ export default { "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 2226 + 2244 ], "_set": [ - 2239 + 2257 ], "where": [ - 2224 + 2242 ], "__typename": [ 78 @@ -38266,7 +38556,7 @@ export default { }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38282,7 +38572,7 @@ export default { }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38298,7 +38588,7 @@ export default { }, "match_lineup_players_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38315,16 +38605,16 @@ export default { 3 ], "captain": [ - 4910 + 4918 ], "coach": [ - 3721 + 3739 ], "coach_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "is_on_lineup": [ 3 @@ -38339,10 +38629,10 @@ export default { 3 ], "lineup_players": [ - 2213, + 2231, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38352,19 +38642,19 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "lineup_players_aggregate": [ - 2214, + 2232, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -38374,25 +38664,25 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38402,19 +38692,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -38424,11 +38714,11 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], @@ -38436,10 +38726,10 @@ export default { 78 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -38450,10 +38740,10 @@ export default { }, "match_lineups_aggregate": { "aggregate": [ - 2262 + 2280 ], "nodes": [ - 2258 + 2276 ], "__typename": [ 78 @@ -38461,7 +38751,7 @@ export default { }, "match_lineups_aggregate_bool_exp": { "count": [ - 2261 + 2279 ], "__typename": [ 78 @@ -38469,13 +38759,13 @@ export default { }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 2280 + 2298 ], "distinct": [ 3 ], "filter": [ - 2267 + 2285 ], "predicate": [ 39 @@ -38486,13 +38776,13 @@ export default { }, "match_lineups_aggregate_fields": { "avg": [ - 2265 + 2283 ], "count": [ 38, { "columns": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "distinct": [ @@ -38501,31 +38791,31 @@ export default { } ], "max": [ - 2271 + 2289 ], "min": [ - 2273 + 2291 ], "stddev": [ - 2282 + 2300 ], "stddev_pop": [ - 2284 + 2302 ], "stddev_samp": [ - 2286 + 2304 ], "sum": [ - 2290 + 2308 ], "var_pop": [ - 2294 + 2312 ], "var_samp": [ - 2296 + 2314 ], "variance": [ - 2298 + 2316 ], "__typename": [ 78 @@ -38533,37 +38823,37 @@ export default { }, "match_lineups_aggregate_order_by": { "avg": [ - 2266 + 2284 ], "count": [ - 2763 + 2781 ], "max": [ - 2272 + 2290 ], "min": [ - 2274 + 2292 ], "stddev": [ - 2283 + 2301 ], "stddev_pop": [ - 2285 + 2303 ], "stddev_samp": [ - 2287 + 2305 ], "sum": [ - 2291 + 2309 ], "var_pop": [ - 2295 + 2313 ], "var_samp": [ - 2297 + 2315 ], "variance": [ - 2299 + 2317 ], "__typename": [ 78 @@ -38571,10 +38861,10 @@ export default { }, "match_lineups_arr_rel_insert_input": { "data": [ - 2270 + 2288 ], "on_conflict": [ - 2277 + 2295 ], "__typename": [ 78 @@ -38590,7 +38880,7 @@ export default { }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38598,13 +38888,13 @@ export default { }, "match_lineups_bool_exp": { "_and": [ - 2267 + 2285 ], "_not": [ - 2267 + 2285 ], "_or": [ - 2267 + 2285 ], "can_pick_map_veto": [ 4 @@ -38616,16 +38906,16 @@ export default { 4 ], "captain": [ - 4914 + 4922 ], "coach": [ - 3725 + 3743 ], "coach_steam_id": [ 182 ], "id": [ - 4746 + 4764 ], "is_on_lineup": [ 4 @@ -38640,31 +38930,31 @@ export default { 4 ], "lineup_players": [ - 2224 + 2242 ], "lineup_players_aggregate": [ - 2215 + 2233 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_veto_picks": [ - 2399 + 2417 ], "match_veto_picks_aggregate": [ - 2394 + 2412 ], "name": [ 80 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "team_name": [ 80 @@ -38684,34 +38974,34 @@ export default { }, "match_lineups_insert_input": { "captain": [ - 4920 + 4928 ], "coach": [ - 3732 + 3750 ], "coach_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "lineup_players": [ - 2221 + 2239 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_veto_picks": [ - 2398 + 2416 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -38725,16 +39015,16 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "name": [ 78 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -38745,19 +39035,19 @@ export default { }, "match_lineups_max_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "team_name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38768,16 +39058,16 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "name": [ 78 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -38788,19 +39078,19 @@ export default { }, "match_lineups_min_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "team_name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38811,7 +39101,7 @@ export default { 38 ], "returning": [ - 2258 + 2276 ], "__typename": [ 78 @@ -38819,10 +39109,10 @@ export default { }, "match_lineups_obj_rel_insert_input": { "data": [ - 2270 + 2288 ], "on_conflict": [ - 2277 + 2295 ], "__typename": [ 78 @@ -38830,13 +39120,13 @@ export default { }, "match_lineups_on_conflict": { "constraint": [ - 2268 + 2286 ], "update_columns": [ - 2292 + 2310 ], "where": [ - 2267 + 2285 ], "__typename": [ 78 @@ -38844,61 +39134,61 @@ export default { }, "match_lineups_order_by": { "can_pick_map_veto": [ - 2763 + 2781 ], "can_pick_region_veto": [ - 2763 + 2781 ], "can_update_lineup": [ - 2763 + 2781 ], "captain": [ - 4921 + 4929 ], "coach": [ - 3734 + 3752 ], "coach_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_on_lineup": [ - 2763 + 2781 ], "is_picking_map_veto": [ - 2763 + 2781 ], "is_picking_region_veto": [ - 2763 + 2781 ], "is_ready": [ - 2763 + 2781 ], "lineup_players_aggregate": [ - 2220 + 2238 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_veto_picks_aggregate": [ - 2397 + 2415 ], "name": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "team_name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38906,7 +39196,7 @@ export default { }, "match_lineups_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -38918,13 +39208,13 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -38943,7 +39233,7 @@ export default { }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38959,7 +39249,7 @@ export default { }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38975,7 +39265,7 @@ export default { }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -38983,7 +39273,7 @@ export default { }, "match_lineups_stream_cursor_input": { "initial_value": [ - 2289 + 2307 ], "ordering": [ 236 @@ -38997,13 +39287,13 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "team_id": [ - 4744 + 4762 ], "team_name": [ 78 @@ -39022,7 +39312,7 @@ export default { }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39031,13 +39321,13 @@ export default { "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 2269 + 2287 ], "_set": [ - 2281 + 2299 ], "where": [ - 2267 + 2285 ], "__typename": [ 78 @@ -39053,7 +39343,7 @@ export default { }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39069,7 +39359,7 @@ export default { }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39085,7 +39375,7 @@ export default { }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39093,7 +39383,7 @@ export default { }, "match_map_demos": { "bombs": [ - 1634, + 1652, { "path": [ 78 @@ -39145,16 +39435,16 @@ export default { } ], "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2167, + 2185, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39164,19 +39454,19 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], "demo_sessions_aggregate": [ - 2168, + 2186, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -39186,11 +39476,11 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], @@ -39207,10 +39497,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "kills": [ - 1634, + 1652, { "path": [ 78 @@ -39221,13 +39511,13 @@ export default { 78 ], "match": [ - 2578 + 2596 ], "match_clips": [ - 2125, + 2143, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -39237,19 +39527,19 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_aggregate": [ - 2126, + 2144, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -39259,25 +39549,25 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -39289,7 +39579,7 @@ export default { 78 ], "players": [ - 1634, + 1652, { "path": [ 78 @@ -39297,7 +39587,7 @@ export default { } ], "round_ticks": [ - 1634, + 1652, { "path": [ 78 @@ -39322,10 +39612,10 @@ export default { }, "match_map_demos_aggregate": { "aggregate": [ - 2306 + 2324 ], "nodes": [ - 2300 + 2318 ], "__typename": [ 78 @@ -39333,13 +39623,13 @@ export default { }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 2303 + 2321 ], "bool_or": [ - 2304 + 2322 ], "count": [ - 2305 + 2323 ], "__typename": [ 78 @@ -39347,13 +39637,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 2330 + 2348 ], "distinct": [ 3 ], "filter": [ - 2312 + 2330 ], "predicate": [ 4 @@ -39364,13 +39654,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 2331 + 2349 ], "distinct": [ 3 ], "filter": [ - 2312 + 2330 ], "predicate": [ 4 @@ -39381,13 +39671,13 @@ export default { }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 2329 + 2347 ], "distinct": [ 3 ], "filter": [ - 2312 + 2330 ], "predicate": [ 39 @@ -39398,13 +39688,13 @@ export default { }, "match_map_demos_aggregate_fields": { "avg": [ - 2310 + 2328 ], "count": [ 38, { "columns": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "distinct": [ @@ -39413,31 +39703,31 @@ export default { } ], "max": [ - 2319 + 2337 ], "min": [ - 2321 + 2339 ], "stddev": [ - 2333 + 2351 ], "stddev_pop": [ - 2335 + 2353 ], "stddev_samp": [ - 2337 + 2355 ], "sum": [ - 2341 + 2359 ], "var_pop": [ - 2345 + 2363 ], "var_samp": [ - 2347 + 2365 ], "variance": [ - 2349 + 2367 ], "__typename": [ 78 @@ -39445,37 +39735,37 @@ export default { }, "match_map_demos_aggregate_order_by": { "avg": [ - 2311 + 2329 ], "count": [ - 2763 + 2781 ], "max": [ - 2320 + 2338 ], "min": [ - 2322 + 2340 ], "stddev": [ - 2334 + 2352 ], "stddev_pop": [ - 2336 + 2354 ], "stddev_samp": [ - 2338 + 2356 ], "sum": [ - 2342 + 2360 ], "var_pop": [ - 2346 + 2364 ], "var_samp": [ - 2348 + 2366 ], "variance": [ - 2350 + 2368 ], "__typename": [ 78 @@ -39483,16 +39773,16 @@ export default { }, "match_map_demos_append_input": { "bombs": [ - 1634 + 1652 ], "kills": [ - 1634 + 1652 ], "players": [ - 1634 + 1652 ], "round_ticks": [ - 1634 + 1652 ], "__typename": [ 78 @@ -39500,10 +39790,10 @@ export default { }, "match_map_demos_arr_rel_insert_input": { "data": [ - 2318 + 2336 ], "on_conflict": [ - 2325 + 2343 ], "__typename": [ 78 @@ -39531,19 +39821,19 @@ export default { }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39551,16 +39841,16 @@ export default { }, "match_map_demos_bool_exp": { "_and": [ - 2312 + 2330 ], "_not": [ - 2312 + 2330 ], "_or": [ - 2312 + 2330 ], "bombs": [ - 1636 + 1654 ], "clip_render_jobs": [ 197 @@ -39569,16 +39859,16 @@ export default { 187 ], "created_at": [ - 4307 + 4325 ], "cs2_build": [ 80 ], "demo_sessions": [ - 2177 + 2195 ], "demo_sessions_aggregate": [ - 2169 + 2187 ], "download_url": [ 80 @@ -39593,34 +39883,34 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "kills": [ - 1636 + 1654 ], "map_name": [ 80 ], "match": [ - 2587 + 2605 ], "match_clips": [ - 2134 + 2152 ], "match_clips_aggregate": [ - 2127 + 2145 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "metadata_parsed_at": [ - 4307 + 4325 ], "playback_file": [ 80 @@ -39632,10 +39922,10 @@ export default { 80 ], "players": [ - 1636 + 1654 ], "round_ticks": [ - 1636 + 1654 ], "size": [ 39 @@ -39724,19 +40014,19 @@ export default { }, "match_map_demos_insert_input": { "bombs": [ - 1634 + 1652 ], "clip_render_jobs": [ 194 ], "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 ], "demo_sessions": [ - 2174 + 2192 ], "file": [ 78 @@ -39745,31 +40035,31 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "kills": [ - 1634 + 1652 ], "map_name": [ 78 ], "match": [ - 2596 + 2614 ], "match_clips": [ - 2131 + 2149 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -39778,10 +40068,10 @@ export default { 38 ], "players": [ - 1634 + 1652 ], "round_ticks": [ - 1634 + 1652 ], "size": [ 38 @@ -39801,7 +40091,7 @@ export default { }, "match_map_demos_max_fields": { "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 @@ -39816,19 +40106,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "map_name": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -39857,49 +40147,49 @@ export default { }, "match_map_demos_max_order_by": { "created_at": [ - 2763 + 2781 ], "cs2_build": [ - 2763 + 2781 ], "duration_seconds": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map_name": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "metadata_parsed_at": [ - 2763 + 2781 ], "playback_file": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "workshop_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -39907,7 +40197,7 @@ export default { }, "match_map_demos_min_fields": { "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 @@ -39922,19 +40212,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "map_name": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -39963,49 +40253,49 @@ export default { }, "match_map_demos_min_order_by": { "created_at": [ - 2763 + 2781 ], "cs2_build": [ - 2763 + 2781 ], "duration_seconds": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map_name": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "metadata_parsed_at": [ - 2763 + 2781 ], "playback_file": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "workshop_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40016,7 +40306,7 @@ export default { 38 ], "returning": [ - 2300 + 2318 ], "__typename": [ 78 @@ -40024,10 +40314,10 @@ export default { }, "match_map_demos_obj_rel_insert_input": { "data": [ - 2318 + 2336 ], "on_conflict": [ - 2325 + 2343 ], "__typename": [ 78 @@ -40035,13 +40325,13 @@ export default { }, "match_map_demos_on_conflict": { "constraint": [ - 2313 + 2331 ], "update_columns": [ - 2343 + 2361 ], "where": [ - 2312 + 2330 ], "__typename": [ 78 @@ -40049,85 +40339,85 @@ export default { }, "match_map_demos_order_by": { "bombs": [ - 2763 + 2781 ], "clip_render_jobs_aggregate": [ 192 ], "created_at": [ - 2763 + 2781 ], "cs2_build": [ - 2763 + 2781 ], "demo_sessions_aggregate": [ - 2172 + 2190 ], "download_url": [ - 2763 + 2781 ], "duration_seconds": [ - 2763 + 2781 ], "file": [ - 2763 + 2781 ], "geometry_validated": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_name": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_clips_aggregate": [ - 2130 + 2148 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "metadata_parsed_at": [ - 2763 + 2781 ], "playback_file": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "playback_url": [ - 2763 + 2781 ], "players": [ - 2763 + 2781 ], "round_ticks": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "workshop_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40135,7 +40425,7 @@ export default { }, "match_map_demos_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -40143,16 +40433,16 @@ export default { }, "match_map_demos_prepend_input": { "bombs": [ - 1634 + 1652 ], "kills": [ - 1634 + 1652 ], "players": [ - 1634 + 1652 ], "round_ticks": [ - 1634 + 1652 ], "__typename": [ 78 @@ -40163,10 +40453,10 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 1634 + 1652 ], "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 @@ -40178,22 +40468,22 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "kills": [ - 1634 + 1652 ], "map_name": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -40202,10 +40492,10 @@ export default { 38 ], "players": [ - 1634 + 1652 ], "round_ticks": [ - 1634 + 1652 ], "size": [ 38 @@ -40245,19 +40535,19 @@ export default { }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40285,19 +40575,19 @@ export default { }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40325,19 +40615,19 @@ export default { }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40345,7 +40635,7 @@ export default { }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 2340 + 2358 ], "ordering": [ 236 @@ -40356,10 +40646,10 @@ export default { }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 1634 + 1652 ], "created_at": [ - 4306 + 4324 ], "cs2_build": [ 78 @@ -40374,22 +40664,22 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "kills": [ - 1634 + 1652 ], "map_name": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "metadata_parsed_at": [ - 4306 + 4324 ], "playback_file": [ 78 @@ -40398,10 +40688,10 @@ export default { 38 ], "players": [ - 1634 + 1652 ], "round_ticks": [ - 1634 + 1652 ], "size": [ 38 @@ -40441,19 +40731,19 @@ export default { }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40462,28 +40752,28 @@ export default { "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 2308 + 2326 ], "_delete_at_path": [ - 2314 + 2332 ], "_delete_elem": [ - 2315 + 2333 ], "_delete_key": [ - 2316 + 2334 ], "_inc": [ - 2317 + 2335 ], "_prepend": [ - 2328 + 2346 ], "_set": [ - 2332 + 2350 ], "where": [ - 2312 + 2330 ], "__typename": [ 78 @@ -40511,19 +40801,19 @@ export default { }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40551,19 +40841,19 @@ export default { }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40591,19 +40881,19 @@ export default { }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 2763 + 2781 ], "playback_size": [ - 2763 + 2781 ], "size": [ - 2763 + 2781 ], "tick_rate": [ - 2763 + 2781 ], "total_ticks": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40611,10 +40901,10 @@ export default { }, "match_map_rounds": { "assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -40624,19 +40914,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -40646,11 +40936,11 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], @@ -40658,22 +40948,22 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "has_backup_file": [ 3 ], "id": [ - 4744 + 4762 ], "kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -40683,19 +40973,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -40705,11 +40995,11 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], @@ -40738,16 +41028,16 @@ export default { 38 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_reason": [ 1225 @@ -40761,10 +41051,10 @@ export default { }, "match_map_rounds_aggregate": { "aggregate": [ - 2355 + 2373 ], "nodes": [ - 2351 + 2369 ], "__typename": [ 78 @@ -40772,7 +41062,7 @@ export default { }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 2354 + 2372 ], "__typename": [ 78 @@ -40780,13 +41070,13 @@ export default { }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 2372 + 2390 ], "distinct": [ 3 ], "filter": [ - 2360 + 2378 ], "predicate": [ 39 @@ -40797,13 +41087,13 @@ export default { }, "match_map_rounds_aggregate_fields": { "avg": [ - 2358 + 2376 ], "count": [ 38, { "columns": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -40812,31 +41102,31 @@ export default { } ], "max": [ - 2364 + 2382 ], "min": [ - 2366 + 2384 ], "stddev": [ - 2374 + 2392 ], "stddev_pop": [ - 2376 + 2394 ], "stddev_samp": [ - 2378 + 2396 ], "sum": [ - 2382 + 2400 ], "var_pop": [ - 2386 + 2404 ], "var_samp": [ - 2388 + 2406 ], "variance": [ - 2390 + 2408 ], "__typename": [ 78 @@ -40844,37 +41134,37 @@ export default { }, "match_map_rounds_aggregate_order_by": { "avg": [ - 2359 + 2377 ], "count": [ - 2763 + 2781 ], "max": [ - 2365 + 2383 ], "min": [ - 2367 + 2385 ], "stddev": [ - 2375 + 2393 ], "stddev_pop": [ - 2377 + 2395 ], "stddev_samp": [ - 2379 + 2397 ], "sum": [ - 2383 + 2401 ], "var_pop": [ - 2387 + 2405 ], "var_samp": [ - 2389 + 2407 ], "variance": [ - 2391 + 2409 ], "__typename": [ 78 @@ -40882,10 +41172,10 @@ export default { }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 2363 + 2381 ], "on_conflict": [ - 2369 + 2387 ], "__typename": [ 78 @@ -40919,25 +41209,25 @@ export default { }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -40945,40 +41235,40 @@ export default { }, "match_map_rounds_bool_exp": { "_and": [ - 2360 + 2378 ], "_not": [ - 2360 + 2378 ], "_or": [ - 2360 + 2378 ], "assists": [ - 2912 + 2930 ], "assists_aggregate": [ - 2903 + 2921 ], "backup_file": [ 80 ], "created_at": [ - 4307 + 4325 ], "deleted_at": [ - 4307 + 4325 ], "has_backup_file": [ 4 ], "id": [ - 4746 + 4764 ], "kills": [ - 3129 + 3147 ], "kills_aggregate": [ - 3120 + 3138 ], "lineup_1_money": [ 39 @@ -41005,16 +41295,16 @@ export default { 39 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "round": [ 39 ], "time": [ - 4307 + 4325 ], "winning_reason": [ 1226 @@ -41055,22 +41345,22 @@ export default { }, "match_map_rounds_insert_input": { "assists": [ - 2909 + 2927 ], "backup_file": [ 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "kills": [ - 3126 + 3144 ], "lineup_1_money": [ 38 @@ -41097,16 +41387,16 @@ export default { 38 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_reason": [ 1225 @@ -41123,13 +41413,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "lineup_1_money": [ 38 @@ -41150,13 +41440,13 @@ export default { 38 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_side": [ 78 @@ -41167,46 +41457,46 @@ export default { }, "match_map_rounds_max_order_by": { "backup_file": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "winning_side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41217,13 +41507,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "lineup_1_money": [ 38 @@ -41244,13 +41534,13 @@ export default { 38 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_side": [ 78 @@ -41261,46 +41551,46 @@ export default { }, "match_map_rounds_min_order_by": { "backup_file": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "winning_side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41311,7 +41601,7 @@ export default { 38 ], "returning": [ - 2351 + 2369 ], "__typename": [ 78 @@ -41319,13 +41609,13 @@ export default { }, "match_map_rounds_on_conflict": { "constraint": [ - 2361 + 2379 ], "update_columns": [ - 2384 + 2402 ], "where": [ - 2360 + 2378 ], "__typename": [ 78 @@ -41333,67 +41623,67 @@ export default { }, "match_map_rounds_order_by": { "assists_aggregate": [ - 2908 + 2926 ], "backup_file": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "has_backup_file": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "kills_aggregate": [ - 3125 + 3143 ], "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_side": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_side": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "winning_reason": [ - 2763 + 2781 ], "winning_side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41401,7 +41691,7 @@ export default { }, "match_map_rounds_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -41413,13 +41703,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "lineup_1_money": [ 38 @@ -41446,13 +41736,13 @@ export default { 38 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_reason": [ 1225 @@ -41492,25 +41782,25 @@ export default { }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41544,25 +41834,25 @@ export default { }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41596,25 +41886,25 @@ export default { }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41622,7 +41912,7 @@ export default { }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 2381 + 2399 ], "ordering": [ 236 @@ -41636,13 +41926,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "lineup_1_money": [ 38 @@ -41669,13 +41959,13 @@ export default { 38 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "winning_reason": [ 1225 @@ -41715,25 +42005,25 @@ export default { }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41742,13 +42032,13 @@ export default { "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 2362 + 2380 ], "_set": [ - 2373 + 2391 ], "where": [ - 2360 + 2378 ], "__typename": [ 78 @@ -41782,25 +42072,25 @@ export default { }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41834,25 +42124,25 @@ export default { }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41886,25 +42176,25 @@ export default { }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_money": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -41912,28 +42202,28 @@ export default { }, "match_map_veto_picks": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -41947,10 +42237,10 @@ export default { }, "match_map_veto_picks_aggregate": { "aggregate": [ - 2396 + 2414 ], "nodes": [ - 2392 + 2410 ], "__typename": [ 78 @@ -41958,7 +42248,7 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 2395 + 2413 ], "__typename": [ 78 @@ -41966,13 +42256,13 @@ export default { }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2410 + 2428 ], "distinct": [ 3 ], "filter": [ - 2399 + 2417 ], "predicate": [ 39 @@ -41986,7 +42276,7 @@ export default { 38, { "columns": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -41995,10 +42285,10 @@ export default { } ], "max": [ - 2402 + 2420 ], "min": [ - 2404 + 2422 ], "__typename": [ 78 @@ -42006,13 +42296,13 @@ export default { }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 2403 + 2421 ], "min": [ - 2405 + 2423 ], "__typename": [ 78 @@ -42020,10 +42310,10 @@ export default { }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 2401 + 2419 ], "on_conflict": [ - 2407 + 2425 ], "__typename": [ 78 @@ -42031,37 +42321,37 @@ export default { }, "match_map_veto_picks_bool_exp": { "_and": [ - 2399 + 2417 ], "_not": [ - 2399 + 2417 ], "_or": [ - 2399 + 2417 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "side": [ 80 @@ -42076,28 +42366,28 @@ export default { "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map": [ - 2113 + 2131 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -42111,19 +42401,19 @@ export default { }, "match_map_veto_picks_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -42134,22 +42424,22 @@ export default { }, "match_map_veto_picks_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -42157,19 +42447,19 @@ export default { }, "match_map_veto_picks_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -42180,22 +42470,22 @@ export default { }, "match_map_veto_picks_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -42206,7 +42496,7 @@ export default { 38 ], "returning": [ - 2392 + 2410 ], "__typename": [ 78 @@ -42214,13 +42504,13 @@ export default { }, "match_map_veto_picks_on_conflict": { "constraint": [ - 2400 + 2418 ], "update_columns": [ - 2414 + 2432 ], "where": [ - 2399 + 2417 ], "__typename": [ 78 @@ -42228,34 +42518,34 @@ export default { }, "match_map_veto_picks_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -42263,7 +42553,7 @@ export default { }, "match_map_veto_picks_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -42272,19 +42562,19 @@ export default { "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -42298,7 +42588,7 @@ export default { }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 2413 + 2431 ], "ordering": [ 236 @@ -42309,19 +42599,19 @@ export default { }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "side": [ 78 @@ -42336,10 +42626,10 @@ export default { "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 2411 + 2429 ], "where": [ - 2399 + 2417 ], "__typename": [ 78 @@ -42350,13 +42640,13 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "demos": [ - 2300, + 2318, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -42366,19 +42656,19 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "demos_aggregate": [ - 2301, + 2319, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -42388,11 +42678,11 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], @@ -42406,13 +42696,13 @@ export default { 793 ], "ended_at": [ - 4306 + 4324 ], "flashes": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -42422,19 +42712,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "flashes_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -42444,22 +42734,22 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "id": [ - 4744 + 4762 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_score": [ 38 @@ -42480,19 +42770,19 @@ export default { 38 ], "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_clips": [ - 2125, + 2143, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -42502,19 +42792,19 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_aggregate": [ - 2126, + 2144, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -42524,22 +42814,22 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_id": [ - 4744 + 4762 ], "objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -42549,19 +42839,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -42571,11 +42861,11 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], @@ -42583,10 +42873,10 @@ export default { 38 ], "player_assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -42596,19 +42886,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -42618,19 +42908,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_damages": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -42640,19 +42930,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -42662,19 +42952,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -42684,19 +42974,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -42706,19 +42996,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_unused_utilities": [ - 3606, + 3624, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -42728,19 +43018,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3607, + 3625, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -42750,11 +43040,11 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], @@ -42762,13 +43052,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "rounds": [ - 2351, + 2369, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -42778,19 +43068,19 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "rounds_aggregate": [ - 2352, + 2370, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -42800,25 +43090,25 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "started_at": [ - 4306 + 4324 ], "status": [ 798 ], "utility": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -42828,19 +43118,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "utility_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -42850,19 +43140,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "vetos": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42872,19 +43162,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "vetos_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -42894,16 +43184,16 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -42911,10 +43201,10 @@ export default { }, "match_maps_aggregate": { "aggregate": [ - 2420 + 2438 ], "nodes": [ - 2416 + 2434 ], "__typename": [ 78 @@ -42922,7 +43212,7 @@ export default { }, "match_maps_aggregate_bool_exp": { "count": [ - 2419 + 2437 ], "__typename": [ 78 @@ -42930,13 +43220,13 @@ export default { }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 2438 + 2456 ], "distinct": [ 3 ], "filter": [ - 2425 + 2443 ], "predicate": [ 39 @@ -42947,13 +43237,13 @@ export default { }, "match_maps_aggregate_fields": { "avg": [ - 2423 + 2441 ], "count": [ 38, { "columns": [ - 2438, + 2456, "[match_maps_select_column!]" ], "distinct": [ @@ -42962,31 +43252,31 @@ export default { } ], "max": [ - 2429 + 2447 ], "min": [ - 2431 + 2449 ], "stddev": [ - 2440 + 2458 ], "stddev_pop": [ - 2442 + 2460 ], "stddev_samp": [ - 2444 + 2462 ], "sum": [ - 2448 + 2466 ], "var_pop": [ - 2452 + 2470 ], "var_samp": [ - 2454 + 2472 ], "variance": [ - 2456 + 2474 ], "__typename": [ 78 @@ -42994,37 +43284,37 @@ export default { }, "match_maps_aggregate_order_by": { "avg": [ - 2424 + 2442 ], "count": [ - 2763 + 2781 ], "max": [ - 2430 + 2448 ], "min": [ - 2432 + 2450 ], "stddev": [ - 2441 + 2459 ], "stddev_pop": [ - 2443 + 2461 ], "stddev_samp": [ - 2445 + 2463 ], "sum": [ - 2449 + 2467 ], "var_pop": [ - 2453 + 2471 ], "var_samp": [ - 2455 + 2473 ], "variance": [ - 2457 + 2475 ], "__typename": [ 78 @@ -43032,10 +43322,10 @@ export default { }, "match_maps_arr_rel_insert_input": { "data": [ - 2428 + 2446 ], "on_conflict": [ - 2435 + 2453 ], "__typename": [ 78 @@ -43072,19 +43362,19 @@ export default { }, "match_maps_avg_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43092,25 +43382,25 @@ export default { }, "match_maps_bool_exp": { "_and": [ - 2425 + 2443 ], "_not": [ - 2425 + 2443 ], "_or": [ - 2425 + 2443 ], "clips_count": [ 39 ], "created_at": [ - 4307 + 4325 ], "demos": [ - 2312 + 2330 ], "demos_aggregate": [ - 2302 + 2320 ], "demos_download_url": [ 80 @@ -43122,22 +43412,22 @@ export default { 796 ], "ended_at": [ - 4307 + 4325 ], "flashes": [ - 3084 + 3102 ], "flashes_aggregate": [ - 3075 + 3093 ], "id": [ - 4746 + 4764 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 4307 + 4325 ], "lineup_1_score": [ 39 @@ -43158,88 +43448,88 @@ export default { 39 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_clips": [ - 2134 + 2152 ], "match_clips_aggregate": [ - 2127 + 2145 ], "match_id": [ - 4746 + 4764 ], "objectives": [ - 3328 + 3346 ], "objectives_aggregate": [ - 3321 + 3339 ], "order": [ 39 ], "player_assists": [ - 2912 + 2930 ], "player_assists_aggregate": [ - 2903 + 2921 ], "player_damages": [ - 2973 + 2991 ], "player_damages_aggregate": [ - 2966 + 2984 ], "player_kills": [ - 3129 + 3147 ], "player_kills_aggregate": [ - 3120 + 3138 ], "player_unused_utilities": [ - 3615 + 3633 ], "player_unused_utilities_aggregate": [ - 3608 + 3626 ], "public_clips_count": [ 39 ], "public_latest_clip_at": [ - 4307 + 4325 ], "rounds": [ - 2360 + 2378 ], "rounds_aggregate": [ - 2353 + 2371 ], "started_at": [ - 4307 + 4325 ], "status": [ 799 ], "utility": [ - 3656 + 3674 ], "utility_aggregate": [ - 3649 + 3667 ], "vetos": [ - 2399 + 2417 ], "vetos_aggregate": [ - 2394 + 2412 ], "winning_lineup_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -43271,25 +43561,25 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "demos": [ - 2309 + 2327 ], "e_match_map_status": [ 804 ], "ended_at": [ - 4306 + 4324 ], "flashes": [ - 3081 + 3099 ], "id": [ - 4744 + 4762 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_side": [ 1042 @@ -43304,61 +43594,61 @@ export default { 38 ], "map": [ - 2113 + 2131 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_clips": [ - 2131 + 2149 ], "match_id": [ - 4744 + 4762 ], "objectives": [ - 3325 + 3343 ], "order": [ 38 ], "player_assists": [ - 2909 + 2927 ], "player_damages": [ - 2970 + 2988 ], "player_kills": [ - 3126 + 3144 ], "player_unused_utilities": [ - 3612 + 3630 ], "public_clips_count": [ 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "rounds": [ - 2357 + 2375 ], "started_at": [ - 4306 + 4324 ], "status": [ 798 ], "utility": [ - 3653 + 3671 ], "vetos": [ - 2398 + 2416 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -43369,7 +43659,7 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "demos_download_url": [ 78 @@ -43378,13 +43668,13 @@ export default { 38 ], "ended_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_score": [ 38 @@ -43399,10 +43689,10 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "order": [ 38 @@ -43411,13 +43701,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "started_at": [ - 4306 + 4324 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -43425,46 +43715,46 @@ export default { }, "match_maps_max_order_by": { "clips_count": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "ended_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "latest_clip_at": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "public_latest_clip_at": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43475,7 +43765,7 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "demos_download_url": [ 78 @@ -43484,13 +43774,13 @@ export default { 38 ], "ended_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_score": [ 38 @@ -43505,10 +43795,10 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "order": [ 38 @@ -43517,13 +43807,13 @@ export default { 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "started_at": [ - 4306 + 4324 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -43531,46 +43821,46 @@ export default { }, "match_maps_min_order_by": { "clips_count": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "ended_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "latest_clip_at": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "public_latest_clip_at": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43581,7 +43871,7 @@ export default { 38 ], "returning": [ - 2416 + 2434 ], "__typename": [ 78 @@ -43589,10 +43879,10 @@ export default { }, "match_maps_obj_rel_insert_input": { "data": [ - 2428 + 2446 ], "on_conflict": [ - 2435 + 2453 ], "__typename": [ 78 @@ -43600,13 +43890,13 @@ export default { }, "match_maps_on_conflict": { "constraint": [ - 2426 + 2444 ], "update_columns": [ - 2450 + 2468 ], "where": [ - 2425 + 2443 ], "__typename": [ 78 @@ -43614,112 +43904,112 @@ export default { }, "match_maps_order_by": { "clips_count": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "demos_aggregate": [ - 2307 + 2325 ], "demos_download_url": [ - 2763 + 2781 ], "demos_total_size": [ - 2763 + 2781 ], "e_match_map_status": [ 806 ], "ended_at": [ - 2763 + 2781 ], "flashes_aggregate": [ - 3080 + 3098 ], "id": [ - 2763 + 2781 ], "is_current_map": [ - 2763 + 2781 ], "latest_clip_at": [ - 2763 + 2781 ], "lineup_1_score": [ - 2763 + 2781 ], "lineup_1_side": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_score": [ - 2763 + 2781 ], "lineup_2_side": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_clips_aggregate": [ - 2130 + 2148 ], "match_id": [ - 2763 + 2781 ], "objectives_aggregate": [ - 3324 + 3342 ], "order": [ - 2763 + 2781 ], "player_assists_aggregate": [ - 2908 + 2926 ], "player_damages_aggregate": [ - 2969 + 2987 ], "player_kills_aggregate": [ - 3125 + 3143 ], "player_unused_utilities_aggregate": [ - 3611 + 3629 ], "public_clips_count": [ - 2763 + 2781 ], "public_latest_clip_at": [ - 2763 + 2781 ], "rounds_aggregate": [ - 2356 + 2374 ], "started_at": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "utility_aggregate": [ - 3652 + 3670 ], "vetos_aggregate": [ - 2397 + 2415 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43727,7 +44017,7 @@ export default { }, "match_maps_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -43739,16 +44029,16 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_side": [ 1042 @@ -43763,10 +44053,10 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "order": [ 38 @@ -43775,16 +44065,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "started_at": [ - 4306 + 4324 ], "status": [ 798 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -43821,19 +44111,19 @@ export default { }, "match_maps_stddev_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43870,19 +44160,19 @@ export default { }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43919,19 +44209,19 @@ export default { }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -43939,7 +44229,7 @@ export default { }, "match_maps_stream_cursor_input": { "initial_value": [ - 2447 + 2465 ], "ordering": [ 236 @@ -43953,16 +44243,16 @@ export default { 38 ], "created_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "latest_clip_at": [ - 4306 + 4324 ], "lineup_1_side": [ 1042 @@ -43977,10 +44267,10 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "order": [ 38 @@ -43989,16 +44279,16 @@ export default { 38 ], "public_latest_clip_at": [ - 4306 + 4324 ], "started_at": [ - 4306 + 4324 ], "status": [ 798 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -44035,19 +44325,19 @@ export default { }, "match_maps_sum_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -44056,13 +44346,13 @@ export default { "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 2427 + 2445 ], "_set": [ - 2439 + 2457 ], "where": [ - 2425 + 2443 ], "__typename": [ 78 @@ -44099,19 +44389,19 @@ export default { }, "match_maps_var_pop_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -44148,19 +44438,19 @@ export default { }, "match_maps_var_samp_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -44197,19 +44487,19 @@ export default { }, "match_maps_variance_order_by": { "clips_count": [ - 2763 + 2781 ], "lineup_1_timeouts_available": [ - 2763 + 2781 ], "lineup_2_timeouts_available": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "public_clips_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -44238,7 +44528,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -44250,10 +44540,10 @@ export default { 38 ], "map_pool": [ - 2077 + 2095 ], "map_pool_id": [ - 4744 + 4762 ], "map_veto": [ 3 @@ -44262,10 +44552,10 @@ export default { 819 ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -44275,19 +44565,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_aggregate": [ - 2579, + 2597, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -44297,11 +44587,11 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], @@ -44333,13 +44623,13 @@ export default { 1123 ], "tournament": [ - 4698 + 4716 ], "tournament_bracket": [ - 4308 + 4326 ], "tournament_stage": [ - 4436 + 4454 ], "tv_delay": [ 38 @@ -44353,10 +44643,10 @@ export default { }, "match_options_aggregate": { "aggregate": [ - 2460 + 2478 ], "nodes": [ - 2458 + 2476 ], "__typename": [ 78 @@ -44364,13 +44654,13 @@ export default { }, "match_options_aggregate_fields": { "avg": [ - 2461 + 2479 ], "count": [ 38, { "columns": [ - 2473, + 2491, "[match_options_select_column!]" ], "distinct": [ @@ -44379,31 +44669,31 @@ export default { } ], "max": [ - 2466 + 2484 ], "min": [ - 2467 + 2485 ], "stddev": [ - 2475 + 2493 ], "stddev_pop": [ - 2476 + 2494 ], "stddev_samp": [ - 2477 + 2495 ], "sum": [ - 2480 + 2498 ], "var_pop": [ - 2483 + 2501 ], "var_samp": [ - 2484 + 2502 ], "variance": [ - 2485 + 2503 ], "__typename": [ 78 @@ -44434,13 +44724,13 @@ export default { }, "match_options_bool_exp": { "_and": [ - 2462 + 2480 ], "_not": [ - 2462 + 2480 ], "_or": [ - 2462 + 2480 ], "auto_cancel_duration": [ 39 @@ -44464,7 +44754,7 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "invite_code": [ 80 @@ -44476,10 +44766,10 @@ export default { 39 ], "map_pool": [ - 2080 + 2098 ], "map_pool_id": [ - 4746 + 4764 ], "map_veto": [ 4 @@ -44488,10 +44778,10 @@ export default { 820 ], "matches": [ - 2587 + 2605 ], "matches_aggregate": [ - 2580 + 2598 ], "mr": [ 39 @@ -44521,13 +44811,13 @@ export default { 1124 ], "tournament": [ - 4709 + 4727 ], "tournament_bracket": [ - 4319 + 4337 ], "tournament_stage": [ - 4448 + 4466 ], "tv_delay": [ 39 @@ -44583,7 +44873,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -44595,10 +44885,10 @@ export default { 38 ], "map_pool": [ - 2086 + 2104 ], "map_pool_id": [ - 4744 + 4762 ], "map_veto": [ 3 @@ -44607,7 +44897,7 @@ export default { 819 ], "matches": [ - 2584 + 2602 ], "mr": [ 38 @@ -44637,13 +44927,13 @@ export default { 1123 ], "tournament": [ - 4718 + 4736 ], "tournament_bracket": [ - 4328 + 4346 ], "tournament_stage": [ - 4460 + 4478 ], "tv_delay": [ 38 @@ -44663,7 +44953,7 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -44672,7 +44962,7 @@ export default { 38 ], "map_pool_id": [ - 4744 + 4762 ], "mr": [ 38 @@ -44698,7 +44988,7 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -44707,7 +44997,7 @@ export default { 38 ], "map_pool_id": [ - 4744 + 4762 ], "mr": [ 38 @@ -44730,7 +45020,7 @@ export default { 38 ], "returning": [ - 2458 + 2476 ], "__typename": [ 78 @@ -44738,10 +45028,10 @@ export default { }, "match_options_obj_rel_insert_input": { "data": [ - 2465 + 2483 ], "on_conflict": [ - 2470 + 2488 ], "__typename": [ 78 @@ -44749,13 +45039,13 @@ export default { }, "match_options_on_conflict": { "constraint": [ - 2463 + 2481 ], "update_columns": [ - 2481 + 2499 ], "where": [ - 2462 + 2480 ], "__typename": [ 78 @@ -44763,94 +45053,94 @@ export default { }, "match_options_order_by": { "auto_cancel_duration": [ - 2763 + 2781 ], "auto_cancellation": [ - 2763 + 2781 ], "best_of": [ - 2763 + 2781 ], "check_in_setting": [ - 2763 + 2781 ], "coaches": [ - 2763 + 2781 ], "default_models": [ - 2763 + 2781 ], "has_active_matches": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invite_code": [ - 2763 + 2781 ], "knife_round": [ - 2763 + 2781 ], "live_match_timeout": [ - 2763 + 2781 ], "map_pool": [ - 2088 + 2106 ], "map_pool_id": [ - 2763 + 2781 ], "map_veto": [ - 2763 + 2781 ], "match_mode": [ - 2763 + 2781 ], "matches_aggregate": [ - 2583 + 2601 ], "mr": [ - 2763 + 2781 ], "number_of_substitutes": [ - 2763 + 2781 ], "overtime": [ - 2763 + 2781 ], "prefer_dedicated_server": [ - 2763 + 2781 ], "ready_setting": [ - 2763 + 2781 ], "region_veto": [ - 2763 + 2781 ], "regions": [ - 2763 + 2781 ], "tech_timeout_setting": [ - 2763 + 2781 ], "timeout_setting": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_bracket": [ - 4330 + 4348 ], "tournament_stage": [ - 4462 + 4480 ], "tv_delay": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -44858,7 +45148,7 @@ export default { }, "match_options_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -44885,7 +45175,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -44897,7 +45187,7 @@ export default { 38 ], "map_pool_id": [ - 4744 + 4762 ], "map_veto": [ 3 @@ -45013,7 +45303,7 @@ export default { }, "match_options_stream_cursor_input": { "initial_value": [ - 2479 + 2497 ], "ordering": [ 236 @@ -45042,7 +45332,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -45054,7 +45344,7 @@ export default { 38 ], "map_pool_id": [ - 4744 + 4762 ], "map_veto": [ 3 @@ -45125,13 +45415,13 @@ export default { "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 2464 + 2482 ], "_set": [ - 2474 + 2492 ], "where": [ - 2462 + 2480 ], "__typename": [ 78 @@ -45208,22 +45498,22 @@ export default { }, "match_region_veto_picks": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45237,10 +45527,10 @@ export default { }, "match_region_veto_picks_aggregate": { "aggregate": [ - 2490 + 2508 ], "nodes": [ - 2486 + 2504 ], "__typename": [ 78 @@ -45248,7 +45538,7 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 2489 + 2507 ], "__typename": [ 78 @@ -45256,13 +45546,13 @@ export default { }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 2504 + 2522 ], "distinct": [ 3 ], "filter": [ - 2493 + 2511 ], "predicate": [ 39 @@ -45276,7 +45566,7 @@ export default { 38, { "columns": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -45285,10 +45575,10 @@ export default { } ], "max": [ - 2496 + 2514 ], "min": [ - 2498 + 2516 ], "__typename": [ 78 @@ -45296,13 +45586,13 @@ export default { }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 2497 + 2515 ], "min": [ - 2499 + 2517 ], "__typename": [ 78 @@ -45310,10 +45600,10 @@ export default { }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 2495 + 2513 ], "on_conflict": [ - 2501 + 2519 ], "__typename": [ 78 @@ -45321,31 +45611,31 @@ export default { }, "match_region_veto_picks_bool_exp": { "_and": [ - 2493 + 2511 ], "_not": [ - 2493 + 2511 ], "_or": [ - 2493 + 2511 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "region": [ 80 @@ -45360,22 +45650,22 @@ export default { "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45389,16 +45679,16 @@ export default { }, "match_region_veto_picks_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45409,19 +45699,19 @@ export default { }, "match_region_veto_picks_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "__typename": [ 78 @@ -45429,16 +45719,16 @@ export default { }, "match_region_veto_picks_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45449,19 +45739,19 @@ export default { }, "match_region_veto_picks_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "__typename": [ 78 @@ -45472,7 +45762,7 @@ export default { 38 ], "returning": [ - 2486 + 2504 ], "__typename": [ 78 @@ -45480,13 +45770,13 @@ export default { }, "match_region_veto_picks_on_conflict": { "constraint": [ - 2494 + 2512 ], "update_columns": [ - 2508 + 2526 ], "where": [ - 2493 + 2511 ], "__typename": [ 78 @@ -45494,28 +45784,28 @@ export default { }, "match_region_veto_picks_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -45523,7 +45813,7 @@ export default { }, "match_region_veto_picks_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -45532,16 +45822,16 @@ export default { "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45555,7 +45845,7 @@ export default { }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 2507 + 2525 ], "ordering": [ 236 @@ -45566,16 +45856,16 @@ export default { }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "region": [ 78 @@ -45590,10 +45880,10 @@ export default { "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 2505 + 2523 ], "where": [ - 2493 + 2511 ], "__typename": [ 78 @@ -45607,13 +45897,13 @@ export default { 78 ], "game_server_node": [ - 1510 + 1528 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_game_streamer": [ 3 @@ -45625,16 +45915,16 @@ export default { 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -45646,7 +45936,7 @@ export default { 78 ], "status_history": [ - 1634, + 1652, { "path": [ 78 @@ -45665,10 +45955,10 @@ export default { }, "match_streams_aggregate": { "aggregate": [ - 2516 + 2534 ], "nodes": [ - 2510 + 2528 ], "__typename": [ 78 @@ -45676,13 +45966,13 @@ export default { }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 2513 + 2531 ], "bool_or": [ - 2514 + 2532 ], "count": [ - 2515 + 2533 ], "__typename": [ 78 @@ -45690,13 +45980,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 2539 + 2557 ], "distinct": [ 3 ], "filter": [ - 2522 + 2540 ], "predicate": [ 4 @@ -45707,13 +45997,13 @@ export default { }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 2540 + 2558 ], "distinct": [ 3 ], "filter": [ - 2522 + 2540 ], "predicate": [ 4 @@ -45724,13 +46014,13 @@ export default { }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 2538 + 2556 ], "distinct": [ 3 ], "filter": [ - 2522 + 2540 ], "predicate": [ 39 @@ -45741,13 +46031,13 @@ export default { }, "match_streams_aggregate_fields": { "avg": [ - 2520 + 2538 ], "count": [ 38, { "columns": [ - 2538, + 2556, "[match_streams_select_column!]" ], "distinct": [ @@ -45756,31 +46046,31 @@ export default { } ], "max": [ - 2529 + 2547 ], "min": [ - 2531 + 2549 ], "stddev": [ - 2542 + 2560 ], "stddev_pop": [ - 2544 + 2562 ], "stddev_samp": [ - 2546 + 2564 ], "sum": [ - 2550 + 2568 ], "var_pop": [ - 2554 + 2572 ], "var_samp": [ - 2556 + 2574 ], "variance": [ - 2558 + 2576 ], "__typename": [ 78 @@ -45788,37 +46078,37 @@ export default { }, "match_streams_aggregate_order_by": { "avg": [ - 2521 + 2539 ], "count": [ - 2763 + 2781 ], "max": [ - 2530 + 2548 ], "min": [ - 2532 + 2550 ], "stddev": [ - 2543 + 2561 ], "stddev_pop": [ - 2545 + 2563 ], "stddev_samp": [ - 2547 + 2565 ], "sum": [ - 2551 + 2569 ], "var_pop": [ - 2555 + 2573 ], "var_samp": [ - 2557 + 2575 ], "variance": [ - 2559 + 2577 ], "__typename": [ 78 @@ -45826,7 +46116,7 @@ export default { }, "match_streams_append_input": { "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -45834,10 +46124,10 @@ export default { }, "match_streams_arr_rel_insert_input": { "data": [ - 2528 + 2546 ], "on_conflict": [ - 2534 + 2552 ], "__typename": [ 78 @@ -45853,7 +46143,7 @@ export default { }, "match_streams_avg_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -45861,13 +46151,13 @@ export default { }, "match_streams_bool_exp": { "_and": [ - 2522 + 2540 ], "_not": [ - 2522 + 2540 ], "_or": [ - 2522 + 2540 ], "autodirector": [ 4 @@ -45876,13 +46166,13 @@ export default { 80 ], "game_server_node": [ - 1522 + 1540 ], "game_server_node_id": [ 80 ], "id": [ - 4746 + 4764 ], "is_game_streamer": [ 4 @@ -45894,16 +46184,16 @@ export default { 80 ], "last_status_at": [ - 4307 + 4325 ], "link": [ 80 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "mode": [ 80 @@ -45915,7 +46205,7 @@ export default { 80 ], "status_history": [ - 1636 + 1654 ], "stream_url": [ 80 @@ -45968,13 +46258,13 @@ export default { 78 ], "game_server_node": [ - 1534 + 1552 ], "game_server_node_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_game_streamer": [ 3 @@ -45986,16 +46276,16 @@ export default { 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -46007,7 +46297,7 @@ export default { 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 @@ -46027,19 +46317,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -46062,40 +46352,40 @@ export default { }, "match_streams_max_order_by": { "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_service_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "link": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "mode": [ - 2763 + 2781 ], "priority": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46109,19 +46399,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "k8s_service_name": [ 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -46144,40 +46434,40 @@ export default { }, "match_streams_min_order_by": { "error_message": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_service_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "link": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "mode": [ - 2763 + 2781 ], "priority": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46188,7 +46478,7 @@ export default { 38 ], "returning": [ - 2510 + 2528 ], "__typename": [ 78 @@ -46196,13 +46486,13 @@ export default { }, "match_streams_on_conflict": { "constraint": [ - 2523 + 2541 ], "update_columns": [ - 2552 + 2570 ], "where": [ - 2522 + 2540 ], "__typename": [ 78 @@ -46210,58 +46500,58 @@ export default { }, "match_streams_order_by": { "autodirector": [ - 2763 + 2781 ], "error_message": [ - 2763 + 2781 ], "game_server_node": [ - 1536 + 1554 ], "game_server_node_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_game_streamer": [ - 2763 + 2781 ], "is_live": [ - 2763 + 2781 ], "k8s_service_name": [ - 2763 + 2781 ], "last_status_at": [ - 2763 + 2781 ], "link": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "mode": [ - 2763 + 2781 ], "priority": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "status_history": [ - 2763 + 2781 ], "stream_url": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46269,7 +46559,7 @@ export default { }, "match_streams_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -46277,7 +46567,7 @@ export default { }, "match_streams_prepend_input": { "status_history": [ - 1634 + 1652 ], "__typename": [ 78 @@ -46297,7 +46587,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_game_streamer": [ 3 @@ -46309,13 +46599,13 @@ export default { 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -46327,7 +46617,7 @@ export default { 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 @@ -46349,7 +46639,7 @@ export default { }, "match_streams_stddev_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46365,7 +46655,7 @@ export default { }, "match_streams_stddev_pop_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46381,7 +46671,7 @@ export default { }, "match_streams_stddev_samp_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46389,7 +46679,7 @@ export default { }, "match_streams_stream_cursor_input": { "initial_value": [ - 2549 + 2567 ], "ordering": [ 236 @@ -46409,7 +46699,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_game_streamer": [ 3 @@ -46421,13 +46711,13 @@ export default { 78 ], "last_status_at": [ - 4306 + 4324 ], "link": [ 78 ], "match_id": [ - 4744 + 4762 ], "mode": [ 78 @@ -46439,7 +46729,7 @@ export default { 78 ], "status_history": [ - 1634 + 1652 ], "stream_url": [ 78 @@ -46461,7 +46751,7 @@ export default { }, "match_streams_sum_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46470,28 +46760,28 @@ export default { "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 2518 + 2536 ], "_delete_at_path": [ - 2524 + 2542 ], "_delete_elem": [ - 2525 + 2543 ], "_delete_key": [ - 2526 + 2544 ], "_inc": [ - 2527 + 2545 ], "_prepend": [ - 2537 + 2555 ], "_set": [ - 2541 + 2559 ], "where": [ - 2522 + 2540 ], "__typename": [ 78 @@ -46507,7 +46797,7 @@ export default { }, "match_streams_var_pop_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46523,7 +46813,7 @@ export default { }, "match_streams_var_samp_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46539,7 +46829,7 @@ export default { }, "match_streams_variance_order_by": { "priority": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46558,10 +46848,10 @@ export default { }, "match_type_cfgs_aggregate": { "aggregate": [ - 2562 + 2580 ], "nodes": [ - 2560 + 2578 ], "__typename": [ 78 @@ -46572,7 +46862,7 @@ export default { 38, { "columns": [ - 2572, + 2590, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -46581,10 +46871,10 @@ export default { } ], "max": [ - 2566 + 2584 ], "min": [ - 2567 + 2585 ], "__typename": [ 78 @@ -46592,13 +46882,13 @@ export default { }, "match_type_cfgs_bool_exp": { "_and": [ - 2563 + 2581 ], "_not": [ - 2563 + 2581 ], "_or": [ - 2563 + 2581 ], "cfg": [ 80 @@ -46643,7 +46933,7 @@ export default { 38 ], "returning": [ - 2560 + 2578 ], "__typename": [ 78 @@ -46651,13 +46941,13 @@ export default { }, "match_type_cfgs_on_conflict": { "constraint": [ - 2564 + 2582 ], "update_columns": [ - 2576 + 2594 ], "where": [ - 2563 + 2581 ], "__typename": [ 78 @@ -46665,10 +46955,10 @@ export default { }, "match_type_cfgs_order_by": { "cfg": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -46696,7 +46986,7 @@ export default { }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 2575 + 2593 ], "ordering": [ 236 @@ -46719,10 +47009,10 @@ export default { "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 2573 + 2591 ], "where": [ - 2563 + 2581 ], "__typename": [ 78 @@ -46754,13 +47044,13 @@ export default { 3 ], "cancels_at": [ - 4306 + 4324 ], "clutches": [ - 4934, + 4942, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -46770,19 +47060,19 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], "clutches_aggregate": [ - 4935, + 4943, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -46792,11 +47082,11 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], @@ -46807,16 +47097,16 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_match_map_id": [ - 4744 + 4762 ], "demos": [ - 2300, + 2318, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -46826,19 +47116,19 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "demos_aggregate": [ - 2301, + 2319, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -46848,11 +47138,11 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], @@ -46904,16 +47194,16 @@ export default { 834 ], "e_region": [ - 3808 + 3826 ], "effective_at": [ - 4306 + 4324 ], "elo_changes": [ - 5131, + 5139, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -46923,19 +47213,19 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "elo_changes_aggregate": [ - 5132, + 5140, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -46945,22 +47235,22 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -46993,19 +47283,19 @@ export default { 78 ], "lineup_1": [ - 2258 + 2276 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2": [ - 2258 + 2276 ], "lineup_2_id": [ - 4744 + 4762 ], "lineup_counts": [ - 1632, + 1650, { "path": [ 78 @@ -47013,13 +47303,13 @@ export default { } ], "map_veto_picking_lineup_id": [ - 4744 + 4762 ], "map_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47029,19 +47319,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "map_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -47051,11 +47341,11 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], @@ -47063,10 +47353,10 @@ export default { 78 ], "match_maps": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -47076,19 +47366,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -47098,16 +47388,16 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -47116,10 +47406,10 @@ export default { 38 ], "opening_duels": [ - 5062, + 5070, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47129,19 +47419,19 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "opening_duels_aggregate": [ - 5063, + 5071, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -47151,19 +47441,19 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "options": [ - 2458 + 2476 ], "organizer": [ - 3721 + 3739 ], "organizer_steam_id": [ 180 @@ -47172,10 +47462,10 @@ export default { 78 ], "player_assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -47185,19 +47475,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -47207,19 +47497,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_damages": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -47229,19 +47519,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -47251,19 +47541,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_flashes": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -47273,19 +47563,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_flashes_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -47295,19 +47585,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -47317,19 +47607,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -47339,19 +47629,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -47361,19 +47651,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -47383,19 +47673,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_unused_utilities": [ - 3606, + 3624, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47405,19 +47695,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3607, + 3625, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -47427,19 +47717,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_utility": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -47449,19 +47739,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utility_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -47471,11 +47761,11 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], @@ -47483,13 +47773,13 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4744 + 4762 ], "region_veto_picks": [ - 2486, + 2504, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47499,19 +47789,19 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], "region_veto_picks_aggregate": [ - 2487, + 2505, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -47521,11 +47811,11 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], @@ -47533,16 +47823,19 @@ export default { 3 ], "scheduled_at": [ - 4306 + 4324 ], "server": [ - 3835 + 3853 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -47554,16 +47847,16 @@ export default { 78 ], "started_at": [ - 4306 + 4324 ], "status": [ 839 ], "streams": [ - 2510, + 2528, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -47573,19 +47866,19 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "streams_aggregate": [ - 2511, + 2529, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -47595,19 +47888,19 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "teams": [ - 4263, + 4281, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -47617,19 +47910,19 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "tournament_brackets": [ - 4308, + 4326, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -47639,19 +47932,19 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4309, + 4327, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -47661,11 +47954,11 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], @@ -47673,10 +47966,10 @@ export default { 78 ], "winner": [ - 2258 + 2276 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -47684,10 +47977,10 @@ export default { }, "matches_aggregate": { "aggregate": [ - 2582 + 2600 ], "nodes": [ - 2578 + 2596 ], "__typename": [ 78 @@ -47695,7 +47988,7 @@ export default { }, "matches_aggregate_bool_exp": { "count": [ - 2581 + 2599 ], "__typename": [ 78 @@ -47703,13 +47996,13 @@ export default { }, "matches_aggregate_bool_exp_count": { "arguments": [ - 2600 + 2618 ], "distinct": [ 3 ], "filter": [ - 2587 + 2605 ], "predicate": [ 39 @@ -47720,13 +48013,13 @@ export default { }, "matches_aggregate_fields": { "avg": [ - 2585 + 2603 ], "count": [ 38, { "columns": [ - 2600, + 2618, "[matches_select_column!]" ], "distinct": [ @@ -47735,31 +48028,31 @@ export default { } ], "max": [ - 2591 + 2609 ], "min": [ - 2593 + 2611 ], "stddev": [ - 2602 + 2620 ], "stddev_pop": [ - 2604 + 2622 ], "stddev_samp": [ - 2606 + 2624 ], "sum": [ - 2610 + 2628 ], "var_pop": [ - 2614 + 2632 ], "var_samp": [ - 2616 + 2634 ], "variance": [ - 2618 + 2636 ], "__typename": [ 78 @@ -47767,37 +48060,37 @@ export default { }, "matches_aggregate_order_by": { "avg": [ - 2586 + 2604 ], "count": [ - 2763 + 2781 ], "max": [ - 2592 + 2610 ], "min": [ - 2594 + 2612 ], "stddev": [ - 2603 + 2621 ], "stddev_pop": [ - 2605 + 2623 ], "stddev_samp": [ - 2607 + 2625 ], "sum": [ - 2611 + 2629 ], "var_pop": [ - 2615 + 2633 ], "var_samp": [ - 2617 + 2635 ], "variance": [ - 2619 + 2637 ], "__typename": [ 78 @@ -47805,10 +48098,10 @@ export default { }, "matches_arr_rel_insert_input": { "data": [ - 2590 + 2608 ], "on_conflict": [ - 2597 + 2615 ], "__typename": [ 78 @@ -47830,7 +48123,7 @@ export default { }, "matches_avg_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -47838,13 +48131,13 @@ export default { }, "matches_bool_exp": { "_and": [ - 2587 + 2605 ], "_not": [ - 2587 + 2605 ], "_or": [ - 2587 + 2605 ], "can_assign_server": [ 4 @@ -47871,13 +48164,13 @@ export default { 4 ], "cancels_at": [ - 4307 + 4325 ], "clutches": [ - 4943 + 4951 ], "clutches_aggregate": [ - 4936 + 4944 ], "connection_link": [ 80 @@ -47886,16 +48179,16 @@ export default { 80 ], "created_at": [ - 4307 + 4325 ], "current_match_map_id": [ - 4746 + 4764 ], "demos": [ - 2312 + 2330 ], "demos_aggregate": [ - 2302 + 2320 ], "draft_games": [ 365 @@ -47907,25 +48200,25 @@ export default { 837 ], "e_region": [ - 3812 + 3830 ], "effective_at": [ - 4307 + 4325 ], "elo_changes": [ - 5150 + 5158 ], "elo_changes_aggregate": [ - 5133 + 5141 ], "ended_at": [ - 4307 + 4325 ], "external_id": [ 80 ], "id": [ - 4746 + 4764 ], "invite_code": [ 80 @@ -47958,40 +48251,40 @@ export default { 80 ], "lineup_1": [ - 2267 + 2285 ], "lineup_1_id": [ - 4746 + 4764 ], "lineup_2": [ - 2267 + 2285 ], "lineup_2_id": [ - 4746 + 4764 ], "lineup_counts": [ - 1633 + 1651 ], "map_veto_picking_lineup_id": [ - 4746 + 4764 ], "map_veto_picks": [ - 2399 + 2417 ], "map_veto_picks_aggregate": [ - 2394 + 2412 ], "map_veto_type": [ 80 ], "match_maps": [ - 2425 + 2443 ], "match_maps_aggregate": [ - 2418 + 2436 ], "match_options_id": [ - 4746 + 4764 ], "max_players_per_lineup": [ 39 @@ -48000,16 +48293,16 @@ export default { 39 ], "opening_duels": [ - 5071 + 5079 ], "opening_duels_aggregate": [ - 5064 + 5072 ], "options": [ - 2462 + 2480 ], "organizer": [ - 3725 + 3743 ], "organizer_steam_id": [ 182 @@ -48018,73 +48311,76 @@ export default { 80 ], "player_assists": [ - 2912 + 2930 ], "player_assists_aggregate": [ - 2903 + 2921 ], "player_damages": [ - 2973 + 2991 ], "player_damages_aggregate": [ - 2966 + 2984 ], "player_flashes": [ - 3084 + 3102 ], "player_flashes_aggregate": [ - 3075 + 3093 ], "player_kills": [ - 3129 + 3147 ], "player_kills_aggregate": [ - 3120 + 3138 ], "player_objectives": [ - 3328 + 3346 ], "player_objectives_aggregate": [ - 3321 + 3339 ], "player_unused_utilities": [ - 3615 + 3633 ], "player_unused_utilities_aggregate": [ - 3608 + 3626 ], "player_utility": [ - 3656 + 3674 ], "player_utility_aggregate": [ - 3649 + 3667 ], "region": [ 80 ], "region_veto_picking_lineup_id": [ - 4746 + 4764 ], "region_veto_picks": [ - 2493 + 2511 ], "region_veto_picks_aggregate": [ - 2488 + 2506 ], "requested_organizer": [ 4 ], "scheduled_at": [ - 4307 + 4325 ], "server": [ - 3846 + 3864 ], "server_error": [ 80 ], "server_id": [ - 4746 + 4764 + ], + "server_plugin_runtime": [ + 80 ], "server_region": [ 80 @@ -48096,34 +48392,34 @@ export default { 80 ], "started_at": [ - 4307 + 4325 ], "status": [ 840 ], "streams": [ - 2522 + 2540 ], "streams_aggregate": [ - 2512 + 2530 ], "teams": [ - 4272 + 4290 ], "tournament_brackets": [ - 4319 + 4337 ], "tournament_brackets_aggregate": [ - 4310 + 4328 ], "tv_connection_string": [ 80 ], "winner": [ - 2267 + 2285 ], "winning_lineup_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -48140,16 +48436,16 @@ export default { }, "matches_insert_input": { "cancels_at": [ - 4306 + 4324 ], "clutches": [ - 4940 + 4948 ], "created_at": [ - 4306 + 4324 ], "demos": [ - 2309 + 2327 ], "draft_games": [ 362 @@ -48158,52 +48454,52 @@ export default { 845 ], "e_region": [ - 3818 + 3836 ], "elo_changes": [ - 5147 + 5155 ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "lineup_1": [ - 2276 + 2294 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2": [ - 2276 + 2294 ], "lineup_2_id": [ - 4744 + 4762 ], "map_veto_picks": [ - 2398 + 2416 ], "match_maps": [ - 2422 + 2440 ], "match_options_id": [ - 4744 + 4762 ], "opening_duels": [ - 5068 + 5076 ], "options": [ - 2469 + 2487 ], "organizer": [ - 3732 + 3750 ], "organizer_steam_id": [ 180 @@ -48212,64 +48508,64 @@ export default { 78 ], "player_assists": [ - 2909 + 2927 ], "player_damages": [ - 2970 + 2988 ], "player_flashes": [ - 3081 + 3099 ], "player_kills": [ - 3126 + 3144 ], "player_objectives": [ - 3325 + 3343 ], "player_unused_utilities": [ - 3612 + 3630 ], "player_utility": [ - 3653 + 3671 ], "region": [ 78 ], "region_veto_picks": [ - 2492 + 2510 ], "scheduled_at": [ - 4306 + 4324 ], "server": [ - 3855 + 3873 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 ], "source": [ 78 ], "started_at": [ - 4306 + 4324 ], "status": [ 839 ], "streams": [ - 2519 + 2537 ], "tournament_brackets": [ - 4316 + 4334 ], "winner": [ - 2276 + 2294 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -48277,7 +48573,7 @@ export default { }, "matches_max_fields": { "cancels_at": [ - 4306 + 4324 ], "connection_link": [ 78 @@ -48286,22 +48582,22 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_match_map_id": [ - 4744 + 4762 ], "effective_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -48310,19 +48606,19 @@ export default { 78 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2_id": [ - 4744 + 4762 ], "map_veto_picking_lineup_id": [ - 4744 + 4762 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -48340,16 +48636,19 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4744 + 4762 ], "scheduled_at": [ - 4306 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -48361,13 +48660,13 @@ export default { 78 ], "started_at": [ - 4306 + 4324 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -48375,61 +48674,61 @@ export default { }, "matches_max_order_by": { "cancels_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "effective_at": [ - 2763 + 2781 ], "ended_at": [ - 2763 + 2781 ], "external_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "lineup_1_id": [ - 2763 + 2781 ], "lineup_2_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "organizer_steam_id": [ - 2763 + 2781 ], "password": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "server_error": [ - 2763 + 2781 ], "server_id": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -48437,7 +48736,7 @@ export default { }, "matches_min_fields": { "cancels_at": [ - 4306 + 4324 ], "connection_link": [ 78 @@ -48446,22 +48745,22 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_match_map_id": [ - 4744 + 4762 ], "effective_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "invite_code": [ 78 @@ -48470,19 +48769,19 @@ export default { 78 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2_id": [ - 4744 + 4762 ], "map_veto_picking_lineup_id": [ - 4744 + 4762 ], "map_veto_type": [ 78 ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -48500,16 +48799,19 @@ export default { 78 ], "region_veto_picking_lineup_id": [ - 4744 + 4762 ], "scheduled_at": [ - 4306 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 + ], + "server_plugin_runtime": [ + 78 ], "server_region": [ 78 @@ -48521,13 +48823,13 @@ export default { 78 ], "started_at": [ - 4306 + 4324 ], "tv_connection_string": [ 78 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -48535,61 +48837,61 @@ export default { }, "matches_min_order_by": { "cancels_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "effective_at": [ - 2763 + 2781 ], "ended_at": [ - 2763 + 2781 ], "external_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "lineup_1_id": [ - 2763 + 2781 ], "lineup_2_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "organizer_steam_id": [ - 2763 + 2781 ], "password": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "server_error": [ - 2763 + 2781 ], "server_id": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -48600,7 +48902,7 @@ export default { 38 ], "returning": [ - 2578 + 2596 ], "__typename": [ 78 @@ -48608,10 +48910,10 @@ export default { }, "matches_obj_rel_insert_input": { "data": [ - 2590 + 2608 ], "on_conflict": [ - 2597 + 2615 ], "__typename": [ 78 @@ -48619,13 +48921,13 @@ export default { }, "matches_on_conflict": { "constraint": [ - 2588 + 2606 ], "update_columns": [ - 2612 + 2630 ], "where": [ - 2587 + 2605 ], "__typename": [ 78 @@ -48633,49 +48935,49 @@ export default { }, "matches_order_by": { "can_assign_server": [ - 2763 + 2781 ], "can_cancel": [ - 2763 + 2781 ], "can_check_in": [ - 2763 + 2781 ], "can_reassign_winner": [ - 2763 + 2781 ], "can_schedule": [ - 2763 + 2781 ], "can_start": [ - 2763 + 2781 ], "can_stream_live": [ - 2763 + 2781 ], "can_stream_tv": [ - 2763 + 2781 ], "cancels_at": [ - 2763 + 2781 ], "clutches_aggregate": [ - 4939 + 4947 ], "connection_link": [ - 2763 + 2781 ], "connection_string": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current_match_map_id": [ - 2763 + 2781 ], "demos_aggregate": [ - 2307 + 2325 ], "draft_games_aggregate": [ 361 @@ -48684,181 +48986,184 @@ export default { 847 ], "e_region": [ - 3820 + 3838 ], "effective_at": [ - 2763 + 2781 ], "elo_changes_aggregate": [ - 5146 + 5154 ], "ended_at": [ - 2763 + 2781 ], "external_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invite_code": [ - 2763 + 2781 ], "is_captain": [ - 2763 + 2781 ], "is_coach": [ - 2763 + 2781 ], "is_friend_in_match_lineup": [ - 2763 + 2781 ], "is_in_lineup": [ - 2763 + 2781 ], "is_match_server_available": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "is_server_online": [ - 2763 + 2781 ], "is_tournament_match": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "lineup_1": [ - 2278 + 2296 ], "lineup_1_id": [ - 2763 + 2781 ], "lineup_2": [ - 2278 + 2296 ], "lineup_2_id": [ - 2763 + 2781 ], "lineup_counts": [ - 2763 + 2781 ], "map_veto_picking_lineup_id": [ - 2763 + 2781 ], "map_veto_picks_aggregate": [ - 2397 + 2415 ], "map_veto_type": [ - 2763 + 2781 ], "match_maps_aggregate": [ - 2421 + 2439 ], "match_options_id": [ - 2763 + 2781 ], "max_players_per_lineup": [ - 2763 + 2781 ], "min_players_per_lineup": [ - 2763 + 2781 ], "opening_duels_aggregate": [ - 5067 + 5075 ], "options": [ - 2471 + 2489 ], "organizer": [ - 3734 + 3752 ], "organizer_steam_id": [ - 2763 + 2781 ], "password": [ - 2763 + 2781 ], "player_assists_aggregate": [ - 2908 + 2926 ], "player_damages_aggregate": [ - 2969 + 2987 ], "player_flashes_aggregate": [ - 3080 + 3098 ], "player_kills_aggregate": [ - 3125 + 3143 ], "player_objectives_aggregate": [ - 3324 + 3342 ], "player_unused_utilities_aggregate": [ - 3611 + 3629 ], "player_utility_aggregate": [ - 3652 + 3670 ], "region": [ - 2763 + 2781 ], "region_veto_picking_lineup_id": [ - 2763 + 2781 ], "region_veto_picks_aggregate": [ - 2491 + 2509 ], "requested_organizer": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "server": [ - 3857 + 3875 ], "server_error": [ - 2763 + 2781 ], "server_id": [ - 2763 + 2781 + ], + "server_plugin_runtime": [ + 2781 ], "server_region": [ - 2763 + 2781 ], "server_type": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "streams_aggregate": [ - 2517 + 2535 ], "teams_aggregate": [ - 4268 + 4286 ], "tournament_brackets_aggregate": [ - 4315 + 4333 ], "tv_connection_string": [ - 2763 + 2781 ], "winner": [ - 2278 + 2296 ], "winning_lineup_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -48866,7 +49171,7 @@ export default { }, "matches_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -48875,31 +49180,31 @@ export default { "matches_select_column": {}, "matches_set_input": { "cancels_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "organizer_steam_id": [ 180 @@ -48911,25 +49216,25 @@ export default { 78 ], "scheduled_at": [ - 4306 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 ], "source": [ 78 ], "started_at": [ - 4306 + 4324 ], "status": [ 839 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -48951,7 +49256,7 @@ export default { }, "matches_stddev_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -48973,7 +49278,7 @@ export default { }, "matches_stddev_pop_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -48995,7 +49300,7 @@ export default { }, "matches_stddev_samp_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49003,7 +49308,7 @@ export default { }, "matches_stream_cursor_input": { "initial_value": [ - 2609 + 2627 ], "ordering": [ 236 @@ -49014,34 +49319,34 @@ export default { }, "matches_stream_cursor_value_input": { "cancels_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "effective_at": [ - 4306 + 4324 ], "ended_at": [ - 4306 + 4324 ], "external_id": [ 78 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "lineup_1_id": [ - 4744 + 4762 ], "lineup_2_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "organizer_steam_id": [ 180 @@ -49053,25 +49358,25 @@ export default { 78 ], "scheduled_at": [ - 4306 + 4324 ], "server_error": [ 78 ], "server_id": [ - 4744 + 4762 ], "source": [ 78 ], "started_at": [ - 4306 + 4324 ], "status": [ 839 ], "winning_lineup_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -49093,7 +49398,7 @@ export default { }, "matches_sum_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49102,13 +49407,13 @@ export default { "matches_update_column": {}, "matches_updates": { "_inc": [ - 2589 + 2607 ], "_set": [ - 2601 + 2619 ], "where": [ - 2587 + 2605 ], "__typename": [ 78 @@ -49130,7 +49435,7 @@ export default { }, "matches_var_pop_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49152,7 +49457,7 @@ export default { }, "matches_var_samp_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49174,7 +49479,7 @@ export default { }, "matches_variance_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49193,10 +49498,10 @@ export default { }, "migration_hashes_hashes_aggregate": { "aggregate": [ - 2622 + 2640 ], "nodes": [ - 2620 + 2638 ], "__typename": [ 78 @@ -49207,7 +49512,7 @@ export default { 38, { "columns": [ - 2632, + 2650, "[migration_hashes_hashes_select_column!]" ], "distinct": [ @@ -49216,10 +49521,10 @@ export default { } ], "max": [ - 2626 + 2644 ], "min": [ - 2627 + 2645 ], "__typename": [ 78 @@ -49227,13 +49532,13 @@ export default { }, "migration_hashes_hashes_bool_exp": { "_and": [ - 2623 + 2641 ], "_not": [ - 2623 + 2641 ], "_or": [ - 2623 + 2641 ], "hash": [ 80 @@ -49284,7 +49589,7 @@ export default { 38 ], "returning": [ - 2620 + 2638 ], "__typename": [ 78 @@ -49292,13 +49597,13 @@ export default { }, "migration_hashes_hashes_on_conflict": { "constraint": [ - 2624 + 2642 ], "update_columns": [ - 2636 + 2654 ], "where": [ - 2623 + 2641 ], "__typename": [ 78 @@ -49306,10 +49611,10 @@ export default { }, "migration_hashes_hashes_order_by": { "hash": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49337,7 +49642,7 @@ export default { }, "migration_hashes_hashes_stream_cursor_input": { "initial_value": [ - 2635 + 2653 ], "ordering": [ 236 @@ -49360,10 +49665,10 @@ export default { "migration_hashes_hashes_update_column": {}, "migration_hashes_hashes_updates": { "_set": [ - 2633 + 2651 ], "where": [ - 2623 + 2641 ], "__typename": [ 78 @@ -49377,7 +49682,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -49389,7 +49694,7 @@ export default { 78 ], "elo": [ - 1634, + 1652, { "path": [ 78 @@ -49409,7 +49714,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -49427,7 +49732,7 @@ export default { 78 ], "last_presence_state": [ - 1634, + 1652, { "path": [ 78 @@ -49435,10 +49740,10 @@ export default { } ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -49447,16 +49752,16 @@ export default { 3 ], "player": [ - 3721 + 3739 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -49474,7 +49779,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -49491,10 +49796,10 @@ export default { }, "my_friends_aggregate": { "aggregate": [ - 2644 + 2662 ], "nodes": [ - 2638 + 2656 ], "__typename": [ 78 @@ -49502,13 +49807,13 @@ export default { }, "my_friends_aggregate_bool_exp": { "bool_and": [ - 2641 + 2659 ], "bool_or": [ - 2642 + 2660 ], "count": [ - 2643 + 2661 ], "__typename": [ 78 @@ -49516,13 +49821,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_and": { "arguments": [ - 2664 + 2682 ], "distinct": [ 3 ], "filter": [ - 2650 + 2668 ], "predicate": [ 4 @@ -49533,13 +49838,13 @@ export default { }, "my_friends_aggregate_bool_exp_bool_or": { "arguments": [ - 2665 + 2683 ], "distinct": [ 3 ], "filter": [ - 2650 + 2668 ], "predicate": [ 4 @@ -49550,13 +49855,13 @@ export default { }, "my_friends_aggregate_bool_exp_count": { "arguments": [ - 2663 + 2681 ], "distinct": [ 3 ], "filter": [ - 2650 + 2668 ], "predicate": [ 39 @@ -49567,13 +49872,13 @@ export default { }, "my_friends_aggregate_fields": { "avg": [ - 2648 + 2666 ], "count": [ 38, { "columns": [ - 2663, + 2681, "[my_friends_select_column!]" ], "distinct": [ @@ -49582,31 +49887,31 @@ export default { } ], "max": [ - 2656 + 2674 ], "min": [ - 2658 + 2676 ], "stddev": [ - 2667 + 2685 ], "stddev_pop": [ - 2669 + 2687 ], "stddev_samp": [ - 2671 + 2689 ], "sum": [ - 2675 + 2693 ], "var_pop": [ - 2678 + 2696 ], "var_samp": [ - 2680 + 2698 ], "variance": [ - 2682 + 2700 ], "__typename": [ 78 @@ -49614,37 +49919,37 @@ export default { }, "my_friends_aggregate_order_by": { "avg": [ - 2649 + 2667 ], "count": [ - 2763 + 2781 ], "max": [ - 2657 + 2675 ], "min": [ - 2659 + 2677 ], "stddev": [ - 2668 + 2686 ], "stddev_pop": [ - 2670 + 2688 ], "stddev_samp": [ - 2672 + 2690 ], "sum": [ - 2676 + 2694 ], "var_pop": [ - 2679 + 2697 ], "var_samp": [ - 2681 + 2699 ], "variance": [ - 2683 + 2701 ], "__typename": [ 78 @@ -49652,10 +49957,10 @@ export default { }, "my_friends_append_input": { "elo": [ - 1634 + 1652 ], "last_presence_state": [ - 1634 + 1652 ], "__typename": [ 78 @@ -49663,7 +49968,7 @@ export default { }, "my_friends_arr_rel_insert_input": { "data": [ - 2655 + 2673 ], "__typename": [ 78 @@ -49703,31 +50008,31 @@ export default { }, "my_friends_avg_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -49735,13 +50040,13 @@ export default { }, "my_friends_bool_exp": { "_and": [ - 2650 + 2668 ], "_not": [ - 2650 + 2668 ], "_or": [ - 2650 + 2668 ], "avatar_url": [ 80 @@ -49750,7 +50055,7 @@ export default { 80 ], "created_at": [ - 4307 + 4325 ], "custom_avatar_url": [ 80 @@ -49762,7 +50067,7 @@ export default { 80 ], "elo": [ - 1636 + 1654 ], "faceit_elo": [ 39 @@ -49777,7 +50082,7 @@ export default { 39 ], "faceit_updated_at": [ - 4307 + 4325 ], "faceit_url": [ 80 @@ -49795,13 +50100,13 @@ export default { 80 ], "last_presence_state": [ - 1636 + 1654 ], "last_read_news_at": [ - 4307 + 4325 ], "last_sign_in_at": [ - 4307 + 4325 ], "name": [ 80 @@ -49810,16 +50115,16 @@ export default { 4 ], "player": [ - 3725 + 3743 ], "premier_rank": [ 39 ], "premier_rank_updated_at": [ - 4307 + 4325 ], "presence_updated_at": [ - 4307 + 4325 ], "profile_url": [ 80 @@ -49837,7 +50142,7 @@ export default { 80 ], "steam_bans_checked_at": [ - 4307 + 4325 ], "steam_id": [ 182 @@ -49925,7 +50230,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -49937,7 +50242,7 @@ export default { 78 ], "elo": [ - 1634 + 1652 ], "faceit_elo": [ 38 @@ -49952,7 +50257,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -49970,13 +50275,13 @@ export default { 78 ], "last_presence_state": [ - 1634 + 1652 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -49985,16 +50290,16 @@ export default { 3 ], "player": [ - 3732 + 3750 ], "premier_rank": [ 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -50012,7 +50317,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -50035,7 +50340,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -50059,7 +50364,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -50077,10 +50382,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -50089,10 +50394,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -50107,7 +50412,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -50121,91 +50426,91 @@ export default { }, "my_friends_max_order_by": { "avatar_url": [ - 2763 + 2781 ], "country": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "custom_avatar_url": [ - 2763 + 2781 ], "days_since_last_ban": [ - 2763 + 2781 ], "discord_id": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_nickname": [ - 2763 + 2781 ], "faceit_player_id": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "faceit_updated_at": [ - 2763 + 2781 ], "faceit_url": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "language": [ - 2763 + 2781 ], "last_read_news_at": [ - 2763 + 2781 ], "last_sign_in_at": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "premier_rank_updated_at": [ - 2763 + 2781 ], "presence_updated_at": [ - 2763 + 2781 ], "profile_url": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "steam_bans_checked_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50219,7 +50524,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -50243,7 +50548,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -50261,10 +50566,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -50273,10 +50578,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -50291,7 +50596,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -50305,91 +50610,91 @@ export default { }, "my_friends_min_order_by": { "avatar_url": [ - 2763 + 2781 ], "country": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "custom_avatar_url": [ - 2763 + 2781 ], "days_since_last_ban": [ - 2763 + 2781 ], "discord_id": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_nickname": [ - 2763 + 2781 ], "faceit_player_id": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "faceit_updated_at": [ - 2763 + 2781 ], "faceit_url": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "language": [ - 2763 + 2781 ], "last_read_news_at": [ - 2763 + 2781 ], "last_sign_in_at": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "premier_rank_updated_at": [ - 2763 + 2781 ], "presence_updated_at": [ - 2763 + 2781 ], "profile_url": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "steam_bans_checked_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50400,7 +50705,7 @@ export default { 38 ], "returning": [ - 2638 + 2656 ], "__typename": [ 78 @@ -50408,109 +50713,109 @@ export default { }, "my_friends_order_by": { "avatar_url": [ - 2763 + 2781 ], "country": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "custom_avatar_url": [ - 2763 + 2781 ], "days_since_last_ban": [ - 2763 + 2781 ], "discord_id": [ - 2763 + 2781 ], "elo": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_nickname": [ - 2763 + 2781 ], "faceit_player_id": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "faceit_updated_at": [ - 2763 + 2781 ], "faceit_url": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "language": [ - 2763 + 2781 ], "last_presence_state": [ - 2763 + 2781 ], "last_read_news_at": [ - 2763 + 2781 ], "last_sign_in_at": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "name_registered": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "premier_rank": [ - 2763 + 2781 ], "premier_rank_updated_at": [ - 2763 + 2781 ], "presence_updated_at": [ - 2763 + 2781 ], "profile_url": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "show_match_ready_modal": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "steam_bans_checked_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "vac_banned": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50518,10 +50823,10 @@ export default { }, "my_friends_prepend_input": { "elo": [ - 1634 + 1652 ], "last_presence_state": [ - 1634 + 1652 ], "__typename": [ 78 @@ -50538,7 +50843,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -50550,7 +50855,7 @@ export default { 78 ], "elo": [ - 1634 + 1652 ], "faceit_elo": [ 38 @@ -50565,7 +50870,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -50583,13 +50888,13 @@ export default { 78 ], "last_presence_state": [ - 1634 + 1652 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -50601,10 +50906,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -50622,7 +50927,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -50671,31 +50976,31 @@ export default { }, "my_friends_stddev_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50735,31 +51040,31 @@ export default { }, "my_friends_stddev_pop_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50799,31 +51104,31 @@ export default { }, "my_friends_stddev_samp_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -50831,7 +51136,7 @@ export default { }, "my_friends_stream_cursor_input": { "initial_value": [ - 2674 + 2692 ], "ordering": [ 236 @@ -50848,7 +51153,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -50860,7 +51165,7 @@ export default { 78 ], "elo": [ - 1634 + 1652 ], "faceit_elo": [ 38 @@ -50875,7 +51180,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -50893,13 +51198,13 @@ export default { 78 ], "last_presence_state": [ - 1634 + 1652 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -50911,10 +51216,10 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "presence_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -50932,7 +51237,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -50981,31 +51286,31 @@ export default { }, "my_friends_sum_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -51013,28 +51318,28 @@ export default { }, "my_friends_updates": { "_append": [ - 2646 + 2664 ], "_delete_at_path": [ - 2651 + 2669 ], "_delete_elem": [ - 2652 + 2670 ], "_delete_key": [ - 2653 + 2671 ], "_inc": [ - 2654 + 2672 ], "_prepend": [ - 2662 + 2680 ], "_set": [ - 2666 + 2684 ], "where": [ - 2650 + 2668 ], "__typename": [ 78 @@ -51074,31 +51379,31 @@ export default { }, "my_friends_var_pop_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -51138,31 +51443,31 @@ export default { }, "my_friends_var_samp_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -51202,31 +51507,31 @@ export default { }, "my_friends_variance_order_by": { "days_since_last_ban": [ - 2763 + 2781 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_skill_level": [ - 2763 + 2781 ], "friend_steam_id": [ - 2763 + 2781 ], "game_ban_count": [ - 2763 + 2781 ], "invited_by_steam_id": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "vac_ban_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -51234,7 +51539,7 @@ export default { }, "news_articles": { "author": [ - 3721 + 3739 ], "author_steam_id": [ 180 @@ -51246,13 +51551,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51267,7 +51572,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51278,10 +51583,10 @@ export default { }, "news_articles_aggregate": { "aggregate": [ - 2686 + 2704 ], "nodes": [ - 2684 + 2702 ], "__typename": [ 78 @@ -51289,13 +51594,13 @@ export default { }, "news_articles_aggregate_fields": { "avg": [ - 2687 + 2705 ], "count": [ 38, { "columns": [ - 2698, + 2716, "[news_articles_select_column!]" ], "distinct": [ @@ -51304,31 +51609,31 @@ export default { } ], "max": [ - 2692 + 2710 ], "min": [ - 2693 + 2711 ], "stddev": [ - 2700 + 2718 ], "stddev_pop": [ - 2701 + 2719 ], "stddev_samp": [ - 2702 + 2720 ], "sum": [ - 2705 + 2723 ], "var_pop": [ - 2708 + 2726 ], "var_samp": [ - 2709 + 2727 ], "variance": [ - 2710 + 2728 ], "__typename": [ 78 @@ -51347,16 +51652,16 @@ export default { }, "news_articles_bool_exp": { "_and": [ - 2688 + 2706 ], "_not": [ - 2688 + 2706 ], "_or": [ - 2688 + 2706 ], "author": [ - 3725 + 3743 ], "author_steam_id": [ 182 @@ -51368,13 +51673,13 @@ export default { 80 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "published_at": [ - 4307 + 4325 ], "slug": [ 80 @@ -51389,7 +51694,7 @@ export default { 80 ], "updated_at": [ - 4307 + 4325 ], "view_count": [ 182 @@ -51412,7 +51717,7 @@ export default { }, "news_articles_insert_input": { "author": [ - 3732 + 3750 ], "author_steam_id": [ 180 @@ -51424,13 +51729,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51445,7 +51750,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51465,13 +51770,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51486,7 +51791,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51506,13 +51811,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51527,7 +51832,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51541,7 +51846,7 @@ export default { 38 ], "returning": [ - 2684 + 2702 ], "__typename": [ 78 @@ -51549,13 +51854,13 @@ export default { }, "news_articles_on_conflict": { "constraint": [ - 2689 + 2707 ], "update_columns": [ - 2706 + 2724 ], "where": [ - 2688 + 2706 ], "__typename": [ 78 @@ -51563,43 +51868,43 @@ export default { }, "news_articles_order_by": { "author": [ - 3734 + 3752 ], "author_steam_id": [ - 2763 + 2781 ], "content_markdown": [ - 2763 + 2781 ], "cover_image_url": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "published_at": [ - 2763 + 2781 ], "slug": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "teaser": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "view_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -51607,7 +51912,7 @@ export default { }, "news_articles_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -51625,13 +51930,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51646,7 +51951,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51690,7 +51995,7 @@ export default { }, "news_articles_stream_cursor_input": { "initial_value": [ - 2704 + 2722 ], "ordering": [ 236 @@ -51710,13 +52015,13 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "published_at": [ - 4306 + 4324 ], "slug": [ 78 @@ -51731,7 +52036,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "view_count": [ 180 @@ -51754,13 +52059,13 @@ export default { "news_articles_update_column": {}, "news_articles_updates": { "_inc": [ - 2690 + 2708 ], "_set": [ - 2699 + 2717 ], "where": [ - 2688 + 2706 ], "__typename": [ 78 @@ -51801,7 +52106,7 @@ export default { }, "notifications": { "actions": [ - 1634, + 1652, { "path": [ 78 @@ -51809,19 +52114,19 @@ export default { } ], "created_at": [ - 4306 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_read": [ 3 @@ -51830,7 +52135,7 @@ export default { 78 ], "player": [ - 3721 + 3739 ], "role": [ 921 @@ -51850,10 +52155,10 @@ export default { }, "notifications_aggregate": { "aggregate": [ - 2717 + 2735 ], "nodes": [ - 2711 + 2729 ], "__typename": [ 78 @@ -51861,13 +52166,13 @@ export default { }, "notifications_aggregate_bool_exp": { "bool_and": [ - 2714 + 2732 ], "bool_or": [ - 2715 + 2733 ], "count": [ - 2716 + 2734 ], "__typename": [ 78 @@ -51875,13 +52180,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 2740 + 2758 ], "distinct": [ 3 ], "filter": [ - 2723 + 2741 ], "predicate": [ 4 @@ -51892,13 +52197,13 @@ export default { }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 2741 + 2759 ], "distinct": [ 3 ], "filter": [ - 2723 + 2741 ], "predicate": [ 4 @@ -51909,13 +52214,13 @@ export default { }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 2739 + 2757 ], "distinct": [ 3 ], "filter": [ - 2723 + 2741 ], "predicate": [ 39 @@ -51926,13 +52231,13 @@ export default { }, "notifications_aggregate_fields": { "avg": [ - 2721 + 2739 ], "count": [ 38, { "columns": [ - 2739, + 2757, "[notifications_select_column!]" ], "distinct": [ @@ -51941,31 +52246,31 @@ export default { } ], "max": [ - 2730 + 2748 ], "min": [ - 2732 + 2750 ], "stddev": [ - 2743 + 2761 ], "stddev_pop": [ - 2745 + 2763 ], "stddev_samp": [ - 2747 + 2765 ], "sum": [ - 2751 + 2769 ], "var_pop": [ - 2755 + 2773 ], "var_samp": [ - 2757 + 2775 ], "variance": [ - 2759 + 2777 ], "__typename": [ 78 @@ -51973,37 +52278,37 @@ export default { }, "notifications_aggregate_order_by": { "avg": [ - 2722 + 2740 ], "count": [ - 2763 + 2781 ], "max": [ - 2731 + 2749 ], "min": [ - 2733 + 2751 ], "stddev": [ - 2744 + 2762 ], "stddev_pop": [ - 2746 + 2764 ], "stddev_samp": [ - 2748 + 2766 ], "sum": [ - 2752 + 2770 ], "var_pop": [ - 2756 + 2774 ], "var_samp": [ - 2758 + 2776 ], "variance": [ - 2760 + 2778 ], "__typename": [ 78 @@ -52011,7 +52316,7 @@ export default { }, "notifications_append_input": { "actions": [ - 1634 + 1652 ], "__typename": [ 78 @@ -52019,10 +52324,10 @@ export default { }, "notifications_arr_rel_insert_input": { "data": [ - 2729 + 2747 ], "on_conflict": [ - 2735 + 2753 ], "__typename": [ 78 @@ -52038,7 +52343,7 @@ export default { }, "notifications_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52046,31 +52351,31 @@ export default { }, "notifications_bool_exp": { "_and": [ - 2723 + 2741 ], "_not": [ - 2723 + 2741 ], "_or": [ - 2723 + 2741 ], "actions": [ - 1636 + 1654 ], "created_at": [ - 4307 + 4325 ], "deletable": [ 4 ], "deleted_at": [ - 4307 + 4325 ], "entity_id": [ 80 ], "id": [ - 4746 + 4764 ], "is_read": [ 4 @@ -52079,7 +52384,7 @@ export default { 80 ], "player": [ - 3725 + 3743 ], "role": [ 922 @@ -52132,22 +52437,22 @@ export default { }, "notifications_insert_input": { "actions": [ - 1634 + 1652 ], "created_at": [ - 4306 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_read": [ 3 @@ -52156,7 +52461,7 @@ export default { 78 ], "player": [ - 3732 + 3750 ], "role": [ 921 @@ -52176,16 +52481,16 @@ export default { }, "notifications_max_fields": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "message": [ 78 @@ -52202,25 +52507,25 @@ export default { }, "notifications_max_order_by": { "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "entity_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52228,16 +52533,16 @@ export default { }, "notifications_min_fields": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "message": [ 78 @@ -52254,25 +52559,25 @@ export default { }, "notifications_min_order_by": { "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "entity_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52283,7 +52588,7 @@ export default { 38 ], "returning": [ - 2711 + 2729 ], "__typename": [ 78 @@ -52291,13 +52596,13 @@ export default { }, "notifications_on_conflict": { "constraint": [ - 2724 + 2742 ], "update_columns": [ - 2753 + 2771 ], "where": [ - 2723 + 2741 ], "__typename": [ 78 @@ -52305,43 +52610,43 @@ export default { }, "notifications_order_by": { "actions": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "deletable": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "entity_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_read": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "role": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52349,7 +52654,7 @@ export default { }, "notifications_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -52357,7 +52662,7 @@ export default { }, "notifications_prepend_input": { "actions": [ - 1634 + 1652 ], "__typename": [ 78 @@ -52368,22 +52673,22 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 1634 + 1652 ], "created_at": [ - 4306 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_read": [ 3 @@ -52417,7 +52722,7 @@ export default { }, "notifications_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52433,7 +52738,7 @@ export default { }, "notifications_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52449,7 +52754,7 @@ export default { }, "notifications_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52457,7 +52762,7 @@ export default { }, "notifications_stream_cursor_input": { "initial_value": [ - 2750 + 2768 ], "ordering": [ 236 @@ -52468,22 +52773,22 @@ export default { }, "notifications_stream_cursor_value_input": { "actions": [ - 1634 + 1652 ], "created_at": [ - 4306 + 4324 ], "deletable": [ 3 ], "deleted_at": [ - 4306 + 4324 ], "entity_id": [ 78 ], "id": [ - 4744 + 4762 ], "is_read": [ 3 @@ -52517,7 +52822,7 @@ export default { }, "notifications_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52526,28 +52831,28 @@ export default { "notifications_update_column": {}, "notifications_updates": { "_append": [ - 2719 + 2737 ], "_delete_at_path": [ - 2725 + 2743 ], "_delete_elem": [ - 2726 + 2744 ], "_delete_key": [ - 2727 + 2745 ], "_inc": [ - 2728 + 2746 ], "_prepend": [ - 2738 + 2756 ], "_set": [ - 2742 + 2760 ], "where": [ - 2723 + 2741 ], "__typename": [ 78 @@ -52563,7 +52868,7 @@ export default { }, "notifications_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52579,7 +52884,7 @@ export default { }, "notifications_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52595,7 +52900,7 @@ export default { }, "notifications_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52604,31 +52909,31 @@ export default { "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 2761 + 2779 ], "_gt": [ - 2761 + 2779 ], "_gte": [ - 2761 + 2779 ], "_in": [ - 2761 + 2779 ], "_is_null": [ 3 ], "_lt": [ - 2761 + 2779 ], "_lte": [ - 2761 + 2779 ], "_neq": [ - 2761 + 2779 ], "_nin": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52637,19 +52942,19 @@ export default { "order_by": {}, "pending_match_import_players": { "created_at": [ - 4306 + 4324 ], "pending_match_import": [ - 2805 + 2823 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52657,10 +52962,10 @@ export default { }, "pending_match_import_players_aggregate": { "aggregate": [ - 2768 + 2786 ], "nodes": [ - 2764 + 2782 ], "__typename": [ 78 @@ -52668,7 +52973,7 @@ export default { }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 2767 + 2785 ], "__typename": [ 78 @@ -52676,13 +52981,13 @@ export default { }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 2785 + 2803 ], "distinct": [ 3 ], "filter": [ - 2773 + 2791 ], "predicate": [ 39 @@ -52693,13 +52998,13 @@ export default { }, "pending_match_import_players_aggregate_fields": { "avg": [ - 2771 + 2789 ], "count": [ 38, { "columns": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -52708,31 +53013,31 @@ export default { } ], "max": [ - 2777 + 2795 ], "min": [ - 2779 + 2797 ], "stddev": [ - 2787 + 2805 ], "stddev_pop": [ - 2789 + 2807 ], "stddev_samp": [ - 2791 + 2809 ], "sum": [ - 2795 + 2813 ], "var_pop": [ - 2799 + 2817 ], "var_samp": [ - 2801 + 2819 ], "variance": [ - 2803 + 2821 ], "__typename": [ 78 @@ -52740,37 +53045,37 @@ export default { }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 2772 + 2790 ], "count": [ - 2763 + 2781 ], "max": [ - 2778 + 2796 ], "min": [ - 2780 + 2798 ], "stddev": [ - 2788 + 2806 ], "stddev_pop": [ - 2790 + 2808 ], "stddev_samp": [ - 2792 + 2810 ], "sum": [ - 2796 + 2814 ], "var_pop": [ - 2800 + 2818 ], "var_samp": [ - 2802 + 2820 ], "variance": [ - 2804 + 2822 ], "__typename": [ 78 @@ -52778,10 +53083,10 @@ export default { }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 2776 + 2794 ], "on_conflict": [ - 2782 + 2800 ], "__typename": [ 78 @@ -52800,10 +53105,10 @@ export default { }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52811,28 +53116,28 @@ export default { }, "pending_match_import_players_bool_exp": { "_and": [ - 2773 + 2791 ], "_not": [ - 2773 + 2791 ], "_or": [ - 2773 + 2791 ], "created_at": [ - 4307 + 4325 ], "pending_match_import": [ - 2809 + 2827 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 ], "valve_match_id": [ - 2762 + 2780 ], "__typename": [ 78 @@ -52844,7 +53149,7 @@ export default { 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52852,19 +53157,19 @@ export default { }, "pending_match_import_players_insert_input": { "created_at": [ - 4306 + 4324 ], "pending_match_import": [ - 2816 + 2834 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52872,13 +53177,13 @@ export default { }, "pending_match_import_players_max_fields": { "created_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52886,13 +53191,13 @@ export default { }, "pending_match_import_players_max_order_by": { "created_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52900,13 +53205,13 @@ export default { }, "pending_match_import_players_min_fields": { "created_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52914,13 +53219,13 @@ export default { }, "pending_match_import_players_min_order_by": { "created_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52931,7 +53236,7 @@ export default { 38 ], "returning": [ - 2764 + 2782 ], "__typename": [ 78 @@ -52939,13 +53244,13 @@ export default { }, "pending_match_import_players_on_conflict": { "constraint": [ - 2774 + 2792 ], "update_columns": [ - 2797 + 2815 ], "where": [ - 2773 + 2791 ], "__typename": [ 78 @@ -52953,19 +53258,19 @@ export default { }, "pending_match_import_players_order_by": { "created_at": [ - 2763 + 2781 ], "pending_match_import": [ - 2818 + 2836 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -52976,7 +53281,7 @@ export default { 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -52985,13 +53290,13 @@ export default { "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53010,10 +53315,10 @@ export default { }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53032,10 +53337,10 @@ export default { }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53054,10 +53359,10 @@ export default { }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53065,7 +53370,7 @@ export default { }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 2794 + 2812 ], "ordering": [ 236 @@ -53076,13 +53381,13 @@ export default { }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53093,7 +53398,7 @@ export default { 180 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53101,10 +53406,10 @@ export default { }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53113,13 +53418,13 @@ export default { "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 2775 + 2793 ], "_set": [ - 2786 + 2804 ], "where": [ - 2773 + 2791 ], "__typename": [ 78 @@ -53138,10 +53443,10 @@ export default { }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53160,10 +53465,10 @@ export default { }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53182,10 +53487,10 @@ export default { }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53193,7 +53498,7 @@ export default { }, "pending_match_imports": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53205,13 +53510,13 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "players": [ - 2764, + 2782, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53221,19 +53526,19 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "players_aggregate": [ - 2765, + 2783, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -53243,11 +53548,11 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], @@ -53258,10 +53563,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53269,10 +53574,10 @@ export default { }, "pending_match_imports_aggregate": { "aggregate": [ - 2807 + 2825 ], "nodes": [ - 2805 + 2823 ], "__typename": [ 78 @@ -53280,13 +53585,13 @@ export default { }, "pending_match_imports_aggregate_fields": { "avg": [ - 2808 + 2826 ], "count": [ 38, { "columns": [ - 2820, + 2838, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -53295,31 +53600,31 @@ export default { } ], "max": [ - 2813 + 2831 ], "min": [ - 2814 + 2832 ], "stddev": [ - 2822 + 2840 ], "stddev_pop": [ - 2823 + 2841 ], "stddev_samp": [ - 2824 + 2842 ], "sum": [ - 2827 + 2845 ], "var_pop": [ - 2830 + 2848 ], "var_samp": [ - 2831 + 2849 ], "variance": [ - 2832 + 2850 ], "__typename": [ 78 @@ -53335,16 +53640,16 @@ export default { }, "pending_match_imports_bool_exp": { "_and": [ - 2809 + 2827 ], "_not": [ - 2809 + 2827 ], "_or": [ - 2809 + 2827 ], "created_at": [ - 4307 + 4325 ], "demo_url": [ 80 @@ -53356,13 +53661,13 @@ export default { 80 ], "match_start_time": [ - 4307 + 4325 ], "players": [ - 2773 + 2791 ], "players_aggregate": [ - 2766 + 2784 ], "share_code": [ 80 @@ -53371,10 +53676,10 @@ export default { 80 ], "updated_at": [ - 4307 + 4325 ], "valve_match_id": [ - 2762 + 2780 ], "__typename": [ 78 @@ -53383,7 +53688,7 @@ export default { "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53391,7 +53696,7 @@ export default { }, "pending_match_imports_insert_input": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53403,10 +53708,10 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "players": [ - 2770 + 2788 ], "share_code": [ 78 @@ -53415,10 +53720,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53426,7 +53731,7 @@ export default { }, "pending_match_imports_max_fields": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53438,7 +53743,7 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "share_code": [ 78 @@ -53447,10 +53752,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53458,7 +53763,7 @@ export default { }, "pending_match_imports_min_fields": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53470,7 +53775,7 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "share_code": [ 78 @@ -53479,10 +53784,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53493,7 +53798,7 @@ export default { 38 ], "returning": [ - 2805 + 2823 ], "__typename": [ 78 @@ -53501,10 +53806,10 @@ export default { }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 2812 + 2830 ], "on_conflict": [ - 2817 + 2835 ], "__typename": [ 78 @@ -53512,13 +53817,13 @@ export default { }, "pending_match_imports_on_conflict": { "constraint": [ - 2810 + 2828 ], "update_columns": [ - 2828 + 2846 ], "where": [ - 2809 + 2827 ], "__typename": [ 78 @@ -53526,34 +53831,34 @@ export default { }, "pending_match_imports_order_by": { "created_at": [ - 2763 + 2781 ], "demo_url": [ - 2763 + 2781 ], "error": [ - 2763 + 2781 ], "map_name": [ - 2763 + 2781 ], "match_start_time": [ - 2763 + 2781 ], "players_aggregate": [ - 2769 + 2787 ], "share_code": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "valve_match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -53561,7 +53866,7 @@ export default { }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53570,7 +53875,7 @@ export default { "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53582,7 +53887,7 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "share_code": [ 78 @@ -53591,10 +53896,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53626,7 +53931,7 @@ export default { }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 2826 + 2844 ], "ordering": [ 236 @@ -53637,7 +53942,7 @@ export default { }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "demo_url": [ 78 @@ -53649,7 +53954,7 @@ export default { 78 ], "match_start_time": [ - 4306 + 4324 ], "share_code": [ 78 @@ -53658,10 +53963,10 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53669,7 +53974,7 @@ export default { }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 2761 + 2779 ], "__typename": [ 78 @@ -53678,13 +53983,13 @@ export default { "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 2811 + 2829 ], "_set": [ - 2821 + 2839 ], "where": [ - 2809 + 2827 ], "__typename": [ 78 @@ -53716,7 +54021,7 @@ export default { }, "player_aim_stats_demo": { "attacker": [ - 3721 + 3739 ], "attacker_steam_id": [ 180 @@ -53731,7 +54036,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -53749,16 +54054,16 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -53779,7 +54084,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -53790,10 +54095,10 @@ export default { }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 2835 + 2853 ], "nodes": [ - 2833 + 2851 ], "__typename": [ 78 @@ -53801,13 +54106,13 @@ export default { }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 2836 + 2854 ], "count": [ 38, { "columns": [ - 2847, + 2865, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -53816,31 +54121,31 @@ export default { } ], "max": [ - 2841 + 2859 ], "min": [ - 2842 + 2860 ], "stddev": [ - 2849 + 2867 ], "stddev_pop": [ - 2850 + 2868 ], "stddev_samp": [ - 2851 + 2869 ], "sum": [ - 2854 + 2872 ], "var_pop": [ - 2857 + 2875 ], "var_samp": [ - 2858 + 2876 ], "variance": [ - 2859 + 2877 ], "__typename": [ 78 @@ -53907,16 +54212,16 @@ export default { }, "player_aim_stats_demo_bool_exp": { "_and": [ - 2837 + 2855 ], "_not": [ - 2837 + 2855 ], "_or": [ - 2837 + 2855 ], "attacker": [ - 3725 + 3743 ], "attacker_steam_id": [ 182 @@ -53931,7 +54236,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2762 + 2780 ], "first_bullet_hits": [ 39 @@ -53949,16 +54254,16 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "non_awp_hits": [ 39 @@ -53979,7 +54284,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2762 + 2780 ], "total_engagement_frames": [ 39 @@ -54003,7 +54308,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54039,7 +54344,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54050,7 +54355,7 @@ export default { }, "player_aim_stats_demo_insert_input": { "attacker": [ - 3732 + 3750 ], "attacker_steam_id": [ 180 @@ -54065,7 +54370,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54083,16 +54388,16 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -54113,7 +54418,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54136,7 +54441,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54154,10 +54459,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -54178,7 +54483,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54201,7 +54506,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54219,10 +54524,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -54243,7 +54548,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54257,7 +54562,7 @@ export default { 38 ], "returning": [ - 2833 + 2851 ], "__typename": [ 78 @@ -54265,13 +54570,13 @@ export default { }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 2838 + 2856 ], "update_columns": [ - 2855 + 2873 ], "where": [ - 2837 + 2855 ], "__typename": [ 78 @@ -54279,73 +54584,73 @@ export default { }, "player_aim_stats_demo_order_by": { "attacker": [ - 3734 + 3752 ], "attacker_steam_id": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "__typename": [ 78 @@ -54356,7 +54661,7 @@ export default { 180 ], "match_map_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -54377,7 +54682,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54395,10 +54700,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -54419,7 +54724,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54607,7 +54912,7 @@ export default { }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 2853 + 2871 ], "ordering": [ 236 @@ -54630,7 +54935,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54648,10 +54953,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "non_awp_hits": [ 38 @@ -54672,7 +54977,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54695,7 +55000,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "first_bullet_hits": [ 38 @@ -54731,7 +55036,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -54743,13 +55048,13 @@ export default { "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 2839 + 2857 ], "_set": [ - 2848 + 2866 ], "where": [ - 2837 + 2855 ], "__typename": [ 78 @@ -54946,19 +55251,19 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "shots": [ 38 @@ -54978,10 +55283,10 @@ export default { }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 2864 + 2882 ], "nodes": [ - 2860 + 2878 ], "__typename": [ 78 @@ -54989,7 +55294,7 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 2863 + 2881 ], "__typename": [ 78 @@ -54997,13 +55302,13 @@ export default { }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 2881 + 2899 ], "distinct": [ 3 ], "filter": [ - 2869 + 2887 ], "predicate": [ 39 @@ -55014,13 +55319,13 @@ export default { }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 2867 + 2885 ], "count": [ 38, { "columns": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -55029,31 +55334,31 @@ export default { } ], "max": [ - 2873 + 2891 ], "min": [ - 2875 + 2893 ], "stddev": [ - 2883 + 2901 ], "stddev_pop": [ - 2885 + 2903 ], "stddev_samp": [ - 2887 + 2905 ], "sum": [ - 2891 + 2909 ], "var_pop": [ - 2895 + 2913 ], "var_samp": [ - 2897 + 2915 ], "variance": [ - 2899 + 2917 ], "__typename": [ 78 @@ -55061,37 +55366,37 @@ export default { }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 2868 + 2886 ], "count": [ - 2763 + 2781 ], "max": [ - 2874 + 2892 ], "min": [ - 2876 + 2894 ], "stddev": [ - 2884 + 2902 ], "stddev_pop": [ - 2886 + 2904 ], "stddev_samp": [ - 2888 + 2906 ], "sum": [ - 2892 + 2910 ], "var_pop": [ - 2896 + 2914 ], "var_samp": [ - 2898 + 2916 ], "variance": [ - 2900 + 2918 ], "__typename": [ 78 @@ -55099,10 +55404,10 @@ export default { }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 2872 + 2890 ], "on_conflict": [ - 2878 + 2896 ], "__typename": [ 78 @@ -55136,25 +55441,25 @@ export default { }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55162,13 +55467,13 @@ export default { }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 2869 + 2887 ], "_not": [ - 2869 + 2887 ], "_or": [ - 2869 + 2887 ], "first_bullet_hits": [ 39 @@ -55183,19 +55488,19 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "shots": [ 39 @@ -55254,19 +55559,19 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "shots": [ 38 @@ -55298,10 +55603,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -55321,34 +55626,34 @@ export default { }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55368,10 +55673,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -55391,34 +55696,34 @@ export default { }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55429,7 +55734,7 @@ export default { 38 ], "returning": [ - 2860 + 2878 ], "__typename": [ 78 @@ -55437,13 +55742,13 @@ export default { }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 2870 + 2888 ], "update_columns": [ - 2893 + 2911 ], "where": [ - 2869 + 2887 ], "__typename": [ 78 @@ -55451,43 +55756,43 @@ export default { }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55495,7 +55800,7 @@ export default { }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -55522,10 +55827,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -55571,25 +55876,25 @@ export default { }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55623,25 +55928,25 @@ export default { }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55675,25 +55980,25 @@ export default { }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55701,7 +56006,7 @@ export default { }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 2890 + 2908 ], "ordering": [ 236 @@ -55724,10 +56029,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -55773,25 +56078,25 @@ export default { }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55800,13 +56105,13 @@ export default { "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 2871 + 2889 ], "_set": [ - 2882 + 2900 ], "where": [ - 2869 + 2887 ], "__typename": [ 78 @@ -55840,25 +56145,25 @@ export default { }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55892,25 +56197,25 @@ export default { }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55944,25 +56249,25 @@ export default { }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -55970,7 +56275,7 @@ export default { }, "player_assists": { "attacked_player": [ - 3721 + 3739 ], "attacked_steam_id": [ 180 @@ -55985,7 +56290,7 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "flash": [ 3 @@ -55994,25 +56299,25 @@ export default { 3 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56020,10 +56325,10 @@ export default { }, "player_assists_aggregate": { "aggregate": [ - 2907 + 2925 ], "nodes": [ - 2901 + 2919 ], "__typename": [ 78 @@ -56031,13 +56336,13 @@ export default { }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 2904 + 2922 ], "bool_or": [ - 2905 + 2923 ], "count": [ - 2906 + 2924 ], "__typename": [ 78 @@ -56045,13 +56350,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 2925 + 2943 ], "distinct": [ 3 ], "filter": [ - 2912 + 2930 ], "predicate": [ 4 @@ -56062,13 +56367,13 @@ export default { }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 2926 + 2944 ], "distinct": [ 3 ], "filter": [ - 2912 + 2930 ], "predicate": [ 4 @@ -56079,13 +56384,13 @@ export default { }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 2924 + 2942 ], "distinct": [ 3 ], "filter": [ - 2912 + 2930 ], "predicate": [ 39 @@ -56096,13 +56401,13 @@ export default { }, "player_assists_aggregate_fields": { "avg": [ - 2910 + 2928 ], "count": [ 38, { "columns": [ - 2924, + 2942, "[player_assists_select_column!]" ], "distinct": [ @@ -56111,31 +56416,31 @@ export default { } ], "max": [ - 2916 + 2934 ], "min": [ - 2918 + 2936 ], "stddev": [ - 2928 + 2946 ], "stddev_pop": [ - 2930 + 2948 ], "stddev_samp": [ - 2932 + 2950 ], "sum": [ - 2936 + 2954 ], "var_pop": [ - 2940 + 2958 ], "var_samp": [ - 2942 + 2960 ], "variance": [ - 2944 + 2962 ], "__typename": [ 78 @@ -56143,37 +56448,37 @@ export default { }, "player_assists_aggregate_order_by": { "avg": [ - 2911 + 2929 ], "count": [ - 2763 + 2781 ], "max": [ - 2917 + 2935 ], "min": [ - 2919 + 2937 ], "stddev": [ - 2929 + 2947 ], "stddev_pop": [ - 2931 + 2949 ], "stddev_samp": [ - 2933 + 2951 ], "sum": [ - 2937 + 2955 ], "var_pop": [ - 2941 + 2959 ], "var_samp": [ - 2943 + 2961 ], "variance": [ - 2945 + 2963 ], "__typename": [ 78 @@ -56181,10 +56486,10 @@ export default { }, "player_assists_arr_rel_insert_input": { "data": [ - 2915 + 2933 ], "on_conflict": [ - 2921 + 2939 ], "__typename": [ 78 @@ -56206,13 +56511,13 @@ export default { }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56220,16 +56525,16 @@ export default { }, "player_assists_bool_exp": { "_and": [ - 2912 + 2930 ], "_not": [ - 2912 + 2930 ], "_or": [ - 2912 + 2930 ], "attacked_player": [ - 3725 + 3743 ], "attacked_steam_id": [ 182 @@ -56244,7 +56549,7 @@ export default { 80 ], "deleted_at": [ - 4307 + 4325 ], "flash": [ 4 @@ -56253,25 +56558,25 @@ export default { 4 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "round": [ 39 ], "time": [ - 4307 + 4325 ], "__typename": [ 78 @@ -56294,7 +56599,7 @@ export default { }, "player_assists_insert_input": { "attacked_player": [ - 3732 + 3750 ], "attacked_steam_id": [ 180 @@ -56309,31 +56614,31 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "flash": [ 3 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56353,19 +56658,19 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56373,31 +56678,31 @@ export default { }, "player_assists_max_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56417,19 +56722,19 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56437,31 +56742,31 @@ export default { }, "player_assists_min_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56472,7 +56777,7 @@ export default { 38 ], "returning": [ - 2901 + 2919 ], "__typename": [ 78 @@ -56480,13 +56785,13 @@ export default { }, "player_assists_on_conflict": { "constraint": [ - 2913 + 2931 ], "update_columns": [ - 2938 + 2956 ], "where": [ - 2912 + 2930 ], "__typename": [ 78 @@ -56494,49 +56799,49 @@ export default { }, "player_assists_order_by": { "attacked_player": [ - 3734 + 3752 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "flash": [ - 2763 + 2781 ], "is_team_assist": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56550,10 +56855,10 @@ export default { 180 ], "match_map_id": [ - 4744 + 4762 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56576,22 +56881,22 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "flash": [ 3 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56613,13 +56918,13 @@ export default { }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56641,13 +56946,13 @@ export default { }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56669,13 +56974,13 @@ export default { }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56683,7 +56988,7 @@ export default { }, "player_assists_stream_cursor_input": { "initial_value": [ - 2935 + 2953 ], "ordering": [ 236 @@ -56706,22 +57011,22 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "flash": [ 3 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -56743,13 +57048,13 @@ export default { }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56758,13 +57063,13 @@ export default { "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 2914 + 2932 ], "_set": [ - 2927 + 2945 ], "where": [ - 2912 + 2930 ], "__typename": [ 78 @@ -56786,13 +57091,13 @@ export default { }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56814,13 +57119,13 @@ export default { }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56842,13 +57147,13 @@ export default { }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -56856,28 +57161,28 @@ export default { }, "player_career_stats_v": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "counter_strafe_pct": [ - 2761 + 2779 ], "crosshair_deg": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "maps": [ 38 @@ -56892,16 +57197,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "time_to_damage_s": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "__typename": [ 78 @@ -56909,10 +57214,10 @@ export default { }, "player_career_stats_v_aggregate": { "aggregate": [ - 2948 + 2966 ], "nodes": [ - 2946 + 2964 ], "__typename": [ 78 @@ -56920,13 +57225,13 @@ export default { }, "player_career_stats_v_aggregate_fields": { "avg": [ - 2949 + 2967 ], "count": [ 38, { "columns": [ - 2954, + 2972, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -56935,31 +57240,31 @@ export default { } ], "max": [ - 2951 + 2969 ], "min": [ - 2952 + 2970 ], "stddev": [ - 2955 + 2973 ], "stddev_pop": [ - 2956 + 2974 ], "stddev_samp": [ - 2957 + 2975 ], "sum": [ - 2960 + 2978 ], "var_pop": [ - 2961 + 2979 ], "var_samp": [ - 2962 + 2980 ], "variance": [ - 2963 + 2981 ], "__typename": [ 78 @@ -57020,37 +57325,37 @@ export default { }, "player_career_stats_v_bool_exp": { "_and": [ - 2950 + 2968 ], "_not": [ - 2950 + 2968 ], "_or": [ - 2950 + 2968 ], "accuracy": [ - 2762 + 2780 ], "accuracy_spotted": [ - 2762 + 2780 ], "counter_strafe_pct": [ - 2762 + 2780 ], "crosshair_deg": [ - 2762 + 2780 ], "enemy_blind_pr": [ - 2762 + 2780 ], "flash_assists_pr": [ - 2762 + 2780 ], "hs_pct": [ - 2762 + 2780 ], "kast_pct": [ - 2762 + 2780 ], "maps": [ 39 @@ -57065,16 +57370,16 @@ export default { 182 ], "survival_pct": [ - 2762 + 2780 ], "time_to_damage_s": [ - 2762 + 2780 ], "traded_death_pct": [ - 2762 + 2780 ], "util_efficiency": [ - 2762 + 2780 ], "__typename": [ 78 @@ -57082,28 +57387,28 @@ export default { }, "player_career_stats_v_max_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "counter_strafe_pct": [ - 2761 + 2779 ], "crosshair_deg": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "maps": [ 38 @@ -57118,16 +57423,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "time_to_damage_s": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "__typename": [ 78 @@ -57135,28 +57440,28 @@ export default { }, "player_career_stats_v_min_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "counter_strafe_pct": [ - 2761 + 2779 ], "crosshair_deg": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "maps": [ 38 @@ -57171,16 +57476,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "time_to_damage_s": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "__typename": [ 78 @@ -57188,52 +57493,52 @@ export default { }, "player_career_stats_v_order_by": { "accuracy": [ - 2763 + 2781 ], "accuracy_spotted": [ - 2763 + 2781 ], "counter_strafe_pct": [ - 2763 + 2781 ], "crosshair_deg": [ - 2763 + 2781 ], "enemy_blind_pr": [ - 2763 + 2781 ], "flash_assists_pr": [ - 2763 + 2781 ], "hs_pct": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "maps": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "survival_pct": [ - 2763 + 2781 ], "time_to_damage_s": [ - 2763 + 2781 ], "traded_death_pct": [ - 2763 + 2781 ], "util_efficiency": [ - 2763 + 2781 ], "__typename": [ 78 @@ -57401,7 +57706,7 @@ export default { }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 2959 + 2977 ], "ordering": [ 236 @@ -57412,28 +57717,28 @@ export default { }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "counter_strafe_pct": [ - 2761 + 2779 ], "crosshair_deg": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "maps": [ 38 @@ -57448,16 +57753,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "time_to_damage_s": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "__typename": [ 78 @@ -57465,28 +57770,28 @@ export default { }, "player_career_stats_v_sum_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "counter_strafe_pct": [ - 2761 + 2779 ], "crosshair_deg": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "maps": [ 38 @@ -57501,16 +57806,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "time_to_damage_s": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "__typename": [ 78 @@ -57686,7 +57991,7 @@ export default { 78 ], "attacked_player": [ - 3721 + 3739 ], "attacked_steam_id": [ 180 @@ -57713,7 +58018,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -57722,31 +58027,31 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "round": [ - 2761 + 2779 ], "team_damage": [ 3 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -57757,10 +58062,10 @@ export default { }, "player_damages_aggregate": { "aggregate": [ - 2968 + 2986 ], "nodes": [ - 2964 + 2982 ], "__typename": [ 78 @@ -57768,7 +58073,7 @@ export default { }, "player_damages_aggregate_bool_exp": { "count": [ - 2967 + 2985 ], "__typename": [ 78 @@ -57776,13 +58081,13 @@ export default { }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 2985 + 3003 ], "distinct": [ 3 ], "filter": [ - 2973 + 2991 ], "predicate": [ 39 @@ -57793,13 +58098,13 @@ export default { }, "player_damages_aggregate_fields": { "avg": [ - 2971 + 2989 ], "count": [ 38, { "columns": [ - 2985, + 3003, "[player_damages_select_column!]" ], "distinct": [ @@ -57808,31 +58113,31 @@ export default { } ], "max": [ - 2977 + 2995 ], "min": [ - 2979 + 2997 ], "stddev": [ - 2987 + 3005 ], "stddev_pop": [ - 2989 + 3007 ], "stddev_samp": [ - 2991 + 3009 ], "sum": [ - 2995 + 3013 ], "var_pop": [ - 2999 + 3017 ], "var_samp": [ - 3001 + 3019 ], "variance": [ - 3003 + 3021 ], "__typename": [ 78 @@ -57840,37 +58145,37 @@ export default { }, "player_damages_aggregate_order_by": { "avg": [ - 2972 + 2990 ], "count": [ - 2763 + 2781 ], "max": [ - 2978 + 2996 ], "min": [ - 2980 + 2998 ], "stddev": [ - 2988 + 3006 ], "stddev_pop": [ - 2990 + 3008 ], "stddev_samp": [ - 2992 + 3010 ], "sum": [ - 2996 + 3014 ], "var_pop": [ - 3000 + 3018 ], "var_samp": [ - 3002 + 3020 ], "variance": [ - 3004 + 3022 ], "__typename": [ 78 @@ -57878,10 +58183,10 @@ export default { }, "player_damages_arr_rel_insert_input": { "data": [ - 2976 + 2994 ], "on_conflict": [ - 2982 + 3000 ], "__typename": [ 78 @@ -57915,25 +58220,25 @@ export default { }, "player_damages_avg_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -57941,13 +58246,13 @@ export default { }, "player_damages_bool_exp": { "_and": [ - 2973 + 2991 ], "_not": [ - 2973 + 2991 ], "_or": [ - 2973 + 2991 ], "armor": [ 39 @@ -57959,7 +58264,7 @@ export default { 80 ], "attacked_player": [ - 3725 + 3743 ], "attacked_steam_id": [ 182 @@ -57986,7 +58291,7 @@ export default { 39 ], "deleted_at": [ - 4307 + 4325 ], "health": [ 39 @@ -57995,31 +58300,31 @@ export default { 80 ], "id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "round": [ - 2762 + 2780 ], "team_damage": [ 4 ], "time": [ - 4307 + 4325 ], "with": [ 80 @@ -58049,7 +58354,7 @@ export default { 38 ], "round": [ - 2761 + 2779 ], "__typename": [ 78 @@ -58066,7 +58371,7 @@ export default { 78 ], "attacked_player": [ - 3732 + 3750 ], "attacked_steam_id": [ 180 @@ -58093,7 +58398,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -58102,28 +58407,28 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "round": [ - 2761 + 2779 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -58167,7 +58472,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -58176,19 +58481,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ - 2761 + 2779 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -58199,64 +58504,64 @@ export default { }, "player_damages_max_order_by": { "armor": [ - 2763 + 2781 ], "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58297,7 +58602,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -58306,19 +58611,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ - 2761 + 2779 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -58329,64 +58634,64 @@ export default { }, "player_damages_min_order_by": { "armor": [ - 2763 + 2781 ], "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58397,7 +58702,7 @@ export default { 38 ], "returning": [ - 2964 + 2982 ], "__typename": [ 78 @@ -58405,13 +58710,13 @@ export default { }, "player_damages_on_conflict": { "constraint": [ - 2974 + 2992 ], "update_columns": [ - 2997 + 3015 ], "where": [ - 2973 + 2991 ], "__typename": [ 78 @@ -58419,79 +58724,79 @@ export default { }, "player_damages_order_by": { "armor": [ - 2763 + 2781 ], "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_player": [ - 3734 + 3752 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "round": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58499,13 +58804,13 @@ export default { }, "player_damages_pk_columns_input": { "id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -58547,7 +58852,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -58556,19 +58861,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ - 2761 + 2779 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -58605,25 +58910,25 @@ export default { }, "player_damages_stddev_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58657,25 +58962,25 @@ export default { }, "player_damages_stddev_pop_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58709,25 +59014,25 @@ export default { }, "player_damages_stddev_samp_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58735,7 +59040,7 @@ export default { }, "player_damages_stream_cursor_input": { "initial_value": [ - 2994 + 3012 ], "ordering": [ 236 @@ -58779,7 +59084,7 @@ export default { 38 ], "deleted_at": [ - 4306 + 4324 ], "health": [ 38 @@ -58788,19 +59093,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ - 2761 + 2779 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -58829,7 +59134,7 @@ export default { 38 ], "round": [ - 2761 + 2779 ], "__typename": [ 78 @@ -58837,25 +59142,25 @@ export default { }, "player_damages_sum_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58864,13 +59169,13 @@ export default { "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 2975 + 2993 ], "_set": [ - 2986 + 3004 ], "where": [ - 2973 + 2991 ], "__typename": [ 78 @@ -58904,25 +59209,25 @@ export default { }, "player_damages_var_pop_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -58956,25 +59261,25 @@ export default { }, "player_damages_var_samp_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -59008,25 +59313,25 @@ export default { }, "player_damages_variance_order_by": { "armor": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_armor": [ - 2763 + 2781 ], "health": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -59034,40 +59339,40 @@ export default { }, "player_elo": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59079,28 +59384,28 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player": [ - 3721 + 3739 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season": [ - 3780 + 3798 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -59109,7 +59414,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 860 @@ -59120,10 +59425,10 @@ export default { }, "player_elo_aggregate": { "aggregate": [ - 3007 + 3025 ], "nodes": [ - 3005 + 3023 ], "__typename": [ 78 @@ -59131,13 +59436,13 @@ export default { }, "player_elo_aggregate_fields": { "avg": [ - 3008 + 3026 ], "count": [ 38, { "columns": [ - 3019, + 3037, "[player_elo_select_column!]" ], "distinct": [ @@ -59146,31 +59451,31 @@ export default { } ], "max": [ - 3013 + 3031 ], "min": [ - 3014 + 3032 ], "stddev": [ - 3021 + 3039 ], "stddev_pop": [ - 3022 + 3040 ], "stddev_samp": [ - 3023 + 3041 ], "sum": [ - 3026 + 3044 ], "var_pop": [ - 3029 + 3047 ], "var_samp": [ - 3030 + 3048 ], "variance": [ - 3031 + 3049 ], "__typename": [ 78 @@ -59243,49 +59548,49 @@ export default { }, "player_elo_bool_exp": { "_and": [ - 3009 + 3027 ], "_not": [ - 3009 + 3027 ], "_or": [ - 3009 + 3027 ], "actual_score": [ - 1482 + 1500 ], "assists": [ 39 ], "change": [ - 2762 + 2780 ], "created_at": [ - 4307 + 4325 ], "current": [ - 2762 + 2780 ], "damage": [ 39 ], "damage_percent": [ - 1482 + 1500 ], "deaths": [ 39 ], "expected_score": [ - 1482 + 1500 ], "impact": [ - 2762 + 2780 ], "k_factor": [ 39 ], "kda": [ - 1482 + 1500 ], "kills": [ 39 @@ -59297,28 +59602,28 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "opponent_team_elo_avg": [ - 1482 + 1500 ], "performance_multiplier": [ - 1482 + 1500 ], "player": [ - 3725 + 3743 ], "player_team_elo_avg": [ - 1482 + 1500 ], "season": [ - 3784 + 3802 ], "season_id": [ - 4746 + 4764 ], "series_multiplier": [ 39 @@ -59327,7 +59632,7 @@ export default { 182 ], "team_avg_kda": [ - 1482 + 1500 ], "type": [ 861 @@ -59339,37 +59644,37 @@ export default { "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59381,13 +59686,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "series_multiplier": [ 38 @@ -59396,7 +59701,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "__typename": [ 78 @@ -59404,40 +59709,40 @@ export default { }, "player_elo_insert_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59449,28 +59754,28 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player": [ - 3732 + 3750 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season": [ - 3791 + 3809 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -59479,7 +59784,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 860 @@ -59490,40 +59795,40 @@ export default { }, "player_elo_max_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59535,19 +59840,19 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -59556,7 +59861,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "__typename": [ 78 @@ -59564,40 +59869,40 @@ export default { }, "player_elo_min_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59609,19 +59914,19 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -59630,7 +59935,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "__typename": [ 78 @@ -59641,7 +59946,7 @@ export default { 38 ], "returning": [ - 3005 + 3023 ], "__typename": [ 78 @@ -59649,13 +59954,13 @@ export default { }, "player_elo_on_conflict": { "constraint": [ - 3010 + 3028 ], "update_columns": [ - 3027 + 3045 ], "where": [ - 3009 + 3027 ], "__typename": [ 78 @@ -59663,85 +59968,85 @@ export default { }, "player_elo_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "change": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_team_elo_avg": [ - 2763 + 2781 ], "season": [ - 3793 + 3811 ], "season_id": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -59749,7 +60054,7 @@ export default { }, "player_elo_pk_columns_input": { "match_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -59764,40 +60069,40 @@ export default { "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -59809,19 +60114,19 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -59830,7 +60135,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 860 @@ -60036,7 +60341,7 @@ export default { }, "player_elo_stream_cursor_input": { "initial_value": [ - 3025 + 3043 ], "ordering": [ 236 @@ -60047,40 +60352,40 @@ export default { }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "created_at": [ - 4306 + 4324 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -60092,19 +60397,19 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 @@ -60113,7 +60418,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 860 @@ -60124,37 +60429,37 @@ export default { }, "player_elo_sum_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 ], "change": [ - 2761 + 2779 ], "current": [ - 2761 + 2779 ], "damage": [ 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 2761 + 2779 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -60166,13 +60471,13 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_team_elo_avg": [ - 1481 + 1499 ], "series_multiplier": [ 38 @@ -60181,7 +60486,7 @@ export default { 180 ], "team_avg_kda": [ - 1481 + 1499 ], "__typename": [ 78 @@ -60190,13 +60495,13 @@ export default { "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 3011 + 3029 ], "_set": [ - 3020 + 3038 ], "where": [ - 3009 + 3027 ], "__typename": [ 78 @@ -60402,19 +60707,19 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "player": [ - 3721 + 3739 ], "previous_rank": [ 38 @@ -60431,10 +60736,10 @@ export default { }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 3036 + 3054 ], "nodes": [ - 3032 + 3050 ], "__typename": [ 78 @@ -60442,7 +60747,7 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 3035 + 3053 ], "__typename": [ 78 @@ -60450,13 +60755,13 @@ export default { }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3053 + 3071 ], "distinct": [ 3 ], "filter": [ - 3041 + 3059 ], "predicate": [ 39 @@ -60467,13 +60772,13 @@ export default { }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 3039 + 3057 ], "count": [ 38, { "columns": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -60482,31 +60787,31 @@ export default { } ], "max": [ - 3045 + 3063 ], "min": [ - 3047 + 3065 ], "stddev": [ - 3055 + 3073 ], "stddev_pop": [ - 3057 + 3075 ], "stddev_samp": [ - 3059 + 3077 ], "sum": [ - 3063 + 3081 ], "var_pop": [ - 3067 + 3085 ], "var_samp": [ - 3069 + 3087 ], "variance": [ - 3071 + 3089 ], "__typename": [ 78 @@ -60514,37 +60819,37 @@ export default { }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 3040 + 3058 ], "count": [ - 2763 + 2781 ], "max": [ - 3046 + 3064 ], "min": [ - 3048 + 3066 ], "stddev": [ - 3056 + 3074 ], "stddev_pop": [ - 3058 + 3076 ], "stddev_samp": [ - 3060 + 3078 ], "sum": [ - 3064 + 3082 ], "var_pop": [ - 3068 + 3086 ], "var_samp": [ - 3070 + 3088 ], "variance": [ - 3072 + 3090 ], "__typename": [ 78 @@ -60552,10 +60857,10 @@ export default { }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 3044 + 3062 ], "on_conflict": [ - 3050 + 3068 ], "__typename": [ 78 @@ -60580,16 +60885,16 @@ export default { }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60597,31 +60902,31 @@ export default { }, "player_faceit_rank_history_bool_exp": { "_and": [ - 3041 + 3059 ], "_not": [ - 3041 + 3059 ], "_or": [ - 3041 + 3059 ], "elo": [ 39 ], "id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "observed_at": [ - 4307 + 4325 ], "player": [ - 3725 + 3743 ], "previous_rank": [ 39 @@ -60659,19 +60964,19 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "player": [ - 3732 + 3750 ], "previous_rank": [ 38 @@ -60691,13 +60996,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -60714,25 +61019,25 @@ export default { }, "player_faceit_rank_history_max_order_by": { "elo": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60743,13 +61048,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -60766,25 +61071,25 @@ export default { }, "player_faceit_rank_history_min_order_by": { "elo": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60795,7 +61100,7 @@ export default { 38 ], "returning": [ - 3032 + 3050 ], "__typename": [ 78 @@ -60803,13 +61108,13 @@ export default { }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 3042 + 3060 ], "update_columns": [ - 3065 + 3083 ], "where": [ - 3041 + 3059 ], "__typename": [ 78 @@ -60817,31 +61122,31 @@ export default { }, "player_faceit_rank_history_order_by": { "elo": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60849,7 +61154,7 @@ export default { }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -60861,13 +61166,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -60901,16 +61206,16 @@ export default { }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60935,16 +61240,16 @@ export default { }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60969,16 +61274,16 @@ export default { }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -60986,7 +61291,7 @@ export default { }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 3062 + 3080 ], "ordering": [ 236 @@ -61000,13 +61305,13 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -61040,16 +61345,16 @@ export default { }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61058,13 +61363,13 @@ export default { "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 3043 + 3061 ], "_set": [ - 3054 + 3072 ], "where": [ - 3041 + 3059 ], "__typename": [ 78 @@ -61089,16 +61394,16 @@ export default { }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61123,16 +61428,16 @@ export default { }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61157,16 +61462,16 @@ export default { }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "skill_level": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61180,25 +61485,25 @@ export default { 180 ], "blinded": [ - 3721 + 3739 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -61207,10 +61512,10 @@ export default { 3 ], "thrown_by": [ - 3721 + 3739 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61218,10 +61523,10 @@ export default { }, "player_flashes_aggregate": { "aggregate": [ - 3079 + 3097 ], "nodes": [ - 3073 + 3091 ], "__typename": [ 78 @@ -61229,13 +61534,13 @@ export default { }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 3076 + 3094 ], "bool_or": [ - 3077 + 3095 ], "count": [ - 3078 + 3096 ], "__typename": [ 78 @@ -61243,13 +61548,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 3097 + 3115 ], "distinct": [ 3 ], "filter": [ - 3084 + 3102 ], "predicate": [ 4 @@ -61260,13 +61565,13 @@ export default { }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 3098 + 3116 ], "distinct": [ 3 ], "filter": [ - 3084 + 3102 ], "predicate": [ 4 @@ -61277,13 +61582,13 @@ export default { }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 3096 + 3114 ], "distinct": [ 3 ], "filter": [ - 3084 + 3102 ], "predicate": [ 39 @@ -61294,13 +61599,13 @@ export default { }, "player_flashes_aggregate_fields": { "avg": [ - 3082 + 3100 ], "count": [ 38, { "columns": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "distinct": [ @@ -61309,31 +61614,31 @@ export default { } ], "max": [ - 3088 + 3106 ], "min": [ - 3090 + 3108 ], "stddev": [ - 3100 + 3118 ], "stddev_pop": [ - 3102 + 3120 ], "stddev_samp": [ - 3104 + 3122 ], "sum": [ - 3108 + 3126 ], "var_pop": [ - 3112 + 3130 ], "var_samp": [ - 3114 + 3132 ], "variance": [ - 3116 + 3134 ], "__typename": [ 78 @@ -61341,37 +61646,37 @@ export default { }, "player_flashes_aggregate_order_by": { "avg": [ - 3083 + 3101 ], "count": [ - 2763 + 2781 ], "max": [ - 3089 + 3107 ], "min": [ - 3091 + 3109 ], "stddev": [ - 3101 + 3119 ], "stddev_pop": [ - 3103 + 3121 ], "stddev_samp": [ - 3105 + 3123 ], "sum": [ - 3109 + 3127 ], "var_pop": [ - 3113 + 3131 ], "var_samp": [ - 3115 + 3133 ], "variance": [ - 3117 + 3135 ], "__typename": [ 78 @@ -61379,10 +61684,10 @@ export default { }, "player_flashes_arr_rel_insert_input": { "data": [ - 3087 + 3105 ], "on_conflict": [ - 3093 + 3111 ], "__typename": [ 78 @@ -61407,16 +61712,16 @@ export default { }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61424,13 +61729,13 @@ export default { }, "player_flashes_bool_exp": { "_and": [ - 3084 + 3102 ], "_not": [ - 3084 + 3102 ], "_or": [ - 3084 + 3102 ], "attacked_steam_id": [ 182 @@ -61439,25 +61744,25 @@ export default { 182 ], "blinded": [ - 3725 + 3743 ], "deleted_at": [ - 4307 + 4325 ], "duration": [ - 2762 + 2780 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "round": [ 39 @@ -61466,10 +61771,10 @@ export default { 4 ], "thrown_by": [ - 3725 + 3743 ], "time": [ - 4307 + 4325 ], "__typename": [ 78 @@ -61484,7 +61789,7 @@ export default { 180 ], "duration": [ - 2761 + 2779 ], "round": [ 38 @@ -61501,25 +61806,25 @@ export default { 180 ], "blinded": [ - 3732 + 3750 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -61528,10 +61833,10 @@ export default { 3 ], "thrown_by": [ - 3732 + 3750 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61545,22 +61850,22 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61568,28 +61873,28 @@ export default { }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61603,22 +61908,22 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61626,28 +61931,28 @@ export default { }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61658,7 +61963,7 @@ export default { 38 ], "returning": [ - 3073 + 3091 ], "__typename": [ 78 @@ -61666,13 +61971,13 @@ export default { }, "player_flashes_on_conflict": { "constraint": [ - 3085 + 3103 ], "update_columns": [ - 3110 + 3128 ], "where": [ - 3084 + 3102 ], "__typename": [ 78 @@ -61680,43 +61985,43 @@ export default { }, "player_flashes_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "blinded": [ - 3734 + 3752 ], "deleted_at": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_flash": [ - 2763 + 2781 ], "thrown_by": [ - 3734 + 3752 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61730,10 +62035,10 @@ export default { 180 ], "match_map_id": [ - 4744 + 4762 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61750,16 +62055,16 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -61768,7 +62073,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61793,16 +62098,16 @@ export default { }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61827,16 +62132,16 @@ export default { }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61861,16 +62166,16 @@ export default { }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61878,7 +62183,7 @@ export default { }, "player_flashes_stream_cursor_input": { "initial_value": [ - 3107 + 3125 ], "ordering": [ 236 @@ -61895,16 +62200,16 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "duration": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -61913,7 +62218,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -61927,7 +62232,7 @@ export default { 180 ], "duration": [ - 2761 + 2779 ], "round": [ 38 @@ -61938,16 +62243,16 @@ export default { }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -61956,13 +62261,13 @@ export default { "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 3086 + 3104 ], "_set": [ - 3099 + 3117 ], "where": [ - 3084 + 3102 ], "__typename": [ 78 @@ -61987,16 +62292,16 @@ export default { }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62021,16 +62326,16 @@ export default { }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62055,16 +62360,16 @@ export default { }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "duration": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62081,7 +62386,7 @@ export default { 78 ], "attacked_player": [ - 3721 + 3739 ], "attacked_steam_id": [ 180 @@ -62105,7 +62410,7 @@ export default { 3 ], "deleted_at": [ - 4306 + 4324 ], "headshot": [ 3 @@ -62120,22 +62425,22 @@ export default { 3 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "no_scope": [ 3 ], "player": [ - 3721 + 3739 ], "round": [ 38 @@ -62150,7 +62455,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -62161,10 +62466,10 @@ export default { }, "player_kills_aggregate": { "aggregate": [ - 3124 + 3142 ], "nodes": [ - 3118 + 3136 ], "__typename": [ 78 @@ -62172,13 +62477,13 @@ export default { }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 3121 + 3139 ], "bool_or": [ - 3122 + 3140 ], "count": [ - 3123 + 3141 ], "__typename": [ 78 @@ -62186,13 +62491,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 3183 + 3201 ], "distinct": [ 3 ], "filter": [ - 3129 + 3147 ], "predicate": [ 4 @@ -62203,13 +62508,13 @@ export default { }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 3184 + 3202 ], "distinct": [ 3 ], "filter": [ - 3129 + 3147 ], "predicate": [ 4 @@ -62220,13 +62525,13 @@ export default { }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 3182 + 3200 ], "distinct": [ 3 ], "filter": [ - 3129 + 3147 ], "predicate": [ 39 @@ -62237,13 +62542,13 @@ export default { }, "player_kills_aggregate_fields": { "avg": [ - 3127 + 3145 ], "count": [ 38, { "columns": [ - 3182, + 3200, "[player_kills_select_column!]" ], "distinct": [ @@ -62252,31 +62557,31 @@ export default { } ], "max": [ - 3174 + 3192 ], "min": [ - 3176 + 3194 ], "stddev": [ - 3186 + 3204 ], "stddev_pop": [ - 3188 + 3206 ], "stddev_samp": [ - 3190 + 3208 ], "sum": [ - 3194 + 3212 ], "var_pop": [ - 3198 + 3216 ], "var_samp": [ - 3200 + 3218 ], "variance": [ - 3202 + 3220 ], "__typename": [ 78 @@ -62284,37 +62589,37 @@ export default { }, "player_kills_aggregate_order_by": { "avg": [ - 3128 + 3146 ], "count": [ - 2763 + 2781 ], "max": [ - 3175 + 3193 ], "min": [ - 3177 + 3195 ], "stddev": [ - 3187 + 3205 ], "stddev_pop": [ - 3189 + 3207 ], "stddev_samp": [ - 3191 + 3209 ], "sum": [ - 3195 + 3213 ], "var_pop": [ - 3199 + 3217 ], "var_samp": [ - 3201 + 3219 ], "variance": [ - 3203 + 3221 ], "__typename": [ 78 @@ -62322,10 +62627,10 @@ export default { }, "player_kills_arr_rel_insert_input": { "data": [ - 3173 + 3191 ], "on_conflict": [ - 3179 + 3197 ], "__typename": [ 78 @@ -62347,13 +62652,13 @@ export default { }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62361,13 +62666,13 @@ export default { }, "player_kills_bool_exp": { "_and": [ - 3129 + 3147 ], "_not": [ - 3129 + 3147 ], "_or": [ - 3129 + 3147 ], "assisted": [ 4 @@ -62379,7 +62684,7 @@ export default { 80 ], "attacked_player": [ - 3725 + 3743 ], "attacked_steam_id": [ 182 @@ -62403,7 +62708,7 @@ export default { 4 ], "deleted_at": [ - 4307 + 4325 ], "headshot": [ 4 @@ -62418,22 +62723,22 @@ export default { 4 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "no_scope": [ 4 ], "player": [ - 3725 + 3743 ], "round": [ 39 @@ -62448,7 +62753,7 @@ export default { 4 ], "time": [ - 4307 + 4325 ], "with": [ 80 @@ -62462,7 +62767,7 @@ export default { 180 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -62476,10 +62781,10 @@ export default { }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 3134 + 3152 ], "nodes": [ - 3130 + 3148 ], "__typename": [ 78 @@ -62487,7 +62792,7 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 3133 + 3151 ], "__typename": [ 78 @@ -62495,13 +62800,13 @@ export default { }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 3151 + 3169 ], "distinct": [ 3 ], "filter": [ - 3139 + 3157 ], "predicate": [ 39 @@ -62512,13 +62817,13 @@ export default { }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 3137 + 3155 ], "count": [ 38, { "columns": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -62527,31 +62832,31 @@ export default { } ], "max": [ - 3143 + 3161 ], "min": [ - 3145 + 3163 ], "stddev": [ - 3153 + 3171 ], "stddev_pop": [ - 3155 + 3173 ], "stddev_samp": [ - 3157 + 3175 ], "sum": [ - 3161 + 3179 ], "var_pop": [ - 3165 + 3183 ], "var_samp": [ - 3167 + 3185 ], "variance": [ - 3169 + 3187 ], "__typename": [ 78 @@ -62559,37 +62864,37 @@ export default { }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 3138 + 3156 ], "count": [ - 2763 + 2781 ], "max": [ - 3144 + 3162 ], "min": [ - 3146 + 3164 ], "stddev": [ - 3154 + 3172 ], "stddev_pop": [ - 3156 + 3174 ], "stddev_samp": [ - 3158 + 3176 ], "sum": [ - 3162 + 3180 ], "var_pop": [ - 3166 + 3184 ], "var_samp": [ - 3168 + 3186 ], "variance": [ - 3170 + 3188 ], "__typename": [ 78 @@ -62597,10 +62902,10 @@ export default { }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 3142 + 3160 ], "on_conflict": [ - 3148 + 3166 ], "__typename": [ 78 @@ -62619,10 +62924,10 @@ export default { }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62630,19 +62935,19 @@ export default { }, "player_kills_by_weapon_bool_exp": { "_and": [ - 3139 + 3157 ], "_not": [ - 3139 + 3157 ], "_or": [ - 3139 + 3157 ], "kill_count": [ 182 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -62671,7 +62976,7 @@ export default { 180 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -62699,13 +63004,13 @@ export default { }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62727,13 +63032,13 @@ export default { }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62744,7 +63049,7 @@ export default { 38 ], "returning": [ - 3130 + 3148 ], "__typename": [ 78 @@ -62752,13 +63057,13 @@ export default { }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 3140 + 3158 ], "update_columns": [ - 3163 + 3181 ], "where": [ - 3139 + 3157 ], "__typename": [ 78 @@ -62766,16 +63071,16 @@ export default { }, "player_kills_by_weapon_order_by": { "kill_count": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62820,10 +63125,10 @@ export default { }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62842,10 +63147,10 @@ export default { }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62864,10 +63169,10 @@ export default { }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62875,7 +63180,7 @@ export default { }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 3160 + 3178 ], "ordering": [ 236 @@ -62911,10 +63216,10 @@ export default { }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62923,13 +63228,13 @@ export default { "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 3141 + 3159 ], "_set": [ - 3152 + 3170 ], "where": [ - 3139 + 3157 ], "__typename": [ 78 @@ -62948,10 +63253,10 @@ export default { }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62970,10 +63275,10 @@ export default { }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -62992,10 +63297,10 @@ export default { }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63027,7 +63332,7 @@ export default { 78 ], "attacked_player": [ - 3732 + 3750 ], "attacked_steam_id": [ 180 @@ -63051,7 +63356,7 @@ export default { 3 ], "deleted_at": [ - 4306 + 4324 ], "headshot": [ 3 @@ -63063,22 +63368,22 @@ export default { 3 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "no_scope": [ 3 ], "player": [ - 3732 + 3750 ], "round": [ 38 @@ -63090,7 +63395,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -63125,22 +63430,22 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "hitgroup": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -63151,49 +63456,49 @@ export default { }, "player_kills_max_order_by": { "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63225,22 +63530,22 @@ export default { 78 ], "deleted_at": [ - 4306 + 4324 ], "hitgroup": [ 78 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -63251,49 +63556,49 @@ export default { }, "player_kills_min_order_by": { "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63304,7 +63609,7 @@ export default { 38 ], "returning": [ - 3118 + 3136 ], "__typename": [ 78 @@ -63312,13 +63617,13 @@ export default { }, "player_kills_on_conflict": { "constraint": [ - 3171 + 3189 ], "update_columns": [ - 3196 + 3214 ], "where": [ - 3129 + 3147 ], "__typename": [ 78 @@ -63326,88 +63631,88 @@ export default { }, "player_kills_order_by": { "assisted": [ - 2763 + 2781 ], "attacked_location": [ - 2763 + 2781 ], "attacked_location_coordinates": [ - 2763 + 2781 ], "attacked_player": [ - 3734 + 3752 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacked_team": [ - 2763 + 2781 ], "attacker_location": [ - 2763 + 2781 ], "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "attacker_team": [ - 2763 + 2781 ], "blinded": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "headshot": [ - 2763 + 2781 ], "hitgroup": [ - 2763 + 2781 ], "in_air": [ - 2763 + 2781 ], "is_suicide": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "no_scope": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "round": [ - 2763 + 2781 ], "team_kill": [ - 2763 + 2781 ], "thru_smoke": [ - 2763 + 2781 ], "thru_wall": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63421,10 +63726,10 @@ export default { 180 ], "match_map_id": [ - 4744 + 4762 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -63465,7 +63770,7 @@ export default { 3 ], "deleted_at": [ - 4306 + 4324 ], "headshot": [ 3 @@ -63477,10 +63782,10 @@ export default { 3 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "no_scope": [ 3 @@ -63495,7 +63800,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -63520,13 +63825,13 @@ export default { }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63548,13 +63853,13 @@ export default { }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63576,13 +63881,13 @@ export default { }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63590,7 +63895,7 @@ export default { }, "player_kills_stream_cursor_input": { "initial_value": [ - 3193 + 3211 ], "ordering": [ 236 @@ -63631,7 +63936,7 @@ export default { 3 ], "deleted_at": [ - 4306 + 4324 ], "headshot": [ 3 @@ -63643,10 +63948,10 @@ export default { 3 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "no_scope": [ 3 @@ -63661,7 +63966,7 @@ export default { 3 ], "time": [ - 4306 + 4324 ], "with": [ 78 @@ -63686,13 +63991,13 @@ export default { }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63701,13 +64006,13 @@ export default { "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 3172 + 3190 ], "_set": [ - 3185 + 3203 ], "where": [ - 3129 + 3147 ], "__typename": [ 78 @@ -63729,13 +64034,13 @@ export default { }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63757,13 +64062,13 @@ export default { }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63785,13 +64090,13 @@ export default { }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -63808,7 +64113,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -63816,10 +64121,10 @@ export default { }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 3206 + 3224 ], "nodes": [ - 3204 + 3222 ], "__typename": [ 78 @@ -63827,13 +64132,13 @@ export default { }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 3207 + 3225 ], "count": [ 38, { "columns": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -63842,31 +64147,31 @@ export default { } ], "max": [ - 3211 + 3229 ], "min": [ - 3212 + 3230 ], "stddev": [ - 3217 + 3235 ], "stddev_pop": [ - 3218 + 3236 ], "stddev_samp": [ - 3219 + 3237 ], "sum": [ - 3222 + 3240 ], "var_pop": [ - 3224 + 3242 ], "var_samp": [ - 3225 + 3243 ], "variance": [ - 3226 + 3244 ], "__typename": [ 78 @@ -63888,13 +64193,13 @@ export default { }, "player_leaderboard_rank_bool_exp": { "_and": [ - 3208 + 3226 ], "_not": [ - 3208 + 3226 ], "_or": [ - 3208 + 3226 ], "player_steam_id": [ 80 @@ -63906,7 +64211,7 @@ export default { 39 ], "value": [ - 1482 + 1500 ], "__typename": [ 78 @@ -63920,7 +64225,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -63937,7 +64242,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -63954,7 +64259,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -63971,7 +64276,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -63982,7 +64287,7 @@ export default { 38 ], "returning": [ - 3204 + 3222 ], "__typename": [ 78 @@ -63990,16 +64295,16 @@ export default { }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "total": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -64017,7 +64322,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -64067,7 +64372,7 @@ export default { }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 3221 + 3239 ], "ordering": [ 236 @@ -64087,7 +64392,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -64101,7 +64406,7 @@ export default { 38 ], "value": [ - 1481 + 1499 ], "__typename": [ 78 @@ -64109,13 +64414,13 @@ export default { }, "player_leaderboard_rank_updates": { "_inc": [ - 3209 + 3227 ], "_set": [ - 3216 + 3234 ], "where": [ - 3208 + 3226 ], "__typename": [ 78 @@ -64183,7 +64488,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -64225,7 +64530,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -64279,16 +64584,16 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -64303,7 +64608,7 @@ export default { 38 ], "player": [ - 3721 + 3739 ], "rounds_ct": [ 38 @@ -64351,7 +64656,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -64381,7 +64686,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -64401,10 +64706,10 @@ export default { }, "player_match_map_stats_aggregate": { "aggregate": [ - 3231 + 3249 ], "nodes": [ - 3227 + 3245 ], "__typename": [ 78 @@ -64412,7 +64717,7 @@ export default { }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 3230 + 3248 ], "__typename": [ 78 @@ -64420,13 +64725,13 @@ export default { }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 3248 + 3266 ], "distinct": [ 3 ], "filter": [ - 3236 + 3254 ], "predicate": [ 39 @@ -64437,13 +64742,13 @@ export default { }, "player_match_map_stats_aggregate_fields": { "avg": [ - 3234 + 3252 ], "count": [ 38, { "columns": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -64452,31 +64757,31 @@ export default { } ], "max": [ - 3240 + 3258 ], "min": [ - 3242 + 3260 ], "stddev": [ - 3250 + 3268 ], "stddev_pop": [ - 3252 + 3270 ], "stddev_samp": [ - 3254 + 3272 ], "sum": [ - 3258 + 3276 ], "var_pop": [ - 3262 + 3280 ], "var_samp": [ - 3264 + 3282 ], "variance": [ - 3266 + 3284 ], "__typename": [ 78 @@ -64484,37 +64789,37 @@ export default { }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 3235 + 3253 ], "count": [ - 2763 + 2781 ], "max": [ - 3241 + 3259 ], "min": [ - 3243 + 3261 ], "stddev": [ - 3251 + 3269 ], "stddev_pop": [ - 3253 + 3271 ], "stddev_samp": [ - 3255 + 3273 ], "sum": [ - 3259 + 3277 ], "var_pop": [ - 3263 + 3281 ], "var_samp": [ - 3265 + 3283 ], "variance": [ - 3267 + 3285 ], "__typename": [ 78 @@ -64522,10 +64827,10 @@ export default { }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 3239 + 3257 ], "on_conflict": [ - 3245 + 3263 ], "__typename": [ 78 @@ -64751,217 +65056,217 @@ export default { }, "player_match_map_stats_avg_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -64969,13 +65274,13 @@ export default { }, "player_match_map_stats_bool_exp": { "_and": [ - 3236 + 3254 ], "_not": [ - 3236 + 3254 ], "_or": [ - 3236 + 3254 ], "assists": [ 39 @@ -64996,7 +65301,7 @@ export default { 39 ], "crosshair_angle_sum_deg": [ - 2762 + 2780 ], "damage": [ 39 @@ -65038,7 +65343,7 @@ export default { 39 ], "flash_duration_sum": [ - 2762 + 2780 ], "flashes_thrown": [ 39 @@ -65092,16 +65397,16 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "molotov_damage": [ 39 @@ -65116,7 +65421,7 @@ export default { 39 ], "player": [ - 3725 + 3743 ], "rounds_ct": [ 39 @@ -65164,7 +65469,7 @@ export default { 39 ], "time_to_damage_sum_s": [ - 2762 + 2780 ], "total_engagement_frames": [ 39 @@ -65194,7 +65499,7 @@ export default { 39 ], "updated_at": [ - 4307 + 4325 ], "util_on_death_count": [ 39 @@ -65233,7 +65538,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -65275,7 +65580,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -65386,7 +65691,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -65451,7 +65756,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -65493,7 +65798,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -65547,16 +65852,16 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -65571,7 +65876,7 @@ export default { 38 ], "player": [ - 3732 + 3750 ], "rounds_ct": [ 38 @@ -65619,7 +65924,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -65649,7 +65954,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -65687,7 +65992,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -65729,7 +66034,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -65783,10 +66088,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -65846,7 +66151,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -65876,7 +66181,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -65896,226 +66201,226 @@ export default { }, "player_match_map_stats_max_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -66141,7 +66446,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -66183,7 +66488,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -66237,10 +66542,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -66300,7 +66605,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -66330,7 +66635,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -66350,226 +66655,226 @@ export default { }, "player_match_map_stats_min_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -66580,7 +66885,7 @@ export default { 38 ], "returning": [ - 3227 + 3245 ], "__typename": [ 78 @@ -66588,13 +66893,13 @@ export default { }, "player_match_map_stats_on_conflict": { "constraint": [ - 3237 + 3255 ], "update_columns": [ - 3260 + 3278 ], "where": [ - 3236 + 3254 ], "__typename": [ 78 @@ -66602,235 +66907,235 @@ export default { }, "player_match_map_stats_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -66838,7 +67143,7 @@ export default { }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 4744 + 4762 ], "steam_id": [ 180 @@ -66868,7 +67173,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -66910,7 +67215,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -66964,10 +67269,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -67027,7 +67332,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -67057,7 +67362,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -67295,217 +67600,217 @@ export default { }, "player_match_map_stats_stddev_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -67731,217 +68036,217 @@ export default { }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -68167,217 +68472,217 @@ export default { }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -68385,7 +68690,7 @@ export default { }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 3257 + 3275 ], "ordering": [ 236 @@ -68414,7 +68719,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -68456,7 +68761,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -68510,10 +68815,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -68573,7 +68878,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -68603,7 +68908,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "util_on_death_count": [ 38 @@ -68641,7 +68946,7 @@ export default { 38 ], "crosshair_angle_sum_deg": [ - 2761 + 2779 ], "damage": [ 38 @@ -68683,7 +68988,7 @@ export default { 38 ], "flash_duration_sum": [ - 2761 + 2779 ], "flashes_thrown": [ 38 @@ -68794,7 +69099,7 @@ export default { 38 ], "time_to_damage_sum_s": [ - 2761 + 2779 ], "total_engagement_frames": [ 38 @@ -68841,217 +69146,217 @@ export default { }, "player_match_map_stats_sum_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -69060,13 +69365,13 @@ export default { "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 3238 + 3256 ], "_set": [ - 3249 + 3267 ], "where": [ - 3236 + 3254 ], "__typename": [ 78 @@ -69292,217 +69597,217 @@ export default { }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -69728,217 +70033,217 @@ export default { }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -70164,217 +70469,217 @@ export default { }, "player_match_map_stats_variance_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "crosshair_angle_count": [ - 2763 + 2781 ], "crosshair_angle_sum_deg": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flash_duration_count": [ - 2763 + 2781 ], "flash_duration_sum": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kast_rounds": [ - 2763 + 2781 ], "kast_total_rounds": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "time_to_damage_count": [ - 2763 + 2781 ], "time_to_damage_sum_s": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "util_on_death_count": [ - 2763 + 2781 ], "util_on_death_sum": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -70382,40 +70687,40 @@ export default { }, "player_match_performance_v": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "aim_rating": [ - 1481 + 1499 ], "counter_strafe_pct": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "overall_rating": [ - 1481 + 1499 ], "played_at": [ - 4306 + 4324 ], "positioning_rating": [ - 1481 + 1499 ], "rounds": [ 38 @@ -70427,16 +70732,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -70444,10 +70749,10 @@ export default { }, "player_match_performance_v_aggregate": { "aggregate": [ - 3270 + 3288 ], "nodes": [ - 3268 + 3286 ], "__typename": [ 78 @@ -70455,13 +70760,13 @@ export default { }, "player_match_performance_v_aggregate_fields": { "avg": [ - 3271 + 3289 ], "count": [ 38, { "columns": [ - 3276, + 3294, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -70470,31 +70775,31 @@ export default { } ], "max": [ - 3273 + 3291 ], "min": [ - 3274 + 3292 ], "stddev": [ - 3277 + 3295 ], "stddev_pop": [ - 3278 + 3296 ], "stddev_samp": [ - 3279 + 3297 ], "sum": [ - 3282 + 3300 ], "var_pop": [ - 3283 + 3301 ], "var_samp": [ - 3284 + 3302 ], "variance": [ - 3285 + 3303 ], "__typename": [ 78 @@ -70555,49 +70860,49 @@ export default { }, "player_match_performance_v_bool_exp": { "_and": [ - 3272 + 3290 ], "_not": [ - 3272 + 3290 ], "_or": [ - 3272 + 3290 ], "accuracy": [ - 2762 + 2780 ], "accuracy_spotted": [ - 2762 + 2780 ], "aim_rating": [ - 1482 + 1500 ], "counter_strafe_pct": [ - 2762 + 2780 ], "enemy_blind_pr": [ - 2762 + 2780 ], "flash_assists_pr": [ - 2762 + 2780 ], "hs_pct": [ - 2762 + 2780 ], "kast_pct": [ - 2762 + 2780 ], "match_id": [ - 4746 + 4764 ], "overall_rating": [ - 1482 + 1500 ], "played_at": [ - 4307 + 4325 ], "positioning_rating": [ - 1482 + 1500 ], "rounds": [ 39 @@ -70609,16 +70914,16 @@ export default { 182 ], "survival_pct": [ - 2762 + 2780 ], "traded_death_pct": [ - 2762 + 2780 ], "util_efficiency": [ - 2762 + 2780 ], "utility_rating": [ - 1482 + 1500 ], "__typename": [ 78 @@ -70626,40 +70931,40 @@ export default { }, "player_match_performance_v_max_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "aim_rating": [ - 1481 + 1499 ], "counter_strafe_pct": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "overall_rating": [ - 1481 + 1499 ], "played_at": [ - 4306 + 4324 ], "positioning_rating": [ - 1481 + 1499 ], "rounds": [ 38 @@ -70671,16 +70976,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -70688,40 +70993,40 @@ export default { }, "player_match_performance_v_min_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "aim_rating": [ - 1481 + 1499 ], "counter_strafe_pct": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "overall_rating": [ - 1481 + 1499 ], "played_at": [ - 4306 + 4324 ], "positioning_rating": [ - 1481 + 1499 ], "rounds": [ 38 @@ -70733,16 +71038,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -70750,61 +71055,61 @@ export default { }, "player_match_performance_v_order_by": { "accuracy": [ - 2763 + 2781 ], "accuracy_spotted": [ - 2763 + 2781 ], "aim_rating": [ - 2763 + 2781 ], "counter_strafe_pct": [ - 2763 + 2781 ], "enemy_blind_pr": [ - 2763 + 2781 ], "flash_assists_pr": [ - 2763 + 2781 ], "hs_pct": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "overall_rating": [ - 2763 + 2781 ], "played_at": [ - 2763 + 2781 ], "positioning_rating": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "survival_pct": [ - 2763 + 2781 ], "traded_death_pct": [ - 2763 + 2781 ], "util_efficiency": [ - 2763 + 2781 ], "utility_rating": [ - 2763 + 2781 ], "__typename": [ 78 @@ -70972,7 +71277,7 @@ export default { }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 3281 + 3299 ], "ordering": [ 236 @@ -70983,40 +71288,40 @@ export default { }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "aim_rating": [ - 1481 + 1499 ], "counter_strafe_pct": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "overall_rating": [ - 1481 + 1499 ], "played_at": [ - 4306 + 4324 ], "positioning_rating": [ - 1481 + 1499 ], "rounds": [ 38 @@ -71028,16 +71333,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -71045,34 +71350,34 @@ export default { }, "player_match_performance_v_sum_fields": { "accuracy": [ - 2761 + 2779 ], "accuracy_spotted": [ - 2761 + 2779 ], "aim_rating": [ - 1481 + 1499 ], "counter_strafe_pct": [ - 2761 + 2779 ], "enemy_blind_pr": [ - 2761 + 2779 ], "flash_assists_pr": [ - 2761 + 2779 ], "hs_pct": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "overall_rating": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "rounds": [ 38 @@ -71081,16 +71386,16 @@ export default { 180 ], "survival_pct": [ - 2761 + 2779 ], "traded_death_pct": [ - 2761 + 2779 ], "util_efficiency": [ - 2761 + 2779 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -71266,13 +71571,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -71362,7 +71667,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -71446,7 +71751,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -71460,10 +71765,10 @@ export default { }, "player_match_stats_v_aggregate": { "aggregate": [ - 3290 + 3308 ], "nodes": [ - 3286 + 3304 ], "__typename": [ 78 @@ -71471,7 +71776,7 @@ export default { }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 3289 + 3307 ], "__typename": [ 78 @@ -71479,13 +71784,13 @@ export default { }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3302 + 3320 ], "distinct": [ 3 ], "filter": [ - 3295 + 3313 ], "predicate": [ 39 @@ -71496,13 +71801,13 @@ export default { }, "player_match_stats_v_aggregate_fields": { "avg": [ - 3293 + 3311 ], "count": [ 38, { "columns": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -71511,31 +71816,31 @@ export default { } ], "max": [ - 3297 + 3315 ], "min": [ - 3299 + 3317 ], "stddev": [ - 3303 + 3321 ], "stddev_pop": [ - 3305 + 3323 ], "stddev_samp": [ - 3307 + 3325 ], "sum": [ - 3311 + 3329 ], "var_pop": [ - 3313 + 3331 ], "var_samp": [ - 3315 + 3333 ], "variance": [ - 3317 + 3335 ], "__typename": [ 78 @@ -71543,37 +71848,37 @@ export default { }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 3294 + 3312 ], "count": [ - 2763 + 2781 ], "max": [ - 3298 + 3316 ], "min": [ - 3300 + 3318 ], "stddev": [ - 3304 + 3322 ], "stddev_pop": [ - 3306 + 3324 ], "stddev_samp": [ - 3308 + 3326 ], "sum": [ - 3312 + 3330 ], "var_pop": [ - 3314 + 3332 ], "var_samp": [ - 3316 + 3334 ], "variance": [ - 3318 + 3336 ], "__typename": [ 78 @@ -71581,7 +71886,7 @@ export default { }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 3296 + 3314 ], "__typename": [ 78 @@ -71789,199 +72094,199 @@ export default { }, "player_match_stats_v_avg_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -71989,13 +72294,13 @@ export default { }, "player_match_stats_v_bool_exp": { "_and": [ - 3295 + 3313 ], "_not": [ - 3295 + 3313 ], "_or": [ - 3295 + 3313 ], "assists": [ 39 @@ -72007,13 +72312,13 @@ export default { 39 ], "avg_crosshair_angle_deg": [ - 2762 + 2780 ], "avg_flash_duration": [ - 2762 + 2780 ], "avg_time_to_damage_s": [ - 2762 + 2780 ], "counter_strafe_eligible_shots": [ 39 @@ -72103,7 +72408,7 @@ export default { 39 ], "match_id": [ - 4746 + 4764 ], "molotov_damage": [ 39 @@ -72187,7 +72492,7 @@ export default { 39 ], "utility_on_death": [ - 2762 + 2780 ], "wasted_magazine_shots": [ 39 @@ -72210,13 +72515,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -72306,7 +72611,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -72390,7 +72695,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -72413,13 +72718,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -72509,7 +72814,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -72593,7 +72898,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -72607,202 +72912,202 @@ export default { }, "player_match_stats_v_max_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -72819,13 +73124,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -72915,7 +73220,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -72999,7 +73304,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -73013,202 +73318,202 @@ export default { }, "player_match_stats_v_min_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -73216,202 +73521,202 @@ export default { }, "player_match_stats_v_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -73620,199 +73925,199 @@ export default { }, "player_match_stats_v_stddev_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -74020,199 +74325,199 @@ export default { }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -74420,199 +74725,199 @@ export default { }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -74620,7 +74925,7 @@ export default { }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 3310 + 3328 ], "ordering": [ 236 @@ -74640,13 +74945,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -74736,7 +75041,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "molotov_damage": [ 38 @@ -74820,7 +75125,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -74843,13 +75148,13 @@ export default { 38 ], "avg_crosshair_angle_deg": [ - 2761 + 2779 ], "avg_flash_duration": [ - 2761 + 2779 ], "avg_time_to_damage_s": [ - 2761 + 2779 ], "counter_strafe_eligible_shots": [ 38 @@ -75020,7 +75325,7 @@ export default { 38 ], "utility_on_death": [ - 2761 + 2779 ], "wasted_magazine_shots": [ 38 @@ -75034,199 +75339,199 @@ export default { }, "player_match_stats_v_sum_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -75434,199 +75739,199 @@ export default { }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -75834,199 +76139,199 @@ export default { }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76234,199 +76539,199 @@ export default { }, "player_match_stats_v_variance_order_by": { "assists": [ - 2763 + 2781 ], "assists_ct": [ - 2763 + 2781 ], "assists_t": [ - 2763 + 2781 ], "avg_crosshair_angle_deg": [ - 2763 + 2781 ], "avg_flash_duration": [ - 2763 + 2781 ], "avg_time_to_damage_s": [ - 2763 + 2781 ], "counter_strafe_eligible_shots": [ - 2763 + 2781 ], "counter_strafed_shots": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_ct": [ - 2763 + 2781 ], "damage_t": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "deaths_ct": [ - 2763 + 2781 ], "deaths_t": [ - 2763 + 2781 ], "decoy_throws": [ - 2763 + 2781 ], "enemies_flashed": [ - 2763 + 2781 ], "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "five_kill_rounds": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "flashes_thrown": [ - 2763 + 2781 ], "four_kill_rounds": [ - 2763 + 2781 ], "he_damage": [ - 2763 + 2781 ], "he_team_damage": [ - 2763 + 2781 ], "he_throws": [ - 2763 + 2781 ], "headshot_hits": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_at_spotted": [ - 2763 + 2781 ], "hs_kills": [ - 2763 + 2781 ], "hs_kills_ct": [ - 2763 + 2781 ], "hs_kills_t": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kills_ct": [ - 2763 + 2781 ], "kills_t": [ - 2763 + 2781 ], "knife_kills": [ - 2763 + 2781 ], "molotov_damage": [ - 2763 + 2781 ], "molotov_throws": [ - 2763 + 2781 ], "non_awp_hits": [ - 2763 + 2781 ], "on_target_frames": [ - 2763 + 2781 ], "rounds_ct": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "rounds_t": [ - 2763 + 2781 ], "shots_at_spotted": [ - 2763 + 2781 ], "shots_fired": [ - 2763 + 2781 ], "smoke_throws": [ - 2763 + 2781 ], "spotted_count": [ - 2763 + 2781 ], "spotted_with_damage_count": [ - 2763 + 2781 ], "spray_hits": [ - 2763 + 2781 ], "spray_shots": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_damage": [ - 2763 + 2781 ], "team_flashed": [ - 2763 + 2781 ], "three_kill_rounds": [ - 2763 + 2781 ], "total_engagement_frames": [ - 2763 + 2781 ], "trade_kill_attempts": [ - 2763 + 2781 ], "trade_kill_opportunities": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_attempts": [ - 2763 + 2781 ], "traded_death_opportunities": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "two_kill_rounds": [ - 2763 + 2781 ], "unused_utility_value": [ - 2763 + 2781 ], "utility_on_death": [ - 2763 + 2781 ], "wasted_magazine_shots": [ - 2763 + 2781 ], "zeus_kills": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76434,22 +76739,22 @@ export default { }, "player_objectives": { "deleted_at": [ - 4306 + 4324 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -76458,7 +76763,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "type": [ 901 @@ -76469,10 +76774,10 @@ export default { }, "player_objectives_aggregate": { "aggregate": [ - 3323 + 3341 ], "nodes": [ - 3319 + 3337 ], "__typename": [ 78 @@ -76480,7 +76785,7 @@ export default { }, "player_objectives_aggregate_bool_exp": { "count": [ - 3322 + 3340 ], "__typename": [ 78 @@ -76488,13 +76793,13 @@ export default { }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 3340 + 3358 ], "distinct": [ 3 ], "filter": [ - 3328 + 3346 ], "predicate": [ 39 @@ -76505,13 +76810,13 @@ export default { }, "player_objectives_aggregate_fields": { "avg": [ - 3326 + 3344 ], "count": [ 38, { "columns": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "distinct": [ @@ -76520,31 +76825,31 @@ export default { } ], "max": [ - 3332 + 3350 ], "min": [ - 3334 + 3352 ], "stddev": [ - 3342 + 3360 ], "stddev_pop": [ - 3344 + 3362 ], "stddev_samp": [ - 3346 + 3364 ], "sum": [ - 3350 + 3368 ], "var_pop": [ - 3354 + 3372 ], "var_samp": [ - 3356 + 3374 ], "variance": [ - 3358 + 3376 ], "__typename": [ 78 @@ -76552,37 +76857,37 @@ export default { }, "player_objectives_aggregate_order_by": { "avg": [ - 3327 + 3345 ], "count": [ - 2763 + 2781 ], "max": [ - 3333 + 3351 ], "min": [ - 3335 + 3353 ], "stddev": [ - 3343 + 3361 ], "stddev_pop": [ - 3345 + 3363 ], "stddev_samp": [ - 3347 + 3365 ], "sum": [ - 3351 + 3369 ], "var_pop": [ - 3355 + 3373 ], "var_samp": [ - 3357 + 3375 ], "variance": [ - 3359 + 3377 ], "__typename": [ 78 @@ -76590,10 +76895,10 @@ export default { }, "player_objectives_arr_rel_insert_input": { "data": [ - 3331 + 3349 ], "on_conflict": [ - 3337 + 3355 ], "__typename": [ 78 @@ -76612,10 +76917,10 @@ export default { }, "player_objectives_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76623,31 +76928,31 @@ export default { }, "player_objectives_bool_exp": { "_and": [ - 3328 + 3346 ], "_not": [ - 3328 + 3346 ], "_or": [ - 3328 + 3346 ], "deleted_at": [ - 4307 + 4325 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -76656,7 +76961,7 @@ export default { 39 ], "time": [ - 4307 + 4325 ], "type": [ 902 @@ -76679,22 +76984,22 @@ export default { }, "player_objectives_insert_input": { "deleted_at": [ - 4306 + 4324 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -76703,7 +77008,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "type": [ 901 @@ -76714,13 +77019,13 @@ export default { }, "player_objectives_max_fields": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -76729,7 +77034,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -76737,22 +77042,22 @@ export default { }, "player_objectives_max_order_by": { "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76760,13 +77065,13 @@ export default { }, "player_objectives_min_fields": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -76775,7 +77080,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -76783,22 +77088,22 @@ export default { }, "player_objectives_min_order_by": { "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76809,7 +77114,7 @@ export default { 38 ], "returning": [ - 3319 + 3337 ], "__typename": [ 78 @@ -76817,13 +77122,13 @@ export default { }, "player_objectives_on_conflict": { "constraint": [ - 3329 + 3347 ], "update_columns": [ - 3352 + 3370 ], "where": [ - 3328 + 3346 ], "__typename": [ 78 @@ -76831,34 +77136,34 @@ export default { }, "player_objectives_order_by": { "deleted_at": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76866,13 +77171,13 @@ export default { }, "player_objectives_pk_columns_input": { "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -76881,13 +77186,13 @@ export default { "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -76896,7 +77201,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "type": [ 901 @@ -76918,10 +77223,10 @@ export default { }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76940,10 +77245,10 @@ export default { }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76962,10 +77267,10 @@ export default { }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -76973,7 +77278,7 @@ export default { }, "player_objectives_stream_cursor_input": { "initial_value": [ - 3349 + 3367 ], "ordering": [ 236 @@ -76984,13 +77289,13 @@ export default { }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -76999,7 +77304,7 @@ export default { 38 ], "time": [ - 4306 + 4324 ], "type": [ 901 @@ -77021,10 +77326,10 @@ export default { }, "player_objectives_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -77033,13 +77338,13 @@ export default { "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 3330 + 3348 ], "_set": [ - 3341 + 3359 ], "where": [ - 3328 + 3346 ], "__typename": [ 78 @@ -77058,10 +77363,10 @@ export default { }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -77080,10 +77385,10 @@ export default { }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -77102,10 +77407,10 @@ export default { }, "player_objectives_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -77113,13 +77418,13 @@ export default { }, "player_performance_v": { "accuracy_score": [ - 1481 + 1499 ], "aim_goal": [ - 1481 + 1499 ], "aim_rating": [ - 1481 + 1499 ], "band": [ 38 @@ -77128,31 +77433,31 @@ export default { 180 ], "blind_score": [ - 1481 + 1499 ], "counter_strafe_score": [ - 1481 + 1499 ], "crosshair_score": [ - 1481 + 1499 ], "flash_assists_score": [ - 1481 + 1499 ], "hs_score": [ - 1481 + 1499 ], "kast_score": [ - 1481 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "premier_rank": [ 38 @@ -77161,28 +77466,28 @@ export default { 38 ], "spotted_score": [ - 1481 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1481 + 1499 ], "traded_score": [ - 1481 + 1499 ], "ttd_score": [ - 1481 + 1499 ], "util_eff_score": [ - 1481 + 1499 ], "utility_goal": [ - 1481 + 1499 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -77190,10 +77495,10 @@ export default { }, "player_performance_v_aggregate": { "aggregate": [ - 3362 + 3380 ], "nodes": [ - 3360 + 3378 ], "__typename": [ 78 @@ -77201,13 +77506,13 @@ export default { }, "player_performance_v_aggregate_fields": { "avg": [ - 3363 + 3381 ], "count": [ 38, { "columns": [ - 3368, + 3386, "[player_performance_v_select_column!]" ], "distinct": [ @@ -77216,31 +77521,31 @@ export default { } ], "max": [ - 3365 + 3383 ], "min": [ - 3366 + 3384 ], "stddev": [ - 3369 + 3387 ], "stddev_pop": [ - 3370 + 3388 ], "stddev_samp": [ - 3371 + 3389 ], "sum": [ - 3374 + 3392 ], "var_pop": [ - 3375 + 3393 ], "var_samp": [ - 3376 + 3394 ], "variance": [ - 3377 + 3395 ], "__typename": [ 78 @@ -77325,22 +77630,22 @@ export default { }, "player_performance_v_bool_exp": { "_and": [ - 3364 + 3382 ], "_not": [ - 3364 + 3382 ], "_or": [ - 3364 + 3382 ], "accuracy_score": [ - 1482 + 1500 ], "aim_goal": [ - 1482 + 1500 ], "aim_rating": [ - 1482 + 1500 ], "band": [ 39 @@ -77349,31 +77654,31 @@ export default { 182 ], "blind_score": [ - 1482 + 1500 ], "counter_strafe_score": [ - 1482 + 1500 ], "crosshair_score": [ - 1482 + 1500 ], "flash_assists_score": [ - 1482 + 1500 ], "hs_score": [ - 1482 + 1500 ], "kast_score": [ - 1482 + 1500 ], "maps": [ 39 ], "positioning_goal": [ - 1482 + 1500 ], "positioning_rating": [ - 1482 + 1500 ], "premier_rank": [ 39 @@ -77382,28 +77687,28 @@ export default { 39 ], "spotted_score": [ - 1482 + 1500 ], "steam_id": [ 182 ], "survival_score": [ - 1482 + 1500 ], "traded_score": [ - 1482 + 1500 ], "ttd_score": [ - 1482 + 1500 ], "util_eff_score": [ - 1482 + 1500 ], "utility_goal": [ - 1482 + 1500 ], "utility_rating": [ - 1482 + 1500 ], "__typename": [ 78 @@ -77411,13 +77716,13 @@ export default { }, "player_performance_v_max_fields": { "accuracy_score": [ - 1481 + 1499 ], "aim_goal": [ - 1481 + 1499 ], "aim_rating": [ - 1481 + 1499 ], "band": [ 38 @@ -77426,31 +77731,31 @@ export default { 180 ], "blind_score": [ - 1481 + 1499 ], "counter_strafe_score": [ - 1481 + 1499 ], "crosshair_score": [ - 1481 + 1499 ], "flash_assists_score": [ - 1481 + 1499 ], "hs_score": [ - 1481 + 1499 ], "kast_score": [ - 1481 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "premier_rank": [ 38 @@ -77459,28 +77764,28 @@ export default { 38 ], "spotted_score": [ - 1481 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1481 + 1499 ], "traded_score": [ - 1481 + 1499 ], "ttd_score": [ - 1481 + 1499 ], "util_eff_score": [ - 1481 + 1499 ], "utility_goal": [ - 1481 + 1499 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -77488,13 +77793,13 @@ export default { }, "player_performance_v_min_fields": { "accuracy_score": [ - 1481 + 1499 ], "aim_goal": [ - 1481 + 1499 ], "aim_rating": [ - 1481 + 1499 ], "band": [ 38 @@ -77503,31 +77808,31 @@ export default { 180 ], "blind_score": [ - 1481 + 1499 ], "counter_strafe_score": [ - 1481 + 1499 ], "crosshair_score": [ - 1481 + 1499 ], "flash_assists_score": [ - 1481 + 1499 ], "hs_score": [ - 1481 + 1499 ], "kast_score": [ - 1481 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "premier_rank": [ 38 @@ -77536,28 +77841,28 @@ export default { 38 ], "spotted_score": [ - 1481 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1481 + 1499 ], "traded_score": [ - 1481 + 1499 ], "ttd_score": [ - 1481 + 1499 ], "util_eff_score": [ - 1481 + 1499 ], "utility_goal": [ - 1481 + 1499 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -77565,76 +77870,76 @@ export default { }, "player_performance_v_order_by": { "accuracy_score": [ - 2763 + 2781 ], "aim_goal": [ - 2763 + 2781 ], "aim_rating": [ - 2763 + 2781 ], "band": [ - 2763 + 2781 ], "band_sample": [ - 2763 + 2781 ], "blind_score": [ - 2763 + 2781 ], "counter_strafe_score": [ - 2763 + 2781 ], "crosshair_score": [ - 2763 + 2781 ], "flash_assists_score": [ - 2763 + 2781 ], "hs_score": [ - 2763 + 2781 ], "kast_score": [ - 2763 + 2781 ], "maps": [ - 2763 + 2781 ], "positioning_goal": [ - 2763 + 2781 ], "positioning_rating": [ - 2763 + 2781 ], "premier_rank": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "spotted_score": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "survival_score": [ - 2763 + 2781 ], "traded_score": [ - 2763 + 2781 ], "ttd_score": [ - 2763 + 2781 ], "util_eff_score": [ - 2763 + 2781 ], "utility_goal": [ - 2763 + 2781 ], "utility_rating": [ - 2763 + 2781 ], "__typename": [ 78 @@ -77874,7 +78179,7 @@ export default { }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 3373 + 3391 ], "ordering": [ 236 @@ -77885,13 +78190,13 @@ export default { }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 1481 + 1499 ], "aim_goal": [ - 1481 + 1499 ], "aim_rating": [ - 1481 + 1499 ], "band": [ 38 @@ -77900,31 +78205,31 @@ export default { 180 ], "blind_score": [ - 1481 + 1499 ], "counter_strafe_score": [ - 1481 + 1499 ], "crosshair_score": [ - 1481 + 1499 ], "flash_assists_score": [ - 1481 + 1499 ], "hs_score": [ - 1481 + 1499 ], "kast_score": [ - 1481 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "premier_rank": [ 38 @@ -77933,28 +78238,28 @@ export default { 38 ], "spotted_score": [ - 1481 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1481 + 1499 ], "traded_score": [ - 1481 + 1499 ], "ttd_score": [ - 1481 + 1499 ], "util_eff_score": [ - 1481 + 1499 ], "utility_goal": [ - 1481 + 1499 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -77962,13 +78267,13 @@ export default { }, "player_performance_v_sum_fields": { "accuracy_score": [ - 1481 + 1499 ], "aim_goal": [ - 1481 + 1499 ], "aim_rating": [ - 1481 + 1499 ], "band": [ 38 @@ -77977,31 +78282,31 @@ export default { 180 ], "blind_score": [ - 1481 + 1499 ], "counter_strafe_score": [ - 1481 + 1499 ], "crosshair_score": [ - 1481 + 1499 ], "flash_assists_score": [ - 1481 + 1499 ], "hs_score": [ - 1481 + 1499 ], "kast_score": [ - 1481 + 1499 ], "maps": [ 38 ], "positioning_goal": [ - 1481 + 1499 ], "positioning_rating": [ - 1481 + 1499 ], "premier_rank": [ 38 @@ -78010,28 +78315,28 @@ export default { 38 ], "spotted_score": [ - 1481 + 1499 ], "steam_id": [ 180 ], "survival_score": [ - 1481 + 1499 ], "traded_score": [ - 1481 + 1499 ], "ttd_score": [ - 1481 + 1499 ], "util_eff_score": [ - 1481 + 1499 ], "utility_goal": [ - 1481 + 1499 ], "utility_rating": [ - 1481 + 1499 ], "__typename": [ 78 @@ -78270,25 +78575,25 @@ export default { }, "player_premier_rank_history": { "id": [ - 4744 + 4762 ], "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "player": [ - 3721 + 3739 ], "previous_rank": [ 38 @@ -78308,10 +78613,10 @@ export default { }, "player_premier_rank_history_aggregate": { "aggregate": [ - 3382 + 3400 ], "nodes": [ - 3378 + 3396 ], "__typename": [ 78 @@ -78319,7 +78624,7 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 3381 + 3399 ], "__typename": [ 78 @@ -78327,13 +78632,13 @@ export default { }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 3399 + 3417 ], "distinct": [ 3 ], "filter": [ - 3387 + 3405 ], "predicate": [ 39 @@ -78344,13 +78649,13 @@ export default { }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 3385 + 3403 ], "count": [ 38, { "columns": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -78359,31 +78664,31 @@ export default { } ], "max": [ - 3391 + 3409 ], "min": [ - 3393 + 3411 ], "stddev": [ - 3401 + 3419 ], "stddev_pop": [ - 3403 + 3421 ], "stddev_samp": [ - 3405 + 3423 ], "sum": [ - 3409 + 3427 ], "var_pop": [ - 3413 + 3431 ], "var_samp": [ - 3415 + 3433 ], "variance": [ - 3417 + 3435 ], "__typename": [ 78 @@ -78391,37 +78696,37 @@ export default { }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 3386 + 3404 ], "count": [ - 2763 + 2781 ], "max": [ - 3392 + 3410 ], "min": [ - 3394 + 3412 ], "stddev": [ - 3402 + 3420 ], "stddev_pop": [ - 3404 + 3422 ], "stddev_samp": [ - 3406 + 3424 ], "sum": [ - 3410 + 3428 ], "var_pop": [ - 3414 + 3432 ], "var_samp": [ - 3416 + 3434 ], "variance": [ - 3418 + 3436 ], "__typename": [ 78 @@ -78429,10 +78734,10 @@ export default { }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 3390 + 3408 ], "on_conflict": [ - 3396 + 3414 ], "__typename": [ 78 @@ -78457,16 +78762,16 @@ export default { }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78474,34 +78779,34 @@ export default { }, "player_premier_rank_history_bool_exp": { "_and": [ - 3387 + 3405 ], "_not": [ - 3387 + 3405 ], "_or": [ - 3387 + 3405 ], "id": [ - 4746 + 4764 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "observed_at": [ - 4307 + 4325 ], "player": [ - 3725 + 3743 ], "previous_rank": [ 39 @@ -78539,25 +78844,25 @@ export default { }, "player_premier_rank_history_insert_input": { "id": [ - 4744 + 4762 ], "map": [ - 2113 + 2131 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "player": [ - 3732 + 3750 ], "previous_rank": [ 38 @@ -78577,16 +78882,16 @@ export default { }, "player_premier_rank_history_max_fields": { "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -78606,28 +78911,28 @@ export default { }, "player_premier_rank_history_max_order_by": { "id": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78635,16 +78940,16 @@ export default { }, "player_premier_rank_history_min_fields": { "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -78664,28 +78969,28 @@ export default { }, "player_premier_rank_history_min_order_by": { "id": [ - 2763 + 2781 ], "map_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78696,7 +79001,7 @@ export default { 38 ], "returning": [ - 3378 + 3396 ], "__typename": [ 78 @@ -78704,13 +79009,13 @@ export default { }, "player_premier_rank_history_on_conflict": { "constraint": [ - 3388 + 3406 ], "update_columns": [ - 3411 + 3429 ], "where": [ - 3387 + 3405 ], "__typename": [ 78 @@ -78718,37 +79023,37 @@ export default { }, "player_premier_rank_history_order_by": { "id": [ - 2763 + 2781 ], "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "observed_at": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78756,7 +79061,7 @@ export default { }, "player_premier_rank_history_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -78765,16 +79070,16 @@ export default { "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -78811,16 +79116,16 @@ export default { }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78845,16 +79150,16 @@ export default { }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78879,16 +79184,16 @@ export default { }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78896,7 +79201,7 @@ export default { }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 3408 + 3426 ], "ordering": [ 236 @@ -78907,16 +79212,16 @@ export default { }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 4744 + 4762 ], "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "observed_at": [ - 4306 + 4324 ], "previous_rank": [ 38 @@ -78953,16 +79258,16 @@ export default { }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -78971,13 +79276,13 @@ export default { "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 3389 + 3407 ], "_set": [ - 3400 + 3418 ], "where": [ - 3387 + 3405 ], "__typename": [ 78 @@ -79002,16 +79307,16 @@ export default { }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79036,16 +79341,16 @@ export default { }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79070,16 +79375,16 @@ export default { }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rank_type": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79087,19 +79392,19 @@ export default { }, "player_sanctions": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "e_sanction_type": [ 976 ], "id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -79108,10 +79413,10 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by": [ - 3721 + 3739 ], "sanctioned_by_steam_id": [ 180 @@ -79125,10 +79430,10 @@ export default { }, "player_sanctions_aggregate": { "aggregate": [ - 3423 + 3441 ], "nodes": [ - 3419 + 3437 ], "__typename": [ 78 @@ -79136,7 +79441,7 @@ export default { }, "player_sanctions_aggregate_bool_exp": { "count": [ - 3422 + 3440 ], "__typename": [ 78 @@ -79144,13 +79449,13 @@ export default { }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 3440 + 3458 ], "distinct": [ 3 ], "filter": [ - 3428 + 3446 ], "predicate": [ 39 @@ -79161,13 +79466,13 @@ export default { }, "player_sanctions_aggregate_fields": { "avg": [ - 3426 + 3444 ], "count": [ 38, { "columns": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "distinct": [ @@ -79176,31 +79481,31 @@ export default { } ], "max": [ - 3432 + 3450 ], "min": [ - 3434 + 3452 ], "stddev": [ - 3442 + 3460 ], "stddev_pop": [ - 3444 + 3462 ], "stddev_samp": [ - 3446 + 3464 ], "sum": [ - 3450 + 3468 ], "var_pop": [ - 3454 + 3472 ], "var_samp": [ - 3456 + 3474 ], "variance": [ - 3458 + 3476 ], "__typename": [ 78 @@ -79208,37 +79513,37 @@ export default { }, "player_sanctions_aggregate_order_by": { "avg": [ - 3427 + 3445 ], "count": [ - 2763 + 2781 ], "max": [ - 3433 + 3451 ], "min": [ - 3435 + 3453 ], "stddev": [ - 3443 + 3461 ], "stddev_pop": [ - 3445 + 3463 ], "stddev_samp": [ - 3447 + 3465 ], "sum": [ - 3451 + 3469 ], "var_pop": [ - 3455 + 3473 ], "var_samp": [ - 3457 + 3475 ], "variance": [ - 3459 + 3477 ], "__typename": [ 78 @@ -79246,10 +79551,10 @@ export default { }, "player_sanctions_arr_rel_insert_input": { "data": [ - 3431 + 3449 ], "on_conflict": [ - 3437 + 3455 ], "__typename": [ 78 @@ -79268,10 +79573,10 @@ export default { }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79279,28 +79584,28 @@ export default { }, "player_sanctions_bool_exp": { "_and": [ - 3428 + 3446 ], "_not": [ - 3428 + 3446 ], "_or": [ - 3428 + 3446 ], "created_at": [ - 4307 + 4325 ], "deleted_at": [ - 4307 + 4325 ], "e_sanction_type": [ 979 ], "id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -79309,10 +79614,10 @@ export default { 80 ], "remove_sanction_date": [ - 4307 + 4325 ], "sanctioned_by": [ - 3725 + 3743 ], "sanctioned_by_steam_id": [ 182 @@ -79338,19 +79643,19 @@ export default { }, "player_sanctions_insert_input": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "e_sanction_type": [ 987 ], "id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -79359,10 +79664,10 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by": [ - 3732 + 3750 ], "sanctioned_by_steam_id": [ 180 @@ -79376,13 +79681,13 @@ export default { }, "player_sanctions_max_fields": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -79391,7 +79696,7 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -79402,25 +79707,25 @@ export default { }, "player_sanctions_max_order_by": { "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "reason": [ - 2763 + 2781 ], "remove_sanction_date": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79428,13 +79733,13 @@ export default { }, "player_sanctions_min_fields": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -79443,7 +79748,7 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -79454,25 +79759,25 @@ export default { }, "player_sanctions_min_order_by": { "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "reason": [ - 2763 + 2781 ], "remove_sanction_date": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79483,7 +79788,7 @@ export default { 38 ], "returning": [ - 3419 + 3437 ], "__typename": [ 78 @@ -79491,13 +79796,13 @@ export default { }, "player_sanctions_on_conflict": { "constraint": [ - 3429 + 3447 ], "update_columns": [ - 3452 + 3470 ], "where": [ - 3428 + 3446 ], "__typename": [ 78 @@ -79505,37 +79810,37 @@ export default { }, "player_sanctions_order_by": { "created_at": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "e_sanction_type": [ 989 ], "id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "reason": [ - 2763 + 2781 ], "remove_sanction_date": [ - 2763 + 2781 ], "sanctioned_by": [ - 3734 + 3752 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79543,10 +79848,10 @@ export default { }, "player_sanctions_pk_columns_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -79555,13 +79860,13 @@ export default { "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -79570,7 +79875,7 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -79595,10 +79900,10 @@ export default { }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79617,10 +79922,10 @@ export default { }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79639,10 +79944,10 @@ export default { }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79650,7 +79955,7 @@ export default { }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 3449 + 3467 ], "ordering": [ 236 @@ -79661,13 +79966,13 @@ export default { }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "deleted_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -79676,7 +79981,7 @@ export default { 78 ], "remove_sanction_date": [ - 4306 + 4324 ], "sanctioned_by_steam_id": [ 180 @@ -79701,10 +80006,10 @@ export default { }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79713,13 +80018,13 @@ export default { "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 3430 + 3448 ], "_set": [ - 3441 + 3459 ], "where": [ - 3428 + 3446 ], "__typename": [ 78 @@ -79738,10 +80043,10 @@ export default { }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79760,10 +80065,10 @@ export default { }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79782,10 +80087,10 @@ export default { }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "sanctioned_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -79799,7 +80104,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -79808,16 +80113,16 @@ export default { 180 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 ], "season": [ - 3780 + 3798 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -79825,10 +80130,10 @@ export default { }, "player_season_stats_aggregate": { "aggregate": [ - 3474 + 3492 ], "nodes": [ - 3460 + 3478 ], "__typename": [ 78 @@ -79836,31 +80141,31 @@ export default { }, "player_season_stats_aggregate_bool_exp": { "avg": [ - 3463 + 3481 ], "corr": [ - 3464 + 3482 ], "count": [ - 3466 + 3484 ], "covar_samp": [ - 3467 + 3485 ], "max": [ - 3469 + 3487 ], "min": [ - 3470 + 3488 ], "stddev_samp": [ - 3471 + 3489 ], "sum": [ - 3472 + 3490 ], "var_samp": [ - 3473 + 3491 ], "__typename": [ 78 @@ -79868,16 +80173,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_avg": { "arguments": [ - 3492 + 3510 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -79885,16 +80190,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr": { "arguments": [ - 3465 + 3483 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -79902,10 +80207,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 3493 + 3511 ], "Y": [ - 3493 + 3511 ], "__typename": [ 78 @@ -79913,13 +80218,13 @@ export default { }, "player_season_stats_aggregate_bool_exp_count": { "arguments": [ - 3491 + 3509 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ 39 @@ -79930,16 +80235,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3468 + 3486 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -79947,10 +80252,10 @@ export default { }, "player_season_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3494 + 3512 ], "Y": [ - 3494 + 3512 ], "__typename": [ 78 @@ -79958,16 +80263,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_max": { "arguments": [ - 3495 + 3513 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -79975,16 +80280,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_min": { "arguments": [ - 3496 + 3514 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -79992,16 +80297,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3497 + 3515 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -80009,16 +80314,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_sum": { "arguments": [ - 3498 + 3516 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -80026,16 +80331,16 @@ export default { }, "player_season_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 3499 + 3517 ], "distinct": [ 3 ], "filter": [ - 3479 + 3497 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -80043,13 +80348,13 @@ export default { }, "player_season_stats_aggregate_fields": { "avg": [ - 3477 + 3495 ], "count": [ 38, { "columns": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "distinct": [ @@ -80058,31 +80363,31 @@ export default { } ], "max": [ - 3483 + 3501 ], "min": [ - 3485 + 3503 ], "stddev": [ - 3501 + 3519 ], "stddev_pop": [ - 3503 + 3521 ], "stddev_samp": [ - 3505 + 3523 ], "sum": [ - 3509 + 3527 ], "var_pop": [ - 3513 + 3531 ], "var_samp": [ - 3515 + 3533 ], "variance": [ - 3517 + 3535 ], "__typename": [ 78 @@ -80090,37 +80395,37 @@ export default { }, "player_season_stats_aggregate_order_by": { "avg": [ - 3478 + 3496 ], "count": [ - 2763 + 2781 ], "max": [ - 3484 + 3502 ], "min": [ - 3486 + 3504 ], "stddev": [ - 3502 + 3520 ], "stddev_pop": [ - 3504 + 3522 ], "stddev_samp": [ - 3506 + 3524 ], "sum": [ - 3510 + 3528 ], "var_pop": [ - 3514 + 3532 ], "var_samp": [ - 3516 + 3534 ], "variance": [ - 3518 + 3536 ], "__typename": [ 78 @@ -80128,10 +80433,10 @@ export default { }, "player_season_stats_arr_rel_insert_input": { "data": [ - 3482 + 3500 ], "on_conflict": [ - 3488 + 3506 ], "__typename": [ 78 @@ -80162,22 +80467,22 @@ export default { }, "player_season_stats_avg_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80185,13 +80490,13 @@ export default { }, "player_season_stats_bool_exp": { "_and": [ - 3479 + 3497 ], "_not": [ - 3479 + 3497 ], "_or": [ - 3479 + 3497 ], "assists": [ 182 @@ -80200,7 +80505,7 @@ export default { 182 ], "headshot_percentage": [ - 1482 + 1500 ], "headshots": [ 182 @@ -80209,16 +80514,16 @@ export default { 182 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 ], "season": [ - 3784 + 3802 ], "season_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -80233,7 +80538,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80256,7 +80561,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80265,16 +80570,16 @@ export default { 180 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 ], "season": [ - 3791 + 3809 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80288,7 +80593,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80300,7 +80605,7 @@ export default { 180 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80308,25 +80613,25 @@ export default { }, "player_season_stats_max_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "season_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80340,7 +80645,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80352,7 +80657,7 @@ export default { 180 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80360,25 +80665,25 @@ export default { }, "player_season_stats_min_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "season_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80389,7 +80694,7 @@ export default { 38 ], "returning": [ - 3460 + 3478 ], "__typename": [ 78 @@ -80397,13 +80702,13 @@ export default { }, "player_season_stats_on_conflict": { "constraint": [ - 3480 + 3498 ], "update_columns": [ - 3511 + 3529 ], "where": [ - 3479 + 3497 ], "__typename": [ 78 @@ -80411,31 +80716,31 @@ export default { }, "player_season_stats_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "season": [ - 3793 + 3811 ], "season_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80446,7 +80751,7 @@ export default { 180 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80469,7 +80774,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80481,7 +80786,7 @@ export default { 180 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80512,22 +80817,22 @@ export default { }, "player_season_stats_stddev_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80558,22 +80863,22 @@ export default { }, "player_season_stats_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80604,22 +80909,22 @@ export default { }, "player_season_stats_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80627,7 +80932,7 @@ export default { }, "player_season_stats_stream_cursor_input": { "initial_value": [ - 3508 + 3526 ], "ordering": [ 236 @@ -80644,7 +80949,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80656,7 +80961,7 @@ export default { 180 ], "season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -80670,7 +80975,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80687,22 +80992,22 @@ export default { }, "player_season_stats_sum_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80711,13 +81016,13 @@ export default { "player_season_stats_update_column": {}, "player_season_stats_updates": { "_inc": [ - 3481 + 3499 ], "_set": [ - 3500 + 3518 ], "where": [ - 3479 + 3497 ], "__typename": [ 78 @@ -80748,22 +81053,22 @@ export default { }, "player_season_stats_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80794,22 +81099,22 @@ export default { }, "player_season_stats_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80840,22 +81145,22 @@ export default { }, "player_season_stats_variance_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -80869,7 +81174,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -80878,7 +81183,7 @@ export default { 180 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -80889,10 +81194,10 @@ export default { }, "player_stats_aggregate": { "aggregate": [ - 3521 + 3539 ], "nodes": [ - 3519 + 3537 ], "__typename": [ 78 @@ -80900,13 +81205,13 @@ export default { }, "player_stats_aggregate_fields": { "avg": [ - 3522 + 3540 ], "count": [ 38, { "columns": [ - 3534, + 3552, "[player_stats_select_column!]" ], "distinct": [ @@ -80915,31 +81220,31 @@ export default { } ], "max": [ - 3527 + 3545 ], "min": [ - 3528 + 3546 ], "stddev": [ - 3536 + 3554 ], "stddev_pop": [ - 3537 + 3555 ], "stddev_samp": [ - 3538 + 3556 ], "sum": [ - 3541 + 3559 ], "var_pop": [ - 3544 + 3562 ], "var_samp": [ - 3545 + 3563 ], "variance": [ - 3546 + 3564 ], "__typename": [ 78 @@ -80970,13 +81275,13 @@ export default { }, "player_stats_bool_exp": { "_and": [ - 3523 + 3541 ], "_not": [ - 3523 + 3541 ], "_or": [ - 3523 + 3541 ], "assists": [ 182 @@ -80985,7 +81290,7 @@ export default { 182 ], "headshot_percentage": [ - 1482 + 1500 ], "headshots": [ 182 @@ -80994,7 +81299,7 @@ export default { 182 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -81012,7 +81317,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81035,7 +81340,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81044,7 +81349,7 @@ export default { 180 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -81061,7 +81366,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81084,7 +81389,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81104,7 +81409,7 @@ export default { 38 ], "returning": [ - 3519 + 3537 ], "__typename": [ 78 @@ -81112,10 +81417,10 @@ export default { }, "player_stats_obj_rel_insert_input": { "data": [ - 3526 + 3544 ], "on_conflict": [ - 3531 + 3549 ], "__typename": [ 78 @@ -81123,13 +81428,13 @@ export default { }, "player_stats_on_conflict": { "constraint": [ - 3524 + 3542 ], "update_columns": [ - 3542 + 3560 ], "where": [ - 3523 + 3541 ], "__typename": [ 78 @@ -81137,25 +81442,25 @@ export default { }, "player_stats_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -81178,7 +81483,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81264,7 +81569,7 @@ export default { }, "player_stats_stream_cursor_input": { "initial_value": [ - 3540 + 3558 ], "ordering": [ 236 @@ -81281,7 +81586,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81304,7 +81609,7 @@ export default { 180 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 180 @@ -81322,13 +81627,13 @@ export default { "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 3525 + 3543 ], "_set": [ - 3535 + 3553 ], "where": [ - 3523 + 3541 ], "__typename": [ 78 @@ -81405,19 +81710,19 @@ export default { }, "player_steam_bot_friend": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "last_presence_state": [ - 1634, + 1652, { "path": [ 78 @@ -81425,7 +81730,7 @@ export default { } ], "player": [ - 3721 + 3739 ], "status": [ 78 @@ -81434,7 +81739,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81442,10 +81747,10 @@ export default { }, "player_steam_bot_friend_aggregate": { "aggregate": [ - 3549 + 3567 ], "nodes": [ - 3547 + 3565 ], "__typename": [ 78 @@ -81453,13 +81758,13 @@ export default { }, "player_steam_bot_friend_aggregate_fields": { "avg": [ - 3551 + 3569 ], "count": [ 38, { "columns": [ - 3566, + 3584, "[player_steam_bot_friend_select_column!]" ], "distinct": [ @@ -81468,31 +81773,31 @@ export default { } ], "max": [ - 3559 + 3577 ], "min": [ - 3560 + 3578 ], "stddev": [ - 3568 + 3586 ], "stddev_pop": [ - 3569 + 3587 ], "stddev_samp": [ - 3570 + 3588 ], "sum": [ - 3573 + 3591 ], "var_pop": [ - 3576 + 3594 ], "var_samp": [ - 3577 + 3595 ], "variance": [ - 3578 + 3596 ], "__typename": [ 78 @@ -81500,7 +81805,7 @@ export default { }, "player_steam_bot_friend_append_input": { "last_presence_state": [ - 1634 + 1652 ], "__typename": [ 78 @@ -81519,31 +81824,31 @@ export default { }, "player_steam_bot_friend_bool_exp": { "_and": [ - 3552 + 3570 ], "_not": [ - 3552 + 3570 ], "_or": [ - 3552 + 3570 ], "bot_steam_account_id": [ - 4746 + 4764 ], "bot_steamid64": [ 182 ], "created_at": [ - 4307 + 4325 ], "friended_at": [ - 4307 + 4325 ], "last_presence_state": [ - 1636 + 1654 ], "player": [ - 3725 + 3743 ], "status": [ 80 @@ -81552,7 +81857,7 @@ export default { 182 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -81596,22 +81901,22 @@ export default { }, "player_steam_bot_friend_insert_input": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "last_presence_state": [ - 1634 + 1652 ], "player": [ - 3732 + 3750 ], "status": [ 78 @@ -81620,7 +81925,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81628,16 +81933,16 @@ export default { }, "player_steam_bot_friend_max_fields": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "status": [ 78 @@ -81646,7 +81951,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81654,16 +81959,16 @@ export default { }, "player_steam_bot_friend_min_fields": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "status": [ 78 @@ -81672,7 +81977,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81683,7 +81988,7 @@ export default { 38 ], "returning": [ - 3547 + 3565 ], "__typename": [ 78 @@ -81691,13 +81996,13 @@ export default { }, "player_steam_bot_friend_on_conflict": { "constraint": [ - 3553 + 3571 ], "update_columns": [ - 3574 + 3592 ], "where": [ - 3552 + 3570 ], "__typename": [ 78 @@ -81705,31 +82010,31 @@ export default { }, "player_steam_bot_friend_order_by": { "bot_steam_account_id": [ - 2763 + 2781 ], "bot_steamid64": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "friended_at": [ - 2763 + 2781 ], "last_presence_state": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "status": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -81745,7 +82050,7 @@ export default { }, "player_steam_bot_friend_prepend_input": { "last_presence_state": [ - 1634 + 1652 ], "__typename": [ 78 @@ -81754,19 +82059,19 @@ export default { "player_steam_bot_friend_select_column": {}, "player_steam_bot_friend_set_input": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "last_presence_state": [ - 1634 + 1652 ], "status": [ 78 @@ -81775,7 +82080,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81816,7 +82121,7 @@ export default { }, "player_steam_bot_friend_stream_cursor_input": { "initial_value": [ - 3572 + 3590 ], "ordering": [ 236 @@ -81827,19 +82132,19 @@ export default { }, "player_steam_bot_friend_stream_cursor_value_input": { "bot_steam_account_id": [ - 4744 + 4762 ], "bot_steamid64": [ 180 ], "created_at": [ - 4306 + 4324 ], "friended_at": [ - 4306 + 4324 ], "last_presence_state": [ - 1634 + 1652 ], "status": [ 78 @@ -81848,7 +82153,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81868,28 +82173,28 @@ export default { "player_steam_bot_friend_update_column": {}, "player_steam_bot_friend_updates": { "_append": [ - 3550 + 3568 ], "_delete_at_path": [ - 3554 + 3572 ], "_delete_elem": [ - 3555 + 3573 ], "_delete_key": [ - 3556 + 3574 ], "_inc": [ - 3557 + 3575 ], "_prepend": [ - 3565 + 3583 ], "_set": [ - 3567 + 3585 ], "where": [ - 3552 + 3570 ], "__typename": [ 78 @@ -81933,7 +82238,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -81942,16 +82247,16 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -81959,10 +82264,10 @@ export default { }, "player_steam_match_auth_aggregate": { "aggregate": [ - 3581 + 3599 ], "nodes": [ - 3579 + 3597 ], "__typename": [ 78 @@ -81970,13 +82275,13 @@ export default { }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 3582 + 3600 ], "count": [ 38, { "columns": [ - 3593, + 3611, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -81985,31 +82290,31 @@ export default { } ], "max": [ - 3587 + 3605 ], "min": [ - 3588 + 3606 ], "stddev": [ - 3595 + 3613 ], "stddev_pop": [ - 3596 + 3614 ], "stddev_samp": [ - 3597 + 3615 ], "sum": [ - 3600 + 3618 ], "var_pop": [ - 3603 + 3621 ], "var_samp": [ - 3604 + 3622 ], "variance": [ - 3605 + 3623 ], "__typename": [ 78 @@ -82025,19 +82330,19 @@ export default { }, "player_steam_match_auth_bool_exp": { "_and": [ - 3583 + 3601 ], "_not": [ - 3583 + 3601 ], "_or": [ - 3583 + 3601 ], "auth_code": [ 80 ], "created_at": [ - 4307 + 4325 ], "last_error": [ 80 @@ -82046,16 +82351,16 @@ export default { 80 ], "last_polled_at": [ - 4307 + 4325 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -82075,7 +82380,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -82084,16 +82389,16 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -82104,7 +82409,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -82113,13 +82418,13 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -82130,7 +82435,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -82139,13 +82444,13 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -82156,7 +82461,7 @@ export default { 38 ], "returning": [ - 3579 + 3597 ], "__typename": [ 78 @@ -82164,13 +82469,13 @@ export default { }, "player_steam_match_auth_on_conflict": { "constraint": [ - 3584 + 3602 ], "update_columns": [ - 3601 + 3619 ], "where": [ - 3583 + 3601 ], "__typename": [ 78 @@ -82178,28 +82483,28 @@ export default { }, "player_steam_match_auth_order_by": { "auth_code": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "last_error": [ - 2763 + 2781 ], "last_known_share_code": [ - 2763 + 2781 ], "last_polled_at": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82219,7 +82524,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -82228,13 +82533,13 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -82266,7 +82571,7 @@ export default { }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 3599 + 3617 ], "ordering": [ 236 @@ -82280,7 +82585,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "last_error": [ 78 @@ -82289,13 +82594,13 @@ export default { 78 ], "last_polled_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -82312,13 +82617,13 @@ export default { "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 3585 + 3603 ], "_set": [ - 3594 + 3612 ], "where": [ - 3583 + 3601 ], "__typename": [ 78 @@ -82350,22 +82655,22 @@ export default { }, "player_unused_utility": { "deleted_at": [ - 4306 + 4324 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -82382,10 +82687,10 @@ export default { }, "player_unused_utility_aggregate": { "aggregate": [ - 3610 + 3628 ], "nodes": [ - 3606 + 3624 ], "__typename": [ 78 @@ -82393,7 +82698,7 @@ export default { }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 3609 + 3627 ], "__typename": [ 78 @@ -82401,13 +82706,13 @@ export default { }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 3627 + 3645 ], "distinct": [ 3 ], "filter": [ - 3615 + 3633 ], "predicate": [ 39 @@ -82418,13 +82723,13 @@ export default { }, "player_unused_utility_aggregate_fields": { "avg": [ - 3613 + 3631 ], "count": [ 38, { "columns": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -82433,31 +82738,31 @@ export default { } ], "max": [ - 3619 + 3637 ], "min": [ - 3621 + 3639 ], "stddev": [ - 3629 + 3647 ], "stddev_pop": [ - 3631 + 3649 ], "stddev_samp": [ - 3633 + 3651 ], "sum": [ - 3637 + 3655 ], "var_pop": [ - 3641 + 3659 ], "var_samp": [ - 3643 + 3661 ], "variance": [ - 3645 + 3663 ], "__typename": [ 78 @@ -82465,37 +82770,37 @@ export default { }, "player_unused_utility_aggregate_order_by": { "avg": [ - 3614 + 3632 ], "count": [ - 2763 + 2781 ], "max": [ - 3620 + 3638 ], "min": [ - 3622 + 3640 ], "stddev": [ - 3630 + 3648 ], "stddev_pop": [ - 3632 + 3650 ], "stddev_samp": [ - 3634 + 3652 ], "sum": [ - 3638 + 3656 ], "var_pop": [ - 3642 + 3660 ], "var_samp": [ - 3644 + 3662 ], "variance": [ - 3646 + 3664 ], "__typename": [ 78 @@ -82503,10 +82808,10 @@ export default { }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 3618 + 3636 ], "on_conflict": [ - 3624 + 3642 ], "__typename": [ 78 @@ -82528,13 +82833,13 @@ export default { }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82542,31 +82847,31 @@ export default { }, "player_unused_utility_bool_exp": { "_and": [ - 3615 + 3633 ], "_not": [ - 3615 + 3633 ], "_or": [ - 3615 + 3633 ], "deleted_at": [ - 4307 + 4325 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -82598,22 +82903,22 @@ export default { }, "player_unused_utility_insert_input": { "deleted_at": [ - 4306 + 4324 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -82630,13 +82935,13 @@ export default { }, "player_unused_utility_max_fields": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -82653,22 +82958,22 @@ export default { }, "player_unused_utility_max_order_by": { "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82676,13 +82981,13 @@ export default { }, "player_unused_utility_min_fields": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -82699,22 +83004,22 @@ export default { }, "player_unused_utility_min_order_by": { "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82725,7 +83030,7 @@ export default { 38 ], "returning": [ - 3606 + 3624 ], "__typename": [ 78 @@ -82733,13 +83038,13 @@ export default { }, "player_unused_utility_on_conflict": { "constraint": [ - 3616 + 3634 ], "update_columns": [ - 3639 + 3657 ], "where": [ - 3615 + 3633 ], "__typename": [ 78 @@ -82747,31 +83052,31 @@ export default { }, "player_unused_utility_order_by": { "deleted_at": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82779,7 +83084,7 @@ export default { }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -82791,13 +83096,13 @@ export default { "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -82828,13 +83133,13 @@ export default { }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82856,13 +83161,13 @@ export default { }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82884,13 +83189,13 @@ export default { }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82898,7 +83203,7 @@ export default { }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 3636 + 3654 ], "ordering": [ 236 @@ -82909,13 +83214,13 @@ export default { }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "player_steam_id": [ 180 @@ -82946,13 +83251,13 @@ export default { }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -82961,13 +83266,13 @@ export default { "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 3617 + 3635 ], "_set": [ - 3628 + 3646 ], "where": [ - 3615 + 3633 ], "__typename": [ 78 @@ -82989,13 +83294,13 @@ export default { }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83017,13 +83322,13 @@ export default { }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83045,13 +83350,13 @@ export default { }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "unused": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83065,28 +83370,28 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "type": [ 1185 @@ -83097,10 +83402,10 @@ export default { }, "player_utility_aggregate": { "aggregate": [ - 3651 + 3669 ], "nodes": [ - 3647 + 3665 ], "__typename": [ 78 @@ -83108,7 +83413,7 @@ export default { }, "player_utility_aggregate_bool_exp": { "count": [ - 3650 + 3668 ], "__typename": [ 78 @@ -83116,13 +83421,13 @@ export default { }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 3668 + 3686 ], "distinct": [ 3 ], "filter": [ - 3656 + 3674 ], "predicate": [ 39 @@ -83133,13 +83438,13 @@ export default { }, "player_utility_aggregate_fields": { "avg": [ - 3654 + 3672 ], "count": [ 38, { "columns": [ - 3668, + 3686, "[player_utility_select_column!]" ], "distinct": [ @@ -83148,31 +83453,31 @@ export default { } ], "max": [ - 3660 + 3678 ], "min": [ - 3662 + 3680 ], "stddev": [ - 3670 + 3688 ], "stddev_pop": [ - 3672 + 3690 ], "stddev_samp": [ - 3674 + 3692 ], "sum": [ - 3678 + 3696 ], "var_pop": [ - 3682 + 3700 ], "var_samp": [ - 3684 + 3702 ], "variance": [ - 3686 + 3704 ], "__typename": [ 78 @@ -83180,37 +83485,37 @@ export default { }, "player_utility_aggregate_order_by": { "avg": [ - 3655 + 3673 ], "count": [ - 2763 + 2781 ], "max": [ - 3661 + 3679 ], "min": [ - 3663 + 3681 ], "stddev": [ - 3671 + 3689 ], "stddev_pop": [ - 3673 + 3691 ], "stddev_samp": [ - 3675 + 3693 ], "sum": [ - 3679 + 3697 ], "var_pop": [ - 3683 + 3701 ], "var_samp": [ - 3685 + 3703 ], "variance": [ - 3687 + 3705 ], "__typename": [ 78 @@ -83218,10 +83523,10 @@ export default { }, "player_utility_arr_rel_insert_input": { "data": [ - 3659 + 3677 ], "on_conflict": [ - 3665 + 3683 ], "__typename": [ 78 @@ -83240,10 +83545,10 @@ export default { }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83251,13 +83556,13 @@ export default { }, "player_utility_bool_exp": { "_and": [ - 3656 + 3674 ], "_not": [ - 3656 + 3674 ], "_or": [ - 3656 + 3674 ], "attacker_location_coordinates": [ 80 @@ -83266,28 +83571,28 @@ export default { 182 ], "deleted_at": [ - 4307 + 4325 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "round": [ 39 ], "time": [ - 4307 + 4325 ], "type": [ 1186 @@ -83316,28 +83621,28 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "type": [ 1185 @@ -83354,19 +83659,19 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -83374,25 +83679,25 @@ export default { }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83406,19 +83711,19 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -83426,25 +83731,25 @@ export default { }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83455,7 +83760,7 @@ export default { 38 ], "returning": [ - 3647 + 3665 ], "__typename": [ 78 @@ -83463,13 +83768,13 @@ export default { }, "player_utility_on_conflict": { "constraint": [ - 3657 + 3675 ], "update_columns": [ - 3680 + 3698 ], "where": [ - 3656 + 3674 ], "__typename": [ 78 @@ -83477,37 +83782,37 @@ export default { }, "player_utility_order_by": { "attacker_location_coordinates": [ - 2763 + 2781 ], "attacker_steam_id": [ - 2763 + 2781 ], "deleted_at": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "round": [ - 2763 + 2781 ], "time": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83518,10 +83823,10 @@ export default { 180 ], "match_map_id": [ - 4744 + 4762 ], "time": [ - 4306 + 4324 ], "__typename": [ 78 @@ -83536,19 +83841,19 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "type": [ 1185 @@ -83570,10 +83875,10 @@ export default { }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83592,10 +83897,10 @@ export default { }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83614,10 +83919,10 @@ export default { }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83625,7 +83930,7 @@ export default { }, "player_utility_stream_cursor_input": { "initial_value": [ - 3677 + 3695 ], "ordering": [ 236 @@ -83642,19 +83947,19 @@ export default { 180 ], "deleted_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 ], "time": [ - 4306 + 4324 ], "type": [ 1185 @@ -83676,10 +83981,10 @@ export default { }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83688,13 +83993,13 @@ export default { "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 3658 + 3676 ], "_set": [ - 3669 + 3687 ], "where": [ - 3656 + 3674 ], "__typename": [ 78 @@ -83713,10 +84018,10 @@ export default { }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83735,10 +84040,10 @@ export default { }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83757,10 +84062,10 @@ export default { }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83780,7 +84085,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -83800,10 +84105,10 @@ export default { }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 3692 + 3710 ], "nodes": [ - 3688 + 3706 ], "__typename": [ 78 @@ -83811,7 +84116,7 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 3691 + 3709 ], "__typename": [ 78 @@ -83819,13 +84124,13 @@ export default { }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 3704 + 3722 ], "distinct": [ 3 ], "filter": [ - 3697 + 3715 ], "predicate": [ 39 @@ -83836,13 +84141,13 @@ export default { }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 3695 + 3713 ], "count": [ 38, { "columns": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -83851,31 +84156,31 @@ export default { } ], "max": [ - 3699 + 3717 ], "min": [ - 3701 + 3719 ], "stddev": [ - 3705 + 3723 ], "stddev_pop": [ - 3707 + 3725 ], "stddev_samp": [ - 3709 + 3727 ], "sum": [ - 3713 + 3731 ], "var_pop": [ - 3715 + 3733 ], "var_samp": [ - 3717 + 3735 ], "variance": [ - 3719 + 3737 ], "__typename": [ 78 @@ -83883,37 +84188,37 @@ export default { }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 3696 + 3714 ], "count": [ - 2763 + 2781 ], "max": [ - 3700 + 3718 ], "min": [ - 3702 + 3720 ], "stddev": [ - 3706 + 3724 ], "stddev_pop": [ - 3708 + 3726 ], "stddev_samp": [ - 3710 + 3728 ], "sum": [ - 3714 + 3732 ], "var_pop": [ - 3716 + 3734 ], "var_samp": [ - 3718 + 3736 ], "variance": [ - 3720 + 3738 ], "__typename": [ 78 @@ -83921,7 +84226,7 @@ export default { }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 3698 + 3716 ], "__typename": [ 78 @@ -83955,25 +84260,25 @@ export default { }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -83981,13 +84286,13 @@ export default { }, "player_weapon_stats_v_bool_exp": { "_and": [ - 3697 + 3715 ], "_not": [ - 3697 + 3715 ], "_or": [ - 3697 + 3715 ], "first_bullet_hits": [ 39 @@ -84002,7 +84307,7 @@ export default { 39 ], "match_id": [ - 4746 + 4764 ], "shots": [ 39 @@ -84034,7 +84339,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -84066,7 +84371,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -84086,31 +84391,31 @@ export default { }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84130,7 +84435,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -84150,31 +84455,31 @@ export default { }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84182,31 +84487,31 @@ export default { }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "weapon_class": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84241,25 +84546,25 @@ export default { }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84293,25 +84598,25 @@ export default { }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84345,25 +84650,25 @@ export default { }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84371,7 +84676,7 @@ export default { }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 3712 + 3730 ], "ordering": [ 236 @@ -84394,7 +84699,7 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "shots": [ 38 @@ -84440,25 +84745,25 @@ export default { }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84492,25 +84797,25 @@ export default { }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84544,25 +84849,25 @@ export default { }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84596,25 +84901,25 @@ export default { }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 2763 + 2781 ], "first_bullet_shots": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "hits_spotted": [ - 2763 + 2781 ], "shots": [ - 2763 + 2781 ], "shots_spotted": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -84666,10 +84971,10 @@ export default { } ], "aim_weapon_stats": [ - 2860, + 2878, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -84679,19 +84984,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "aim_weapon_stats_aggregate": [ - 2861, + 2879, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -84701,19 +85006,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -84723,19 +85028,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -84745,19 +85050,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "assited_by_players": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -84767,19 +85072,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "assited_by_players_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -84789,11 +85094,11 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], @@ -84801,10 +85106,10 @@ export default { 78 ], "coach_lineups": [ - 2258, + 2276, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -84814,19 +85119,19 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "coach_lineups_aggregate": [ - 2259, + 2277, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -84836,11 +85141,11 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], @@ -84848,19 +85153,19 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_lobby_id": [ - 4744 + 4762 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -84870,19 +85175,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "damage_dealt_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -84892,19 +85197,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "damage_taken": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -84914,19 +85219,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "damage_taken_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -84936,11 +85241,11 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], @@ -84948,10 +85253,10 @@ export default { 38 ], "deaths": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -84961,19 +85266,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "deaths_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -84983,11 +85288,11 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], @@ -85039,7 +85344,7 @@ export default { } ], "elo": [ - 1634, + 1652, { "path": [ 78 @@ -85047,10 +85352,10 @@ export default { } ], "elo_history": [ - 5131, + 5139, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -85060,19 +85365,19 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "elo_history_aggregate": [ - 5132, + 5140, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -85082,11 +85387,11 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], @@ -85100,10 +85405,10 @@ export default { 78 ], "faceit_rank_history": [ - 3032, + 3050, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85113,19 +85418,19 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], "faceit_rank_history_aggregate": [ - 3033, + 3051, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -85135,11 +85440,11 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], @@ -85147,16 +85452,16 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -85166,19 +85471,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "flashed_by_players_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -85188,19 +85493,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "flashed_players": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -85210,19 +85515,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "flashed_players_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -85232,19 +85537,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "friends": [ - 2638, + 2656, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -85254,19 +85559,19 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], "friends_aggregate": [ - 2639, + 2657, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -85276,11 +85581,11 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], @@ -85288,10 +85593,10 @@ export default { 38 ], "invited_players": [ - 3980, + 3998, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -85301,19 +85606,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "invited_players_aggregate": [ - 3981, + 3999, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -85323,11 +85628,11 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], @@ -85350,10 +85655,10 @@ export default { 3 ], "kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -85363,19 +85668,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -85385,19 +85690,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "kills_by_weapons": [ - 3130, + 3148, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85407,19 +85712,19 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], "kills_by_weapons_aggregate": [ - 3131, + 3149, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -85429,11 +85734,11 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], @@ -85441,16 +85746,16 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "lobby_players": [ - 2032, + 2050, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -85460,19 +85765,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "lobby_players_aggregate": [ - 2033, + 2051, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -85482,11 +85787,11 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], @@ -85503,10 +85808,10 @@ export default { 38 ], "match_map_hltv": [ - 5236, + 5244, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85516,19 +85821,19 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "match_map_hltv_aggregate": [ - 5237, + 5245, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -85538,19 +85843,19 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "match_map_stats": [ - 3227, + 3245, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85560,19 +85865,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "match_map_stats_aggregate": [ - 3228, + 3246, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -85582,19 +85887,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "match_stats": [ - 3286, + 3304, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85604,19 +85909,19 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "match_stats_aggregate": [ - 3287, + 3305, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -85626,19 +85931,19 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -85648,22 +85953,22 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matchmaking_cooldown": [ - 4306 + 4324 ], "multi_kills": [ - 5327, + 5335, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -85673,19 +85978,19 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], "multi_kills_aggregate": [ - 5328, + 5336, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -85695,11 +86000,11 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], @@ -85710,10 +86015,10 @@ export default { 3 ], "notifications": [ - 2711, + 2729, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -85723,19 +86028,19 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "notifications_aggregate": [ - 2712, + 2730, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -85745,19 +86050,19 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -85767,19 +86072,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -85789,19 +86094,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "owned_teams": [ - 4263, + 4281, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -85811,19 +86116,19 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "owned_teams_aggregate": [ - 4264, + 4282, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -85833,16 +86138,16 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "peak_elo": [ - 1634, + 1652, { "path": [ 78 @@ -85850,10 +86155,10 @@ export default { } ], "pending_match_imports": [ - 2764, + 2782, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -85863,19 +86168,19 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "pending_match_imports_aggregate": [ - 2765, + 2783, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -85885,19 +86190,19 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "player_lineup": [ - 2213, + 2231, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -85907,19 +86212,19 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "player_lineup_aggregate": [ - 2214, + 2232, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -85929,19 +86234,19 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "player_unused_utilities": [ - 3606, + 3624, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -85951,19 +86256,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utilities_aggregate": [ - 3607, + 3625, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -85973,11 +86278,11 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], @@ -85985,10 +86290,10 @@ export default { 38 ], "premier_rank_history": [ - 3378, + 3396, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -85998,19 +86303,19 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "premier_rank_history_aggregate": [ - 3379, + 3397, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -86020,16 +86325,16 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -86041,10 +86346,10 @@ export default { 78 ], "sanctions": [ - 3419, + 3437, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -86054,19 +86359,19 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "sanctions_aggregate": [ - 3420, + 3438, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -86076,19 +86381,19 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "season_stats": [ - 3460, + 3478, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -86098,19 +86403,19 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "season_stats_aggregate": [ - 3461, + 3479, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -86120,11 +86425,11 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], @@ -86132,19 +86437,19 @@ export default { 3 ], "stats": [ - 3519 + 3537 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "team_invites": [ - 3980, + 3998, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -86154,19 +86459,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_invites_aggregate": [ - 3981, + 3999, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -86176,19 +86481,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_members": [ - 4021, + 4039, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -86198,19 +86503,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_members_aggregate": [ - 4022, + 4040, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -86220,19 +86525,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "teams": [ - 4263, + 4281, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -86242,11 +86547,11 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], @@ -86254,10 +86559,10 @@ export default { 38 ], "tournament_organizers": [ - 4354, + 4372, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86267,19 +86572,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4355, + 4373, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -86289,19 +86594,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_rosters": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86311,19 +86616,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_rosters_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -86333,19 +86638,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_trophies": [ - 4611, + 4629, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86355,19 +86660,19 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4612, + 4630, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -86377,19 +86682,19 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournaments": [ - 4698, + 4716, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -86399,19 +86704,19 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_aggregate": [ - 4699, + 4717, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -86421,19 +86726,19 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "utility_thrown": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -86443,19 +86748,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "utility_thrown_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -86465,11 +86770,11 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], @@ -86480,10 +86785,10 @@ export default { 3 ], "weapon_stats": [ - 3688, + 3706, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86493,19 +86798,19 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], "weapon_stats_aggregate": [ - 3689, + 3707, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -86515,11 +86820,11 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], @@ -86541,10 +86846,10 @@ export default { }, "players_aggregate": { "aggregate": [ - 3723 + 3741 ], "nodes": [ - 3721 + 3739 ], "__typename": [ 78 @@ -86552,13 +86857,13 @@ export default { }, "players_aggregate_fields": { "avg": [ - 3724 + 3742 ], "count": [ 38, { "columns": [ - 3736, + 3754, "[players_select_column!]" ], "distinct": [ @@ -86567,31 +86872,31 @@ export default { } ], "max": [ - 3729 + 3747 ], "min": [ - 3730 + 3748 ], "stddev": [ - 3738 + 3756 ], "stddev_pop": [ - 3739 + 3757 ], "stddev_samp": [ - 3740 + 3758 ], "sum": [ - 3743 + 3761 ], "var_pop": [ - 3746 + 3764 ], "var_samp": [ - 3747 + 3765 ], "variance": [ - 3748 + 3766 ], "__typename": [ 78 @@ -86652,13 +86957,13 @@ export default { }, "players_bool_exp": { "_and": [ - 3725 + 3743 ], "_not": [ - 3725 + 3743 ], "_or": [ - 3725 + 3743 ], "abandoned_matches": [ 120 @@ -86667,64 +86972,64 @@ export default { 113 ], "aim_weapon_stats": [ - 2869 + 2887 ], "aim_weapon_stats_aggregate": [ - 2862 + 2880 ], "assists": [ - 2912 + 2930 ], "assists_aggregate": [ - 2903 + 2921 ], "assited_by_players": [ - 2912 + 2930 ], "assited_by_players_aggregate": [ - 2903 + 2921 ], "avatar_url": [ 80 ], "coach_lineups": [ - 2267 + 2285 ], "coach_lineups_aggregate": [ - 2260 + 2278 ], "country": [ 80 ], "created_at": [ - 4307 + 4325 ], "current_lobby_id": [ - 4746 + 4764 ], "custom_avatar_url": [ 80 ], "damage_dealt": [ - 2973 + 2991 ], "damage_dealt_aggregate": [ - 2966 + 2984 ], "damage_taken": [ - 2973 + 2991 ], "damage_taken_aggregate": [ - 2966 + 2984 ], "days_since_last_ban": [ 39 ], "deaths": [ - 3129 + 3147 ], "deaths_aggregate": [ - 3120 + 3138 ], "discord_id": [ 80 @@ -86736,13 +87041,13 @@ export default { 311 ], "elo": [ - 1636 + 1654 ], "elo_history": [ - 5150 + 5158 ], "elo_history_aggregate": [ - 5133 + 5141 ], "faceit_elo": [ 39 @@ -86754,46 +87059,46 @@ export default { 80 ], "faceit_rank_history": [ - 3041 + 3059 ], "faceit_rank_history_aggregate": [ - 3034 + 3052 ], "faceit_skill_level": [ 39 ], "faceit_updated_at": [ - 4307 + 4325 ], "faceit_url": [ 80 ], "flashed_by_players": [ - 3084 + 3102 ], "flashed_by_players_aggregate": [ - 3075 + 3093 ], "flashed_players": [ - 3084 + 3102 ], "flashed_players_aggregate": [ - 3075 + 3093 ], "friends": [ - 2650 + 2668 ], "friends_aggregate": [ - 2640 + 2658 ], "game_ban_count": [ 39 ], "invited_players": [ - 3989 + 4007 ], "invited_players_aggregate": [ - 3982 + 4000 ], "is_banned": [ 4 @@ -86814,31 +87119,31 @@ export default { 4 ], "kills": [ - 3129 + 3147 ], "kills_aggregate": [ - 3120 + 3138 ], "kills_by_weapons": [ - 3139 + 3157 ], "kills_by_weapons_aggregate": [ - 3132 + 3150 ], "language": [ 80 ], "last_read_news_at": [ - 4307 + 4325 ], "last_sign_in_at": [ - 4307 + 4325 ], "lobby_players": [ - 2043 + 2061 ], "lobby_players_aggregate": [ - 2034 + 2052 ], "losses": [ 39 @@ -86853,34 +87158,34 @@ export default { 39 ], "match_map_hltv": [ - 5245 + 5253 ], "match_map_hltv_aggregate": [ - 5238 + 5246 ], "match_map_stats": [ - 3236 + 3254 ], "match_map_stats_aggregate": [ - 3229 + 3247 ], "match_stats": [ - 3295 + 3313 ], "match_stats_aggregate": [ - 3288 + 3306 ], "matches": [ - 2587 + 2605 ], "matchmaking_cooldown": [ - 4307 + 4325 ], "multi_kills": [ - 5336 + 5344 ], "multi_kills_aggregate": [ - 5329 + 5337 ], "name": [ 80 @@ -86889,55 +87194,55 @@ export default { 4 ], "notifications": [ - 2723 + 2741 ], "notifications_aggregate": [ - 2713 + 2731 ], "objectives": [ - 3328 + 3346 ], "objectives_aggregate": [ - 3321 + 3339 ], "owned_teams": [ - 4272 + 4290 ], "owned_teams_aggregate": [ - 4265 + 4283 ], "peak_elo": [ - 1636 + 1654 ], "pending_match_imports": [ - 2773 + 2791 ], "pending_match_imports_aggregate": [ - 2766 + 2784 ], "player_lineup": [ - 2224 + 2242 ], "player_lineup_aggregate": [ - 2215 + 2233 ], "player_unused_utilities": [ - 3615 + 3633 ], "player_unused_utilities_aggregate": [ - 3608 + 3626 ], "premier_rank": [ 39 ], "premier_rank_history": [ - 3387 + 3405 ], "premier_rank_history_aggregate": [ - 3380 + 3398 ], "premier_rank_updated_at": [ - 4307 + 4325 ], "profile_url": [ 80 @@ -86949,76 +87254,76 @@ export default { 80 ], "sanctions": [ - 3428 + 3446 ], "sanctions_aggregate": [ - 3421 + 3439 ], "season_stats": [ - 3479 + 3497 ], "season_stats_aggregate": [ - 3462 + 3480 ], "show_match_ready_modal": [ 4 ], "stats": [ - 3523 + 3541 ], "steam_bans_checked_at": [ - 4307 + 4325 ], "steam_id": [ 182 ], "team_invites": [ - 3989 + 4007 ], "team_invites_aggregate": [ - 3982 + 4000 ], "team_members": [ - 4032 + 4050 ], "team_members_aggregate": [ - 4023 + 4041 ], "teams": [ - 4272 + 4290 ], "total_matches": [ 39 ], "tournament_organizers": [ - 4363 + 4381 ], "tournament_organizers_aggregate": [ - 4356 + 4374 ], "tournament_rosters": [ - 4537 + 4555 ], "tournament_rosters_aggregate": [ - 4530 + 4548 ], "tournament_trophies": [ - 4622 + 4640 ], "tournament_trophies_aggregate": [ - 4613 + 4631 ], "tournaments": [ - 4709 + 4727 ], "tournaments_aggregate": [ - 4700 + 4718 ], "utility_thrown": [ - 3656 + 3674 ], "utility_thrown_aggregate": [ - 3649 + 3667 ], "vac_ban_count": [ 39 @@ -87027,10 +87332,10 @@ export default { 4 ], "weapon_stats": [ - 3697 + 3715 ], "weapon_stats_aggregate": [ - 3690 + 3708 ], "wins": [ 39 @@ -87080,40 +87385,40 @@ export default { 117 ], "aim_weapon_stats": [ - 2866 + 2884 ], "assists": [ - 2909 + 2927 ], "assited_by_players": [ - 2909 + 2927 ], "avatar_url": [ 78 ], "coach_lineups": [ - 2264 + 2282 ], "country": [ 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 ], "damage_dealt": [ - 2970 + 2988 ], "damage_taken": [ - 2970 + 2988 ], "days_since_last_ban": [ 38 ], "deaths": [ - 3126 + 3144 ], "discord_id": [ 78 @@ -87122,7 +87427,7 @@ export default { 317 ], "elo_history": [ - 5147 + 5155 ], "faceit_elo": [ 38 @@ -87134,61 +87439,61 @@ export default { 78 ], "faceit_rank_history": [ - 3038 + 3056 ], "faceit_skill_level": [ 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 ], "flashed_by_players": [ - 3081 + 3099 ], "flashed_players": [ - 3081 + 3099 ], "friends": [ - 2647 + 2665 ], "game_ban_count": [ 38 ], "invited_players": [ - 3986 + 4004 ], "kills": [ - 3126 + 3144 ], "kills_by_weapons": [ - 3136 + 3154 ], "language": [ 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "lobby_players": [ - 2040 + 2058 ], "match_map_hltv": [ - 5242 + 5250 ], "match_map_stats": [ - 3233 + 3251 ], "match_stats": [ - 3292 + 3310 ], "multi_kills": [ - 5333 + 5341 ], "name": [ 78 @@ -87197,31 +87502,31 @@ export default { 3 ], "notifications": [ - 2720 + 2738 ], "objectives": [ - 3325 + 3343 ], "owned_teams": [ - 4269 + 4287 ], "pending_match_imports": [ - 2770 + 2788 ], "player_lineup": [ - 2221 + 2239 ], "player_unused_utilities": [ - 3612 + 3630 ], "premier_rank": [ 38 ], "premier_rank_history": [ - 3384 + 3402 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -87233,43 +87538,43 @@ export default { 78 ], "sanctions": [ - 3425 + 3443 ], "season_stats": [ - 3476 + 3494 ], "show_match_ready_modal": [ 3 ], "stats": [ - 3530 + 3548 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 ], "team_invites": [ - 3986 + 4004 ], "team_members": [ - 4029 + 4047 ], "tournament_organizers": [ - 4360 + 4378 ], "tournament_rosters": [ - 4534 + 4552 ], "tournament_trophies": [ - 4619 + 4637 ], "tournaments": [ - 4706 + 4724 ], "utility_thrown": [ - 3653 + 3671 ], "vac_ban_count": [ 38 @@ -87278,7 +87583,7 @@ export default { 3 ], "weapon_stats": [ - 3694 + 3712 ], "__typename": [ 78 @@ -87292,10 +87597,10 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_lobby_id": [ - 4744 + 4762 ], "custom_avatar_url": [ 78 @@ -87319,7 +87624,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -87331,10 +87636,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "losses": [ 38 @@ -87349,7 +87654,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4306 + 4324 ], "name": [ 78 @@ -87358,7 +87663,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -87367,7 +87672,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -87402,10 +87707,10 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "current_lobby_id": [ - 4744 + 4762 ], "custom_avatar_url": [ 78 @@ -87429,7 +87734,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -87441,10 +87746,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "losses": [ 38 @@ -87459,7 +87764,7 @@ export default { 38 ], "matchmaking_cooldown": [ - 4306 + 4324 ], "name": [ 78 @@ -87468,7 +87773,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -87477,7 +87782,7 @@ export default { 78 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -87509,7 +87814,7 @@ export default { 38 ], "returning": [ - 3721 + 3739 ], "__typename": [ 78 @@ -87517,10 +87822,10 @@ export default { }, "players_obj_rel_insert_input": { "data": [ - 3728 + 3746 ], "on_conflict": [ - 3733 + 3751 ], "__typename": [ 78 @@ -87528,13 +87833,13 @@ export default { }, "players_on_conflict": { "constraint": [ - 3726 + 3744 ], "update_columns": [ - 3744 + 3762 ], "where": [ - 3725 + 3743 ], "__typename": [ 78 @@ -87545,268 +87850,268 @@ export default { 116 ], "aim_weapon_stats_aggregate": [ - 2865 + 2883 ], "assists_aggregate": [ - 2908 + 2926 ], "assited_by_players_aggregate": [ - 2908 + 2926 ], "avatar_url": [ - 2763 + 2781 ], "coach_lineups_aggregate": [ - 2263 + 2281 ], "country": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "current_lobby_id": [ - 2763 + 2781 ], "custom_avatar_url": [ - 2763 + 2781 ], "damage_dealt_aggregate": [ - 2969 + 2987 ], "damage_taken_aggregate": [ - 2969 + 2987 ], "days_since_last_ban": [ - 2763 + 2781 ], "deaths_aggregate": [ - 3125 + 3143 ], "discord_id": [ - 2763 + 2781 ], "draft_game_players_aggregate": [ 316 ], "elo": [ - 2763 + 2781 ], "elo_history_aggregate": [ - 5146 + 5154 ], "faceit_elo": [ - 2763 + 2781 ], "faceit_nickname": [ - 2763 + 2781 ], "faceit_player_id": [ - 2763 + 2781 ], "faceit_rank_history_aggregate": [ - 3037 + 3055 ], "faceit_skill_level": [ - 2763 + 2781 ], "faceit_updated_at": [ - 2763 + 2781 ], "faceit_url": [ - 2763 + 2781 ], "flashed_by_players_aggregate": [ - 3080 + 3098 ], "flashed_players_aggregate": [ - 3080 + 3098 ], "friends_aggregate": [ - 2645 + 2663 ], "game_ban_count": [ - 2763 + 2781 ], "invited_players_aggregate": [ - 3985 + 4003 ], "is_banned": [ - 2763 + 2781 ], "is_gagged": [ - 2763 + 2781 ], "is_in_another_match": [ - 2763 + 2781 ], "is_in_draft": [ - 2763 + 2781 ], "is_in_lobby": [ - 2763 + 2781 ], "is_muted": [ - 2763 + 2781 ], "kills_aggregate": [ - 3125 + 3143 ], "kills_by_weapons_aggregate": [ - 3135 + 3153 ], "language": [ - 2763 + 2781 ], "last_read_news_at": [ - 2763 + 2781 ], "last_sign_in_at": [ - 2763 + 2781 ], "lobby_players_aggregate": [ - 2039 + 2057 ], "losses": [ - 2763 + 2781 ], "losses_competitive": [ - 2763 + 2781 ], "losses_duel": [ - 2763 + 2781 ], "losses_wingman": [ - 2763 + 2781 ], "match_map_hltv_aggregate": [ - 5241 + 5249 ], "match_map_stats_aggregate": [ - 3232 + 3250 ], "match_stats_aggregate": [ - 3291 + 3309 ], "matches_aggregate": [ - 2583 + 2601 ], "matchmaking_cooldown": [ - 2763 + 2781 ], "multi_kills_aggregate": [ - 5332 + 5340 ], "name": [ - 2763 + 2781 ], "name_registered": [ - 2763 + 2781 ], "notifications_aggregate": [ - 2718 + 2736 ], "objectives_aggregate": [ - 3324 + 3342 ], "owned_teams_aggregate": [ - 4268 + 4286 ], "peak_elo": [ - 2763 + 2781 ], "pending_match_imports_aggregate": [ - 2769 + 2787 ], "player_lineup_aggregate": [ - 2220 + 2238 ], "player_unused_utilities_aggregate": [ - 3611 + 3629 ], "premier_rank": [ - 2763 + 2781 ], "premier_rank_history_aggregate": [ - 3383 + 3401 ], "premier_rank_updated_at": [ - 2763 + 2781 ], "profile_url": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "sanctions_aggregate": [ - 3424 + 3442 ], "season_stats_aggregate": [ - 3475 + 3493 ], "show_match_ready_modal": [ - 2763 + 2781 ], "stats": [ - 3532 + 3550 ], "steam_bans_checked_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_invites_aggregate": [ - 3985 + 4003 ], "team_members_aggregate": [ - 4028 + 4046 ], "teams_aggregate": [ - 4268 + 4286 ], "total_matches": [ - 2763 + 2781 ], "tournament_organizers_aggregate": [ - 4359 + 4377 ], "tournament_rosters_aggregate": [ - 4533 + 4551 ], "tournament_trophies_aggregate": [ - 4618 + 4636 ], "tournaments_aggregate": [ - 4705 + 4723 ], "utility_thrown_aggregate": [ - 3652 + 3670 ], "vac_ban_count": [ - 2763 + 2781 ], "vac_banned": [ - 2763 + 2781 ], "weapon_stats_aggregate": [ - 3693 + 3711 ], "wins": [ - 2763 + 2781 ], "wins_competitive": [ - 2763 + 2781 ], "wins_duel": [ - 2763 + 2781 ], "wins_wingman": [ - 2763 + 2781 ], "__typename": [ 78 @@ -87829,7 +88134,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -87853,7 +88158,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -87865,10 +88170,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -87880,7 +88185,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -87895,7 +88200,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -88071,7 +88376,7 @@ export default { }, "players_stream_cursor_input": { "initial_value": [ - 3742 + 3760 ], "ordering": [ 236 @@ -88088,7 +88393,7 @@ export default { 78 ], "created_at": [ - 4306 + 4324 ], "custom_avatar_url": [ 78 @@ -88112,7 +88417,7 @@ export default { 38 ], "faceit_updated_at": [ - 4306 + 4324 ], "faceit_url": [ 78 @@ -88124,10 +88429,10 @@ export default { 78 ], "last_read_news_at": [ - 4306 + 4324 ], "last_sign_in_at": [ - 4306 + 4324 ], "name": [ 78 @@ -88139,7 +88444,7 @@ export default { 38 ], "premier_rank_updated_at": [ - 4306 + 4324 ], "profile_url": [ 78 @@ -88154,7 +88459,7 @@ export default { 3 ], "steam_bans_checked_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -88225,13 +88530,13 @@ export default { "players_update_column": {}, "players_updates": { "_inc": [ - 3727 + 3745 ], "_set": [ - 3737 + 3755 ], "where": [ - 3725 + 3743 ], "__typename": [ 78 @@ -88401,7 +88706,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "runtime": [ 941 @@ -88415,10 +88720,10 @@ export default { }, "plugin_versions_aggregate": { "aggregate": [ - 3751 + 3769 ], "nodes": [ - 3749 + 3767 ], "__typename": [ 78 @@ -88426,13 +88731,13 @@ export default { }, "plugin_versions_aggregate_fields": { "avg": [ - 3752 + 3770 ], "count": [ 38, { "columns": [ - 3763, + 3781, "[plugin_versions_select_column!]" ], "distinct": [ @@ -88441,31 +88746,31 @@ export default { } ], "max": [ - 3757 + 3775 ], "min": [ - 3758 + 3776 ], "stddev": [ - 3765 + 3783 ], "stddev_pop": [ - 3766 + 3784 ], "stddev_samp": [ - 3767 + 3785 ], "sum": [ - 3770 + 3788 ], "var_pop": [ - 3773 + 3791 ], "var_samp": [ - 3774 + 3792 ], "variance": [ - 3775 + 3793 ], "__typename": [ 78 @@ -88481,19 +88786,19 @@ export default { }, "plugin_versions_bool_exp": { "_and": [ - 3753 + 3771 ], "_not": [ - 3753 + 3771 ], "_or": [ - 3753 + 3771 ], "min_game_build_id": [ 39 ], "published_at": [ - 4307 + 4325 ], "runtime": [ 942 @@ -88519,7 +88824,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "runtime": [ 941 @@ -88536,7 +88841,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "version": [ 78 @@ -88550,7 +88855,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "version": [ 78 @@ -88564,7 +88869,7 @@ export default { 38 ], "returning": [ - 3749 + 3767 ], "__typename": [ 78 @@ -88572,13 +88877,13 @@ export default { }, "plugin_versions_on_conflict": { "constraint": [ - 3754 + 3772 ], "update_columns": [ - 3771 + 3789 ], "where": [ - 3753 + 3771 ], "__typename": [ 78 @@ -88586,16 +88891,16 @@ export default { }, "plugin_versions_order_by": { "min_game_build_id": [ - 2763 + 2781 ], "published_at": [ - 2763 + 2781 ], "runtime": [ - 2763 + 2781 ], "version": [ - 2763 + 2781 ], "__typename": [ 78 @@ -88618,7 +88923,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "runtime": [ 941 @@ -88656,7 +88961,7 @@ export default { }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 3769 + 3787 ], "ordering": [ 236 @@ -88670,7 +88975,7 @@ export default { 38 ], "published_at": [ - 4306 + 4324 ], "runtime": [ 941 @@ -88693,13 +88998,13 @@ export default { "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 3755 + 3773 ], "_set": [ - 3764 + 3782 ], "where": [ - 3753 + 3771 ], "__typename": [ 78 @@ -88731,7 +89036,7 @@ export default { }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -88739,7 +89044,7 @@ export default { }, "remove_league_team_from_season_args": { "_league_team_season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -88755,7 +89060,7 @@ export default { }, "restart_league_season_args": { "_league_season_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -88763,16 +89068,16 @@ export default { }, "seasons": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "needs_rebuild": [ 3 @@ -88781,10 +89086,10 @@ export default { 38 ], "player_season_stats": [ - 3460, + 3478, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -88794,19 +89099,19 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "player_season_stats_aggregate": [ - 3461, + 3479, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -88816,16 +89121,16 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -88833,10 +89138,10 @@ export default { }, "seasons_aggregate": { "aggregate": [ - 3782 + 3800 ], "nodes": [ - 3780 + 3798 ], "__typename": [ 78 @@ -88844,13 +89149,13 @@ export default { }, "seasons_aggregate_fields": { "avg": [ - 3783 + 3801 ], "count": [ 38, { "columns": [ - 3795, + 3813, "[seasons_select_column!]" ], "distinct": [ @@ -88859,31 +89164,31 @@ export default { } ], "max": [ - 3788 + 3806 ], "min": [ - 3789 + 3807 ], "stddev": [ - 3797 + 3815 ], "stddev_pop": [ - 3798 + 3816 ], "stddev_samp": [ - 3799 + 3817 ], "sum": [ - 3802 + 3820 ], "var_pop": [ - 3805 + 3823 ], "var_samp": [ - 3806 + 3824 ], "variance": [ - 3807 + 3825 ], "__typename": [ 78 @@ -88899,25 +89204,25 @@ export default { }, "seasons_bool_exp": { "_and": [ - 3784 + 3802 ], "_not": [ - 3784 + 3802 ], "_or": [ - 3784 + 3802 ], "created_at": [ - 4307 + 4325 ], "description": [ 80 ], "ends_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "needs_rebuild": [ 4 @@ -88926,13 +89231,13 @@ export default { 39 ], "player_season_stats": [ - 3479 + 3497 ], "player_season_stats_aggregate": [ - 3462 + 3480 ], "starts_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -88949,16 +89254,16 @@ export default { }, "seasons_insert_input": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "needs_rebuild": [ 3 @@ -88967,10 +89272,10 @@ export default { 38 ], "player_season_stats": [ - 3476 + 3494 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -88978,22 +89283,22 @@ export default { }, "seasons_max_fields": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "number": [ 38 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -89001,22 +89306,22 @@ export default { }, "seasons_min_fields": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "number": [ 38 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -89027,7 +89332,7 @@ export default { 38 ], "returning": [ - 3780 + 3798 ], "__typename": [ 78 @@ -89035,10 +89340,10 @@ export default { }, "seasons_obj_rel_insert_input": { "data": [ - 3787 + 3805 ], "on_conflict": [ - 3792 + 3810 ], "__typename": [ 78 @@ -89046,13 +89351,13 @@ export default { }, "seasons_on_conflict": { "constraint": [ - 3785 + 3803 ], "update_columns": [ - 3803 + 3821 ], "where": [ - 3784 + 3802 ], "__typename": [ 78 @@ -89060,28 +89365,28 @@ export default { }, "seasons_order_by": { "created_at": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "ends_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "needs_rebuild": [ - 2763 + 2781 ], "number": [ - 2763 + 2781 ], "player_season_stats_aggregate": [ - 3475 + 3493 ], "starts_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -89089,7 +89394,7 @@ export default { }, "seasons_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -89098,16 +89403,16 @@ export default { "seasons_select_column": {}, "seasons_set_input": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "needs_rebuild": [ 3 @@ -89116,7 +89421,7 @@ export default { 38 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -89148,7 +89453,7 @@ export default { }, "seasons_stream_cursor_input": { "initial_value": [ - 3801 + 3819 ], "ordering": [ 236 @@ -89159,16 +89464,16 @@ export default { }, "seasons_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "description": [ 78 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "needs_rebuild": [ 3 @@ -89177,7 +89482,7 @@ export default { 38 ], "starts_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -89194,13 +89499,13 @@ export default { "seasons_update_column": {}, "seasons_updates": { "_inc": [ - 3786 + 3804 ], "_set": [ - 3796 + 3814 ], "where": [ - 3784 + 3802 ], "__typename": [ 78 @@ -89238,10 +89543,10 @@ export default { 78 ], "game_server_nodes": [ - 1510, + 1528, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89251,19 +89556,19 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1511, + 1529, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -89273,11 +89578,11 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], @@ -89305,10 +89610,10 @@ export default { }, "server_regions_aggregate": { "aggregate": [ - 3810 + 3828 ], "nodes": [ - 3808 + 3826 ], "__typename": [ 78 @@ -89316,13 +89621,13 @@ export default { }, "server_regions_aggregate_fields": { "avg": [ - 3811 + 3829 ], "count": [ 38, { "columns": [ - 3822, + 3840, "[server_regions_select_column!]" ], "distinct": [ @@ -89331,31 +89636,31 @@ export default { } ], "max": [ - 3815 + 3833 ], "min": [ - 3816 + 3834 ], "stddev": [ - 3824 + 3842 ], "stddev_pop": [ - 3825 + 3843 ], "stddev_samp": [ - 3826 + 3844 ], "sum": [ - 3829 + 3847 ], "var_pop": [ - 3832 + 3850 ], "var_samp": [ - 3833 + 3851 ], "variance": [ - 3834 + 3852 ], "__typename": [ 78 @@ -89374,13 +89679,13 @@ export default { }, "server_regions_bool_exp": { "_and": [ - 3812 + 3830 ], "_not": [ - 3812 + 3830 ], "_or": [ - 3812 + 3830 ], "available_server_count": [ 39 @@ -89389,10 +89694,10 @@ export default { 80 ], "game_server_nodes": [ - 1522 + 1540 ], "game_server_nodes_aggregate": [ - 1512 + 1530 ], "has_node": [ 4 @@ -89422,7 +89727,7 @@ export default { 78 ], "game_server_nodes": [ - 1519 + 1537 ], "is_lan": [ 3 @@ -89482,7 +89787,7 @@ export default { 38 ], "returning": [ - 3808 + 3826 ], "__typename": [ 78 @@ -89490,10 +89795,10 @@ export default { }, "server_regions_obj_rel_insert_input": { "data": [ - 3814 + 3832 ], "on_conflict": [ - 3819 + 3837 ], "__typename": [ 78 @@ -89501,13 +89806,13 @@ export default { }, "server_regions_on_conflict": { "constraint": [ - 3813 + 3831 ], "update_columns": [ - 3830 + 3848 ], "where": [ - 3812 + 3830 ], "__typename": [ 78 @@ -89515,31 +89820,31 @@ export default { }, "server_regions_order_by": { "available_server_count": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "game_server_nodes_aggregate": [ - 1517 + 1535 ], "has_node": [ - 2763 + 2781 ], "is_lan": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "steam_relay": [ - 2763 + 2781 ], "total_server_count": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -89606,7 +89911,7 @@ export default { }, "server_regions_stream_cursor_input": { "initial_value": [ - 3828 + 3846 ], "ordering": [ 236 @@ -89646,10 +89951,10 @@ export default { "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 3823 + 3841 ], "where": [ - 3812 + 3830 ], "__typename": [ 78 @@ -89690,7 +89995,7 @@ export default { }, "servers": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -89711,7 +90016,7 @@ export default { 78 ], "current_match": [ - 2578 + 2596 ], "enabled": [ 3 @@ -89720,7 +90025,7 @@ export default { 78 ], "game_server_node": [ - 1510 + 1528 ], "game_server_node_id": [ 78 @@ -89729,7 +90034,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_dedicated": [ 3 @@ -89738,10 +90043,10 @@ export default { 78 ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -89751,19 +90056,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_aggregate": [ - 2579, + 2597, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -89773,11 +90078,11 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], @@ -89785,7 +90090,7 @@ export default { 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_runtime": [ 941 @@ -89806,10 +90111,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "server_region": [ - 3808 + 3826 ], "steam_relay": [ 78 @@ -89821,7 +90126,7 @@ export default { 1022 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -89829,10 +90134,10 @@ export default { }, "servers_aggregate": { "aggregate": [ - 3841 + 3859 ], "nodes": [ - 3835 + 3853 ], "__typename": [ 78 @@ -89840,13 +90145,13 @@ export default { }, "servers_aggregate_bool_exp": { "bool_and": [ - 3838 + 3856 ], "bool_or": [ - 3839 + 3857 ], "count": [ - 3840 + 3858 ], "__typename": [ 78 @@ -89854,13 +90159,13 @@ export default { }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 3860 + 3878 ], "distinct": [ 3 ], "filter": [ - 3846 + 3864 ], "predicate": [ 4 @@ -89871,13 +90176,13 @@ export default { }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 3861 + 3879 ], "distinct": [ 3 ], "filter": [ - 3846 + 3864 ], "predicate": [ 4 @@ -89888,13 +90193,13 @@ export default { }, "servers_aggregate_bool_exp_count": { "arguments": [ - 3859 + 3877 ], "distinct": [ 3 ], "filter": [ - 3846 + 3864 ], "predicate": [ 39 @@ -89905,13 +90210,13 @@ export default { }, "servers_aggregate_fields": { "avg": [ - 3844 + 3862 ], "count": [ 38, { "columns": [ - 3859, + 3877, "[servers_select_column!]" ], "distinct": [ @@ -89920,31 +90225,31 @@ export default { } ], "max": [ - 3850 + 3868 ], "min": [ - 3852 + 3870 ], "stddev": [ - 3863 + 3881 ], "stddev_pop": [ - 3865 + 3883 ], "stddev_samp": [ - 3867 + 3885 ], "sum": [ - 3871 + 3889 ], "var_pop": [ - 3875 + 3893 ], "var_samp": [ - 3877 + 3895 ], "variance": [ - 3879 + 3897 ], "__typename": [ 78 @@ -89952,37 +90257,37 @@ export default { }, "servers_aggregate_order_by": { "avg": [ - 3845 + 3863 ], "count": [ - 2763 + 2781 ], "max": [ - 3851 + 3869 ], "min": [ - 3853 + 3871 ], "stddev": [ - 3864 + 3882 ], "stddev_pop": [ - 3866 + 3884 ], "stddev_samp": [ - 3868 + 3886 ], "sum": [ - 3872 + 3890 ], "var_pop": [ - 3876 + 3894 ], "var_samp": [ - 3878 + 3896 ], "variance": [ - 3880 + 3898 ], "__typename": [ 78 @@ -89990,10 +90295,10 @@ export default { }, "servers_arr_rel_insert_input": { "data": [ - 3849 + 3867 ], "on_conflict": [ - 3856 + 3874 ], "__typename": [ 78 @@ -90015,13 +90320,13 @@ export default { }, "servers_avg_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90029,16 +90334,16 @@ export default { }, "servers_bool_exp": { "_and": [ - 3846 + 3864 ], "_not": [ - 3846 + 3864 ], "_or": [ - 3846 + 3864 ], "api_password": [ - 4746 + 4764 ], "boot_status": [ 80 @@ -90059,7 +90364,7 @@ export default { 80 ], "current_match": [ - 2587 + 2605 ], "enabled": [ 4 @@ -90068,7 +90373,7 @@ export default { 80 ], "game_server_node": [ - 1522 + 1540 ], "game_server_node_id": [ 80 @@ -90077,7 +90382,7 @@ export default { 80 ], "id": [ - 4746 + 4764 ], "is_dedicated": [ 4 @@ -90086,16 +90391,16 @@ export default { 80 ], "matches": [ - 2587 + 2605 ], "matches_aggregate": [ - 2580 + 2598 ], "max_players": [ 39 ], "offline_at": [ - 4307 + 4325 ], "plugin_runtime": [ 942 @@ -90116,10 +90421,10 @@ export default { 80 ], "reserved_by_match_id": [ - 4746 + 4764 ], "server_region": [ - 3812 + 3830 ], "steam_relay": [ 80 @@ -90131,7 +90436,7 @@ export default { 1023 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -90154,7 +90459,7 @@ export default { }, "servers_insert_input": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -90169,7 +90474,7 @@ export default { 3 ], "current_match": [ - 2596 + 2614 ], "enabled": [ 3 @@ -90178,7 +90483,7 @@ export default { 78 ], "game_server_node": [ - 1534 + 1552 ], "game_server_node_id": [ 78 @@ -90187,7 +90492,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_dedicated": [ 3 @@ -90196,13 +90501,13 @@ export default { 78 ], "matches": [ - 2584 + 2602 ], "max_players": [ 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_runtime": [ 941 @@ -90223,10 +90528,10 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "server_region": [ - 3818 + 3836 ], "steam_relay": [ 78 @@ -90238,7 +90543,7 @@ export default { 1022 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -90246,7 +90551,7 @@ export default { }, "servers_max_fields": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -90273,7 +90578,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "label": [ 78 @@ -90282,7 +90587,7 @@ export default { 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_version": [ 78 @@ -90294,7 +90599,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "steam_relay": [ 78 @@ -90303,7 +90608,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -90311,58 +90616,58 @@ export default { }, "servers_max_order_by": { "api_password": [ - 2763 + 2781 ], "boot_status": [ - 2763 + 2781 ], "boot_status_detail": [ - 2763 + 2781 ], "connect_password": [ - 2763 + 2781 ], "game": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "host": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "max_players": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "plugin_version": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "reserved_by_match_id": [ - 2763 + 2781 ], "steam_relay": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90370,7 +90675,7 @@ export default { }, "servers_min_fields": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -90397,7 +90702,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "label": [ 78 @@ -90406,7 +90711,7 @@ export default { 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_version": [ 78 @@ -90418,7 +90723,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "steam_relay": [ 78 @@ -90427,7 +90732,7 @@ export default { 38 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -90435,58 +90740,58 @@ export default { }, "servers_min_order_by": { "api_password": [ - 2763 + 2781 ], "boot_status": [ - 2763 + 2781 ], "boot_status_detail": [ - 2763 + 2781 ], "connect_password": [ - 2763 + 2781 ], "game": [ - 2763 + 2781 ], "game_server_node_id": [ - 2763 + 2781 ], "host": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "max_players": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "plugin_version": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "reserved_by_match_id": [ - 2763 + 2781 ], "steam_relay": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90497,7 +90802,7 @@ export default { 38 ], "returning": [ - 3835 + 3853 ], "__typename": [ 78 @@ -90505,10 +90810,10 @@ export default { }, "servers_obj_rel_insert_input": { "data": [ - 3849 + 3867 ], "on_conflict": [ - 3856 + 3874 ], "__typename": [ 78 @@ -90516,13 +90821,13 @@ export default { }, "servers_on_conflict": { "constraint": [ - 3847 + 3865 ], "update_columns": [ - 3873 + 3891 ], "where": [ - 3846 + 3864 ], "__typename": [ 78 @@ -90530,97 +90835,97 @@ export default { }, "servers_order_by": { "api_password": [ - 2763 + 2781 ], "boot_status": [ - 2763 + 2781 ], "boot_status_detail": [ - 2763 + 2781 ], "connect_password": [ - 2763 + 2781 ], "connected": [ - 2763 + 2781 ], "connection_link": [ - 2763 + 2781 ], "connection_string": [ - 2763 + 2781 ], "current_match": [ - 2598 + 2616 ], "enabled": [ - 2763 + 2781 ], "game": [ - 2763 + 2781 ], "game_server_node": [ - 1536 + 1554 ], "game_server_node_id": [ - 2763 + 2781 ], "host": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_dedicated": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "matches_aggregate": [ - 2583 + 2601 ], "max_players": [ - 2763 + 2781 ], "offline_at": [ - 2763 + 2781 ], "plugin_runtime": [ - 2763 + 2781 ], "plugin_version": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "rcon_password": [ - 2763 + 2781 ], "rcon_status": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "reserved_by_match_id": [ - 2763 + 2781 ], "server_region": [ - 3820 + 3838 ], "steam_relay": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90628,7 +90933,7 @@ export default { }, "servers_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -90639,7 +90944,7 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -90666,7 +90971,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_dedicated": [ 3 @@ -90678,7 +90983,7 @@ export default { 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_runtime": [ 941 @@ -90699,7 +91004,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "steam_relay": [ 78 @@ -90711,7 +91016,7 @@ export default { 1022 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -90733,13 +91038,13 @@ export default { }, "servers_stddev_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90761,13 +91066,13 @@ export default { }, "servers_stddev_pop_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90789,13 +91094,13 @@ export default { }, "servers_stddev_samp_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90803,7 +91108,7 @@ export default { }, "servers_stream_cursor_input": { "initial_value": [ - 3870 + 3888 ], "ordering": [ 236 @@ -90814,7 +91119,7 @@ export default { }, "servers_stream_cursor_value_input": { "api_password": [ - 4744 + 4762 ], "boot_status": [ 78 @@ -90841,7 +91146,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_dedicated": [ 3 @@ -90853,7 +91158,7 @@ export default { 38 ], "offline_at": [ - 4306 + 4324 ], "plugin_runtime": [ 941 @@ -90874,7 +91179,7 @@ export default { 78 ], "reserved_by_match_id": [ - 4744 + 4762 ], "steam_relay": [ 78 @@ -90886,7 +91191,7 @@ export default { 1022 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -90908,13 +91213,13 @@ export default { }, "servers_sum_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90923,13 +91228,13 @@ export default { "servers_update_column": {}, "servers_updates": { "_inc": [ - 3848 + 3866 ], "_set": [ - 3862 + 3880 ], "where": [ - 3846 + 3864 ], "__typename": [ 78 @@ -90951,13 +91256,13 @@ export default { }, "servers_var_pop_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -90979,13 +91284,13 @@ export default { }, "servers_var_samp_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91007,13 +91312,13 @@ export default { }, "servers_variance_order_by": { "max_players": [ - 2763 + 2781 ], "port": [ - 2763 + 2781 ], "tv_port": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91032,10 +91337,10 @@ export default { }, "settings_aggregate": { "aggregate": [ - 3883 + 3901 ], "nodes": [ - 3881 + 3899 ], "__typename": [ 78 @@ -91046,7 +91351,7 @@ export default { 38, { "columns": [ - 3893, + 3911, "[settings_select_column!]" ], "distinct": [ @@ -91055,10 +91360,10 @@ export default { } ], "max": [ - 3887 + 3905 ], "min": [ - 3888 + 3906 ], "__typename": [ 78 @@ -91066,13 +91371,13 @@ export default { }, "settings_bool_exp": { "_and": [ - 3884 + 3902 ], "_not": [ - 3884 + 3902 ], "_or": [ - 3884 + 3902 ], "name": [ 80 @@ -91123,7 +91428,7 @@ export default { 38 ], "returning": [ - 3881 + 3899 ], "__typename": [ 78 @@ -91131,13 +91436,13 @@ export default { }, "settings_on_conflict": { "constraint": [ - 3885 + 3903 ], "update_columns": [ - 3897 + 3915 ], "where": [ - 3884 + 3902 ], "__typename": [ 78 @@ -91145,10 +91450,10 @@ export default { }, "settings_order_by": { "name": [ - 2763 + 2781 ], "value": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91176,7 +91481,7 @@ export default { }, "settings_stream_cursor_input": { "initial_value": [ - 3896 + 3914 ], "ordering": [ 236 @@ -91199,10 +91504,10 @@ export default { "settings_update_column": {}, "settings_updates": { "_set": [ - 3894 + 3912 ], "where": [ - 3884 + 3902 ], "__typename": [ 78 @@ -91211,31 +91516,31 @@ export default { "smallint": {}, "smallint_comparison_exp": { "_eq": [ - 3899 + 3917 ], "_gt": [ - 3899 + 3917 ], "_gte": [ - 3899 + 3917 ], "_in": [ - 3899 + 3917 ], "_is_null": [ 3 ], "_lt": [ - 3899 + 3917 ], "_lte": [ - 3899 + 3917 ], "_neq": [ - 3899 + 3917 ], "_nin": [ - 3899 + 3917 ], "__typename": [ 78 @@ -91243,16 +91548,16 @@ export default { }, "steam_account_claims": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "node": [ - 1510 + 1528 ], "node_id": [ 78 @@ -91261,10 +91566,10 @@ export default { 78 ], "steam_account": [ - 3925 + 3943 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91272,10 +91577,10 @@ export default { }, "steam_account_claims_aggregate": { "aggregate": [ - 3905 + 3923 ], "nodes": [ - 3901 + 3919 ], "__typename": [ 78 @@ -91283,7 +91588,7 @@ export default { }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 3904 + 3922 ], "__typename": [ 78 @@ -91291,13 +91596,13 @@ export default { }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 3919 + 3937 ], "distinct": [ 3 ], "filter": [ - 3908 + 3926 ], "predicate": [ 39 @@ -91311,7 +91616,7 @@ export default { 38, { "columns": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -91320,10 +91625,10 @@ export default { } ], "max": [ - 3911 + 3929 ], "min": [ - 3913 + 3931 ], "__typename": [ 78 @@ -91331,13 +91636,13 @@ export default { }, "steam_account_claims_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 3912 + 3930 ], "min": [ - 3914 + 3932 ], "__typename": [ 78 @@ -91345,10 +91650,10 @@ export default { }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 3910 + 3928 ], "on_conflict": [ - 3916 + 3934 ], "__typename": [ 78 @@ -91356,25 +91661,25 @@ export default { }, "steam_account_claims_bool_exp": { "_and": [ - 3908 + 3926 ], "_not": [ - 3908 + 3926 ], "_or": [ - 3908 + 3926 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "k8s_job_name": [ 80 ], "node": [ - 1522 + 1540 ], "node_id": [ 80 @@ -91383,10 +91688,10 @@ export default { 80 ], "steam_account": [ - 3929 + 3947 ], "steam_account_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -91395,16 +91700,16 @@ export default { "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 ], "node": [ - 1534 + 1552 ], "node_id": [ 78 @@ -91413,10 +91718,10 @@ export default { 78 ], "steam_account": [ - 3936 + 3954 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91424,10 +91729,10 @@ export default { }, "steam_account_claims_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 @@ -91439,7 +91744,7 @@ export default { 78 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91447,22 +91752,22 @@ export default { }, "steam_account_claims_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "node_id": [ - 2763 + 2781 ], "purpose": [ - 2763 + 2781 ], "steam_account_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91470,10 +91775,10 @@ export default { }, "steam_account_claims_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 @@ -91485,7 +91790,7 @@ export default { 78 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91493,22 +91798,22 @@ export default { }, "steam_account_claims_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "node_id": [ - 2763 + 2781 ], "purpose": [ - 2763 + 2781 ], "steam_account_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91519,7 +91824,7 @@ export default { 38 ], "returning": [ - 3901 + 3919 ], "__typename": [ 78 @@ -91527,13 +91832,13 @@ export default { }, "steam_account_claims_on_conflict": { "constraint": [ - 3909 + 3927 ], "update_columns": [ - 3923 + 3941 ], "where": [ - 3908 + 3926 ], "__typename": [ 78 @@ -91541,28 +91846,28 @@ export default { }, "steam_account_claims_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "k8s_job_name": [ - 2763 + 2781 ], "node": [ - 1536 + 1554 ], "node_id": [ - 2763 + 2781 ], "purpose": [ - 2763 + 2781 ], "steam_account": [ - 3938 + 3956 ], "steam_account_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -91570,7 +91875,7 @@ export default { }, "steam_account_claims_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91579,10 +91884,10 @@ export default { "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 @@ -91594,7 +91899,7 @@ export default { 78 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91602,7 +91907,7 @@ export default { }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 3922 + 3940 ], "ordering": [ 236 @@ -91613,10 +91918,10 @@ export default { }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "k8s_job_name": [ 78 @@ -91628,7 +91933,7 @@ export default { 78 ], "steam_account_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -91637,10 +91942,10 @@ export default { "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 3920 + 3938 ], "where": [ - 3908 + 3926 ], "__typename": [ 78 @@ -91648,10 +91953,10 @@ export default { }, "steam_accounts": { "claims": [ - 3901, + 3919, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -91661,19 +91966,19 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "claims_aggregate": [ - 3902, + 3920, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -91683,25 +91988,25 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node": [ - 1510 + 1528 ], "last_node_id": [ 78 @@ -91719,7 +92024,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -91730,10 +92035,10 @@ export default { }, "steam_accounts_aggregate": { "aggregate": [ - 3927 + 3945 ], "nodes": [ - 3925 + 3943 ], "__typename": [ 78 @@ -91741,13 +92046,13 @@ export default { }, "steam_accounts_aggregate_fields": { "avg": [ - 3928 + 3946 ], "count": [ 38, { "columns": [ - 3940, + 3958, "[steam_accounts_select_column!]" ], "distinct": [ @@ -91756,31 +92061,31 @@ export default { } ], "max": [ - 3933 + 3951 ], "min": [ - 3934 + 3952 ], "stddev": [ - 3942 + 3960 ], "stddev_pop": [ - 3943 + 3961 ], "stddev_samp": [ - 3944 + 3962 ], "sum": [ - 3947 + 3965 ], "var_pop": [ - 3950 + 3968 ], "var_samp": [ - 3951 + 3969 ], "variance": [ - 3952 + 3970 ], "__typename": [ 78 @@ -91802,31 +92107,31 @@ export default { }, "steam_accounts_bool_exp": { "_and": [ - 3929 + 3947 ], "_not": [ - 3929 + 3947 ], "_or": [ - 3929 + 3947 ], "claims": [ - 3908 + 3926 ], "claims_aggregate": [ - 3903 + 3921 ], "created_at": [ - 4307 + 4325 ], "friend_capacity": [ 39 ], "id": [ - 4746 + 4764 ], "last_node": [ - 1522 + 1540 ], "last_node_id": [ 80 @@ -91844,7 +92149,7 @@ export default { 182 ], "updated_at": [ - 4307 + 4325 ], "username": [ 80 @@ -91870,19 +92175,19 @@ export default { }, "steam_accounts_insert_input": { "claims": [ - 3907 + 3925 ], "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node": [ - 1534 + 1552 ], "last_node_id": [ 78 @@ -91900,7 +92205,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -91911,13 +92216,13 @@ export default { }, "steam_accounts_max_fields": { "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node_id": [ 78 @@ -91935,7 +92240,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -91946,13 +92251,13 @@ export default { }, "steam_accounts_min_fields": { "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node_id": [ 78 @@ -91970,7 +92275,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -91984,7 +92289,7 @@ export default { 38 ], "returning": [ - 3925 + 3943 ], "__typename": [ 78 @@ -91992,10 +92297,10 @@ export default { }, "steam_accounts_obj_rel_insert_input": { "data": [ - 3932 + 3950 ], "on_conflict": [ - 3937 + 3955 ], "__typename": [ 78 @@ -92003,13 +92308,13 @@ export default { }, "steam_accounts_on_conflict": { "constraint": [ - 3930 + 3948 ], "update_columns": [ - 3948 + 3966 ], "where": [ - 3929 + 3947 ], "__typename": [ 78 @@ -92017,40 +92322,40 @@ export default { }, "steam_accounts_order_by": { "claims_aggregate": [ - 3906 + 3924 ], "created_at": [ - 2763 + 2781 ], "friend_capacity": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "last_node": [ - 1536 + 1554 ], "last_node_id": [ - 2763 + 2781 ], "password": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "steam_level": [ - 2763 + 2781 ], "steamid64": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "username": [ - 2763 + 2781 ], "__typename": [ 78 @@ -92058,7 +92363,7 @@ export default { }, "steam_accounts_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -92067,13 +92372,13 @@ export default { "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node_id": [ 78 @@ -92091,7 +92396,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -92144,7 +92449,7 @@ export default { }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 3946 + 3964 ], "ordering": [ 236 @@ -92155,13 +92460,13 @@ export default { }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "friend_capacity": [ 38 ], "id": [ - 4744 + 4762 ], "last_node_id": [ 78 @@ -92179,7 +92484,7 @@ export default { 180 ], "updated_at": [ - 4306 + 4324 ], "username": [ 78 @@ -92205,13 +92510,13 @@ export default { "steam_accounts_update_column": {}, "steam_accounts_updates": { "_inc": [ - 3931 + 3949 ], "_set": [ - 3941 + 3959 ], "where": [ - 3929 + 3947 ], "__typename": [ 78 @@ -92261,7 +92566,7 @@ export default { }, "system_alerts": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 @@ -92270,10 +92575,10 @@ export default { 3 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "is_active": [ 3 @@ -92288,7 +92593,7 @@ export default { 1062 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92296,10 +92601,10 @@ export default { }, "system_alerts_aggregate": { "aggregate": [ - 3955 + 3973 ], "nodes": [ - 3953 + 3971 ], "__typename": [ 78 @@ -92307,13 +92612,13 @@ export default { }, "system_alerts_aggregate_fields": { "avg": [ - 3956 + 3974 ], "count": [ 38, { "columns": [ - 3967, + 3985, "[system_alerts_select_column!]" ], "distinct": [ @@ -92322,31 +92627,31 @@ export default { } ], "max": [ - 3961 + 3979 ], "min": [ - 3962 + 3980 ], "stddev": [ - 3969 + 3987 ], "stddev_pop": [ - 3970 + 3988 ], "stddev_samp": [ - 3971 + 3989 ], "sum": [ - 3974 + 3992 ], "var_pop": [ - 3977 + 3995 ], "var_samp": [ - 3978 + 3996 ], "variance": [ - 3979 + 3997 ], "__typename": [ 78 @@ -92362,16 +92667,16 @@ export default { }, "system_alerts_bool_exp": { "_and": [ - 3957 + 3975 ], "_not": [ - 3957 + 3975 ], "_or": [ - 3957 + 3975 ], "created_at": [ - 4307 + 4325 ], "created_by": [ 182 @@ -92380,10 +92685,10 @@ export default { 4 ], "expires_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "is_active": [ 4 @@ -92398,7 +92703,7 @@ export default { 1063 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -92415,7 +92720,7 @@ export default { }, "system_alerts_insert_input": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 @@ -92424,10 +92729,10 @@ export default { 3 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "is_active": [ 3 @@ -92442,7 +92747,7 @@ export default { 1062 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92450,16 +92755,16 @@ export default { }, "system_alerts_max_fields": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 @@ -92468,7 +92773,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92476,16 +92781,16 @@ export default { }, "system_alerts_min_fields": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "message": [ 78 @@ -92494,7 +92799,7 @@ export default { 78 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92505,7 +92810,7 @@ export default { 38 ], "returning": [ - 3953 + 3971 ], "__typename": [ 78 @@ -92513,13 +92818,13 @@ export default { }, "system_alerts_on_conflict": { "constraint": [ - 3958 + 3976 ], "update_columns": [ - 3975 + 3993 ], "where": [ - 3957 + 3975 ], "__typename": [ 78 @@ -92527,34 +92832,34 @@ export default { }, "system_alerts_order_by": { "created_at": [ - 2763 + 2781 ], "created_by": [ - 2763 + 2781 ], "dismissible": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_active": [ - 2763 + 2781 ], "message": [ - 2763 + 2781 ], "title": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -92562,7 +92867,7 @@ export default { }, "system_alerts_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -92571,7 +92876,7 @@ export default { "system_alerts_select_column": {}, "system_alerts_set_input": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 @@ -92580,10 +92885,10 @@ export default { 3 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "is_active": [ 3 @@ -92598,7 +92903,7 @@ export default { 1062 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92630,7 +92935,7 @@ export default { }, "system_alerts_stream_cursor_input": { "initial_value": [ - 3973 + 3991 ], "ordering": [ 236 @@ -92641,7 +92946,7 @@ export default { }, "system_alerts_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "created_by": [ 180 @@ -92650,10 +92955,10 @@ export default { 3 ], "expires_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "is_active": [ 3 @@ -92668,7 +92973,7 @@ export default { 1062 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -92685,13 +92990,13 @@ export default { "system_alerts_update_column": {}, "system_alerts_updates": { "_inc": [ - 3959 + 3977 ], "_set": [ - 3968 + 3986 ], "where": [ - 3957 + 3975 ], "__typename": [ 78 @@ -92723,28 +93028,28 @@ export default { }, "team_invites": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by": [ - 3721 + 3739 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -92752,10 +93057,10 @@ export default { }, "team_invites_aggregate": { "aggregate": [ - 3984 + 4002 ], "nodes": [ - 3980 + 3998 ], "__typename": [ 78 @@ -92763,7 +93068,7 @@ export default { }, "team_invites_aggregate_bool_exp": { "count": [ - 3983 + 4001 ], "__typename": [ 78 @@ -92771,13 +93076,13 @@ export default { }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 4001 + 4019 ], "distinct": [ 3 ], "filter": [ - 3989 + 4007 ], "predicate": [ 39 @@ -92788,13 +93093,13 @@ export default { }, "team_invites_aggregate_fields": { "avg": [ - 3987 + 4005 ], "count": [ 38, { "columns": [ - 4001, + 4019, "[team_invites_select_column!]" ], "distinct": [ @@ -92803,31 +93108,31 @@ export default { } ], "max": [ - 3993 + 4011 ], "min": [ - 3995 + 4013 ], "stddev": [ - 4003 + 4021 ], "stddev_pop": [ - 4005 + 4023 ], "stddev_samp": [ - 4007 + 4025 ], "sum": [ - 4011 + 4029 ], "var_pop": [ - 4015 + 4033 ], "var_samp": [ - 4017 + 4035 ], "variance": [ - 4019 + 4037 ], "__typename": [ 78 @@ -92835,37 +93140,37 @@ export default { }, "team_invites_aggregate_order_by": { "avg": [ - 3988 + 4006 ], "count": [ - 2763 + 2781 ], "max": [ - 3994 + 4012 ], "min": [ - 3996 + 4014 ], "stddev": [ - 4004 + 4022 ], "stddev_pop": [ - 4006 + 4024 ], "stddev_samp": [ - 4008 + 4026 ], "sum": [ - 4012 + 4030 ], "var_pop": [ - 4016 + 4034 ], "var_samp": [ - 4018 + 4036 ], "variance": [ - 4020 + 4038 ], "__typename": [ 78 @@ -92873,10 +93178,10 @@ export default { }, "team_invites_arr_rel_insert_input": { "data": [ - 3992 + 4010 ], "on_conflict": [ - 3998 + 4016 ], "__typename": [ 78 @@ -92895,10 +93200,10 @@ export default { }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -92906,37 +93211,37 @@ export default { }, "team_invites_bool_exp": { "_and": [ - 3989 + 4007 ], "_not": [ - 3989 + 4007 ], "_or": [ - 3989 + 4007 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "invited_by": [ - 3725 + 3743 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -92956,28 +93261,28 @@ export default { }, "team_invites_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by": [ - 3732 + 3750 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -92985,10 +93290,10 @@ export default { }, "team_invites_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -92997,7 +93302,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93005,19 +93310,19 @@ export default { }, "team_invites_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93025,10 +93330,10 @@ export default { }, "team_invites_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -93037,7 +93342,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93045,19 +93350,19 @@ export default { }, "team_invites_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93068,7 +93373,7 @@ export default { 38 ], "returning": [ - 3980 + 3998 ], "__typename": [ 78 @@ -93076,13 +93381,13 @@ export default { }, "team_invites_on_conflict": { "constraint": [ - 3990 + 4008 ], "update_columns": [ - 4013 + 4031 ], "where": [ - 3989 + 4007 ], "__typename": [ 78 @@ -93090,28 +93395,28 @@ export default { }, "team_invites_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by": [ - 3734 + 3752 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93119,7 +93424,7 @@ export default { }, "team_invites_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93128,10 +93433,10 @@ export default { "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -93140,7 +93445,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93159,10 +93464,10 @@ export default { }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93181,10 +93486,10 @@ export default { }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93203,10 +93508,10 @@ export default { }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93214,7 +93519,7 @@ export default { }, "team_invites_stream_cursor_input": { "initial_value": [ - 4010 + 4028 ], "ordering": [ 236 @@ -93225,10 +93530,10 @@ export default { }, "team_invites_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -93237,7 +93542,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93256,10 +93561,10 @@ export default { }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93268,13 +93573,13 @@ export default { "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 3991 + 4009 ], "_set": [ - 4002 + 4020 ], "where": [ - 3989 + 4007 ], "__typename": [ 78 @@ -93293,10 +93598,10 @@ export default { }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93315,10 +93620,10 @@ export default { }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93337,10 +93642,10 @@ export default { }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93351,7 +93656,7 @@ export default { 3 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -93366,10 +93671,10 @@ export default { 1103 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93377,10 +93682,10 @@ export default { }, "team_roster_aggregate": { "aggregate": [ - 4027 + 4045 ], "nodes": [ - 4021 + 4039 ], "__typename": [ 78 @@ -93388,13 +93693,13 @@ export default { }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 4024 + 4042 ], "bool_or": [ - 4025 + 4043 ], "count": [ - 4026 + 4044 ], "__typename": [ 78 @@ -93402,13 +93707,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 4045 + 4063 ], "distinct": [ 3 ], "filter": [ - 4032 + 4050 ], "predicate": [ 4 @@ -93419,13 +93724,13 @@ export default { }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 4046 + 4064 ], "distinct": [ 3 ], "filter": [ - 4032 + 4050 ], "predicate": [ 4 @@ -93436,13 +93741,13 @@ export default { }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 4044 + 4062 ], "distinct": [ 3 ], "filter": [ - 4032 + 4050 ], "predicate": [ 39 @@ -93453,13 +93758,13 @@ export default { }, "team_roster_aggregate_fields": { "avg": [ - 4030 + 4048 ], "count": [ 38, { "columns": [ - 4044, + 4062, "[team_roster_select_column!]" ], "distinct": [ @@ -93468,31 +93773,31 @@ export default { } ], "max": [ - 4036 + 4054 ], "min": [ - 4038 + 4056 ], "stddev": [ - 4048 + 4066 ], "stddev_pop": [ - 4050 + 4068 ], "stddev_samp": [ - 4052 + 4070 ], "sum": [ - 4056 + 4074 ], "var_pop": [ - 4060 + 4078 ], "var_samp": [ - 4062 + 4080 ], "variance": [ - 4064 + 4082 ], "__typename": [ 78 @@ -93500,37 +93805,37 @@ export default { }, "team_roster_aggregate_order_by": { "avg": [ - 4031 + 4049 ], "count": [ - 2763 + 2781 ], "max": [ - 4037 + 4055 ], "min": [ - 4039 + 4057 ], "stddev": [ - 4049 + 4067 ], "stddev_pop": [ - 4051 + 4069 ], "stddev_samp": [ - 4053 + 4071 ], "sum": [ - 4057 + 4075 ], "var_pop": [ - 4061 + 4079 ], "var_samp": [ - 4063 + 4081 ], "variance": [ - 4065 + 4083 ], "__typename": [ 78 @@ -93538,10 +93843,10 @@ export default { }, "team_roster_arr_rel_insert_input": { "data": [ - 4035 + 4053 ], "on_conflict": [ - 4041 + 4059 ], "__typename": [ 78 @@ -93557,7 +93862,7 @@ export default { }, "team_roster_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93565,19 +93870,19 @@ export default { }, "team_roster_bool_exp": { "_and": [ - 4032 + 4050 ], "_not": [ - 4032 + 4050 ], "_or": [ - 4032 + 4050 ], "coach": [ 4 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -93592,10 +93897,10 @@ export default { 1104 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -93615,7 +93920,7 @@ export default { 3 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -93630,10 +93935,10 @@ export default { 1103 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93647,7 +93952,7 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93655,13 +93960,13 @@ export default { }, "team_roster_max_order_by": { "player_steam_id": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93675,7 +93980,7 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93683,13 +93988,13 @@ export default { }, "team_roster_min_order_by": { "player_steam_id": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93700,7 +94005,7 @@ export default { 38 ], "returning": [ - 4021 + 4039 ], "__typename": [ 78 @@ -93708,13 +94013,13 @@ export default { }, "team_roster_on_conflict": { "constraint": [ - 4033 + 4051 ], "update_columns": [ - 4058 + 4076 ], "where": [ - 4032 + 4050 ], "__typename": [ 78 @@ -93722,28 +94027,28 @@ export default { }, "team_roster_order_by": { "coach": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "roster_image_url": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93754,7 +94059,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93780,7 +94085,7 @@ export default { 1103 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93796,7 +94101,7 @@ export default { }, "team_roster_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93812,7 +94117,7 @@ export default { }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93828,7 +94133,7 @@ export default { }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93836,7 +94141,7 @@ export default { }, "team_roster_stream_cursor_input": { "initial_value": [ - 4055 + 4073 ], "ordering": [ 236 @@ -93862,7 +94167,7 @@ export default { 1103 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93878,7 +94183,7 @@ export default { }, "team_roster_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93887,13 +94192,13 @@ export default { "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 4034 + 4052 ], "_set": [ - 4047 + 4065 ], "where": [ - 4032 + 4050 ], "__typename": [ 78 @@ -93909,7 +94214,7 @@ export default { }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93925,7 +94230,7 @@ export default { }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93941,7 +94246,7 @@ export default { }, "team_roster_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -93949,7 +94254,7 @@ export default { }, "team_scrim_alerts": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -93961,19 +94266,19 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -93981,10 +94286,10 @@ export default { }, "team_scrim_alerts_aggregate": { "aggregate": [ - 4068 + 4086 ], "nodes": [ - 4066 + 4084 ], "__typename": [ 78 @@ -93992,13 +94297,13 @@ export default { }, "team_scrim_alerts_aggregate_fields": { "avg": [ - 4069 + 4087 ], "count": [ 38, { "columns": [ - 4080, + 4098, "[team_scrim_alerts_select_column!]" ], "distinct": [ @@ -94007,31 +94312,31 @@ export default { } ], "max": [ - 4074 + 4092 ], "min": [ - 4075 + 4093 ], "stddev": [ - 4082 + 4100 ], "stddev_pop": [ - 4083 + 4101 ], "stddev_samp": [ - 4084 + 4102 ], "sum": [ - 4087 + 4105 ], "var_pop": [ - 4090 + 4108 ], "var_samp": [ - 4091 + 4109 ], "variance": [ - 4092 + 4110 ], "__typename": [ 78 @@ -94050,16 +94355,16 @@ export default { }, "team_scrim_alerts_bool_exp": { "_and": [ - 4070 + 4088 ], "_not": [ - 4070 + 4088 ], "_or": [ - 4070 + 4088 ], "created_at": [ - 4307 + 4325 ], "elo_max": [ 39 @@ -94071,19 +94376,19 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "last_notified_at": [ - 4307 + 4325 ], "regions": [ 79 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -94103,7 +94408,7 @@ export default { }, "team_scrim_alerts_insert_input": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -94115,19 +94420,19 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94135,7 +94440,7 @@ export default { }, "team_scrim_alerts_max_fields": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -94144,16 +94449,16 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94161,7 +94466,7 @@ export default { }, "team_scrim_alerts_min_fields": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -94170,16 +94475,16 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94190,7 +94495,7 @@ export default { 38 ], "returning": [ - 4066 + 4084 ], "__typename": [ 78 @@ -94198,13 +94503,13 @@ export default { }, "team_scrim_alerts_on_conflict": { "constraint": [ - 4071 + 4089 ], "update_columns": [ - 4088 + 4106 ], "where": [ - 4070 + 4088 ], "__typename": [ 78 @@ -94212,31 +94517,31 @@ export default { }, "team_scrim_alerts_order_by": { "created_at": [ - 2763 + 2781 ], "elo_max": [ - 2763 + 2781 ], "elo_min": [ - 2763 + 2781 ], "enabled": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "last_notified_at": [ - 2763 + 2781 ], "regions": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -94244,7 +94549,7 @@ export default { }, "team_scrim_alerts_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94253,7 +94558,7 @@ export default { "team_scrim_alerts_select_column": {}, "team_scrim_alerts_set_input": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -94265,16 +94570,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94315,7 +94620,7 @@ export default { }, "team_scrim_alerts_stream_cursor_input": { "initial_value": [ - 4086 + 4104 ], "ordering": [ 236 @@ -94326,7 +94631,7 @@ export default { }, "team_scrim_alerts_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -94338,16 +94643,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "regions": [ 78 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94367,13 +94672,13 @@ export default { "team_scrim_alerts_update_column": {}, "team_scrim_alerts_updates": { "_inc": [ - 4072 + 4090 ], "_set": [ - 4081 + 4099 ], "where": [ - 4070 + 4088 ], "__typename": [ 78 @@ -94414,25 +94719,25 @@ export default { }, "team_scrim_availability": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4306 + 4324 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94440,10 +94745,10 @@ export default { }, "team_scrim_availability_aggregate": { "aggregate": [ - 4099 + 4117 ], "nodes": [ - 4093 + 4111 ], "__typename": [ 78 @@ -94451,13 +94756,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp": { "bool_and": [ - 4096 + 4114 ], "bool_or": [ - 4097 + 4115 ], "count": [ - 4098 + 4116 ], "__typename": [ 78 @@ -94465,13 +94770,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_and": { "arguments": [ - 4114 + 4132 ], "distinct": [ 3 ], "filter": [ - 4102 + 4120 ], "predicate": [ 4 @@ -94482,13 +94787,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_bool_or": { "arguments": [ - 4115 + 4133 ], "distinct": [ 3 ], "filter": [ - 4102 + 4120 ], "predicate": [ 4 @@ -94499,13 +94804,13 @@ export default { }, "team_scrim_availability_aggregate_bool_exp_count": { "arguments": [ - 4113 + 4131 ], "distinct": [ 3 ], "filter": [ - 4102 + 4120 ], "predicate": [ 39 @@ -94519,7 +94824,7 @@ export default { 38, { "columns": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "distinct": [ @@ -94528,10 +94833,10 @@ export default { } ], "max": [ - 4105 + 4123 ], "min": [ - 4107 + 4125 ], "__typename": [ 78 @@ -94539,13 +94844,13 @@ export default { }, "team_scrim_availability_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 4106 + 4124 ], "min": [ - 4108 + 4126 ], "__typename": [ 78 @@ -94553,10 +94858,10 @@ export default { }, "team_scrim_availability_arr_rel_insert_input": { "data": [ - 4104 + 4122 ], "on_conflict": [ - 4110 + 4128 ], "__typename": [ 78 @@ -94564,34 +94869,34 @@ export default { }, "team_scrim_availability_bool_exp": { "_and": [ - 4102 + 4120 ], "_not": [ - 4102 + 4120 ], "_or": [ - 4102 + 4120 ], "created_at": [ - 4307 + 4325 ], "ends_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "recurring_weekly": [ 4 ], "starts_at": [ - 4307 + 4325 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -94600,25 +94905,25 @@ export default { "team_scrim_availability_constraint": {}, "team_scrim_availability_insert_input": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4306 + 4324 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94626,19 +94931,19 @@ export default { }, "team_scrim_availability_max_fields": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "starts_at": [ - 4306 + 4324 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94646,19 +94951,19 @@ export default { }, "team_scrim_availability_max_order_by": { "created_at": [ - 2763 + 2781 ], "ends_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "starts_at": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -94666,19 +94971,19 @@ export default { }, "team_scrim_availability_min_fields": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "starts_at": [ - 4306 + 4324 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94686,19 +94991,19 @@ export default { }, "team_scrim_availability_min_order_by": { "created_at": [ - 2763 + 2781 ], "ends_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "starts_at": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -94709,7 +95014,7 @@ export default { 38 ], "returning": [ - 4093 + 4111 ], "__typename": [ 78 @@ -94717,13 +95022,13 @@ export default { }, "team_scrim_availability_on_conflict": { "constraint": [ - 4103 + 4121 ], "update_columns": [ - 4119 + 4137 ], "where": [ - 4102 + 4120 ], "__typename": [ 78 @@ -94731,25 +95036,25 @@ export default { }, "team_scrim_availability_order_by": { "created_at": [ - 2763 + 2781 ], "ends_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "recurring_weekly": [ - 2763 + 2781 ], "starts_at": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -94757,7 +95062,7 @@ export default { }, "team_scrim_availability_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94768,22 +95073,22 @@ export default { "team_scrim_availability_select_column_team_scrim_availability_aggregate_bool_exp_bool_or_arguments_columns": {}, "team_scrim_availability_set_input": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4306 + 4324 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94791,7 +95096,7 @@ export default { }, "team_scrim_availability_stream_cursor_input": { "initial_value": [ - 4118 + 4136 ], "ordering": [ 236 @@ -94802,22 +95107,22 @@ export default { }, "team_scrim_availability_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "ends_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "recurring_weekly": [ 3 ], "starts_at": [ - 4306 + 4324 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94826,10 +95131,10 @@ export default { "team_scrim_availability_update_column": {}, "team_scrim_availability_updates": { "_set": [ - 4116 + 4134 ], "where": [ - 4102 + 4120 ], "__typename": [ 78 @@ -94837,31 +95142,31 @@ export default { }, "team_scrim_request_proposals": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by": [ - 3721 + 3739 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4263 + 4281 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request": [ - 4162 + 4180 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -94869,10 +95174,10 @@ export default { }, "team_scrim_request_proposals_aggregate": { "aggregate": [ - 4125 + 4143 ], "nodes": [ - 4121 + 4139 ], "__typename": [ 78 @@ -94880,7 +95185,7 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp": { "count": [ - 4124 + 4142 ], "__typename": [ 78 @@ -94888,13 +95193,13 @@ export default { }, "team_scrim_request_proposals_aggregate_bool_exp_count": { "arguments": [ - 4142 + 4160 ], "distinct": [ 3 ], "filter": [ - 4130 + 4148 ], "predicate": [ 39 @@ -94905,13 +95210,13 @@ export default { }, "team_scrim_request_proposals_aggregate_fields": { "avg": [ - 4128 + 4146 ], "count": [ 38, { "columns": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "distinct": [ @@ -94920,31 +95225,31 @@ export default { } ], "max": [ - 4134 + 4152 ], "min": [ - 4136 + 4154 ], "stddev": [ - 4144 + 4162 ], "stddev_pop": [ - 4146 + 4164 ], "stddev_samp": [ - 4148 + 4166 ], "sum": [ - 4152 + 4170 ], "var_pop": [ - 4156 + 4174 ], "var_samp": [ - 4158 + 4176 ], "variance": [ - 4160 + 4178 ], "__typename": [ 78 @@ -94952,37 +95257,37 @@ export default { }, "team_scrim_request_proposals_aggregate_order_by": { "avg": [ - 4129 + 4147 ], "count": [ - 2763 + 2781 ], "max": [ - 4135 + 4153 ], "min": [ - 4137 + 4155 ], "stddev": [ - 4145 + 4163 ], "stddev_pop": [ - 4147 + 4165 ], "stddev_samp": [ - 4149 + 4167 ], "sum": [ - 4153 + 4171 ], "var_pop": [ - 4157 + 4175 ], "var_samp": [ - 4159 + 4177 ], "variance": [ - 4161 + 4179 ], "__typename": [ 78 @@ -94990,10 +95295,10 @@ export default { }, "team_scrim_request_proposals_arr_rel_insert_input": { "data": [ - 4133 + 4151 ], "on_conflict": [ - 4139 + 4157 ], "__typename": [ 78 @@ -95009,7 +95314,7 @@ export default { }, "team_scrim_request_proposals_avg_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95017,40 +95322,40 @@ export default { }, "team_scrim_request_proposals_bool_exp": { "_and": [ - 4130 + 4148 ], "_not": [ - 4130 + 4148 ], "_or": [ - 4130 + 4148 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "proposed_by": [ - 3725 + 3743 ], "proposed_by_steam_id": [ 182 ], "proposed_by_team": [ - 4272 + 4290 ], "proposed_by_team_id": [ - 4746 + 4764 ], "proposed_scheduled_at": [ - 4307 + 4325 ], "request": [ - 4173 + 4191 ], "request_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -95067,31 +95372,31 @@ export default { }, "team_scrim_request_proposals_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by": [ - 3732 + 3750 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team": [ - 4281 + 4299 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request": [ - 4182 + 4200 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95099,22 +95404,22 @@ export default { }, "team_scrim_request_proposals_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95122,22 +95427,22 @@ export default { }, "team_scrim_request_proposals_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_by_team_id": [ - 2763 + 2781 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "request_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95145,22 +95450,22 @@ export default { }, "team_scrim_request_proposals_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95168,22 +95473,22 @@ export default { }, "team_scrim_request_proposals_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_by_team_id": [ - 2763 + 2781 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "request_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95194,7 +95499,7 @@ export default { 38 ], "returning": [ - 4121 + 4139 ], "__typename": [ 78 @@ -95202,13 +95507,13 @@ export default { }, "team_scrim_request_proposals_on_conflict": { "constraint": [ - 4131 + 4149 ], "update_columns": [ - 4154 + 4172 ], "where": [ - 4130 + 4148 ], "__typename": [ 78 @@ -95216,31 +95521,31 @@ export default { }, "team_scrim_request_proposals_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "proposed_by": [ - 3734 + 3752 ], "proposed_by_steam_id": [ - 2763 + 2781 ], "proposed_by_team": [ - 4283 + 4301 ], "proposed_by_team_id": [ - 2763 + 2781 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "request": [ - 4184 + 4202 ], "request_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95248,7 +95553,7 @@ export default { }, "team_scrim_request_proposals_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95257,22 +95562,22 @@ export default { "team_scrim_request_proposals_select_column": {}, "team_scrim_request_proposals_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95288,7 +95593,7 @@ export default { }, "team_scrim_request_proposals_stddev_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95304,7 +95609,7 @@ export default { }, "team_scrim_request_proposals_stddev_pop_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95320,7 +95625,7 @@ export default { }, "team_scrim_request_proposals_stddev_samp_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95328,7 +95633,7 @@ export default { }, "team_scrim_request_proposals_stream_cursor_input": { "initial_value": [ - 4151 + 4169 ], "ordering": [ 236 @@ -95339,22 +95644,22 @@ export default { }, "team_scrim_request_proposals_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "proposed_by_steam_id": [ 180 ], "proposed_by_team_id": [ - 4744 + 4762 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "request_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95370,7 +95675,7 @@ export default { }, "team_scrim_request_proposals_sum_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95379,13 +95684,13 @@ export default { "team_scrim_request_proposals_update_column": {}, "team_scrim_request_proposals_updates": { "_inc": [ - 4132 + 4150 ], "_set": [ - 4143 + 4161 ], "where": [ - 4130 + 4148 ], "__typename": [ 78 @@ -95401,7 +95706,7 @@ export default { }, "team_scrim_request_proposals_var_pop_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95417,7 +95722,7 @@ export default { }, "team_scrim_request_proposals_var_samp_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95433,7 +95738,7 @@ export default { }, "team_scrim_request_proposals_variance_order_by": { "proposed_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95444,55 +95749,55 @@ export default { 3 ], "awaiting_team": [ - 4263 + 4281 ], "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team": [ - 4263 + 4281 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_options": [ - 2458 + 2476 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposals": [ - 4121, + 4139, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95502,19 +95807,19 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "proposals_aggregate": [ - 4122, + 4140, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -95524,40 +95829,40 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 ], "requested_by": [ - 3721 + 3739 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4306 + 4324 ], "status": [ 1002 ], "to_team": [ - 4263 + 4281 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95565,10 +95870,10 @@ export default { }, "team_scrim_requests_aggregate": { "aggregate": [ - 4168 + 4186 ], "nodes": [ - 4162 + 4180 ], "__typename": [ 78 @@ -95576,13 +95881,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp": { "bool_and": [ - 4165 + 4183 ], "bool_or": [ - 4166 + 4184 ], "count": [ - 4167 + 4185 ], "__typename": [ 78 @@ -95590,13 +95895,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_and": { "arguments": [ - 4187 + 4205 ], "distinct": [ 3 ], "filter": [ - 4173 + 4191 ], "predicate": [ 4 @@ -95607,13 +95912,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_bool_or": { "arguments": [ - 4188 + 4206 ], "distinct": [ 3 ], "filter": [ - 4173 + 4191 ], "predicate": [ 4 @@ -95624,13 +95929,13 @@ export default { }, "team_scrim_requests_aggregate_bool_exp_count": { "arguments": [ - 4186 + 4204 ], "distinct": [ 3 ], "filter": [ - 4173 + 4191 ], "predicate": [ 39 @@ -95641,13 +95946,13 @@ export default { }, "team_scrim_requests_aggregate_fields": { "avg": [ - 4171 + 4189 ], "count": [ 38, { "columns": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "distinct": [ @@ -95656,31 +95961,31 @@ export default { } ], "max": [ - 4177 + 4195 ], "min": [ - 4179 + 4197 ], "stddev": [ - 4190 + 4208 ], "stddev_pop": [ - 4192 + 4210 ], "stddev_samp": [ - 4194 + 4212 ], "sum": [ - 4198 + 4216 ], "var_pop": [ - 4202 + 4220 ], "var_samp": [ - 4204 + 4222 ], "variance": [ - 4206 + 4224 ], "__typename": [ 78 @@ -95688,37 +95993,37 @@ export default { }, "team_scrim_requests_aggregate_order_by": { "avg": [ - 4172 + 4190 ], "count": [ - 2763 + 2781 ], "max": [ - 4178 + 4196 ], "min": [ - 4180 + 4198 ], "stddev": [ - 4191 + 4209 ], "stddev_pop": [ - 4193 + 4211 ], "stddev_samp": [ - 4195 + 4213 ], "sum": [ - 4199 + 4217 ], "var_pop": [ - 4203 + 4221 ], "var_samp": [ - 4205 + 4223 ], "variance": [ - 4207 + 4225 ], "__typename": [ 78 @@ -95726,10 +96031,10 @@ export default { }, "team_scrim_requests_arr_rel_insert_input": { "data": [ - 4176 + 4194 ], "on_conflict": [ - 4183 + 4201 ], "__typename": [ 78 @@ -95745,7 +96050,7 @@ export default { }, "team_scrim_requests_avg_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -95753,94 +96058,94 @@ export default { }, "team_scrim_requests_bool_exp": { "_and": [ - 4173 + 4191 ], "_not": [ - 4173 + 4191 ], "_or": [ - 4173 + 4191 ], "auto_generated": [ 4 ], "awaiting_team": [ - 4272 + 4290 ], "awaiting_team_id": [ - 4746 + 4764 ], "canceled_by_team_id": [ - 4746 + 4764 ], "canceled_late": [ 4 ], "created_at": [ - 4307 + 4325 ], "expires_at": [ - 4307 + 4325 ], "from_team": [ - 4272 + 4290 ], "from_team_checked_in": [ 4 ], "from_team_id": [ - 4746 + 4764 ], "id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_options": [ - 2462 + 2480 ], "match_options_id": [ - 4746 + 4764 ], "match_outcome": [ 80 ], "proposals": [ - 4130 + 4148 ], "proposals_aggregate": [ - 4123 + 4141 ], "proposed_scheduled_at": [ - 4307 + 4325 ], "region": [ 80 ], "requested_by": [ - 3725 + 3743 ], "requested_by_steam_id": [ 182 ], "responded_at": [ - 4307 + 4325 ], "status": [ 1003 ], "to_team": [ - 4272 + 4290 ], "to_team_checked_in": [ 4 ], "to_team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -95860,79 +96165,79 @@ export default { 3 ], "awaiting_team": [ - 4281 + 4299 ], "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team": [ - 4281 + 4299 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_options": [ - 2469 + 2487 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposals": [ - 4127 + 4145 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 ], "requested_by": [ - 3732 + 3750 ], "requested_by_steam_id": [ 180 ], "responded_at": [ - 4306 + 4324 ], "status": [ 1002 ], "to_team": [ - 4281 + 4299 ], "to_team_checked_in": [ 3 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95940,34 +96245,34 @@ export default { }, "team_scrim_requests_max_fields": { "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 @@ -95976,10 +96281,10 @@ export default { 180 ], "responded_at": [ - 4306 + 4324 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -95987,46 +96292,46 @@ export default { }, "team_scrim_requests_max_order_by": { "awaiting_team_id": [ - 2763 + 2781 ], "canceled_by_team_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "from_team_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "match_outcome": [ - 2763 + 2781 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "requested_by_steam_id": [ - 2763 + 2781 ], "responded_at": [ - 2763 + 2781 ], "to_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96034,34 +96339,34 @@ export default { }, "team_scrim_requests_min_fields": { "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 @@ -96070,10 +96375,10 @@ export default { 180 ], "responded_at": [ - 4306 + 4324 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -96081,46 +96386,46 @@ export default { }, "team_scrim_requests_min_order_by": { "awaiting_team_id": [ - 2763 + 2781 ], "canceled_by_team_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "from_team_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "match_outcome": [ - 2763 + 2781 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "requested_by_steam_id": [ - 2763 + 2781 ], "responded_at": [ - 2763 + 2781 ], "to_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96131,7 +96436,7 @@ export default { 38 ], "returning": [ - 4162 + 4180 ], "__typename": [ 78 @@ -96139,10 +96444,10 @@ export default { }, "team_scrim_requests_obj_rel_insert_input": { "data": [ - 4176 + 4194 ], "on_conflict": [ - 4183 + 4201 ], "__typename": [ 78 @@ -96150,13 +96455,13 @@ export default { }, "team_scrim_requests_on_conflict": { "constraint": [ - 4174 + 4192 ], "update_columns": [ - 4200 + 4218 ], "where": [ - 4173 + 4191 ], "__typename": [ 78 @@ -96164,82 +96469,82 @@ export default { }, "team_scrim_requests_order_by": { "auto_generated": [ - 2763 + 2781 ], "awaiting_team": [ - 4283 + 4301 ], "awaiting_team_id": [ - 2763 + 2781 ], "canceled_by_team_id": [ - 2763 + 2781 ], "canceled_late": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "expires_at": [ - 2763 + 2781 ], "from_team": [ - 4283 + 4301 ], "from_team_checked_in": [ - 2763 + 2781 ], "from_team_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_options": [ - 2471 + 2489 ], "match_options_id": [ - 2763 + 2781 ], "match_outcome": [ - 2763 + 2781 ], "proposals_aggregate": [ - 4126 + 4144 ], "proposed_scheduled_at": [ - 2763 + 2781 ], "region": [ - 2763 + 2781 ], "requested_by": [ - 3734 + 3752 ], "requested_by_steam_id": [ - 2763 + 2781 ], "responded_at": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "to_team": [ - 4283 + 4301 ], "to_team_checked_in": [ - 2763 + 2781 ], "to_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96247,7 +96552,7 @@ export default { }, "team_scrim_requests_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -96261,40 +96566,40 @@ export default { 3 ], "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 @@ -96303,7 +96608,7 @@ export default { 180 ], "responded_at": [ - 4306 + 4324 ], "status": [ 1002 @@ -96312,7 +96617,7 @@ export default { 3 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -96328,7 +96633,7 @@ export default { }, "team_scrim_requests_stddev_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96344,7 +96649,7 @@ export default { }, "team_scrim_requests_stddev_pop_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96360,7 +96665,7 @@ export default { }, "team_scrim_requests_stddev_samp_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96368,7 +96673,7 @@ export default { }, "team_scrim_requests_stream_cursor_input": { "initial_value": [ - 4197 + 4215 ], "ordering": [ 236 @@ -96382,40 +96687,40 @@ export default { 3 ], "awaiting_team_id": [ - 4744 + 4762 ], "canceled_by_team_id": [ - 4744 + 4762 ], "canceled_late": [ 3 ], "created_at": [ - 4306 + 4324 ], "expires_at": [ - 4306 + 4324 ], "from_team_checked_in": [ 3 ], "from_team_id": [ - 4744 + 4762 ], "id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "match_outcome": [ 78 ], "proposed_scheduled_at": [ - 4306 + 4324 ], "region": [ 78 @@ -96424,7 +96729,7 @@ export default { 180 ], "responded_at": [ - 4306 + 4324 ], "status": [ 1002 @@ -96433,7 +96738,7 @@ export default { 3 ], "to_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -96449,7 +96754,7 @@ export default { }, "team_scrim_requests_sum_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96458,13 +96763,13 @@ export default { "team_scrim_requests_update_column": {}, "team_scrim_requests_updates": { "_inc": [ - 4175 + 4193 ], "_set": [ - 4189 + 4207 ], "where": [ - 4173 + 4191 ], "__typename": [ 78 @@ -96480,7 +96785,7 @@ export default { }, "team_scrim_requests_var_pop_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96496,7 +96801,7 @@ export default { }, "team_scrim_requests_var_samp_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96512,7 +96817,7 @@ export default { }, "team_scrim_requests_variance_order_by": { "requested_by_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96523,7 +96828,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96535,10 +96840,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96547,13 +96852,13 @@ export default { 78 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -96561,10 +96866,10 @@ export default { }, "team_scrim_settings_aggregate": { "aggregate": [ - 4210 + 4228 ], "nodes": [ - 4208 + 4226 ], "__typename": [ 78 @@ -96572,13 +96877,13 @@ export default { }, "team_scrim_settings_aggregate_fields": { "avg": [ - 4211 + 4229 ], "count": [ 38, { "columns": [ - 4223, + 4241, "[team_scrim_settings_select_column!]" ], "distinct": [ @@ -96587,31 +96892,31 @@ export default { } ], "max": [ - 4216 + 4234 ], "min": [ - 4217 + 4235 ], "stddev": [ - 4225 + 4243 ], "stddev_pop": [ - 4226 + 4244 ], "stddev_samp": [ - 4227 + 4245 ], "sum": [ - 4230 + 4248 ], "var_pop": [ - 4233 + 4251 ], "var_samp": [ - 4234 + 4252 ], "variance": [ - 4235 + 4253 ], "__typename": [ 78 @@ -96630,19 +96935,19 @@ export default { }, "team_scrim_settings_bool_exp": { "_and": [ - 4212 + 4230 ], "_not": [ - 4212 + 4230 ], "_or": [ - 4212 + 4230 ], "allow_outside_availability": [ 4 ], "created_at": [ - 4307 + 4325 ], "elo_max": [ 39 @@ -96654,10 +96959,10 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "map_ids": [ - 4745 + 4763 ], "notes": [ 80 @@ -96666,13 +96971,13 @@ export default { 79 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -96695,7 +97000,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96707,10 +97012,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96719,13 +97024,13 @@ export default { 78 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -96733,7 +97038,7 @@ export default { }, "team_scrim_settings_max_fields": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96742,10 +97047,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96754,10 +97059,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -96765,7 +97070,7 @@ export default { }, "team_scrim_settings_min_fields": { "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96774,10 +97079,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96786,10 +97091,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -96800,7 +97105,7 @@ export default { 38 ], "returning": [ - 4208 + 4226 ], "__typename": [ 78 @@ -96808,10 +97113,10 @@ export default { }, "team_scrim_settings_obj_rel_insert_input": { "data": [ - 4215 + 4233 ], "on_conflict": [ - 4220 + 4238 ], "__typename": [ 78 @@ -96819,13 +97124,13 @@ export default { }, "team_scrim_settings_on_conflict": { "constraint": [ - 4213 + 4231 ], "update_columns": [ - 4231 + 4249 ], "where": [ - 4212 + 4230 ], "__typename": [ 78 @@ -96833,40 +97138,40 @@ export default { }, "team_scrim_settings_order_by": { "allow_outside_availability": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "elo_max": [ - 2763 + 2781 ], "elo_min": [ - 2763 + 2781 ], "enabled": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "map_ids": [ - 2763 + 2781 ], "notes": [ - 2763 + 2781 ], "regions": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -96874,7 +97179,7 @@ export default { }, "team_scrim_settings_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -96886,7 +97191,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96898,10 +97203,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96910,10 +97215,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -96954,7 +97259,7 @@ export default { }, "team_scrim_settings_stream_cursor_input": { "initial_value": [ - 4229 + 4247 ], "ordering": [ 236 @@ -96968,7 +97273,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "elo_max": [ 38 @@ -96980,10 +97285,10 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "map_ids": [ - 4744 + 4762 ], "notes": [ 78 @@ -96992,10 +97297,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -97015,13 +97320,13 @@ export default { "team_scrim_settings_update_column": {}, "team_scrim_settings_updates": { "_inc": [ - 4214 + 4232 ], "_set": [ - 4224 + 4242 ], "where": [ - 4212 + 4230 ], "__typename": [ 78 @@ -97062,16 +97367,16 @@ export default { }, "team_suggestions": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97088,10 +97393,10 @@ export default { }, "team_suggestions_aggregate": { "aggregate": [ - 4238 + 4256 ], "nodes": [ - 4236 + 4254 ], "__typename": [ 78 @@ -97099,13 +97404,13 @@ export default { }, "team_suggestions_aggregate_fields": { "avg": [ - 4239 + 4257 ], "count": [ 38, { "columns": [ - 4250, + 4268, "[team_suggestions_select_column!]" ], "distinct": [ @@ -97114,31 +97419,31 @@ export default { } ], "max": [ - 4244 + 4262 ], "min": [ - 4245 + 4263 ], "stddev": [ - 4252 + 4270 ], "stddev_pop": [ - 4253 + 4271 ], "stddev_samp": [ - 4254 + 4272 ], "sum": [ - 4257 + 4275 ], "var_pop": [ - 4260 + 4278 ], "var_samp": [ - 4261 + 4279 ], "variance": [ - 4262 + 4280 ], "__typename": [ 78 @@ -97154,25 +97459,25 @@ export default { }, "team_suggestions_bool_exp": { "_and": [ - 4240 + 4258 ], "_not": [ - 4240 + 4258 ], "_or": [ - 4240 + 4258 ], "created_at": [ - 4307 + 4325 ], "group_hash": [ 80 ], "id": [ - 4746 + 4764 ], "last_notified_at": [ - 4307 + 4325 ], "member_steam_ids": [ 181 @@ -97198,16 +97503,16 @@ export default { }, "team_suggestions_insert_input": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97224,16 +97529,16 @@ export default { }, "team_suggestions_max_fields": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97250,16 +97555,16 @@ export default { }, "team_suggestions_min_fields": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97279,7 +97584,7 @@ export default { 38 ], "returning": [ - 4236 + 4254 ], "__typename": [ 78 @@ -97287,13 +97592,13 @@ export default { }, "team_suggestions_on_conflict": { "constraint": [ - 4241 + 4259 ], "update_columns": [ - 4258 + 4276 ], "where": [ - 4240 + 4258 ], "__typename": [ 78 @@ -97301,25 +97606,25 @@ export default { }, "team_suggestions_order_by": { "created_at": [ - 2763 + 2781 ], "group_hash": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "last_notified_at": [ - 2763 + 2781 ], "member_steam_ids": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "together_count": [ - 2763 + 2781 ], "__typename": [ 78 @@ -97327,7 +97632,7 @@ export default { }, "team_suggestions_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -97336,16 +97641,16 @@ export default { "team_suggestions_select_column": {}, "team_suggestions_set_input": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97386,7 +97691,7 @@ export default { }, "team_suggestions_stream_cursor_input": { "initial_value": [ - 4256 + 4274 ], "ordering": [ 236 @@ -97397,16 +97702,16 @@ export default { }, "team_suggestions_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "group_hash": [ 78 ], "id": [ - 4744 + 4762 ], "last_notified_at": [ - 4306 + 4324 ], "member_steam_ids": [ 180 @@ -97432,13 +97737,13 @@ export default { "team_suggestions_update_column": {}, "team_suggestions_updates": { "_inc": [ - 4242 + 4260 ], "_set": [ - 4251 + 4269 ], "where": [ - 4240 + 4258 ], "__typename": [ 78 @@ -97485,19 +97790,19 @@ export default { 3 ], "captain": [ - 3721 + 3739 ], "captain_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "invites": [ - 3980, + 3998, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -97507,19 +97812,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "invites_aggregate": [ - 3981, + 3999, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -97529,19 +97834,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "match_lineups": [ - 2258, + 2276, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -97551,19 +97856,19 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "match_lineups_aggregate": [ - 2259, + 2277, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -97573,19 +97878,19 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -97595,11 +97900,11 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], @@ -97607,25 +97912,25 @@ export default { 78 ], "owner": [ - 3721 + 3739 ], "owner_steam_id": [ 180 ], "ranks": [ - 5438 + 5446 ], "reputation": [ - 5458 + 5466 ], "role": [ 78 ], "roster": [ - 4021, + 4039, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -97635,19 +97940,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "roster_aggregate": [ - 4022, + 4040, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -97657,19 +97962,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "scrim_availability": [ - 4093, + 4111, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -97679,19 +97984,19 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "scrim_availability_aggregate": [ - 4094, + 4112, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -97701,25 +98006,25 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "scrim_settings": [ - 4208 + 4226 ], "short_name": [ 78 ], "tournament_teams": [ - 4569, + 4587, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -97729,19 +98034,19 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "tournament_teams_aggregate": [ - 4570, + 4588, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -97751,11 +98056,11 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], @@ -97765,10 +98070,10 @@ export default { }, "teams_aggregate": { "aggregate": [ - 4267 + 4285 ], "nodes": [ - 4263 + 4281 ], "__typename": [ 78 @@ -97776,7 +98081,7 @@ export default { }, "teams_aggregate_bool_exp": { "count": [ - 4266 + 4284 ], "__typename": [ 78 @@ -97784,13 +98089,13 @@ export default { }, "teams_aggregate_bool_exp_count": { "arguments": [ - 4285 + 4303 ], "distinct": [ 3 ], "filter": [ - 4272 + 4290 ], "predicate": [ 39 @@ -97801,13 +98106,13 @@ export default { }, "teams_aggregate_fields": { "avg": [ - 4270 + 4288 ], "count": [ 38, { "columns": [ - 4285, + 4303, "[teams_select_column!]" ], "distinct": [ @@ -97816,31 +98121,31 @@ export default { } ], "max": [ - 4276 + 4294 ], "min": [ - 4278 + 4296 ], "stddev": [ - 4287 + 4305 ], "stddev_pop": [ - 4289 + 4307 ], "stddev_samp": [ - 4291 + 4309 ], "sum": [ - 4295 + 4313 ], "var_pop": [ - 4299 + 4317 ], "var_samp": [ - 4301 + 4319 ], "variance": [ - 4303 + 4321 ], "__typename": [ 78 @@ -97848,37 +98153,37 @@ export default { }, "teams_aggregate_order_by": { "avg": [ - 4271 + 4289 ], "count": [ - 2763 + 2781 ], "max": [ - 4277 + 4295 ], "min": [ - 4279 + 4297 ], "stddev": [ - 4288 + 4306 ], "stddev_pop": [ - 4290 + 4308 ], "stddev_samp": [ - 4292 + 4310 ], "sum": [ - 4296 + 4314 ], "var_pop": [ - 4300 + 4318 ], "var_samp": [ - 4302 + 4320 ], "variance": [ - 4304 + 4322 ], "__typename": [ 78 @@ -97886,10 +98191,10 @@ export default { }, "teams_arr_rel_insert_input": { "data": [ - 4275 + 4293 ], "on_conflict": [ - 4282 + 4300 ], "__typename": [ 78 @@ -97908,10 +98213,10 @@ export default { }, "teams_avg_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -97919,13 +98224,13 @@ export default { }, "teams_bool_exp": { "_and": [ - 4272 + 4290 ], "_not": [ - 4272 + 4290 ], "_or": [ - 4272 + 4290 ], "avatar_url": [ 80 @@ -97943,70 +98248,70 @@ export default { 4 ], "captain": [ - 3725 + 3743 ], "captain_steam_id": [ 182 ], "id": [ - 4746 + 4764 ], "invites": [ - 3989 + 4007 ], "invites_aggregate": [ - 3982 + 4000 ], "match_lineups": [ - 2267 + 2285 ], "match_lineups_aggregate": [ - 2260 + 2278 ], "matches": [ - 2587 + 2605 ], "name": [ 80 ], "owner": [ - 3725 + 3743 ], "owner_steam_id": [ 182 ], "ranks": [ - 5442 + 5450 ], "reputation": [ - 5462 + 5470 ], "role": [ 80 ], "roster": [ - 4032 + 4050 ], "roster_aggregate": [ - 4023 + 4041 ], "scrim_availability": [ - 4102 + 4120 ], "scrim_availability_aggregate": [ - 4095 + 4113 ], "scrim_settings": [ - 4212 + 4230 ], "short_name": [ 80 ], "tournament_teams": [ - 4578 + 4596 ], "tournament_teams_aggregate": [ - 4571 + 4589 ], "__typename": [ 78 @@ -98029,49 +98334,49 @@ export default { 78 ], "captain": [ - 3732 + 3750 ], "captain_steam_id": [ 180 ], "id": [ - 4744 + 4762 ], "invites": [ - 3986 + 4004 ], "match_lineups": [ - 2264 + 2282 ], "name": [ 78 ], "owner": [ - 3732 + 3750 ], "owner_steam_id": [ 180 ], "ranks": [ - 5446 + 5454 ], "reputation": [ - 5466 + 5474 ], "roster": [ - 4029 + 4047 ], "scrim_availability": [ - 4101 + 4119 ], "scrim_settings": [ - 4219 + 4237 ], "short_name": [ 78 ], "tournament_teams": [ - 4575 + 4593 ], "__typename": [ 78 @@ -98085,7 +98390,7 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -98105,22 +98410,22 @@ export default { }, "teams_max_order_by": { "avatar_url": [ - 2763 + 2781 ], "captain_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "short_name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98134,7 +98439,7 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -98154,22 +98459,22 @@ export default { }, "teams_min_order_by": { "avatar_url": [ - 2763 + 2781 ], "captain_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "short_name": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98180,7 +98485,7 @@ export default { 38 ], "returning": [ - 4263 + 4281 ], "__typename": [ 78 @@ -98188,10 +98493,10 @@ export default { }, "teams_obj_rel_insert_input": { "data": [ - 4275 + 4293 ], "on_conflict": [ - 4282 + 4300 ], "__typename": [ 78 @@ -98199,13 +98504,13 @@ export default { }, "teams_on_conflict": { "constraint": [ - 4273 + 4291 ], "update_columns": [ - 4297 + 4315 ], "where": [ - 4272 + 4290 ], "__typename": [ 78 @@ -98213,70 +98518,70 @@ export default { }, "teams_order_by": { "avatar_url": [ - 2763 + 2781 ], "can_change_role": [ - 2763 + 2781 ], "can_invite": [ - 2763 + 2781 ], "can_manage_scrims": [ - 2763 + 2781 ], "can_remove": [ - 2763 + 2781 ], "captain": [ - 3734 + 3752 ], "captain_steam_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invites_aggregate": [ - 3985 + 4003 ], "match_lineups_aggregate": [ - 2263 + 2281 ], "matches_aggregate": [ - 2583 + 2601 ], "name": [ - 2763 + 2781 ], "owner": [ - 3734 + 3752 ], "owner_steam_id": [ - 2763 + 2781 ], "ranks": [ - 5447 + 5455 ], "reputation": [ - 5467 + 5475 ], "role": [ - 2763 + 2781 ], "roster_aggregate": [ - 4028 + 4046 ], "scrim_availability_aggregate": [ - 4100 + 4118 ], "scrim_settings": [ - 4221 + 4239 ], "short_name": [ - 2763 + 2781 ], "tournament_teams_aggregate": [ - 4574 + 4592 ], "__typename": [ 78 @@ -98284,7 +98589,7 @@ export default { }, "teams_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -98299,7 +98604,7 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -98327,10 +98632,10 @@ export default { }, "teams_stddev_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98349,10 +98654,10 @@ export default { }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98371,10 +98676,10 @@ export default { }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98382,7 +98687,7 @@ export default { }, "teams_stream_cursor_input": { "initial_value": [ - 4294 + 4312 ], "ordering": [ 236 @@ -98399,7 +98704,7 @@ export default { 180 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -98427,10 +98732,10 @@ export default { }, "teams_sum_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98439,13 +98744,13 @@ export default { "teams_update_column": {}, "teams_updates": { "_inc": [ - 4274 + 4292 ], "_set": [ - 4286 + 4304 ], "where": [ - 4272 + 4290 ], "__typename": [ 78 @@ -98464,10 +98769,10 @@ export default { }, "teams_var_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98486,10 +98791,10 @@ export default { }, "teams_var_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98508,10 +98813,10 @@ export default { }, "teams_variance_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98521,31 +98826,31 @@ export default { "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 4306 + 4324 ], "_gt": [ - 4306 + 4324 ], "_gte": [ - 4306 + 4324 ], "_in": [ - 4306 + 4324 ], "_is_null": [ 3 ], "_lt": [ - 4306 + 4324 ], "_lte": [ - 4306 + 4324 ], "_neq": [ - 4306 + 4324 ], "_nin": [ - 4306 + 4324 ], "__typename": [ 78 @@ -98556,13 +98861,13 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "feeding_brackets": [ - 4308, + 4326, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -98572,11 +98877,11 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], @@ -98584,37 +98889,37 @@ export default { 3 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_bracket": [ - 4308 + 4326 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "options": [ - 2458 + 2476 ], "parent_bracket": [ - 4308 + 4326 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -98623,16 +98928,16 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "scheduling_proposals": [ - 1771, + 1789, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -98642,19 +98947,19 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "scheduling_proposals_aggregate": [ - 1772, + 1790, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -98664,37 +98969,37 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "stage": [ - 4436 + 4454 ], "team_1": [ - 4569 + 4587 ], "team_1_seed": [ 38 ], "team_2": [ - 4569 + 4587 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -98702,10 +99007,10 @@ export default { }, "tournament_brackets_aggregate": { "aggregate": [ - 4314 + 4332 ], "nodes": [ - 4308 + 4326 ], "__typename": [ 78 @@ -98713,13 +99018,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 4311 + 4329 ], "bool_or": [ - 4312 + 4330 ], "count": [ - 4313 + 4331 ], "__typename": [ 78 @@ -98727,13 +99032,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 4333 + 4351 ], "distinct": [ 3 ], "filter": [ - 4319 + 4337 ], "predicate": [ 4 @@ -98744,13 +99049,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 4334 + 4352 ], "distinct": [ 3 ], "filter": [ - 4319 + 4337 ], "predicate": [ 4 @@ -98761,13 +99066,13 @@ export default { }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 4332 + 4350 ], "distinct": [ 3 ], "filter": [ - 4319 + 4337 ], "predicate": [ 39 @@ -98778,13 +99083,13 @@ export default { }, "tournament_brackets_aggregate_fields": { "avg": [ - 4317 + 4335 ], "count": [ 38, { "columns": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -98793,31 +99098,31 @@ export default { } ], "max": [ - 4323 + 4341 ], "min": [ - 4325 + 4343 ], "stddev": [ - 4336 + 4354 ], "stddev_pop": [ - 4338 + 4356 ], "stddev_samp": [ - 4340 + 4358 ], "sum": [ - 4344 + 4362 ], "var_pop": [ - 4348 + 4366 ], "var_samp": [ - 4350 + 4368 ], "variance": [ - 4352 + 4370 ], "__typename": [ 78 @@ -98825,37 +99130,37 @@ export default { }, "tournament_brackets_aggregate_order_by": { "avg": [ - 4318 + 4336 ], "count": [ - 2763 + 2781 ], "max": [ - 4324 + 4342 ], "min": [ - 4326 + 4344 ], "stddev": [ - 4337 + 4355 ], "stddev_pop": [ - 4339 + 4357 ], "stddev_samp": [ - 4341 + 4359 ], "sum": [ - 4345 + 4363 ], "var_pop": [ - 4349 + 4367 ], "var_samp": [ - 4351 + 4369 ], "variance": [ - 4353 + 4371 ], "__typename": [ 78 @@ -98863,10 +99168,10 @@ export default { }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 4322 + 4340 ], "on_conflict": [ - 4329 + 4347 ], "__typename": [ 78 @@ -98894,19 +99199,19 @@ export default { }, "tournament_brackets_avg_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -98914,58 +99219,58 @@ export default { }, "tournament_brackets_bool_exp": { "_and": [ - 4319 + 4337 ], "_not": [ - 4319 + 4337 ], "_or": [ - 4319 + 4337 ], "bye": [ 4 ], "created_at": [ - 4307 + 4325 ], "feeding_brackets": [ - 4319 + 4337 ], "finished": [ 4 ], "group": [ - 2762 + 2780 ], "id": [ - 4746 + 4764 ], "loser_bracket": [ - 4319 + 4337 ], "loser_parent_bracket_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_number": [ 39 ], "match_options_id": [ - 4746 + 4764 ], "options": [ - 2462 + 2480 ], "parent_bracket": [ - 4319 + 4337 ], "parent_bracket_id": [ - 4746 + 4764 ], "path": [ 80 @@ -98974,40 +99279,40 @@ export default { 39 ], "scheduled_at": [ - 4307 + 4325 ], "scheduled_eta": [ - 4307 + 4325 ], "scheduling_proposals": [ - 1780 + 1798 ], "scheduling_proposals_aggregate": [ - 1773 + 1791 ], "stage": [ - 4448 + 4466 ], "team_1": [ - 4578 + 4596 ], "team_1_seed": [ 39 ], "team_2": [ - 4578 + 4596 ], "team_2_seed": [ 39 ], "tournament_stage_id": [ - 4746 + 4764 ], "tournament_team_id_1": [ - 4746 + 4764 ], "tournament_team_id_2": [ - 4746 + 4764 ], "__typename": [ 78 @@ -99016,7 +99321,7 @@ export default { "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 2761 + 2779 ], "match_number": [ 38 @@ -99039,43 +99344,43 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "finished": [ 3 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_bracket": [ - 4328 + 4346 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "options": [ - 2469 + 2487 ], "parent_bracket": [ - 4328 + 4346 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -99084,37 +99389,37 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "scheduling_proposals": [ - 1777 + 1795 ], "stage": [ - 4460 + 4478 ], "team_1": [ - 4587 + 4605 ], "team_1_seed": [ 38 ], "team_2": [ - 4587 + 4605 ], "team_2_seed": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99122,28 +99427,28 @@ export default { }, "tournament_brackets_max_fields": { "created_at": [ - 4306 + 4324 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -99152,10 +99457,10 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "team_1_seed": [ 38 @@ -99164,13 +99469,13 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99178,55 +99483,55 @@ export default { }, "tournament_brackets_max_order_by": { "created_at": [ - 2763 + 2781 ], "group": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "loser_parent_bracket_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "parent_bracket_id": [ - 2763 + 2781 ], "path": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "scheduled_eta": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id_1": [ - 2763 + 2781 ], "tournament_team_id_2": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99234,28 +99539,28 @@ export default { }, "tournament_brackets_min_fields": { "created_at": [ - 4306 + 4324 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -99264,10 +99569,10 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "team_1_seed": [ 38 @@ -99276,13 +99581,13 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99290,55 +99595,55 @@ export default { }, "tournament_brackets_min_order_by": { "created_at": [ - 2763 + 2781 ], "group": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "loser_parent_bracket_id": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "parent_bracket_id": [ - 2763 + 2781 ], "path": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "scheduled_eta": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id_1": [ - 2763 + 2781 ], "tournament_team_id_2": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99349,7 +99654,7 @@ export default { 38 ], "returning": [ - 4308 + 4326 ], "__typename": [ 78 @@ -99357,10 +99662,10 @@ export default { }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 4322 + 4340 ], "on_conflict": [ - 4329 + 4347 ], "__typename": [ 78 @@ -99368,13 +99673,13 @@ export default { }, "tournament_brackets_on_conflict": { "constraint": [ - 4320 + 4338 ], "update_columns": [ - 4346 + 4364 ], "where": [ - 4319 + 4337 ], "__typename": [ 78 @@ -99382,88 +99687,88 @@ export default { }, "tournament_brackets_order_by": { "bye": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "feeding_brackets_aggregate": [ - 4315 + 4333 ], "finished": [ - 2763 + 2781 ], "group": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "loser_bracket": [ - 4330 + 4348 ], "loser_parent_bracket_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "options": [ - 2471 + 2489 ], "parent_bracket": [ - 4330 + 4348 ], "parent_bracket_id": [ - 2763 + 2781 ], "path": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "scheduled_at": [ - 2763 + 2781 ], "scheduled_eta": [ - 2763 + 2781 ], "scheduling_proposals_aggregate": [ - 1776 + 1794 ], "stage": [ - 4462 + 4480 ], "team_1": [ - 4589 + 4607 ], "team_1_seed": [ - 2763 + 2781 ], "team_2": [ - 4589 + 4607 ], "team_2_seed": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id_1": [ - 2763 + 2781 ], "tournament_team_id_2": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99471,7 +99776,7 @@ export default { }, "tournament_brackets_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99485,31 +99790,31 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "finished": [ 3 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -99518,10 +99823,10 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "team_1_seed": [ 38 @@ -99530,13 +99835,13 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99564,19 +99869,19 @@ export default { }, "tournament_brackets_stddev_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99604,19 +99909,19 @@ export default { }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99644,19 +99949,19 @@ export default { }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99664,7 +99969,7 @@ export default { }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 4343 + 4361 ], "ordering": [ 236 @@ -99678,31 +99983,31 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "finished": [ 3 ], "group": [ - 2761 + 2779 ], "id": [ - 4744 + 4762 ], "loser_parent_bracket_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_number": [ 38 ], "match_options_id": [ - 4744 + 4762 ], "parent_bracket_id": [ - 4744 + 4762 ], "path": [ 78 @@ -99711,10 +100016,10 @@ export default { 38 ], "scheduled_at": [ - 4306 + 4324 ], "scheduled_eta": [ - 4306 + 4324 ], "team_1_seed": [ 38 @@ -99723,13 +100028,13 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id_1": [ - 4744 + 4762 ], "tournament_team_id_2": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99737,7 +100042,7 @@ export default { }, "tournament_brackets_sum_fields": { "group": [ - 2761 + 2779 ], "match_number": [ 38 @@ -99757,19 +100062,19 @@ export default { }, "tournament_brackets_sum_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99778,13 +100083,13 @@ export default { "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 4321 + 4339 ], "_set": [ - 4335 + 4353 ], "where": [ - 4319 + 4337 ], "__typename": [ 78 @@ -99812,19 +100117,19 @@ export default { }, "tournament_brackets_var_pop_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99852,19 +100157,19 @@ export default { }, "tournament_brackets_var_samp_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99892,19 +100197,19 @@ export default { }, "tournament_brackets_variance_order_by": { "group": [ - 2763 + 2781 ], "match_number": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "team_1_seed": [ - 2763 + 2781 ], "team_2_seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -99912,16 +100217,16 @@ export default { }, "tournament_organizers": { "organizer": [ - 3721 + 3739 ], "steam_id": [ 180 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -99929,10 +100234,10 @@ export default { }, "tournament_organizers_aggregate": { "aggregate": [ - 4358 + 4376 ], "nodes": [ - 4354 + 4372 ], "__typename": [ 78 @@ -99940,7 +100245,7 @@ export default { }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 4357 + 4375 ], "__typename": [ 78 @@ -99948,13 +100253,13 @@ export default { }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 4375 + 4393 ], "distinct": [ 3 ], "filter": [ - 4363 + 4381 ], "predicate": [ 39 @@ -99965,13 +100270,13 @@ export default { }, "tournament_organizers_aggregate_fields": { "avg": [ - 4361 + 4379 ], "count": [ 38, { "columns": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -99980,31 +100285,31 @@ export default { } ], "max": [ - 4367 + 4385 ], "min": [ - 4369 + 4387 ], "stddev": [ - 4377 + 4395 ], "stddev_pop": [ - 4379 + 4397 ], "stddev_samp": [ - 4381 + 4399 ], "sum": [ - 4385 + 4403 ], "var_pop": [ - 4389 + 4407 ], "var_samp": [ - 4391 + 4409 ], "variance": [ - 4393 + 4411 ], "__typename": [ 78 @@ -100012,37 +100317,37 @@ export default { }, "tournament_organizers_aggregate_order_by": { "avg": [ - 4362 + 4380 ], "count": [ - 2763 + 2781 ], "max": [ - 4368 + 4386 ], "min": [ - 4370 + 4388 ], "stddev": [ - 4378 + 4396 ], "stddev_pop": [ - 4380 + 4398 ], "stddev_samp": [ - 4382 + 4400 ], "sum": [ - 4386 + 4404 ], "var_pop": [ - 4390 + 4408 ], "var_samp": [ - 4392 + 4410 ], "variance": [ - 4394 + 4412 ], "__typename": [ 78 @@ -100050,10 +100355,10 @@ export default { }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 4366 + 4384 ], "on_conflict": [ - 4372 + 4390 ], "__typename": [ 78 @@ -100069,7 +100374,7 @@ export default { }, "tournament_organizers_avg_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100077,25 +100382,25 @@ export default { }, "tournament_organizers_bool_exp": { "_and": [ - 4363 + 4381 ], "_not": [ - 4363 + 4381 ], "_or": [ - 4363 + 4381 ], "organizer": [ - 3725 + 3743 ], "steam_id": [ 182 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -100112,16 +100417,16 @@ export default { }, "tournament_organizers_insert_input": { "organizer": [ - 3732 + 3750 ], "steam_id": [ 180 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100132,7 +100437,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100140,10 +100445,10 @@ export default { }, "tournament_organizers_max_order_by": { "steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100154,7 +100459,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100162,10 +100467,10 @@ export default { }, "tournament_organizers_min_order_by": { "steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100176,7 +100481,7 @@ export default { 38 ], "returning": [ - 4354 + 4372 ], "__typename": [ 78 @@ -100184,13 +100489,13 @@ export default { }, "tournament_organizers_on_conflict": { "constraint": [ - 4364 + 4382 ], "update_columns": [ - 4387 + 4405 ], "where": [ - 4363 + 4381 ], "__typename": [ 78 @@ -100198,16 +100503,16 @@ export default { }, "tournament_organizers_order_by": { "organizer": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100218,7 +100523,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100230,7 +100535,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100246,7 +100551,7 @@ export default { }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100262,7 +100567,7 @@ export default { }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100278,7 +100583,7 @@ export default { }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100286,7 +100591,7 @@ export default { }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 4384 + 4402 ], "ordering": [ 236 @@ -100300,7 +100605,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100316,7 +100621,7 @@ export default { }, "tournament_organizers_sum_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100325,13 +100630,13 @@ export default { "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 4365 + 4383 ], "_set": [ - 4376 + 4394 ], "where": [ - 4363 + 4381 ], "__typename": [ 78 @@ -100347,7 +100652,7 @@ export default { }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100363,7 +100668,7 @@ export default { }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100379,7 +100684,7 @@ export default { }, "tournament_organizers_variance_order_by": { "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100387,28 +100692,28 @@ export default { }, "tournament_stage_windows": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "stage": [ - 4436 + 4454 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100416,10 +100721,10 @@ export default { }, "tournament_stage_windows_aggregate": { "aggregate": [ - 4399 + 4417 ], "nodes": [ - 4395 + 4413 ], "__typename": [ 78 @@ -100427,7 +100732,7 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp": { "count": [ - 4398 + 4416 ], "__typename": [ 78 @@ -100435,13 +100740,13 @@ export default { }, "tournament_stage_windows_aggregate_bool_exp_count": { "arguments": [ - 4416 + 4434 ], "distinct": [ 3 ], "filter": [ - 4404 + 4422 ], "predicate": [ 39 @@ -100452,13 +100757,13 @@ export default { }, "tournament_stage_windows_aggregate_fields": { "avg": [ - 4402 + 4420 ], "count": [ 38, { "columns": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "distinct": [ @@ -100467,31 +100772,31 @@ export default { } ], "max": [ - 4408 + 4426 ], "min": [ - 4410 + 4428 ], "stddev": [ - 4418 + 4436 ], "stddev_pop": [ - 4420 + 4438 ], "stddev_samp": [ - 4422 + 4440 ], "sum": [ - 4426 + 4444 ], "var_pop": [ - 4430 + 4448 ], "var_samp": [ - 4432 + 4450 ], "variance": [ - 4434 + 4452 ], "__typename": [ 78 @@ -100499,37 +100804,37 @@ export default { }, "tournament_stage_windows_aggregate_order_by": { "avg": [ - 4403 + 4421 ], "count": [ - 2763 + 2781 ], "max": [ - 4409 + 4427 ], "min": [ - 4411 + 4429 ], "stddev": [ - 4419 + 4437 ], "stddev_pop": [ - 4421 + 4439 ], "stddev_samp": [ - 4423 + 4441 ], "sum": [ - 4427 + 4445 ], "var_pop": [ - 4431 + 4449 ], "var_samp": [ - 4433 + 4451 ], "variance": [ - 4435 + 4453 ], "__typename": [ 78 @@ -100537,10 +100842,10 @@ export default { }, "tournament_stage_windows_arr_rel_insert_input": { "data": [ - 4407 + 4425 ], "on_conflict": [ - 4413 + 4431 ], "__typename": [ 78 @@ -100556,7 +100861,7 @@ export default { }, "tournament_stage_windows_avg_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100564,37 +100869,37 @@ export default { }, "tournament_stage_windows_bool_exp": { "_and": [ - 4404 + 4422 ], "_not": [ - 4404 + 4422 ], "_or": [ - 4404 + 4422 ], "closes_at": [ - 4307 + 4325 ], "created_at": [ - 4307 + 4325 ], "default_match_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "opens_at": [ - 4307 + 4325 ], "round": [ 39 ], "stage": [ - 4448 + 4466 ], "tournament_stage_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -100611,28 +100916,28 @@ export default { }, "tournament_stage_windows_insert_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "stage": [ - 4460 + 4478 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100640,25 +100945,25 @@ export default { }, "tournament_stage_windows_max_fields": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100666,25 +100971,25 @@ export default { }, "tournament_stage_windows_max_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100692,25 +100997,25 @@ export default { }, "tournament_stage_windows_min_fields": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100718,25 +101023,25 @@ export default { }, "tournament_stage_windows_min_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100747,7 +101052,7 @@ export default { 38 ], "returning": [ - 4395 + 4413 ], "__typename": [ 78 @@ -100755,13 +101060,13 @@ export default { }, "tournament_stage_windows_on_conflict": { "constraint": [ - 4405 + 4423 ], "update_columns": [ - 4428 + 4446 ], "where": [ - 4404 + 4422 ], "__typename": [ 78 @@ -100769,28 +101074,28 @@ export default { }, "tournament_stage_windows_order_by": { "closes_at": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "default_match_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "opens_at": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "stage": [ - 4462 + 4480 ], "tournament_stage_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100798,7 +101103,7 @@ export default { }, "tournament_stage_windows_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100807,25 +101112,25 @@ export default { "tournament_stage_windows_select_column": {}, "tournament_stage_windows_set_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100841,7 +101146,7 @@ export default { }, "tournament_stage_windows_stddev_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100857,7 +101162,7 @@ export default { }, "tournament_stage_windows_stddev_pop_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100873,7 +101178,7 @@ export default { }, "tournament_stage_windows_stddev_samp_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100881,7 +101186,7 @@ export default { }, "tournament_stage_windows_stream_cursor_input": { "initial_value": [ - 4425 + 4443 ], "ordering": [ 236 @@ -100892,25 +101197,25 @@ export default { }, "tournament_stage_windows_stream_cursor_value_input": { "closes_at": [ - 4306 + 4324 ], "created_at": [ - 4306 + 4324 ], "default_match_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "opens_at": [ - 4306 + 4324 ], "round": [ 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -100926,7 +101231,7 @@ export default { }, "tournament_stage_windows_sum_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100935,13 +101240,13 @@ export default { "tournament_stage_windows_update_column": {}, "tournament_stage_windows_updates": { "_inc": [ - 4406 + 4424 ], "_set": [ - 4417 + 4435 ], "where": [ - 4404 + 4422 ], "__typename": [ 78 @@ -100957,7 +101262,7 @@ export default { }, "tournament_stage_windows_var_pop_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100973,7 +101278,7 @@ export default { }, "tournament_stage_windows_var_samp_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100989,7 +101294,7 @@ export default { }, "tournament_stage_windows_variance_order_by": { "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -100997,10 +101302,10 @@ export default { }, "tournament_stages": { "brackets": [ - 4308, + 4326, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101010,19 +101315,19 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "brackets_aggregate": [ - 4309, + 4327, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -101032,11 +101337,11 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], @@ -101053,10 +101358,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -101068,16 +101373,16 @@ export default { 38 ], "options": [ - 2458 + 2476 ], "order": [ 38 ], "results": [ - 5478, + 5486, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101087,19 +101392,19 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "results_aggregate": [ - 5479, + 5487, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -101109,16 +101414,16 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "settings": [ - 1634, + 1652, { "path": [ 78 @@ -101132,19 +101437,19 @@ export default { 3 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "type": [ 1143 ], "windows": [ - 4395, + 4413, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101154,19 +101459,19 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], "windows_aggregate": [ - 4396, + 4414, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -101176,11 +101481,11 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], @@ -101190,10 +101495,10 @@ export default { }, "tournament_stages_aggregate": { "aggregate": [ - 4442 + 4460 ], "nodes": [ - 4436 + 4454 ], "__typename": [ 78 @@ -101201,13 +101506,13 @@ export default { }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 4439 + 4457 ], "bool_or": [ - 4440 + 4458 ], "count": [ - 4441 + 4459 ], "__typename": [ 78 @@ -101215,13 +101520,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 4466 + 4484 ], "distinct": [ 3 ], "filter": [ - 4448 + 4466 ], "predicate": [ 4 @@ -101232,13 +101537,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 4467 + 4485 ], "distinct": [ 3 ], "filter": [ - 4448 + 4466 ], "predicate": [ 4 @@ -101249,13 +101554,13 @@ export default { }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 4465 + 4483 ], "distinct": [ 3 ], "filter": [ - 4448 + 4466 ], "predicate": [ 39 @@ -101266,13 +101571,13 @@ export default { }, "tournament_stages_aggregate_fields": { "avg": [ - 4446 + 4464 ], "count": [ 38, { "columns": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "distinct": [ @@ -101281,31 +101586,31 @@ export default { } ], "max": [ - 4455 + 4473 ], "min": [ - 4457 + 4475 ], "stddev": [ - 4469 + 4487 ], "stddev_pop": [ - 4471 + 4489 ], "stddev_samp": [ - 4473 + 4491 ], "sum": [ - 4477 + 4495 ], "var_pop": [ - 4481 + 4499 ], "var_samp": [ - 4483 + 4501 ], "variance": [ - 4485 + 4503 ], "__typename": [ 78 @@ -101313,37 +101618,37 @@ export default { }, "tournament_stages_aggregate_order_by": { "avg": [ - 4447 + 4465 ], "count": [ - 2763 + 2781 ], "max": [ - 4456 + 4474 ], "min": [ - 4458 + 4476 ], "stddev": [ - 4470 + 4488 ], "stddev_pop": [ - 4472 + 4490 ], "stddev_samp": [ - 4474 + 4492 ], "sum": [ - 4478 + 4496 ], "var_pop": [ - 4482 + 4500 ], "var_samp": [ - 4484 + 4502 ], "variance": [ - 4486 + 4504 ], "__typename": [ 78 @@ -101351,7 +101656,7 @@ export default { }, "tournament_stages_append_input": { "settings": [ - 1634 + 1652 ], "__typename": [ 78 @@ -101359,10 +101664,10 @@ export default { }, "tournament_stages_arr_rel_insert_input": { "data": [ - 4454 + 4472 ], "on_conflict": [ - 4461 + 4479 ], "__typename": [ 78 @@ -101396,25 +101701,25 @@ export default { }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -101422,19 +101727,19 @@ export default { }, "tournament_stages_bool_exp": { "_and": [ - 4448 + 4466 ], "_not": [ - 4448 + 4466 ], "_or": [ - 4448 + 4466 ], "brackets": [ - 4319 + 4337 ], "brackets_aggregate": [ - 4310 + 4328 ], "decider_best_of": [ 39 @@ -101449,10 +101754,10 @@ export default { 39 ], "id": [ - 4746 + 4764 ], "match_options_id": [ - 4746 + 4764 ], "max_rounds": [ 39 @@ -101464,19 +101769,19 @@ export default { 39 ], "options": [ - 2462 + 2480 ], "order": [ 39 ], "results": [ - 5497 + 5505 ], "results_aggregate": [ - 5480 + 5488 ], "settings": [ - 1636 + 1654 ], "swiss_no_elimination": [ 4 @@ -101485,19 +101790,19 @@ export default { 4 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "type": [ 1144 ], "windows": [ - 4404 + 4422 ], "windows_aggregate": [ - 4397 + 4415 ], "__typename": [ 78 @@ -101556,7 +101861,7 @@ export default { }, "tournament_stages_insert_input": { "brackets": [ - 4316 + 4334 ], "decider_best_of": [ 38 @@ -101571,10 +101876,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -101586,16 +101891,16 @@ export default { 38 ], "options": [ - 2469 + 2487 ], "order": [ 38 ], "results": [ - 5494 + 5502 ], "settings": [ - 1634 + 1652 ], "swiss_no_elimination": [ 3 @@ -101604,16 +101909,16 @@ export default { 3 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "type": [ 1143 ], "windows": [ - 4401 + 4419 ], "__typename": [ 78 @@ -101630,10 +101935,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -101648,7 +101953,7 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -101656,34 +101961,34 @@ export default { }, "tournament_stages_max_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -101700,10 +102005,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -101718,7 +102023,7 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -101726,34 +102031,34 @@ export default { }, "tournament_stages_min_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -101764,7 +102069,7 @@ export default { 38 ], "returning": [ - 4436 + 4454 ], "__typename": [ 78 @@ -101772,10 +102077,10 @@ export default { }, "tournament_stages_obj_rel_insert_input": { "data": [ - 4454 + 4472 ], "on_conflict": [ - 4461 + 4479 ], "__typename": [ 78 @@ -101783,13 +102088,13 @@ export default { }, "tournament_stages_on_conflict": { "constraint": [ - 4449 + 4467 ], "update_columns": [ - 4479 + 4497 ], "where": [ - 4448 + 4466 ], "__typename": [ 78 @@ -101797,64 +102102,64 @@ export default { }, "tournament_stages_order_by": { "brackets_aggregate": [ - 4315 + 4333 ], "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "e_tournament_stage_type": [ 1151 ], "groups": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "options": [ - 2471 + 2489 ], "order": [ - 2763 + 2781 ], "results_aggregate": [ - 5493 + 5501 ], "settings": [ - 2763 + 2781 ], "swiss_no_elimination": [ - 2763 + 2781 ], "third_place_match": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "windows_aggregate": [ - 4400 + 4418 ], "__typename": [ 78 @@ -101862,7 +102167,7 @@ export default { }, "tournament_stages_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -101870,7 +102175,7 @@ export default { }, "tournament_stages_prepend_input": { "settings": [ - 1634 + 1652 ], "__typename": [ 78 @@ -101890,10 +102195,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -101908,7 +102213,7 @@ export default { 38 ], "settings": [ - 1634 + 1652 ], "swiss_no_elimination": [ 3 @@ -101917,7 +102222,7 @@ export default { 3 ], "tournament_id": [ - 4744 + 4762 ], "type": [ 1143 @@ -101954,25 +102259,25 @@ export default { }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102006,25 +102311,25 @@ export default { }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102058,25 +102363,25 @@ export default { }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102084,7 +102389,7 @@ export default { }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 4476 + 4494 ], "ordering": [ 236 @@ -102104,10 +102409,10 @@ export default { 38 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_rounds": [ 38 @@ -102122,7 +102427,7 @@ export default { 38 ], "settings": [ - 1634 + 1652 ], "swiss_no_elimination": [ 3 @@ -102131,7 +102436,7 @@ export default { 3 ], "tournament_id": [ - 4744 + 4762 ], "type": [ 1143 @@ -102168,25 +102473,25 @@ export default { }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102195,28 +102500,28 @@ export default { "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 4444 + 4462 ], "_delete_at_path": [ - 4450 + 4468 ], "_delete_elem": [ - 4451 + 4469 ], "_delete_key": [ - 4452 + 4470 ], "_inc": [ - 4453 + 4471 ], "_prepend": [ - 4464 + 4482 ], "_set": [ - 4468 + 4486 ], "where": [ - 4448 + 4466 ], "__typename": [ 78 @@ -102250,25 +102555,25 @@ export default { }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102302,25 +102607,25 @@ export default { }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102354,25 +102659,25 @@ export default { }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 2763 + 2781 ], "default_best_of": [ - 2763 + 2781 ], "groups": [ - 2763 + 2781 ], "max_rounds": [ - 2763 + 2781 ], "max_teams": [ - 2763 + 2781 ], "min_teams": [ - 2763 + 2781 ], "order": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102380,28 +102685,28 @@ export default { }, "tournament_team_invites": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by": [ - 3721 + 3739 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 ], "team": [ - 4569 + 4587 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102409,10 +102714,10 @@ export default { }, "tournament_team_invites_aggregate": { "aggregate": [ - 4491 + 4509 ], "nodes": [ - 4487 + 4505 ], "__typename": [ 78 @@ -102420,7 +102725,7 @@ export default { }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 4490 + 4508 ], "__typename": [ 78 @@ -102428,13 +102733,13 @@ export default { }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 4508 + 4526 ], "distinct": [ 3 ], "filter": [ - 4496 + 4514 ], "predicate": [ 39 @@ -102445,13 +102750,13 @@ export default { }, "tournament_team_invites_aggregate_fields": { "avg": [ - 4494 + 4512 ], "count": [ 38, { "columns": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -102460,31 +102765,31 @@ export default { } ], "max": [ - 4500 + 4518 ], "min": [ - 4502 + 4520 ], "stddev": [ - 4510 + 4528 ], "stddev_pop": [ - 4512 + 4530 ], "stddev_samp": [ - 4514 + 4532 ], "sum": [ - 4518 + 4536 ], "var_pop": [ - 4522 + 4540 ], "var_samp": [ - 4524 + 4542 ], "variance": [ - 4526 + 4544 ], "__typename": [ 78 @@ -102492,37 +102797,37 @@ export default { }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 4495 + 4513 ], "count": [ - 2763 + 2781 ], "max": [ - 4501 + 4519 ], "min": [ - 4503 + 4521 ], "stddev": [ - 4511 + 4529 ], "stddev_pop": [ - 4513 + 4531 ], "stddev_samp": [ - 4515 + 4533 ], "sum": [ - 4519 + 4537 ], "var_pop": [ - 4523 + 4541 ], "var_samp": [ - 4525 + 4543 ], "variance": [ - 4527 + 4545 ], "__typename": [ 78 @@ -102530,10 +102835,10 @@ export default { }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 4499 + 4517 ], "on_conflict": [ - 4505 + 4523 ], "__typename": [ 78 @@ -102552,10 +102857,10 @@ export default { }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102563,37 +102868,37 @@ export default { }, "tournament_team_invites_bool_exp": { "_and": [ - 4496 + 4514 ], "_not": [ - 4496 + 4514 ], "_or": [ - 4496 + 4514 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "invited_by": [ - 3725 + 3743 ], "invited_by_player_steam_id": [ 182 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 ], "team": [ - 4578 + 4596 ], "tournament_team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -102613,28 +102918,28 @@ export default { }, "tournament_team_invites_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by": [ - 3732 + 3750 ], "invited_by_player_steam_id": [ 180 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 ], "team": [ - 4587 + 4605 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102642,10 +102947,10 @@ export default { }, "tournament_team_invites_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -102654,7 +102959,7 @@ export default { 180 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102662,19 +102967,19 @@ export default { }, "tournament_team_invites_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102682,10 +102987,10 @@ export default { }, "tournament_team_invites_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -102694,7 +102999,7 @@ export default { 180 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102702,19 +103007,19 @@ export default { }, "tournament_team_invites_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102725,7 +103030,7 @@ export default { 38 ], "returning": [ - 4487 + 4505 ], "__typename": [ 78 @@ -102733,13 +103038,13 @@ export default { }, "tournament_team_invites_on_conflict": { "constraint": [ - 4497 + 4515 ], "update_columns": [ - 4520 + 4538 ], "where": [ - 4496 + 4514 ], "__typename": [ 78 @@ -102747,28 +103052,28 @@ export default { }, "tournament_team_invites_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invited_by": [ - 3734 + 3752 ], "invited_by_player_steam_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "team": [ - 4589 + 4607 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102776,7 +103081,7 @@ export default { }, "tournament_team_invites_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102785,10 +103090,10 @@ export default { "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -102797,7 +103102,7 @@ export default { 180 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102816,10 +103121,10 @@ export default { }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102838,10 +103143,10 @@ export default { }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102860,10 +103165,10 @@ export default { }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102871,7 +103176,7 @@ export default { }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 4517 + 4535 ], "ordering": [ 236 @@ -102882,10 +103187,10 @@ export default { }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invited_by_player_steam_id": [ 180 @@ -102894,7 +103199,7 @@ export default { 180 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -102913,10 +103218,10 @@ export default { }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102925,13 +103230,13 @@ export default { "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 4498 + 4516 ], "_set": [ - 4509 + 4527 ], "where": [ - 4496 + 4514 ], "__typename": [ 78 @@ -102950,10 +103255,10 @@ export default { }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102972,10 +103277,10 @@ export default { }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -102994,10 +103299,10 @@ export default { }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103008,7 +103313,7 @@ export default { 1077 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -103017,16 +103322,16 @@ export default { 1082 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team": [ - 4569 + 4587 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103034,10 +103339,10 @@ export default { }, "tournament_team_roster_aggregate": { "aggregate": [ - 4532 + 4550 ], "nodes": [ - 4528 + 4546 ], "__typename": [ 78 @@ -103045,7 +103350,7 @@ export default { }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 4531 + 4549 ], "__typename": [ 78 @@ -103053,13 +103358,13 @@ export default { }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 4549 + 4567 ], "distinct": [ 3 ], "filter": [ - 4537 + 4555 ], "predicate": [ 39 @@ -103070,13 +103375,13 @@ export default { }, "tournament_team_roster_aggregate_fields": { "avg": [ - 4535 + 4553 ], "count": [ 38, { "columns": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -103085,31 +103390,31 @@ export default { } ], "max": [ - 4541 + 4559 ], "min": [ - 4543 + 4561 ], "stddev": [ - 4551 + 4569 ], "stddev_pop": [ - 4553 + 4571 ], "stddev_samp": [ - 4555 + 4573 ], "sum": [ - 4559 + 4577 ], "var_pop": [ - 4563 + 4581 ], "var_samp": [ - 4565 + 4583 ], "variance": [ - 4567 + 4585 ], "__typename": [ 78 @@ -103117,37 +103422,37 @@ export default { }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 4536 + 4554 ], "count": [ - 2763 + 2781 ], "max": [ - 4542 + 4560 ], "min": [ - 4544 + 4562 ], "stddev": [ - 4552 + 4570 ], "stddev_pop": [ - 4554 + 4572 ], "stddev_samp": [ - 4556 + 4574 ], "sum": [ - 4560 + 4578 ], "var_pop": [ - 4564 + 4582 ], "var_samp": [ - 4566 + 4584 ], "variance": [ - 4568 + 4586 ], "__typename": [ 78 @@ -103155,10 +103460,10 @@ export default { }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 4540 + 4558 ], "on_conflict": [ - 4546 + 4564 ], "__typename": [ 78 @@ -103174,7 +103479,7 @@ export default { }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103182,19 +103487,19 @@ export default { }, "tournament_team_roster_bool_exp": { "_and": [ - 4537 + 4555 ], "_not": [ - 4537 + 4555 ], "_or": [ - 4537 + 4555 ], "e_team_role": [ 1080 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -103203,16 +103508,16 @@ export default { 1083 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "tournament_team": [ - 4578 + 4596 ], "tournament_team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -103232,7 +103537,7 @@ export default { 1088 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -103241,16 +103546,16 @@ export default { 1082 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team": [ - 4587 + 4605 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103261,10 +103566,10 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103272,13 +103577,13 @@ export default { }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103289,10 +103594,10 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103300,13 +103605,13 @@ export default { }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103317,7 +103622,7 @@ export default { 38 ], "returning": [ - 4528 + 4546 ], "__typename": [ 78 @@ -103325,13 +103630,13 @@ export default { }, "tournament_team_roster_on_conflict": { "constraint": [ - 4538 + 4556 ], "update_columns": [ - 4561 + 4579 ], "where": [ - 4537 + 4555 ], "__typename": [ 78 @@ -103342,25 +103647,25 @@ export default { 1090 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "role": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team": [ - 4589 + 4607 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103371,7 +103676,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103386,10 +103691,10 @@ export default { 1082 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103405,7 +103710,7 @@ export default { }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103421,7 +103726,7 @@ export default { }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103437,7 +103742,7 @@ export default { }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103445,7 +103750,7 @@ export default { }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 4558 + 4576 ], "ordering": [ 236 @@ -103462,10 +103767,10 @@ export default { 1082 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103481,7 +103786,7 @@ export default { }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103490,13 +103795,13 @@ export default { "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 4539 + 4557 ], "_set": [ - 4550 + 4568 ], "where": [ - 4537 + 4555 ], "__typename": [ 78 @@ -103512,7 +103817,7 @@ export default { }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103528,7 +103833,7 @@ export default { }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103544,7 +103849,7 @@ export default { }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103555,28 +103860,28 @@ export default { 3 ], "captain": [ - 3721 + 3739 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "creator": [ - 3721 + 3739 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invites": [ - 4487, + 4505, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103586,19 +103891,19 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], "invites_aggregate": [ - 4488, + 4506, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -103608,11 +103913,11 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], @@ -103623,13 +103928,13 @@ export default { 180 ], "results": [ - 5478 + 5486 ], "roster": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -103639,19 +103944,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "roster_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -103661,11 +103966,11 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], @@ -103676,16 +103981,16 @@ export default { 78 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -103693,10 +103998,10 @@ export default { }, "tournament_teams_aggregate": { "aggregate": [ - 4573 + 4591 ], "nodes": [ - 4569 + 4587 ], "__typename": [ 78 @@ -103704,7 +104009,7 @@ export default { }, "tournament_teams_aggregate_bool_exp": { "count": [ - 4572 + 4590 ], "__typename": [ 78 @@ -103712,13 +104017,13 @@ export default { }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 4591 + 4609 ], "distinct": [ 3 ], "filter": [ - 4578 + 4596 ], "predicate": [ 39 @@ -103729,13 +104034,13 @@ export default { }, "tournament_teams_aggregate_fields": { "avg": [ - 4576 + 4594 ], "count": [ 38, { "columns": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "distinct": [ @@ -103744,31 +104049,31 @@ export default { } ], "max": [ - 4582 + 4600 ], "min": [ - 4584 + 4602 ], "stddev": [ - 4593 + 4611 ], "stddev_pop": [ - 4595 + 4613 ], "stddev_samp": [ - 4597 + 4615 ], "sum": [ - 4601 + 4619 ], "var_pop": [ - 4605 + 4623 ], "var_samp": [ - 4607 + 4625 ], "variance": [ - 4609 + 4627 ], "__typename": [ 78 @@ -103776,37 +104081,37 @@ export default { }, "tournament_teams_aggregate_order_by": { "avg": [ - 4577 + 4595 ], "count": [ - 2763 + 2781 ], "max": [ - 4583 + 4601 ], "min": [ - 4585 + 4603 ], "stddev": [ - 4594 + 4612 ], "stddev_pop": [ - 4596 + 4614 ], "stddev_samp": [ - 4598 + 4616 ], "sum": [ - 4602 + 4620 ], "var_pop": [ - 4606 + 4624 ], "var_samp": [ - 4608 + 4626 ], "variance": [ - 4610 + 4628 ], "__typename": [ 78 @@ -103814,10 +104119,10 @@ export default { }, "tournament_teams_arr_rel_insert_input": { "data": [ - 4581 + 4599 ], "on_conflict": [ - 4588 + 4606 ], "__typename": [ 78 @@ -103839,13 +104144,13 @@ export default { }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -103853,40 +104158,40 @@ export default { }, "tournament_teams_bool_exp": { "_and": [ - 4578 + 4596 ], "_not": [ - 4578 + 4596 ], "_or": [ - 4578 + 4596 ], "can_manage": [ 4 ], "captain": [ - 3725 + 3743 ], "captain_steam_id": [ 182 ], "created_at": [ - 4307 + 4325 ], "creator": [ - 3725 + 3743 ], "eligible_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "invites": [ - 4496 + 4514 ], "invites_aggregate": [ - 4489 + 4507 ], "name": [ 80 @@ -103895,13 +104200,13 @@ export default { 182 ], "results": [ - 5497 + 5505 ], "roster": [ - 4537 + 4555 ], "roster_aggregate": [ - 4530 + 4548 ], "seed": [ 39 @@ -103910,16 +104215,16 @@ export default { 80 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -103942,25 +104247,25 @@ export default { }, "tournament_teams_insert_input": { "captain": [ - 3732 + 3750 ], "captain_steam_id": [ 180 ], "created_at": [ - 4306 + 4324 ], "creator": [ - 3732 + 3750 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "invites": [ - 4493 + 4511 ], "name": [ 78 @@ -103969,10 +104274,10 @@ export default { 180 ], "results": [ - 5506 + 5514 ], "roster": [ - 4534 + 4552 ], "seed": [ 38 @@ -103981,16 +104286,16 @@ export default { 78 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104001,13 +104306,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -104022,10 +104327,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104033,34 +104338,34 @@ export default { }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "eligible_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "short_name": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104071,13 +104376,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -104092,10 +104397,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104103,34 +104408,34 @@ export default { }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "eligible_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "short_name": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104141,7 +104446,7 @@ export default { 38 ], "returning": [ - 4569 + 4587 ], "__typename": [ 78 @@ -104149,10 +104454,10 @@ export default { }, "tournament_teams_obj_rel_insert_input": { "data": [ - 4581 + 4599 ], "on_conflict": [ - 4588 + 4606 ], "__typename": [ 78 @@ -104160,13 +104465,13 @@ export default { }, "tournament_teams_on_conflict": { "constraint": [ - 4579 + 4597 ], "update_columns": [ - 4603 + 4621 ], "where": [ - 4578 + 4596 ], "__typename": [ 78 @@ -104174,58 +104479,58 @@ export default { }, "tournament_teams_order_by": { "can_manage": [ - 2763 + 2781 ], "captain": [ - 3734 + 3752 ], "captain_steam_id": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "creator": [ - 3734 + 3752 ], "eligible_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "invites_aggregate": [ - 4492 + 4510 ], "name": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "results": [ - 5508 + 5516 ], "roster_aggregate": [ - 4533 + 4551 ], "seed": [ - 2763 + 2781 ], "short_name": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104233,7 +104538,7 @@ export default { }, "tournament_teams_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104245,13 +104550,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -104266,10 +104571,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104291,13 +104596,13 @@ export default { }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104319,13 +104624,13 @@ export default { }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104347,13 +104652,13 @@ export default { }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104361,7 +104666,7 @@ export default { }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 4600 + 4618 ], "ordering": [ 236 @@ -104375,13 +104680,13 @@ export default { 180 ], "created_at": [ - 4306 + 4324 ], "eligible_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "name": [ 78 @@ -104396,10 +104701,10 @@ export default { 78 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104421,13 +104726,13 @@ export default { }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104436,13 +104741,13 @@ export default { "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 4580 + 4598 ], "_set": [ - 4592 + 4610 ], "where": [ - 4578 + 4596 ], "__typename": [ 78 @@ -104464,13 +104769,13 @@ export default { }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104492,13 +104797,13 @@ export default { }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104520,13 +104825,13 @@ export default { }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 2763 + 2781 ], "owner_steam_id": [ - 2763 + 2781 ], "seed": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104534,10 +104839,10 @@ export default { }, "tournament_trophies": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "manual": [ 3 @@ -104549,31 +104854,31 @@ export default { 78 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team": [ - 4569 + 4587 ], "tournament_team_id": [ - 4744 + 4762 ], "trophy_config": [ - 4656 + 4674 ], "__typename": [ 78 @@ -104581,10 +104886,10 @@ export default { }, "tournament_trophies_aggregate": { "aggregate": [ - 4617 + 4635 ], "nodes": [ - 4611 + 4629 ], "__typename": [ 78 @@ -104592,13 +104897,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 4614 + 4632 ], "bool_or": [ - 4615 + 4633 ], "count": [ - 4616 + 4634 ], "__typename": [ 78 @@ -104606,13 +104911,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 4635 + 4653 ], "distinct": [ 3 ], "filter": [ - 4622 + 4640 ], "predicate": [ 4 @@ -104623,13 +104928,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 4636 + 4654 ], "distinct": [ 3 ], "filter": [ - 4622 + 4640 ], "predicate": [ 4 @@ -104640,13 +104945,13 @@ export default { }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 4634 + 4652 ], "distinct": [ 3 ], "filter": [ - 4622 + 4640 ], "predicate": [ 39 @@ -104657,13 +104962,13 @@ export default { }, "tournament_trophies_aggregate_fields": { "avg": [ - 4620 + 4638 ], "count": [ 38, { "columns": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -104672,31 +104977,31 @@ export default { } ], "max": [ - 4626 + 4644 ], "min": [ - 4628 + 4646 ], "stddev": [ - 4638 + 4656 ], "stddev_pop": [ - 4640 + 4658 ], "stddev_samp": [ - 4642 + 4660 ], "sum": [ - 4646 + 4664 ], "var_pop": [ - 4650 + 4668 ], "var_samp": [ - 4652 + 4670 ], "variance": [ - 4654 + 4672 ], "__typename": [ 78 @@ -104704,37 +105009,37 @@ export default { }, "tournament_trophies_aggregate_order_by": { "avg": [ - 4621 + 4639 ], "count": [ - 2763 + 2781 ], "max": [ - 4627 + 4645 ], "min": [ - 4629 + 4647 ], "stddev": [ - 4639 + 4657 ], "stddev_pop": [ - 4641 + 4659 ], "stddev_samp": [ - 4643 + 4661 ], "sum": [ - 4647 + 4665 ], "var_pop": [ - 4651 + 4669 ], "var_samp": [ - 4653 + 4671 ], "variance": [ - 4655 + 4673 ], "__typename": [ 78 @@ -104742,10 +105047,10 @@ export default { }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 4625 + 4643 ], "on_conflict": [ - 4631 + 4649 ], "__typename": [ 78 @@ -104764,10 +105069,10 @@ export default { }, "tournament_trophies_avg_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104775,19 +105080,19 @@ export default { }, "tournament_trophies_bool_exp": { "_and": [ - 4622 + 4640 ], "_not": [ - 4622 + 4640 ], "_or": [ - 4622 + 4640 ], "created_at": [ - 4307 + 4325 ], "id": [ - 4746 + 4764 ], "manual": [ 4 @@ -104799,31 +105104,31 @@ export default { 80 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "tournament_team": [ - 4578 + 4596 ], "tournament_team_id": [ - 4746 + 4764 ], "trophy_config": [ - 4665 + 4683 ], "__typename": [ 78 @@ -104843,10 +105148,10 @@ export default { }, "tournament_trophies_insert_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "manual": [ 3 @@ -104855,31 +105160,31 @@ export default { 38 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team": [ - 4587 + 4605 ], "tournament_team_id": [ - 4744 + 4762 ], "trophy_config": [ - 4674 + 4692 ], "__typename": [ 78 @@ -104887,10 +105192,10 @@ export default { }, "tournament_trophies_max_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "placement": [ 38 @@ -104902,13 +105207,13 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104916,28 +105221,28 @@ export default { }, "tournament_trophies_max_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "placement_tier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -104945,10 +105250,10 @@ export default { }, "tournament_trophies_min_fields": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "placement": [ 38 @@ -104960,13 +105265,13 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -104974,28 +105279,28 @@ export default { }, "tournament_trophies_min_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "placement_tier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "team_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105006,7 +105311,7 @@ export default { 38 ], "returning": [ - 4611 + 4629 ], "__typename": [ 78 @@ -105014,13 +105319,13 @@ export default { }, "tournament_trophies_on_conflict": { "constraint": [ - 4623 + 4641 ], "update_columns": [ - 4648 + 4666 ], "where": [ - 4622 + 4640 ], "__typename": [ 78 @@ -105028,46 +105333,46 @@ export default { }, "tournament_trophies_order_by": { "created_at": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "manual": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "placement_tier": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team": [ - 4589 + 4607 ], "tournament_team_id": [ - 2763 + 2781 ], "trophy_config": [ - 4676 + 4694 ], "__typename": [ 78 @@ -105075,7 +105380,7 @@ export default { }, "tournament_trophies_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -105086,10 +105391,10 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "manual": [ 3 @@ -105101,13 +105406,13 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -105126,10 +105431,10 @@ export default { }, "tournament_trophies_stddev_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105148,10 +105453,10 @@ export default { }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105170,10 +105475,10 @@ export default { }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105181,7 +105486,7 @@ export default { }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 4645 + 4663 ], "ordering": [ 236 @@ -105192,10 +105497,10 @@ export default { }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "id": [ - 4744 + 4762 ], "manual": [ 3 @@ -105210,13 +105515,13 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -105235,10 +105540,10 @@ export default { }, "tournament_trophies_sum_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105247,13 +105552,13 @@ export default { "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 4624 + 4642 ], "_set": [ - 4637 + 4655 ], "where": [ - 4622 + 4640 ], "__typename": [ 78 @@ -105272,10 +105577,10 @@ export default { }, "tournament_trophies_var_pop_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105294,10 +105599,10 @@ export default { }, "tournament_trophies_var_samp_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105316,10 +105621,10 @@ export default { }, "tournament_trophies_variance_order_by": { "placement": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105327,13 +105632,13 @@ export default { }, "tournament_trophy_configs": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105345,13 +105650,13 @@ export default { 38 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105359,10 +105664,10 @@ export default { }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 4660 + 4678 ], "nodes": [ - 4656 + 4674 ], "__typename": [ 78 @@ -105370,7 +105675,7 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 4659 + 4677 ], "__typename": [ 78 @@ -105378,13 +105683,13 @@ export default { }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 4678 + 4696 ], "distinct": [ 3 ], "filter": [ - 4665 + 4683 ], "predicate": [ 39 @@ -105395,13 +105700,13 @@ export default { }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 4663 + 4681 ], "count": [ 38, { "columns": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -105410,31 +105715,31 @@ export default { } ], "max": [ - 4669 + 4687 ], "min": [ - 4671 + 4689 ], "stddev": [ - 4680 + 4698 ], "stddev_pop": [ - 4682 + 4700 ], "stddev_samp": [ - 4684 + 4702 ], "sum": [ - 4688 + 4706 ], "var_pop": [ - 4692 + 4710 ], "var_samp": [ - 4694 + 4712 ], "variance": [ - 4696 + 4714 ], "__typename": [ 78 @@ -105442,37 +105747,37 @@ export default { }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 4664 + 4682 ], "count": [ - 2763 + 2781 ], "max": [ - 4670 + 4688 ], "min": [ - 4672 + 4690 ], "stddev": [ - 4681 + 4699 ], "stddev_pop": [ - 4683 + 4701 ], "stddev_samp": [ - 4685 + 4703 ], "sum": [ - 4689 + 4707 ], "var_pop": [ - 4693 + 4711 ], "var_samp": [ - 4695 + 4713 ], "variance": [ - 4697 + 4715 ], "__typename": [ 78 @@ -105480,10 +105785,10 @@ export default { }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 4668 + 4686 ], "on_conflict": [ - 4675 + 4693 ], "__typename": [ 78 @@ -105502,10 +105807,10 @@ export default { }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105513,22 +105818,22 @@ export default { }, "tournament_trophy_configs_bool_exp": { "_and": [ - 4665 + 4683 ], "_not": [ - 4665 + 4683 ], "_or": [ - 4665 + 4683 ], "created_at": [ - 4307 + 4325 ], "custom_name": [ 80 ], "id": [ - 4746 + 4764 ], "image_url": [ 80 @@ -105540,13 +105845,13 @@ export default { 39 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "updated_at": [ - 4307 + 4325 ], "__typename": [ 78 @@ -105566,13 +105871,13 @@ export default { }, "tournament_trophy_configs_insert_input": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105584,13 +105889,13 @@ export default { 38 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105598,13 +105903,13 @@ export default { }, "tournament_trophy_configs_max_fields": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105616,10 +105921,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105627,28 +105932,28 @@ export default { }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 2763 + 2781 ], "custom_name": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "image_url": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105656,13 +105961,13 @@ export default { }, "tournament_trophy_configs_min_fields": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105674,10 +105979,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105685,28 +105990,28 @@ export default { }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 2763 + 2781 ], "custom_name": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "image_url": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105717,7 +106022,7 @@ export default { 38 ], "returning": [ - 4656 + 4674 ], "__typename": [ 78 @@ -105725,10 +106030,10 @@ export default { }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 4668 + 4686 ], "on_conflict": [ - 4675 + 4693 ], "__typename": [ 78 @@ -105736,13 +106041,13 @@ export default { }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 4666 + 4684 ], "update_columns": [ - 4690 + 4708 ], "where": [ - 4665 + 4683 ], "__typename": [ 78 @@ -105750,31 +106055,31 @@ export default { }, "tournament_trophy_configs_order_by": { "created_at": [ - 2763 + 2781 ], "custom_name": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "image_url": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "updated_at": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105782,7 +106087,7 @@ export default { }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -105791,13 +106096,13 @@ export default { "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105809,10 +106114,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105831,10 +106136,10 @@ export default { }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105853,10 +106158,10 @@ export default { }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105875,10 +106180,10 @@ export default { }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105886,7 +106191,7 @@ export default { }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 4687 + 4705 ], "ordering": [ 236 @@ -105897,13 +106202,13 @@ export default { }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 4306 + 4324 ], "custom_name": [ 78 ], "id": [ - 4744 + 4762 ], "image_url": [ 78 @@ -105915,10 +106220,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "updated_at": [ - 4306 + 4324 ], "__typename": [ 78 @@ -105937,10 +106242,10 @@ export default { }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105949,13 +106254,13 @@ export default { "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 4667 + 4685 ], "_set": [ - 4679 + 4697 ], "where": [ - 4665 + 4683 ], "__typename": [ 78 @@ -105974,10 +106279,10 @@ export default { }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -105996,10 +106301,10 @@ export default { }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -106018,10 +106323,10 @@ export default { }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 2763 + 2781 ], "silhouette": [ - 2763 + 2781 ], "__typename": [ 78 @@ -106029,7 +106334,7 @@ export default { }, "tournaments": { "admin": [ - 3721 + 3739 ], "auto_start": [ 3 @@ -106059,7 +106364,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -106122,7 +106427,7 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "is_league": [ 3 @@ -106134,10 +106439,10 @@ export default { 3 ], "league_season_division": [ - 1812 + 1830 ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -106149,16 +106454,16 @@ export default { 78 ], "options": [ - 2458 + 2476 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4354, + 4372, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106168,19 +106473,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "organizers_aggregate": [ - 4355, + 4373, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -106190,19 +106495,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "player_stats": [ - 5589, + 5597, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106212,19 +106517,19 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], "player_stats_aggregate": [ - 5590, + 5598, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -106234,19 +106539,19 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], "results": [ - 5538, + 5546, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106256,19 +106561,19 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "results_aggregate": [ - 5539, + 5547, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -106278,19 +106583,19 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "rosters": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106300,19 +106605,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "rosters_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -106322,11 +106627,11 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], @@ -106334,10 +106639,10 @@ export default { 78 ], "stages": [ - 4436, + 4454, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -106347,19 +106652,19 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "stages_aggregate": [ - 4437, + 4455, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -106369,25 +106674,25 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "start": [ - 4306 + 4324 ], "status": [ 1164 ], "teams": [ - 4569, + 4587, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -106397,19 +106702,19 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "teams_aggregate": [ - 4570, + 4588, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -106419,19 +106724,19 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "trophies": [ - 4611, + 4629, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -106441,19 +106746,19 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "trophies_aggregate": [ - 4612, + 4630, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -106463,11 +106768,11 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], @@ -106475,10 +106780,10 @@ export default { 3 ], "trophy_configs": [ - 4656, + 4674, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -106488,19 +106793,19 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], "trophy_configs_aggregate": [ - 4657, + 4675, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -106510,11 +106815,11 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], @@ -106524,10 +106829,10 @@ export default { }, "tournaments_aggregate": { "aggregate": [ - 4704 + 4722 ], "nodes": [ - 4698 + 4716 ], "__typename": [ 78 @@ -106535,13 +106840,13 @@ export default { }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 4701 + 4719 ], "bool_or": [ - 4702 + 4720 ], "count": [ - 4703 + 4721 ], "__typename": [ 78 @@ -106549,13 +106854,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 4723 + 4741 ], "distinct": [ 3 ], "filter": [ - 4709 + 4727 ], "predicate": [ 4 @@ -106566,13 +106871,13 @@ export default { }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 4724 + 4742 ], "distinct": [ 3 ], "filter": [ - 4709 + 4727 ], "predicate": [ 4 @@ -106583,13 +106888,13 @@ export default { }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 4722 + 4740 ], "distinct": [ 3 ], "filter": [ - 4709 + 4727 ], "predicate": [ 39 @@ -106600,13 +106905,13 @@ export default { }, "tournaments_aggregate_fields": { "avg": [ - 4707 + 4725 ], "count": [ 38, { "columns": [ - 4722, + 4740, "[tournaments_select_column!]" ], "distinct": [ @@ -106615,31 +106920,31 @@ export default { } ], "max": [ - 4713 + 4731 ], "min": [ - 4715 + 4733 ], "stddev": [ - 4726 + 4744 ], "stddev_pop": [ - 4728 + 4746 ], "stddev_samp": [ - 4730 + 4748 ], "sum": [ - 4734 + 4752 ], "var_pop": [ - 4738 + 4756 ], "var_samp": [ - 4740 + 4758 ], "variance": [ - 4742 + 4760 ], "__typename": [ 78 @@ -106647,37 +106952,37 @@ export default { }, "tournaments_aggregate_order_by": { "avg": [ - 4708 + 4726 ], "count": [ - 2763 + 2781 ], "max": [ - 4714 + 4732 ], "min": [ - 4716 + 4734 ], "stddev": [ - 4727 + 4745 ], "stddev_pop": [ - 4729 + 4747 ], "stddev_samp": [ - 4731 + 4749 ], "sum": [ - 4735 + 4753 ], "var_pop": [ - 4739 + 4757 ], "var_samp": [ - 4741 + 4759 ], "variance": [ - 4743 + 4761 ], "__typename": [ 78 @@ -106685,10 +106990,10 @@ export default { }, "tournaments_arr_rel_insert_input": { "data": [ - 4712 + 4730 ], "on_conflict": [ - 4719 + 4737 ], "__typename": [ 78 @@ -106710,7 +107015,7 @@ export default { }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -106718,16 +107023,16 @@ export default { }, "tournaments_bool_exp": { "_and": [ - 4709 + 4727 ], "_not": [ - 4709 + 4727 ], "_or": [ - 4709 + 4727 ], "admin": [ - 3725 + 3743 ], "auto_start": [ 4 @@ -106757,7 +107062,7 @@ export default { 4 ], "created_at": [ - 4307 + 4325 ], "description": [ 80 @@ -106820,7 +107125,7 @@ export default { 4 ], "id": [ - 4746 + 4764 ], "is_league": [ 4 @@ -106832,10 +107137,10 @@ export default { 4 ], "league_season_division": [ - 1819 + 1837 ], "match_options_id": [ - 4746 + 4764 ], "max_players_per_lineup": [ 39 @@ -106847,70 +107152,70 @@ export default { 80 ], "options": [ - 2462 + 2480 ], "organizer_steam_id": [ 182 ], "organizers": [ - 4363 + 4381 ], "organizers_aggregate": [ - 4356 + 4374 ], "player_stats": [ - 5608 + 5616 ], "player_stats_aggregate": [ - 5591 + 5599 ], "results": [ - 5557 + 5565 ], "results_aggregate": [ - 5540 + 5548 ], "rosters": [ - 4537 + 4555 ], "rosters_aggregate": [ - 4530 + 4548 ], "scheduling_mode": [ 80 ], "stages": [ - 4448 + 4466 ], "stages_aggregate": [ - 4438 + 4456 ], "start": [ - 4307 + 4325 ], "status": [ 1165 ], "teams": [ - 4578 + 4596 ], "teams_aggregate": [ - 4571 + 4589 ], "trophies": [ - 4622 + 4640 ], "trophies_aggregate": [ - 4613 + 4631 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 4665 + 4683 ], "trophy_configs_aggregate": [ - 4658 + 4676 ], "__typename": [ 78 @@ -106927,13 +107232,13 @@ export default { }, "tournaments_insert_input": { "admin": [ - 3732 + 3750 ], "auto_start": [ 3 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -106993,61 +107298,61 @@ export default { 1170 ], "id": [ - 4744 + 4762 ], "is_league": [ 3 ], "league_season_division": [ - 1827 + 1845 ], "match_options_id": [ - 4744 + 4762 ], "name": [ 78 ], "options": [ - 2469 + 2487 ], "organizer_steam_id": [ 180 ], "organizers": [ - 4360 + 4378 ], "player_stats": [ - 5605 + 5613 ], "results": [ - 5554 + 5562 ], "rosters": [ - 4534 + 4552 ], "scheduling_mode": [ 78 ], "stages": [ - 4445 + 4463 ], "start": [ - 4306 + 4324 ], "status": [ 1164 ], "teams": [ - 4575 + 4593 ], "trophies": [ - 4619 + 4637 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 4662 + 4680 ], "__typename": [ 78 @@ -107055,7 +107360,7 @@ export default { }, "tournaments_max_fields": { "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -107070,10 +107375,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -107091,7 +107396,7 @@ export default { 78 ], "start": [ - 4306 + 4324 ], "__typename": [ 78 @@ -107099,37 +107404,37 @@ export default { }, "tournaments_max_order_by": { "created_at": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "discord_guild_id": [ - 2763 + 2781 ], "discord_role_id": [ - 2763 + 2781 ], "discord_webhook": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "organizer_steam_id": [ - 2763 + 2781 ], "scheduling_mode": [ - 2763 + 2781 ], "start": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107137,7 +107442,7 @@ export default { }, "tournaments_min_fields": { "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -107152,10 +107457,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_options_id": [ - 4744 + 4762 ], "max_players_per_lineup": [ 38 @@ -107173,7 +107478,7 @@ export default { 78 ], "start": [ - 4306 + 4324 ], "__typename": [ 78 @@ -107181,37 +107486,37 @@ export default { }, "tournaments_min_order_by": { "created_at": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "discord_guild_id": [ - 2763 + 2781 ], "discord_role_id": [ - 2763 + 2781 ], "discord_webhook": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "match_options_id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "organizer_steam_id": [ - 2763 + 2781 ], "scheduling_mode": [ - 2763 + 2781 ], "start": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107222,7 +107527,7 @@ export default { 38 ], "returning": [ - 4698 + 4716 ], "__typename": [ 78 @@ -107230,10 +107535,10 @@ export default { }, "tournaments_obj_rel_insert_input": { "data": [ - 4712 + 4730 ], "on_conflict": [ - 4719 + 4737 ], "__typename": [ 78 @@ -107241,13 +107546,13 @@ export default { }, "tournaments_on_conflict": { "constraint": [ - 4710 + 4728 ], "update_columns": [ - 4736 + 4754 ], "where": [ - 4709 + 4727 ], "__typename": [ 78 @@ -107255,166 +107560,166 @@ export default { }, "tournaments_order_by": { "admin": [ - 3734 + 3752 ], "auto_start": [ - 2763 + 2781 ], "can_cancel": [ - 2763 + 2781 ], "can_close_registration": [ - 2763 + 2781 ], "can_join": [ - 2763 + 2781 ], "can_open_registration": [ - 2763 + 2781 ], "can_pause": [ - 2763 + 2781 ], "can_resume": [ - 2763 + 2781 ], "can_setup": [ - 2763 + 2781 ], "can_start": [ - 2763 + 2781 ], "created_at": [ - 2763 + 2781 ], "description": [ - 2763 + 2781 ], "discord_guild_id": [ - 2763 + 2781 ], "discord_notifications_enabled": [ - 2763 + 2781 ], "discord_notify_Canceled": [ - 2763 + 2781 ], "discord_notify_Finished": [ - 2763 + 2781 ], "discord_notify_Forfeit": [ - 2763 + 2781 ], "discord_notify_Live": [ - 2763 + 2781 ], "discord_notify_MapPaused": [ - 2763 + 2781 ], "discord_notify_PickingPlayers": [ - 2763 + 2781 ], "discord_notify_Scheduled": [ - 2763 + 2781 ], "discord_notify_Surrendered": [ - 2763 + 2781 ], "discord_notify_Tie": [ - 2763 + 2781 ], "discord_notify_Veto": [ - 2763 + 2781 ], "discord_notify_WaitingForCheckIn": [ - 2763 + 2781 ], "discord_notify_WaitingForServer": [ - 2763 + 2781 ], "discord_role_id": [ - 2763 + 2781 ], "discord_voice_enabled": [ - 2763 + 2781 ], "discord_webhook": [ - 2763 + 2781 ], "e_tournament_status": [ 1172 ], "has_min_teams": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "is_league": [ - 2763 + 2781 ], "is_organizer": [ - 2763 + 2781 ], "joined_tournament": [ - 2763 + 2781 ], "league_season_division": [ - 1829 + 1847 ], "match_options_id": [ - 2763 + 2781 ], "max_players_per_lineup": [ - 2763 + 2781 ], "min_players_per_lineup": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "options": [ - 2471 + 2489 ], "organizer_steam_id": [ - 2763 + 2781 ], "organizers_aggregate": [ - 4359 + 4377 ], "player_stats_aggregate": [ - 5604 + 5612 ], "results_aggregate": [ - 5553 + 5561 ], "rosters_aggregate": [ - 4533 + 4551 ], "scheduling_mode": [ - 2763 + 2781 ], "stages_aggregate": [ - 4443 + 4461 ], "start": [ - 2763 + 2781 ], "status": [ - 2763 + 2781 ], "teams_aggregate": [ - 4574 + 4592 ], "trophies_aggregate": [ - 4618 + 4636 ], "trophies_enabled": [ - 2763 + 2781 ], "trophy_configs_aggregate": [ - 4661 + 4679 ], "__typename": [ 78 @@ -107422,7 +107727,7 @@ export default { }, "tournaments_pk_columns_input": { "id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -107436,7 +107741,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -107493,13 +107798,13 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_league": [ 3 ], "match_options_id": [ - 4744 + 4762 ], "name": [ 78 @@ -107511,7 +107816,7 @@ export default { 78 ], "start": [ - 4306 + 4324 ], "status": [ 1164 @@ -107539,7 +107844,7 @@ export default { }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107561,7 +107866,7 @@ export default { }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107583,7 +107888,7 @@ export default { }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107591,7 +107896,7 @@ export default { }, "tournaments_stream_cursor_input": { "initial_value": [ - 4733 + 4751 ], "ordering": [ 236 @@ -107605,7 +107910,7 @@ export default { 3 ], "created_at": [ - 4306 + 4324 ], "description": [ 78 @@ -107662,13 +107967,13 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "is_league": [ 3 ], "match_options_id": [ - 4744 + 4762 ], "name": [ 78 @@ -107680,7 +107985,7 @@ export default { 78 ], "start": [ - 4306 + 4324 ], "status": [ 1164 @@ -107708,7 +108013,7 @@ export default { }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107717,13 +108022,13 @@ export default { "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 4711 + 4729 ], "_set": [ - 4725 + 4743 ], "where": [ - 4709 + 4727 ], "__typename": [ 78 @@ -107745,7 +108050,7 @@ export default { }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107767,7 +108072,7 @@ export default { }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107789,7 +108094,7 @@ export default { }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -107798,37 +108103,37 @@ export default { "uuid": {}, "uuid_array_comparison_exp": { "_contained_in": [ - 4744 + 4762 ], "_contains": [ - 4744 + 4762 ], "_eq": [ - 4744 + 4762 ], "_gt": [ - 4744 + 4762 ], "_gte": [ - 4744 + 4762 ], "_in": [ - 4744 + 4762 ], "_is_null": [ 3 ], "_lt": [ - 4744 + 4762 ], "_lte": [ - 4744 + 4762 ], "_neq": [ - 4744 + 4762 ], "_nin": [ - 4744 + 4762 ], "__typename": [ 78 @@ -107836,170 +108141,31 @@ export default { }, "uuid_comparison_exp": { "_eq": [ - 4744 + 4762 ], "_gt": [ - 4744 + 4762 ], "_gte": [ - 4744 + 4762 ], "_in": [ - 4744 + 4762 ], "_is_null": [ 3 ], "_lt": [ - 4744 + 4762 ], "_lte": [ - 4744 + 4762 ], "_neq": [ - 4744 + 4762 ], "_nin": [ - 4744 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches": { - "event": [ - 1453 - ], - "event_id": [ - 4744 - ], - "match": [ - 2578 - ], - "match_id": [ - 4744 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_aggregate": { - "aggregate": [ - 4749 - ], - "nodes": [ - 4747 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_aggregate_fields": { - "count": [ - 38, - { - "columns": [ - 4754, - "[v_event_matches_select_column!]" - ], - "distinct": [ - 3 - ] - } - ], - "max": [ - 4751 - ], - "min": [ - 4752 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_bool_exp": { - "_and": [ - 4750 - ], - "_not": [ - 4750 - ], - "_or": [ - 4750 - ], - "event": [ - 1457 - ], - "event_id": [ - 4746 - ], - "match": [ - 2587 - ], - "match_id": [ - 4746 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_max_fields": { - "event_id": [ - 4744 - ], - "match_id": [ - 4744 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_min_fields": { - "event_id": [ - 4744 - ], - "match_id": [ - 4744 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_order_by": { - "event": [ - 1466 - ], - "event_id": [ - 2763 - ], - "match": [ - 2598 - ], - "match_id": [ - 2763 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_select_column": {}, - "v_event_matches_stream_cursor_input": { - "initial_value": [ - 4756 - ], - "ordering": [ - 236 - ], - "__typename": [ - 78 - ] - }, - "v_event_matches_stream_cursor_value_input": { - "event_id": [ - 4744 - ], - "match_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -108013,19 +108179,19 @@ export default { 38 ], "event": [ - 1453 + 1471 ], "event_id": [ - 4744 + 4762 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108034,7 +108200,7 @@ export default { 38 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -108045,10 +108211,10 @@ export default { }, "v_event_player_stats_aggregate": { "aggregate": [ - 4771 + 4779 ], "nodes": [ - 4757 + 4765 ], "__typename": [ 78 @@ -108056,31 +108222,31 @@ export default { }, "v_event_player_stats_aggregate_bool_exp": { "avg": [ - 4760 + 4768 ], "corr": [ - 4761 + 4769 ], "count": [ - 4763 + 4771 ], "covar_samp": [ - 4764 + 4772 ], "max": [ - 4766 + 4774 ], "min": [ - 4767 + 4775 ], "stddev_samp": [ - 4768 + 4776 ], "sum": [ - 4769 + 4777 ], "var_samp": [ - 4770 + 4778 ], "__typename": [ 78 @@ -108088,16 +108254,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4784 + 4792 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108105,16 +108271,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4762 + 4770 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108122,10 +108288,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4785 + 4793 ], "Y": [ - 4785 + 4793 ], "__typename": [ 78 @@ -108133,13 +108299,13 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4783 + 4791 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ 39 @@ -108150,16 +108316,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4765 + 4773 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108167,10 +108333,10 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4786 + 4794 ], "Y": [ - 4786 + 4794 ], "__typename": [ 78 @@ -108178,16 +108344,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4787 + 4795 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108195,16 +108361,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4788 + 4796 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108212,16 +108378,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4789 + 4797 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108229,16 +108395,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4790 + 4798 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108246,16 +108412,16 @@ export default { }, "v_event_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4791 + 4799 ], "distinct": [ 3 ], "filter": [ - 4776 + 4784 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -108263,13 +108429,13 @@ export default { }, "v_event_player_stats_aggregate_fields": { "avg": [ - 4774 + 4782 ], "count": [ 38, { "columns": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "distinct": [ @@ -108278,31 +108444,31 @@ export default { } ], "max": [ - 4778 + 4786 ], "min": [ - 4780 + 4788 ], "stddev": [ - 4792 + 4800 ], "stddev_pop": [ - 4794 + 4802 ], "stddev_samp": [ - 4796 + 4804 ], "sum": [ - 4800 + 4808 ], "var_pop": [ - 4802 + 4810 ], "var_samp": [ - 4804 + 4812 ], "variance": [ - 4806 + 4814 ], "__typename": [ 78 @@ -108310,37 +108476,37 @@ export default { }, "v_event_player_stats_aggregate_order_by": { "avg": [ - 4775 + 4783 ], "count": [ - 2763 + 2781 ], "max": [ - 4779 + 4787 ], "min": [ - 4781 + 4789 ], "stddev": [ - 4793 + 4801 ], "stddev_pop": [ - 4795 + 4803 ], "stddev_samp": [ - 4797 + 4805 ], "sum": [ - 4801 + 4809 ], "var_pop": [ - 4803 + 4811 ], "var_samp": [ - 4805 + 4813 ], "variance": [ - 4807 + 4815 ], "__typename": [ 78 @@ -108348,7 +108514,7 @@ export default { }, "v_event_player_stats_arr_rel_insert_input": { "data": [ - 4777 + 4785 ], "__typename": [ 78 @@ -108385,28 +108551,28 @@ export default { }, "v_event_player_stats_avg_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108414,13 +108580,13 @@ export default { }, "v_event_player_stats_bool_exp": { "_and": [ - 4776 + 4784 ], "_not": [ - 4776 + 4784 ], "_or": [ - 4776 + 4784 ], "assists": [ 39 @@ -108429,19 +108595,19 @@ export default { 39 ], "event": [ - 1457 + 1475 ], "event_id": [ - 4746 + 4764 ], "headshot_percentage": [ - 1482 + 1500 ], "headshots": [ 39 ], "kdr": [ - 1482 + 1500 ], "kills": [ 39 @@ -108450,7 +108616,7 @@ export default { 39 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -108467,19 +108633,19 @@ export default { 38 ], "event": [ - 1464 + 1482 ], "event_id": [ - 4744 + 4762 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108488,7 +108654,7 @@ export default { 38 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -108505,16 +108671,16 @@ export default { 38 ], "event_id": [ - 4744 + 4762 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108531,31 +108697,31 @@ export default { }, "v_event_player_stats_max_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108569,16 +108735,16 @@ export default { 38 ], "event_id": [ - 4744 + 4762 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108595,31 +108761,31 @@ export default { }, "v_event_player_stats_min_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "event_id": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108627,37 +108793,37 @@ export default { }, "v_event_player_stats_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "event": [ - 1466 + 1484 ], "event_id": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108703,28 +108869,28 @@ export default { }, "v_event_player_stats_stddev_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108761,28 +108927,28 @@ export default { }, "v_event_player_stats_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108819,28 +108985,28 @@ export default { }, "v_event_player_stats_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108848,7 +109014,7 @@ export default { }, "v_event_player_stats_stream_cursor_input": { "initial_value": [ - 4799 + 4807 ], "ordering": [ 236 @@ -108865,16 +109031,16 @@ export default { 38 ], "event_id": [ - 4744 + 4762 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108897,13 +109063,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -108920,28 +109086,28 @@ export default { }, "v_event_player_stats_sum_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -108978,28 +109144,28 @@ export default { }, "v_event_player_stats_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -109036,28 +109202,28 @@ export default { }, "v_event_player_stats_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -109094,28 +109260,28 @@ export default { }, "v_event_player_stats_variance_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -109170,10 +109336,10 @@ export default { }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 4810 + 4818 ], "nodes": [ - 4808 + 4816 ], "__typename": [ 78 @@ -109181,13 +109347,13 @@ export default { }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 4811 + 4819 ], "count": [ 38, { "columns": [ - 4816, + 4824, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -109196,31 +109362,31 @@ export default { } ], "max": [ - 4813 + 4821 ], "min": [ - 4814 + 4822 ], "stddev": [ - 4817 + 4825 ], "stddev_pop": [ - 4818 + 4826 ], "stddev_samp": [ - 4819 + 4827 ], "sum": [ - 4822 + 4830 ], "var_pop": [ - 4823 + 4831 ], "var_samp": [ - 4824 + 4832 ], "variance": [ - 4825 + 4833 ], "__typename": [ 78 @@ -109263,13 +109429,13 @@ export default { }, "v_gpu_pool_status_bool_exp": { "_and": [ - 4812 + 4820 ], "_not": [ - 4812 + 4820 ], "_or": [ - 4812 + 4820 ], "demo_free_gpu_nodes": [ 39 @@ -109389,46 +109555,46 @@ export default { }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 2763 + 2781 ], "demo_in_progress": [ - 2763 + 2781 ], "demo_total_gpu_nodes": [ - 2763 + 2781 ], "free_gpu_nodes": [ - 2763 + 2781 ], "free_gpu_nodes_for_batch": [ - 2763 + 2781 ], "highlights_in_progress": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "live_in_progress": [ - 2763 + 2781 ], "registered_gpu_nodes": [ - 2763 + 2781 ], "rendering_total_gpu_nodes": [ - 2763 + 2781 ], "renders_paused_for_active_match": [ - 2763 + 2781 ], "streaming_free_gpu_nodes": [ - 2763 + 2781 ], "streaming_total_gpu_nodes": [ - 2763 + 2781 ], "total_gpu_nodes": [ - 2763 + 2781 ], "__typename": [ 78 @@ -109542,7 +109708,7 @@ export default { }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 4821 + 4829 ], "ordering": [ 236 @@ -109746,22 +109912,22 @@ export default { 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 1994 + 2012 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "losses": [ 38 @@ -109791,13 +109957,13 @@ export default { 38 ], "season_division": [ - 1812 + 1830 ], "team_season": [ - 1952 + 1970 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -109808,10 +109974,10 @@ export default { }, "v_league_division_standings_aggregate": { "aggregate": [ - 4830 + 4838 ], "nodes": [ - 4826 + 4834 ], "__typename": [ 78 @@ -109819,7 +109985,7 @@ export default { }, "v_league_division_standings_aggregate_bool_exp": { "count": [ - 4829 + 4837 ], "__typename": [ 78 @@ -109827,13 +109993,13 @@ export default { }, "v_league_division_standings_aggregate_bool_exp_count": { "arguments": [ - 4842 + 4850 ], "distinct": [ 3 ], "filter": [ - 4835 + 4843 ], "predicate": [ 39 @@ -109844,13 +110010,13 @@ export default { }, "v_league_division_standings_aggregate_fields": { "avg": [ - 4833 + 4841 ], "count": [ 38, { "columns": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "distinct": [ @@ -109859,31 +110025,31 @@ export default { } ], "max": [ - 4837 + 4845 ], "min": [ - 4839 + 4847 ], "stddev": [ - 4843 + 4851 ], "stddev_pop": [ - 4845 + 4853 ], "stddev_samp": [ - 4847 + 4855 ], "sum": [ - 4851 + 4859 ], "var_pop": [ - 4853 + 4861 ], "var_samp": [ - 4855 + 4863 ], "variance": [ - 4857 + 4865 ], "__typename": [ 78 @@ -109891,37 +110057,37 @@ export default { }, "v_league_division_standings_aggregate_order_by": { "avg": [ - 4834 + 4842 ], "count": [ - 2763 + 2781 ], "max": [ - 4838 + 4846 ], "min": [ - 4840 + 4848 ], "stddev": [ - 4844 + 4852 ], "stddev_pop": [ - 4846 + 4854 ], "stddev_samp": [ - 4848 + 4856 ], "sum": [ - 4852 + 4860 ], "var_pop": [ - 4854 + 4862 ], "var_samp": [ - 4856 + 4864 ], "variance": [ - 4858 + 4866 ], "__typename": [ 78 @@ -109929,7 +110095,7 @@ export default { }, "v_league_division_standings_arr_rel_insert_input": { "data": [ - 4836 + 4844 ], "__typename": [ 78 @@ -109978,40 +110144,40 @@ export default { }, "v_league_division_standings_avg_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110019,13 +110185,13 @@ export default { }, "v_league_division_standings_bool_exp": { "_and": [ - 4835 + 4843 ], "_not": [ - 4835 + 4843 ], "_or": [ - 4835 + 4843 ], "head_to_head_match_wins": [ 39 @@ -110034,22 +110200,22 @@ export default { 39 ], "league_division_id": [ - 4746 + 4764 ], "league_season_division_id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "league_team": [ - 1997 + 2015 ], "league_team_id": [ - 4746 + 4764 ], "league_team_season_id": [ - 4746 + 4764 ], "losses": [ 39 @@ -110079,13 +110245,13 @@ export default { 39 ], "season_division": [ - 1819 + 1837 ], "team_season": [ - 1961 + 1979 ], "tournament_team_id": [ - 4746 + 4764 ], "wins": [ 39 @@ -110102,22 +110268,22 @@ export default { 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 2003 + 2021 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "losses": [ 38 @@ -110147,13 +110313,13 @@ export default { 38 ], "season_division": [ - 1827 + 1845 ], "team_season": [ - 1970 + 1988 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -110170,19 +110336,19 @@ export default { 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "losses": [ 38 @@ -110212,7 +110378,7 @@ export default { 38 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -110223,58 +110389,58 @@ export default { }, "v_league_division_standings_max_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110288,19 +110454,19 @@ export default { 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "losses": [ 38 @@ -110330,7 +110496,7 @@ export default { 38 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -110341,58 +110507,58 @@ export default { }, "v_league_division_standings_min_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110400,67 +110566,67 @@ export default { }, "v_league_division_standings_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team": [ - 2005 + 2023 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "season_division": [ - 1829 + 1847 ], "team_season": [ - 1972 + 1990 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110510,40 +110676,40 @@ export default { }, "v_league_division_standings_stddev_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110592,40 +110758,40 @@ export default { }, "v_league_division_standings_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110674,40 +110840,40 @@ export default { }, "v_league_division_standings_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110715,7 +110881,7 @@ export default { }, "v_league_division_standings_stream_cursor_input": { "initial_value": [ - 4850 + 4858 ], "ordering": [ 236 @@ -110732,19 +110898,19 @@ export default { 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "losses": [ 38 @@ -110774,7 +110940,7 @@ export default { 38 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -110826,40 +110992,40 @@ export default { }, "v_league_division_standings_sum_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110908,40 +111074,40 @@ export default { }, "v_league_division_standings_var_pop_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -110990,40 +111156,40 @@ export default { }, "v_league_division_standings_var_samp_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111072,40 +111238,40 @@ export default { }, "v_league_division_standings_variance_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "round_diff": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111119,40 +111285,40 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 1994 + 2012 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "matches_played": [ 38 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -111163,10 +111329,10 @@ export default { }, "v_league_season_player_stats_aggregate": { "aggregate": [ - 4873 + 4881 ], "nodes": [ - 4859 + 4867 ], "__typename": [ 78 @@ -111174,31 +111340,31 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp": { "avg": [ - 4862 + 4870 ], "corr": [ - 4863 + 4871 ], "count": [ - 4865 + 4873 ], "covar_samp": [ - 4866 + 4874 ], "max": [ - 4868 + 4876 ], "min": [ - 4869 + 4877 ], "stddev_samp": [ - 4870 + 4878 ], "sum": [ - 4871 + 4879 ], "var_samp": [ - 4872 + 4880 ], "__typename": [ 78 @@ -111206,16 +111372,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4886 + 4894 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111223,16 +111389,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 4864 + 4872 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111240,10 +111406,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4887 + 4895 ], "Y": [ - 4887 + 4895 ], "__typename": [ 78 @@ -111251,13 +111417,13 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4885 + 4893 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ 39 @@ -111268,16 +111434,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 4867 + 4875 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111285,10 +111451,10 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4888 + 4896 ], "Y": [ - 4888 + 4896 ], "__typename": [ 78 @@ -111296,16 +111462,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4889 + 4897 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111313,16 +111479,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4890 + 4898 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111330,16 +111496,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4891 + 4899 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111347,16 +111513,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4892 + 4900 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111364,16 +111530,16 @@ export default { }, "v_league_season_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4893 + 4901 ], "distinct": [ 3 ], "filter": [ - 4878 + 4886 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -111381,13 +111547,13 @@ export default { }, "v_league_season_player_stats_aggregate_fields": { "avg": [ - 4876 + 4884 ], "count": [ 38, { "columns": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "distinct": [ @@ -111396,31 +111562,31 @@ export default { } ], "max": [ - 4880 + 4888 ], "min": [ - 4882 + 4890 ], "stddev": [ - 4894 + 4902 ], "stddev_pop": [ - 4896 + 4904 ], "stddev_samp": [ - 4898 + 4906 ], "sum": [ - 4902 + 4910 ], "var_pop": [ - 4904 + 4912 ], "var_samp": [ - 4906 + 4914 ], "variance": [ - 4908 + 4916 ], "__typename": [ 78 @@ -111428,37 +111594,37 @@ export default { }, "v_league_season_player_stats_aggregate_order_by": { "avg": [ - 4877 + 4885 ], "count": [ - 2763 + 2781 ], "max": [ - 4881 + 4889 ], "min": [ - 4883 + 4891 ], "stddev": [ - 4895 + 4903 ], "stddev_pop": [ - 4897 + 4905 ], "stddev_samp": [ - 4899 + 4907 ], "sum": [ - 4903 + 4911 ], "var_pop": [ - 4905 + 4913 ], "var_samp": [ - 4907 + 4915 ], "variance": [ - 4909 + 4917 ], "__typename": [ 78 @@ -111466,7 +111632,7 @@ export default { }, "v_league_season_player_stats_arr_rel_insert_input": { "data": [ - 4879 + 4887 ], "__typename": [ 78 @@ -111503,28 +111669,28 @@ export default { }, "v_league_season_player_stats_avg_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111532,13 +111698,13 @@ export default { }, "v_league_season_player_stats_bool_exp": { "_and": [ - 4878 + 4886 ], "_not": [ - 4878 + 4886 ], "_or": [ - 4878 + 4886 ], "assists": [ 39 @@ -111547,40 +111713,40 @@ export default { 39 ], "headshot_percentage": [ - 1482 + 1500 ], "headshots": [ 39 ], "kdr": [ - 1482 + 1500 ], "kills": [ 39 ], "league_division_id": [ - 4746 + 4764 ], "league_season_division_id": [ - 4746 + 4764 ], "league_season_id": [ - 4746 + 4764 ], "league_team": [ - 1997 + 2015 ], "league_team_id": [ - 4746 + 4764 ], "league_team_season_id": [ - 4746 + 4764 ], "matches_played": [ 39 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -111597,40 +111763,40 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team": [ - 2003 + 2021 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "matches_played": [ 38 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 @@ -111647,31 +111813,31 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "matches_played": [ 38 @@ -111685,43 +111851,43 @@ export default { }, "v_league_season_player_stats_max_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111735,31 +111901,31 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "matches_played": [ 38 @@ -111773,43 +111939,43 @@ export default { }, "v_league_season_player_stats_min_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111817,49 +111983,49 @@ export default { }, "v_league_season_player_stats_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "league_division_id": [ - 2763 + 2781 ], "league_season_division_id": [ - 2763 + 2781 ], "league_season_id": [ - 2763 + 2781 ], "league_team": [ - 2005 + 2023 ], "league_team_id": [ - 2763 + 2781 ], "league_team_season_id": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111905,28 +112071,28 @@ export default { }, "v_league_season_player_stats_stddev_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -111963,28 +112129,28 @@ export default { }, "v_league_season_player_stats_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112021,28 +112187,28 @@ export default { }, "v_league_season_player_stats_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112050,7 +112216,7 @@ export default { }, "v_league_season_player_stats_stream_cursor_input": { "initial_value": [ - 4901 + 4909 ], "ordering": [ 236 @@ -112067,31 +112233,31 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 ], "league_division_id": [ - 4744 + 4762 ], "league_season_division_id": [ - 4744 + 4762 ], "league_season_id": [ - 4744 + 4762 ], "league_team_id": [ - 4744 + 4762 ], "league_team_season_id": [ - 4744 + 4762 ], "matches_played": [ 38 @@ -112111,13 +112277,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -112134,28 +112300,28 @@ export default { }, "v_league_season_player_stats_sum_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112192,28 +112358,28 @@ export default { }, "v_league_season_player_stats_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112250,28 +112416,28 @@ export default { }, "v_league_season_player_stats_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112308,28 +112474,28 @@ export default { }, "v_league_season_player_stats_variance_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112343,19 +112509,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3721 + 3739 ], "steam_id": [ 180 @@ -112366,10 +112532,10 @@ export default { }, "v_match_captains_aggregate": { "aggregate": [ - 4912 + 4920 ], "nodes": [ - 4910 + 4918 ], "__typename": [ 78 @@ -112377,13 +112543,13 @@ export default { }, "v_match_captains_aggregate_fields": { "avg": [ - 4913 + 4921 ], "count": [ 38, { "columns": [ - 4922, + 4930, "[v_match_captains_select_column!]" ], "distinct": [ @@ -112392,31 +112558,31 @@ export default { } ], "max": [ - 4917 + 4925 ], "min": [ - 4918 + 4926 ], "stddev": [ - 4924 + 4932 ], "stddev_pop": [ - 4925 + 4933 ], "stddev_samp": [ - 4926 + 4934 ], "sum": [ - 4929 + 4937 ], "var_pop": [ - 4931 + 4939 ], "var_samp": [ - 4932 + 4940 ], "variance": [ - 4933 + 4941 ], "__typename": [ 78 @@ -112432,13 +112598,13 @@ export default { }, "v_match_captains_bool_exp": { "_and": [ - 4914 + 4922 ], "_not": [ - 4914 + 4922 ], "_or": [ - 4914 + 4922 ], "captain": [ 4 @@ -112447,19 +112613,19 @@ export default { 80 ], "id": [ - 4746 + 4764 ], "lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "placeholder_name": [ 80 ], "player": [ - 3725 + 3743 ], "steam_id": [ 182 @@ -112484,19 +112650,19 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 ], "player": [ - 3732 + 3750 ], "steam_id": [ 180 @@ -112510,10 +112676,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -112530,10 +112696,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -112550,7 +112716,7 @@ export default { 38 ], "returning": [ - 4910 + 4918 ], "__typename": [ 78 @@ -112558,7 +112724,7 @@ export default { }, "v_match_captains_obj_rel_insert_input": { "data": [ - 4916 + 4924 ], "__typename": [ 78 @@ -112566,28 +112732,28 @@ export default { }, "v_match_captains_order_by": { "captain": [ - 2763 + 2781 ], "discord_id": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "placeholder_name": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112602,10 +112768,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -112643,7 +112809,7 @@ export default { }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 4928 + 4936 ], "ordering": [ 236 @@ -112660,10 +112826,10 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "placeholder_name": [ 78 @@ -112685,13 +112851,13 @@ export default { }, "v_match_captains_updates": { "_inc": [ - 4915 + 4923 ], "_set": [ - 4923 + 4931 ], "where": [ - 4914 + 4922 ], "__typename": [ 78 @@ -112726,7 +112892,7 @@ export default { 38 ], "clutcher": [ - 3721 + 3739 ], "clutcher_steam_id": [ 180 @@ -112735,22 +112901,22 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "outcome": [ 78 @@ -112767,10 +112933,10 @@ export default { }, "v_match_clutches_aggregate": { "aggregate": [ - 4938 + 4946 ], "nodes": [ - 4934 + 4942 ], "__typename": [ 78 @@ -112778,7 +112944,7 @@ export default { }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 4937 + 4945 ], "__typename": [ 78 @@ -112786,13 +112952,13 @@ export default { }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 4950 + 4958 ], "distinct": [ 3 ], "filter": [ - 4943 + 4951 ], "predicate": [ 39 @@ -112803,13 +112969,13 @@ export default { }, "v_match_clutches_aggregate_fields": { "avg": [ - 4941 + 4949 ], "count": [ 38, { "columns": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -112818,31 +112984,31 @@ export default { } ], "max": [ - 4945 + 4953 ], "min": [ - 4947 + 4955 ], "stddev": [ - 4951 + 4959 ], "stddev_pop": [ - 4953 + 4961 ], "stddev_samp": [ - 4955 + 4963 ], "sum": [ - 4959 + 4967 ], "var_pop": [ - 4961 + 4969 ], "var_samp": [ - 4963 + 4971 ], "variance": [ - 4965 + 4973 ], "__typename": [ 78 @@ -112850,37 +113016,37 @@ export default { }, "v_match_clutches_aggregate_order_by": { "avg": [ - 4942 + 4950 ], "count": [ - 2763 + 2781 ], "max": [ - 4946 + 4954 ], "min": [ - 4948 + 4956 ], "stddev": [ - 4952 + 4960 ], "stddev_pop": [ - 4954 + 4962 ], "stddev_samp": [ - 4956 + 4964 ], "sum": [ - 4960 + 4968 ], "var_pop": [ - 4962 + 4970 ], "var_samp": [ - 4964 + 4972 ], "variance": [ - 4966 + 4974 ], "__typename": [ 78 @@ -112888,7 +113054,7 @@ export default { }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 4944 + 4952 ], "__typename": [ 78 @@ -112913,16 +113079,16 @@ export default { }, "v_match_clutches_avg_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -112930,19 +113096,19 @@ export default { }, "v_match_clutches_bool_exp": { "_and": [ - 4943 + 4951 ], "_not": [ - 4943 + 4951 ], "_or": [ - 4943 + 4951 ], "against_count": [ 39 ], "clutcher": [ - 3725 + 3743 ], "clutcher_steam_id": [ 182 @@ -112951,22 +113117,22 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "outcome": [ 80 @@ -112986,7 +113152,7 @@ export default { 38 ], "clutcher": [ - 3732 + 3750 ], "clutcher_steam_id": [ 180 @@ -112995,22 +113161,22 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "outcome": [ 78 @@ -113036,13 +113202,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "outcome": [ 78 @@ -113059,31 +113225,31 @@ export default { }, "v_match_clutches_max_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "outcome": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113100,13 +113266,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "outcome": [ 78 @@ -113123,31 +113289,31 @@ export default { }, "v_match_clutches_min_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "outcome": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113155,43 +113321,43 @@ export default { }, "v_match_clutches_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher": [ - 3734 + 3752 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "outcome": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113217,16 +113383,16 @@ export default { }, "v_match_clutches_stddev_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113251,16 +113417,16 @@ export default { }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113285,16 +113451,16 @@ export default { }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113302,7 +113468,7 @@ export default { }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 4958 + 4966 ], "ordering": [ 236 @@ -113322,13 +113488,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "outcome": [ 78 @@ -113362,16 +113528,16 @@ export default { }, "v_match_clutches_sum_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113396,16 +113562,16 @@ export default { }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113430,16 +113596,16 @@ export default { }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113464,16 +113630,16 @@ export default { }, "v_match_clutches_variance_order_by": { "against_count": [ - 2763 + 2781 ], "clutcher_steam_id": [ - 2763 + 2781 ], "kills_in_clutch": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113490,16 +113656,16 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "victim_side": [ 78 @@ -113516,10 +113682,10 @@ export default { }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 4969 + 4977 ], "nodes": [ - 4967 + 4975 ], "__typename": [ 78 @@ -113527,13 +113693,13 @@ export default { }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 4970 + 4978 ], "count": [ 38, { "columns": [ - 4975, + 4983, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -113542,31 +113708,31 @@ export default { } ], "max": [ - 4972 + 4980 ], "min": [ - 4973 + 4981 ], "stddev": [ - 4976 + 4984 ], "stddev_pop": [ - 4977 + 4985 ], "stddev_samp": [ - 4978 + 4986 ], "sum": [ - 4981 + 4989 ], "var_pop": [ - 4982 + 4990 ], "var_samp": [ - 4983 + 4991 ], "variance": [ - 4984 + 4992 ], "__typename": [ 78 @@ -113588,13 +113754,13 @@ export default { }, "v_match_kill_pairs_bool_exp": { "_and": [ - 4971 + 4979 ], "_not": [ - 4971 + 4979 ], "_or": [ - 4971 + 4979 ], "killer_side": [ 80 @@ -113606,16 +113772,16 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "victim_side": [ 80 @@ -113641,10 +113807,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "victim_side": [ 78 @@ -113670,10 +113836,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "victim_side": [ 78 @@ -113690,34 +113856,34 @@ export default { }, "v_match_kill_pairs_order_by": { "killer_side": [ - 2763 + 2781 ], "killer_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "victim_side": [ - 2763 + 2781 ], "victim_steam_id": [ - 2763 + 2781 ], "weapon": [ - 2763 + 2781 ], "__typename": [ 78 @@ -113768,7 +113934,7 @@ export default { }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 4980 + 4988 ], "ordering": [ 236 @@ -113788,10 +113954,10 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "victim_side": [ 78 @@ -113864,22 +114030,22 @@ export default { }, "v_match_lineup_buy_types": { "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -113899,10 +114065,10 @@ export default { }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 4987 + 4995 ], "nodes": [ - 4985 + 4993 ], "__typename": [ 78 @@ -113910,13 +114076,13 @@ export default { }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 4988 + 4996 ], "count": [ 38, { "columns": [ - 4993, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -113925,31 +114091,31 @@ export default { } ], "max": [ - 4990 + 4998 ], "min": [ - 4991 + 4999 ], "stddev": [ - 4994 + 5002 ], "stddev_pop": [ - 4995 + 5003 ], "stddev_samp": [ - 4996 + 5004 ], "sum": [ - 4999 + 5007 ], "var_pop": [ - 5000 + 5008 ], "var_samp": [ - 5001 + 5009 ], "variance": [ - 5002 + 5010 ], "__typename": [ 78 @@ -113968,31 +114134,31 @@ export default { }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 4989 + 4997 ], "_not": [ - 4989 + 4997 ], "_or": [ - 4989 + 4997 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "matchup": [ 80 @@ -114012,13 +114178,13 @@ export default { }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -114038,13 +114204,13 @@ export default { }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -114064,34 +114230,34 @@ export default { }, "v_match_lineup_buy_types_order_by": { "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "matchup": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -114133,7 +114299,7 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 4998 + 5006 ], "ordering": [ 236 @@ -114144,13 +114310,13 @@ export default { }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -114226,22 +114392,22 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "opening_attempts": [ 38 @@ -114282,10 +114448,10 @@ export default { }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 5005 + 5013 ], "nodes": [ - 5003 + 5011 ], "__typename": [ 78 @@ -114293,13 +114459,13 @@ export default { }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 5006 + 5014 ], "count": [ 38, { "columns": [ - 5011, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -114308,31 +114474,31 @@ export default { } ], "max": [ - 5008 + 5016 ], "min": [ - 5009 + 5017 ], "stddev": [ - 5012 + 5020 ], "stddev_pop": [ - 5013 + 5021 ], "stddev_samp": [ - 5014 + 5022 ], "sum": [ - 5017 + 5025 ], "var_pop": [ - 5018 + 5026 ], "var_samp": [ - 5019 + 5027 ], "variance": [ - 5020 + 5028 ], "__typename": [ 78 @@ -114387,13 +114553,13 @@ export default { }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 5007 + 5015 ], "_not": [ - 5007 + 5015 ], "_or": [ - 5007 + 5015 ], "man_adv_rounds": [ 39 @@ -114408,22 +114574,22 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "opening_attempts": [ 39 @@ -114476,13 +114642,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "opening_attempts": [ 38 @@ -114535,13 +114701,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "opening_attempts": [ 38 @@ -114582,67 +114748,67 @@ export default { }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 2763 + 2781 ], "man_adv_wins": [ - 2763 + 2781 ], "man_dis_rounds": [ - 2763 + 2781 ], "man_dis_wins": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "opening_attempts": [ - 2763 + 2781 ], "opening_wins": [ - 2763 + 2781 ], "pistol_rounds": [ - 2763 + 2781 ], "pistol_wins": [ - 2763 + 2781 ], "round_wins": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "won_buy_eco": [ - 2763 + 2781 ], "won_buy_force": [ - 2763 + 2781 ], "won_buy_full": [ - 2763 + 2781 ], "won_buy_pistol": [ - 2763 + 2781 ], "__typename": [ 78 @@ -114792,7 +114958,7 @@ export default { }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 5016 + 5024 ], "ordering": [ 236 @@ -114815,13 +114981,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "opening_attempts": [ 38 @@ -115053,7 +115219,7 @@ export default { 3 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115064,10 +115230,10 @@ export default { }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 5023 + 5031 ], "nodes": [ - 5021 + 5029 ], "__typename": [ 78 @@ -115075,13 +115241,13 @@ export default { }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 5024 + 5032 ], "count": [ 38, { "columns": [ - 5032, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -115090,31 +115256,31 @@ export default { } ], "max": [ - 5028 + 5036 ], "min": [ - 5029 + 5037 ], "stddev": [ - 5034 + 5042 ], "stddev_pop": [ - 5035 + 5043 ], "stddev_samp": [ - 5036 + 5044 ], "sum": [ - 5039 + 5047 ], "var_pop": [ - 5041 + 5049 ], "var_samp": [ - 5042 + 5050 ], "variance": [ - 5043 + 5051 ], "__typename": [ 78 @@ -115130,19 +115296,19 @@ export default { }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 5025 + 5033 ], "_not": [ - 5025 + 5033 ], "_or": [ - 5025 + 5033 ], "has_backup_file": [ 4 ], "match_map_id": [ - 4746 + 4764 ], "round": [ 39 @@ -115164,7 +115330,7 @@ export default { 3 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115175,7 +115341,7 @@ export default { }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115186,7 +115352,7 @@ export default { }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115200,7 +115366,7 @@ export default { 38 ], "returning": [ - 5021 + 5029 ], "__typename": [ 78 @@ -115208,13 +115374,13 @@ export default { }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -115226,7 +115392,7 @@ export default { 3 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115261,7 +115427,7 @@ export default { }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 5038 + 5046 ], "ordering": [ 236 @@ -115275,7 +115441,7 @@ export default { 3 ], "match_map_id": [ - 4744 + 4762 ], "round": [ 38 @@ -115294,13 +115460,13 @@ export default { }, "v_match_map_backup_rounds_updates": { "_inc": [ - 5026 + 5034 ], "_set": [ - 5033 + 5041 ], "where": [ - 5025 + 5033 ], "__typename": [ 78 @@ -115338,28 +115504,28 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 ], "player": [ - 3721 + 3739 ], "rounds": [ 38 @@ -115376,10 +115542,10 @@ export default { }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 5046 + 5054 ], "nodes": [ - 5044 + 5052 ], "__typename": [ 78 @@ -115387,13 +115553,13 @@ export default { }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 5047 + 5055 ], "count": [ 38, { "columns": [ - 5052, + 5060, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -115402,31 +115568,31 @@ export default { } ], "max": [ - 5049 + 5057 ], "min": [ - 5050 + 5058 ], "stddev": [ - 5053 + 5061 ], "stddev_pop": [ - 5054 + 5062 ], "stddev_samp": [ - 5055 + 5063 ], "sum": [ - 5058 + 5066 ], "var_pop": [ - 5059 + 5067 ], "var_samp": [ - 5060 + 5068 ], "variance": [ - 5061 + 5069 ], "__typename": [ 78 @@ -115451,13 +115617,13 @@ export default { }, "v_match_player_buy_types_bool_exp": { "_and": [ - 5048 + 5056 ], "_not": [ - 5048 + 5056 ], "_or": [ - 5048 + 5056 ], "deaths": [ 39 @@ -115466,28 +115632,28 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "matchup": [ 80 ], "player": [ - 3725 + 3743 ], "rounds": [ 39 @@ -115510,13 +115676,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -115542,13 +115708,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -115568,43 +115734,43 @@ export default { }, "v_match_player_buy_types_order_by": { "deaths": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "matchup": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "rounds": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -115664,7 +115830,7 @@ export default { }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 5057 + 5065 ], "ordering": [ 236 @@ -115681,13 +115847,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "matchup": [ 78 @@ -115781,25 +115947,25 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2258 + 2276 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "side": [ 78 @@ -115819,10 +115985,10 @@ export default { }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 5066 + 5074 ], "nodes": [ - 5062 + 5070 ], "__typename": [ 78 @@ -115830,7 +115996,7 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 5065 + 5073 ], "__typename": [ 78 @@ -115838,13 +116004,13 @@ export default { }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 5078 + 5086 ], "distinct": [ 3 ], "filter": [ - 5071 + 5079 ], "predicate": [ 39 @@ -115855,13 +116021,13 @@ export default { }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 5069 + 5077 ], "count": [ 38, { "columns": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -115870,31 +116036,31 @@ export default { } ], "max": [ - 5073 + 5081 ], "min": [ - 5075 + 5083 ], "stddev": [ - 5079 + 5087 ], "stddev_pop": [ - 5081 + 5089 ], "stddev_samp": [ - 5083 + 5091 ], "sum": [ - 5087 + 5095 ], "var_pop": [ - 5089 + 5097 ], "var_samp": [ - 5091 + 5099 ], "variance": [ - 5093 + 5101 ], "__typename": [ 78 @@ -115902,37 +116068,37 @@ export default { }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 5070 + 5078 ], "count": [ - 2763 + 2781 ], "max": [ - 5074 + 5082 ], "min": [ - 5076 + 5084 ], "stddev": [ - 5080 + 5088 ], "stddev_pop": [ - 5082 + 5090 ], "stddev_samp": [ - 5084 + 5092 ], "sum": [ - 5088 + 5096 ], "var_pop": [ - 5090 + 5098 ], "var_samp": [ - 5092 + 5100 ], "variance": [ - 5094 + 5102 ], "__typename": [ 78 @@ -115940,7 +116106,7 @@ export default { }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 5072 + 5080 ], "__typename": [ 78 @@ -115968,19 +116134,19 @@ export default { }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -115988,13 +116154,13 @@ export default { }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 5071 + 5079 ], "_not": [ - 5071 + 5079 ], "_or": [ - 5071 + 5079 ], "attempts": [ 39 @@ -116003,25 +116169,25 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_lineup": [ - 2267 + 2285 ], "match_lineup_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "side": [ 80 @@ -116047,25 +116213,25 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_lineup": [ - 2276 + 2294 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "side": [ 78 @@ -116091,13 +116257,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "side": [ 78 @@ -116117,31 +116283,31 @@ export default { }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116155,13 +116321,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "side": [ 78 @@ -116181,31 +116347,31 @@ export default { }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "side": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116213,43 +116379,43 @@ export default { }, "v_match_player_opening_duels_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_lineup": [ - 2278 + 2296 ], "match_lineup_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "side": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116278,19 +116444,19 @@ export default { }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116318,19 +116484,19 @@ export default { }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116358,19 +116524,19 @@ export default { }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116378,7 +116544,7 @@ export default { }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 5086 + 5094 ], "ordering": [ 236 @@ -116395,13 +116561,13 @@ export default { 38 ], "match_id": [ - 4744 + 4762 ], "match_lineup_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "side": [ 78 @@ -116441,19 +116607,19 @@ export default { }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116481,19 +116647,19 @@ export default { }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116521,19 +116687,19 @@ export default { }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116561,19 +116727,19 @@ export default { }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "traded_deaths": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116587,10 +116753,10 @@ export default { 180 ], "nemsis": [ - 3721 + 3739 ], "player": [ - 3721 + 3739 ], "victim_id": [ 180 @@ -116601,10 +116767,10 @@ export default { }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 5097 + 5105 ], "nodes": [ - 5095 + 5103 ], "__typename": [ 78 @@ -116612,13 +116778,13 @@ export default { }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 5098 + 5106 ], "count": [ 38, { "columns": [ - 5103, + 5111, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -116627,31 +116793,31 @@ export default { } ], "max": [ - 5100 + 5108 ], "min": [ - 5101 + 5109 ], "stddev": [ - 5104 + 5112 ], "stddev_pop": [ - 5105 + 5113 ], "stddev_samp": [ - 5106 + 5114 ], "sum": [ - 5109 + 5117 ], "var_pop": [ - 5110 + 5118 ], "var_samp": [ - 5111 + 5119 ], "variance": [ - 5112 + 5120 ], "__typename": [ 78 @@ -116673,13 +116839,13 @@ export default { }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 5099 + 5107 ], "_not": [ - 5099 + 5107 ], "_or": [ - 5099 + 5107 ], "attacker_id": [ 182 @@ -116688,10 +116854,10 @@ export default { 182 ], "nemsis": [ - 3725 + 3743 ], "player": [ - 3725 + 3743 ], "victim_id": [ 182 @@ -116730,19 +116896,19 @@ export default { }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 2763 + 2781 ], "kill_count": [ - 2763 + 2781 ], "nemsis": [ - 3734 + 3752 ], "player": [ - 3734 + 3752 ], "victim_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -116793,7 +116959,7 @@ export default { }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 5108 + 5116 ], "ordering": [ 236 @@ -116877,7 +117043,7 @@ export default { 180 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 @@ -116894,10 +117060,10 @@ export default { }, "v_player_damage_aggregate": { "aggregate": [ - 5115 + 5123 ], "nodes": [ - 5113 + 5121 ], "__typename": [ 78 @@ -116905,13 +117071,13 @@ export default { }, "v_player_damage_aggregate_fields": { "avg": [ - 5116 + 5124 ], "count": [ 38, { "columns": [ - 5121, + 5129, "[v_player_damage_select_column!]" ], "distinct": [ @@ -116920,31 +117086,31 @@ export default { } ], "max": [ - 5118 + 5126 ], "min": [ - 5119 + 5127 ], "stddev": [ - 5122 + 5130 ], "stddev_pop": [ - 5123 + 5131 ], "stddev_samp": [ - 5124 + 5132 ], "sum": [ - 5127 + 5135 ], "var_pop": [ - 5128 + 5136 ], "var_samp": [ - 5129 + 5137 ], "variance": [ - 5130 + 5138 ], "__typename": [ 78 @@ -116969,19 +117135,19 @@ export default { }, "v_player_damage_bool_exp": { "_and": [ - 5117 + 5125 ], "_not": [ - 5117 + 5125 ], "_or": [ - 5117 + 5125 ], "avg_damage_per_round": [ 182 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 @@ -117032,19 +117198,19 @@ export default { }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "total_damage": [ - 2763 + 2781 ], "total_rounds": [ - 2763 + 2781 ], "__typename": [ 78 @@ -117104,7 +117270,7 @@ export default { }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 5126 + 5134 ], "ordering": [ 236 @@ -117200,7 +117366,7 @@ export default { }, "v_player_elo": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -117212,7 +117378,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -117221,16 +117387,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -117242,22 +117408,22 @@ export default { 38 ], "match": [ - 2578 + 2596 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_name": [ 78 @@ -117266,16 +117432,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 78 @@ -117289,10 +117455,10 @@ export default { }, "v_player_elo_aggregate": { "aggregate": [ - 5145 + 5153 ], "nodes": [ - 5131 + 5139 ], "__typename": [ 78 @@ -117300,31 +117466,31 @@ export default { }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 5134 + 5142 ], "corr": [ - 5135 + 5143 ], "count": [ - 5137 + 5145 ], "covar_samp": [ - 5138 + 5146 ], "max": [ - 5140 + 5148 ], "min": [ - 5141 + 5149 ], "stddev_samp": [ - 5142 + 5150 ], "sum": [ - 5143 + 5151 ], "var_samp": [ - 5144 + 5152 ], "__typename": [ 78 @@ -117332,16 +117498,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 5158 + 5166 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117349,16 +117515,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 5136 + 5144 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117366,10 +117532,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 5159 + 5167 ], "Y": [ - 5159 + 5167 ], "__typename": [ 78 @@ -117377,13 +117543,13 @@ export default { }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 5157 + 5165 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ 39 @@ -117394,16 +117560,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 5139 + 5147 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117411,10 +117577,10 @@ export default { }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5160 + 5168 ], "Y": [ - 5160 + 5168 ], "__typename": [ 78 @@ -117422,16 +117588,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 5161 + 5169 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117439,16 +117605,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 5162 + 5170 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117456,16 +117622,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5163 + 5171 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117473,16 +117639,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 5164 + 5172 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117490,16 +117656,16 @@ export default { }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 5165 + 5173 ], "distinct": [ 3 ], "filter": [ - 5150 + 5158 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -117507,13 +117673,13 @@ export default { }, "v_player_elo_aggregate_fields": { "avg": [ - 5148 + 5156 ], "count": [ 38, { "columns": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "distinct": [ @@ -117522,31 +117688,31 @@ export default { } ], "max": [ - 5152 + 5160 ], "min": [ - 5154 + 5162 ], "stddev": [ - 5166 + 5174 ], "stddev_pop": [ - 5168 + 5176 ], "stddev_samp": [ - 5170 + 5178 ], "sum": [ - 5174 + 5182 ], "var_pop": [ - 5176 + 5184 ], "var_samp": [ - 5178 + 5186 ], "variance": [ - 5180 + 5188 ], "__typename": [ 78 @@ -117554,37 +117720,37 @@ export default { }, "v_player_elo_aggregate_order_by": { "avg": [ - 5149 + 5157 ], "count": [ - 2763 + 2781 ], "max": [ - 5153 + 5161 ], "min": [ - 5155 + 5163 ], "stddev": [ - 5167 + 5175 ], "stddev_pop": [ - 5169 + 5177 ], "stddev_samp": [ - 5171 + 5179 ], "sum": [ - 5175 + 5183 ], "var_pop": [ - 5177 + 5185 ], "var_samp": [ - 5179 + 5187 ], "variance": [ - 5181 + 5189 ], "__typename": [ 78 @@ -117592,7 +117758,7 @@ export default { }, "v_player_elo_arr_rel_insert_input": { "data": [ - 5151 + 5159 ], "__typename": [ 78 @@ -117668,67 +117834,67 @@ export default { }, "v_player_elo_avg_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -117736,16 +117902,16 @@ export default { }, "v_player_elo_bool_exp": { "_and": [ - 5150 + 5158 ], "_not": [ - 5150 + 5158 ], "_or": [ - 5150 + 5158 ], "actual_score": [ - 1482 + 1500 ], "assists": [ 39 @@ -117757,7 +117923,7 @@ export default { 39 ], "damage_percent": [ - 1482 + 1500 ], "deaths": [ 39 @@ -117766,16 +117932,16 @@ export default { 39 ], "expected_score": [ - 1482 + 1500 ], "impact": [ - 1482 + 1500 ], "k_factor": [ 39 ], "kda": [ - 1482 + 1500 ], "kills": [ 39 @@ -117787,22 +117953,22 @@ export default { 39 ], "match": [ - 2587 + 2605 ], "match_created_at": [ - 4307 + 4325 ], "match_id": [ - 4746 + 4764 ], "match_result": [ 80 ], "opponent_team_elo_avg": [ - 1482 + 1500 ], "performance_multiplier": [ - 1482 + 1500 ], "player_name": [ 80 @@ -117811,16 +117977,16 @@ export default { 182 ], "player_team_elo_avg": [ - 1482 + 1500 ], "season_id": [ - 4746 + 4764 ], "series_multiplier": [ 39 ], "team_avg_kda": [ - 1482 + 1500 ], "type": [ 80 @@ -117834,7 +118000,7 @@ export default { }, "v_player_elo_insert_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -117846,7 +118012,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -117855,16 +118021,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -117876,22 +118042,22 @@ export default { 38 ], "match": [ - 2596 + 2614 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_name": [ 78 @@ -117900,16 +118066,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 78 @@ -117923,7 +118089,7 @@ export default { }, "v_player_elo_max_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -117935,7 +118101,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -117944,16 +118110,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -117965,19 +118131,19 @@ export default { 38 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_name": [ 78 @@ -117986,16 +118152,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 78 @@ -118009,85 +118175,85 @@ export default { }, "v_player_elo_max_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "match_created_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_result": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_name": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "season_id": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118095,7 +118261,7 @@ export default { }, "v_player_elo_min_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -118107,7 +118273,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -118116,16 +118282,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -118137,19 +118303,19 @@ export default { 38 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_name": [ 78 @@ -118158,16 +118324,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 78 @@ -118181,85 +118347,85 @@ export default { }, "v_player_elo_min_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "match_created_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_result": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_name": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "season_id": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118267,88 +118433,88 @@ export default { }, "v_player_elo_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_created_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_result": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_name": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "season_id": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118433,67 +118599,67 @@ export default { }, "v_player_elo_stddev_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118569,67 +118735,67 @@ export default { }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118705,67 +118871,67 @@ export default { }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -118773,7 +118939,7 @@ export default { }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 5173 + 5181 ], "ordering": [ 236 @@ -118784,7 +118950,7 @@ export default { }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -118796,7 +118962,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -118805,16 +118971,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -118826,19 +118992,19 @@ export default { 38 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_name": [ 78 @@ -118847,16 +119013,16 @@ export default { 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "season_id": [ - 4744 + 4762 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "type": [ 78 @@ -118870,7 +119036,7 @@ export default { }, "v_player_elo_sum_fields": { "actual_score": [ - 1481 + 1499 ], "assists": [ 38 @@ -118882,7 +119048,7 @@ export default { 38 ], "damage_percent": [ - 1481 + 1499 ], "deaths": [ 38 @@ -118891,16 +119057,16 @@ export default { 38 ], "expected_score": [ - 1481 + 1499 ], "impact": [ - 1481 + 1499 ], "k_factor": [ 38 ], "kda": [ - 1481 + 1499 ], "kills": [ 38 @@ -118912,22 +119078,22 @@ export default { 38 ], "opponent_team_elo_avg": [ - 1481 + 1499 ], "performance_multiplier": [ - 1481 + 1499 ], "player_steam_id": [ 180 ], "player_team_elo_avg": [ - 1481 + 1499 ], "series_multiplier": [ 38 ], "team_avg_kda": [ - 1481 + 1499 ], "updated_elo": [ 38 @@ -118938,67 +119104,67 @@ export default { }, "v_player_elo_sum_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119074,67 +119240,67 @@ export default { }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119210,67 +119376,67 @@ export default { }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119346,67 +119512,67 @@ export default { }, "v_player_elo_variance_order_by": { "actual_score": [ - 2763 + 2781 ], "assists": [ - 2763 + 2781 ], "current_elo": [ - 2763 + 2781 ], "damage": [ - 2763 + 2781 ], "damage_percent": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "elo_change": [ - 2763 + 2781 ], "expected_score": [ - 2763 + 2781 ], "impact": [ - 2763 + 2781 ], "k_factor": [ - 2763 + 2781 ], "kda": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map_losses": [ - 2763 + 2781 ], "map_wins": [ - 2763 + 2781 ], "opponent_team_elo_avg": [ - 2763 + 2781 ], "performance_multiplier": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "player_team_elo_avg": [ - 2763 + 2781 ], "series_multiplier": [ - 2763 + 2781 ], "team_avg_kda": [ - 2763 + 2781 ], "updated_elo": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119414,19 +119580,19 @@ export default { }, "v_player_map_losses": { "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119437,10 +119603,10 @@ export default { }, "v_player_map_losses_aggregate": { "aggregate": [ - 5184 + 5192 ], "nodes": [ - 5182 + 5190 ], "__typename": [ 78 @@ -119448,13 +119614,13 @@ export default { }, "v_player_map_losses_aggregate_fields": { "avg": [ - 5185 + 5193 ], "count": [ 38, { "columns": [ - 5190, + 5198, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -119463,31 +119629,31 @@ export default { } ], "max": [ - 5187 + 5195 ], "min": [ - 5188 + 5196 ], "stddev": [ - 5191 + 5199 ], "stddev_pop": [ - 5192 + 5200 ], "stddev_samp": [ - 5193 + 5201 ], "sum": [ - 5196 + 5204 ], "var_pop": [ - 5197 + 5205 ], "var_samp": [ - 5198 + 5206 ], "variance": [ - 5199 + 5207 ], "__typename": [ 78 @@ -119503,28 +119669,28 @@ export default { }, "v_player_map_losses_bool_exp": { "_and": [ - 5186 + 5194 ], "_not": [ - 5186 + 5194 ], "_or": [ - 5186 + 5194 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "started_at": [ - 4307 + 4325 ], "steam_id": [ 182 @@ -119535,13 +119701,13 @@ export default { }, "v_player_map_losses_max_fields": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119552,13 +119718,13 @@ export default { }, "v_player_map_losses_min_fields": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119569,22 +119735,22 @@ export default { }, "v_player_map_losses_order_by": { "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119617,7 +119783,7 @@ export default { }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 5195 + 5203 ], "ordering": [ 236 @@ -119628,13 +119794,13 @@ export default { }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119677,19 +119843,19 @@ export default { }, "v_player_map_wins": { "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119700,10 +119866,10 @@ export default { }, "v_player_map_wins_aggregate": { "aggregate": [ - 5202 + 5210 ], "nodes": [ - 5200 + 5208 ], "__typename": [ 78 @@ -119711,13 +119877,13 @@ export default { }, "v_player_map_wins_aggregate_fields": { "avg": [ - 5203 + 5211 ], "count": [ 38, { "columns": [ - 5208, + 5216, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -119726,31 +119892,31 @@ export default { } ], "max": [ - 5205 + 5213 ], "min": [ - 5206 + 5214 ], "stddev": [ - 5209 + 5217 ], "stddev_pop": [ - 5210 + 5218 ], "stddev_samp": [ - 5211 + 5219 ], "sum": [ - 5214 + 5222 ], "var_pop": [ - 5215 + 5223 ], "var_samp": [ - 5216 + 5224 ], "variance": [ - 5217 + 5225 ], "__typename": [ 78 @@ -119766,28 +119932,28 @@ export default { }, "v_player_map_wins_bool_exp": { "_and": [ - 5204 + 5212 ], "_not": [ - 5204 + 5212 ], "_or": [ - 5204 + 5212 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "started_at": [ - 4307 + 4325 ], "steam_id": [ 182 @@ -119798,13 +119964,13 @@ export default { }, "v_player_map_wins_max_fields": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119815,13 +119981,13 @@ export default { }, "v_player_map_wins_min_fields": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119832,22 +119998,22 @@ export default { }, "v_player_map_wins_order_by": { "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "started_at": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -119880,7 +120046,7 @@ export default { }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 5213 + 5221 ], "ordering": [ 236 @@ -119891,13 +120057,13 @@ export default { }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "started_at": [ - 4306 + 4324 ], "steam_id": [ 180 @@ -119940,13 +120106,13 @@ export default { }, "v_player_match_head_to_head": { "attacked": [ - 3721 + 3739 ], "attacked_steam_id": [ 180 ], "attacker": [ - 3721 + 3739 ], "attacker_steam_id": [ 180 @@ -119967,10 +120133,10 @@ export default { 180 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -119978,10 +120144,10 @@ export default { }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 5220 + 5228 ], "nodes": [ - 5218 + 5226 ], "__typename": [ 78 @@ -119989,13 +120155,13 @@ export default { }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 5221 + 5229 ], "count": [ 38, { "columns": [ - 5226, + 5234, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -120004,31 +120170,31 @@ export default { } ], "max": [ - 5223 + 5231 ], "min": [ - 5224 + 5232 ], "stddev": [ - 5227 + 5235 ], "stddev_pop": [ - 5228 + 5236 ], "stddev_samp": [ - 5229 + 5237 ], "sum": [ - 5232 + 5240 ], "var_pop": [ - 5233 + 5241 ], "var_samp": [ - 5234 + 5242 ], "variance": [ - 5235 + 5243 ], "__typename": [ 78 @@ -120062,22 +120228,22 @@ export default { }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 5222 + 5230 ], "_not": [ - 5222 + 5230 ], "_or": [ - 5222 + 5230 ], "attacked": [ - 3725 + 3743 ], "attacked_steam_id": [ 182 ], "attacker": [ - 3725 + 3743 ], "attacker_steam_id": [ 182 @@ -120098,10 +120264,10 @@ export default { 182 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -120130,7 +120296,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -120159,7 +120325,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -120167,37 +120333,37 @@ export default { }, "v_player_match_head_to_head_order_by": { "attacked": [ - 3734 + 3752 ], "attacked_steam_id": [ - 2763 + 2781 ], "attacker": [ - 3734 + 3752 ], "attacker_steam_id": [ - 2763 + 2781 ], "damage_dealt": [ - 2763 + 2781 ], "flash_count": [ - 2763 + 2781 ], "headshot_kills": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -120284,7 +120450,7 @@ export default { }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 5231 + 5239 ], "ordering": [ 236 @@ -120316,7 +120482,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -120428,37 +120594,37 @@ export default { }, "v_player_match_map_hltv": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "rounds_played": [ 38 @@ -120472,10 +120638,10 @@ export default { }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 5240 + 5248 ], "nodes": [ - 5236 + 5244 ], "__typename": [ 78 @@ -120483,7 +120649,7 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 5239 + 5247 ], "__typename": [ 78 @@ -120491,13 +120657,13 @@ export default { }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 5254 + 5262 ], "distinct": [ 3 ], "filter": [ - 5245 + 5253 ], "predicate": [ 39 @@ -120508,13 +120674,13 @@ export default { }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 5243 + 5251 ], "count": [ 38, { "columns": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -120523,31 +120689,31 @@ export default { } ], "max": [ - 5248 + 5256 ], "min": [ - 5250 + 5258 ], "stddev": [ - 5256 + 5264 ], "stddev_pop": [ - 5258 + 5266 ], "stddev_samp": [ - 5260 + 5268 ], "sum": [ - 5264 + 5272 ], "var_pop": [ - 5267 + 5275 ], "var_samp": [ - 5269 + 5277 ], "variance": [ - 5271 + 5279 ], "__typename": [ 78 @@ -120555,37 +120721,37 @@ export default { }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 5244 + 5252 ], "count": [ - 2763 + 2781 ], "max": [ - 5249 + 5257 ], "min": [ - 5251 + 5259 ], "stddev": [ - 5257 + 5265 ], "stddev_pop": [ - 5259 + 5267 ], "stddev_samp": [ - 5261 + 5269 ], "sum": [ - 5265 + 5273 ], "var_pop": [ - 5268 + 5276 ], "var_samp": [ - 5270 + 5278 ], "variance": [ - 5272 + 5280 ], "__typename": [ 78 @@ -120593,7 +120759,7 @@ export default { }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 5247 + 5255 ], "__typename": [ 78 @@ -120630,28 +120796,28 @@ export default { }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -120659,46 +120825,46 @@ export default { }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 5245 + 5253 ], "_not": [ - 5245 + 5253 ], "_or": [ - 5245 + 5253 ], "adr": [ - 2762 + 2780 ], "apr": [ - 2762 + 2780 ], "dpr": [ - 2762 + 2780 ], "hltv_rating": [ - 2762 + 2780 ], "kast_pct": [ - 2762 + 2780 ], "kpr": [ - 2762 + 2780 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "rounds_played": [ 39 @@ -120712,22 +120878,22 @@ export default { }, "v_player_match_map_hltv_inc_input": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "rounds_played": [ 38 @@ -120741,37 +120907,37 @@ export default { }, "v_player_match_map_hltv_insert_input": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match": [ - 2596 + 2614 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2434 + 2452 ], "match_map_id": [ - 4744 + 4762 ], "player": [ - 3732 + 3750 ], "rounds_played": [ 38 @@ -120785,28 +120951,28 @@ export default { }, "v_player_match_map_hltv_max_fields": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -120820,34 +120986,34 @@ export default { }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -120855,28 +121021,28 @@ export default { }, "v_player_match_map_hltv_min_fields": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -120890,34 +121056,34 @@ export default { }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_map_id": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -120928,7 +121094,7 @@ export default { 38 ], "returning": [ - 5236 + 5244 ], "__typename": [ 78 @@ -120936,43 +121102,43 @@ export default { }, "v_player_match_map_hltv_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -120981,28 +121147,28 @@ export default { "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -121045,28 +121211,28 @@ export default { }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121103,28 +121269,28 @@ export default { }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121161,28 +121327,28 @@ export default { }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121190,7 +121356,7 @@ export default { }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 5263 + 5271 ], "ordering": [ 236 @@ -121201,28 +121367,28 @@ export default { }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -121236,22 +121402,22 @@ export default { }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 2761 + 2779 ], "apr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "rounds_played": [ 38 @@ -121265,28 +121431,28 @@ export default { }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121294,13 +121460,13 @@ export default { }, "v_player_match_map_hltv_updates": { "_inc": [ - 5246 + 5254 ], "_set": [ - 5255 + 5263 ], "where": [ - 5245 + 5253 ], "__typename": [ 78 @@ -121337,28 +121503,28 @@ export default { }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121395,28 +121561,28 @@ export default { }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121453,28 +121619,28 @@ export default { }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 2763 + 2781 ], "apr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -121482,52 +121648,52 @@ export default { }, "v_player_match_map_roles": { "adr": [ - 2761 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2761 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2761 + 2779 ], "entry_rate": [ - 2761 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kills": [ 38 ], "kpr": [ - 2761 + 2779 ], "lineup_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "match_map": [ - 2416 + 2434 ], "match_map_id": [ - 4744 + 4762 ], "open_deaths": [ 38 @@ -121539,7 +121705,7 @@ export default { 38 ], "player": [ - 3721 + 3739 ], "role": [ 78 @@ -121551,7 +121717,7 @@ export default { 180 ], "support_idx": [ - 2761 + 2779 ], "total_kills": [ 38 @@ -121571,10 +121737,10 @@ export default { }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 5275 + 5283 ], "nodes": [ - 5273 + 5281 ], "__typename": [ 78 @@ -121582,13 +121748,13 @@ export default { }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 5276 + 5284 ], "count": [ 38, { "columns": [ - 5281, + 5289, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -121597,31 +121763,31 @@ export default { } ], "max": [ - 5278 + 5286 ], "min": [ - 5279 + 5287 ], "stddev": [ - 5282 + 5290 ], "stddev_pop": [ - 5283 + 5291 ], "stddev_samp": [ - 5284 + 5292 ], "sum": [ - 5287 + 5295 ], "var_pop": [ - 5288 + 5296 ], "var_samp": [ - 5289 + 5297 ], "variance": [ - 5290 + 5298 ], "__typename": [ 78 @@ -121697,61 +121863,61 @@ export default { }, "v_player_match_map_roles_bool_exp": { "_and": [ - 5277 + 5285 ], "_not": [ - 5277 + 5285 ], "_or": [ - 5277 + 5285 ], "adr": [ - 2762 + 2780 ], "awp_kills": [ 39 ], "awp_share": [ - 2762 + 2780 ], "deaths": [ 39 ], "dpr": [ - 2762 + 2780 ], "entry_rate": [ - 2762 + 2780 ], "flash_assists": [ 39 ], "hltv_rating": [ - 2762 + 2780 ], "kast_pct": [ - 2762 + 2780 ], "kills": [ 39 ], "kpr": [ - 2762 + 2780 ], "lineup_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "match_map": [ - 2425 + 2443 ], "match_map_id": [ - 4746 + 4764 ], "open_deaths": [ 39 @@ -121763,7 +121929,7 @@ export default { 39 ], "player": [ - 3725 + 3743 ], "role": [ 80 @@ -121775,7 +121941,7 @@ export default { 182 ], "support_idx": [ - 2762 + 2780 ], "total_kills": [ 39 @@ -121795,46 +121961,46 @@ export default { }, "v_player_match_map_roles_max_fields": { "adr": [ - 2761 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2761 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2761 + 2779 ], "entry_rate": [ - 2761 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kills": [ 38 ], "kpr": [ - 2761 + 2779 ], "lineup_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "open_deaths": [ 38 @@ -121855,7 +122021,7 @@ export default { 180 ], "support_idx": [ - 2761 + 2779 ], "total_kills": [ 38 @@ -121875,46 +122041,46 @@ export default { }, "v_player_match_map_roles_min_fields": { "adr": [ - 2761 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2761 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2761 + 2779 ], "entry_rate": [ - 2761 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kills": [ 38 ], "kpr": [ - 2761 + 2779 ], "lineup_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "open_deaths": [ 38 @@ -121935,7 +122101,7 @@ export default { 180 ], "support_idx": [ - 2761 + 2779 ], "total_kills": [ 38 @@ -121955,88 +122121,88 @@ export default { }, "v_player_match_map_roles_order_by": { "adr": [ - 2763 + 2781 ], "awp_kills": [ - 2763 + 2781 ], "awp_share": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "entry_rate": [ - 2763 + 2781 ], "flash_assists": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "lineup_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "match_map": [ - 2436 + 2454 ], "match_map_id": [ - 2763 + 2781 ], "open_deaths": [ - 2763 + 2781 ], "open_kills": [ - 2763 + 2781 ], "opening_attempts": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "role": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "support_idx": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "trade_kill_successes": [ - 2763 + 2781 ], "traded_death_successes": [ - 2763 + 2781 ], "util_damage": [ - 2763 + 2781 ], "__typename": [ 78 @@ -122249,7 +122415,7 @@ export default { }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 5286 + 5294 ], "ordering": [ 236 @@ -122260,46 +122426,46 @@ export default { }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 2761 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2761 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2761 + 2779 ], "entry_rate": [ - 2761 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kills": [ 38 ], "kpr": [ - 2761 + 2779 ], "lineup_id": [ - 4744 + 4762 ], "match_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744 + 4762 ], "open_deaths": [ 38 @@ -122320,7 +122486,7 @@ export default { 180 ], "support_idx": [ - 2761 + 2779 ], "total_kills": [ 38 @@ -122340,37 +122506,37 @@ export default { }, "v_player_match_map_roles_sum_fields": { "adr": [ - 2761 + 2779 ], "awp_kills": [ 38 ], "awp_share": [ - 2761 + 2779 ], "deaths": [ 38 ], "dpr": [ - 2761 + 2779 ], "entry_rate": [ - 2761 + 2779 ], "flash_assists": [ 38 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kills": [ 38 ], "kpr": [ - 2761 + 2779 ], "open_deaths": [ 38 @@ -122388,7 +122554,7 @@ export default { 180 ], "support_idx": [ - 2761 + 2779 ], "total_kills": [ 38 @@ -122621,19 +122787,19 @@ export default { 38 ], "map": [ - 2096 + 2114 ], "map_id": [ - 4744 + 4762 ], "match": [ - 2578 + 2596 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 @@ -122653,10 +122819,10 @@ export default { }, "v_player_match_performance_aggregate": { "aggregate": [ - 5293 + 5301 ], "nodes": [ - 5291 + 5299 ], "__typename": [ 78 @@ -122664,13 +122830,13 @@ export default { }, "v_player_match_performance_aggregate_fields": { "avg": [ - 5294 + 5302 ], "count": [ 38, { "columns": [ - 5299, + 5307, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -122679,31 +122845,31 @@ export default { } ], "max": [ - 5296 + 5304 ], "min": [ - 5297 + 5305 ], "stddev": [ - 5300 + 5308 ], "stddev_pop": [ - 5301 + 5309 ], "stddev_samp": [ - 5302 + 5310 ], "sum": [ - 5305 + 5313 ], "var_pop": [ - 5306 + 5314 ], "var_samp": [ - 5307 + 5315 ], "variance": [ - 5308 + 5316 ], "__typename": [ 78 @@ -122728,13 +122894,13 @@ export default { }, "v_player_match_performance_bool_exp": { "_and": [ - 5295 + 5303 ], "_not": [ - 5295 + 5303 ], "_or": [ - 5295 + 5303 ], "assists": [ 39 @@ -122746,19 +122912,19 @@ export default { 39 ], "map": [ - 2105 + 2123 ], "map_id": [ - 4746 + 4764 ], "match": [ - 2587 + 2605 ], "match_created_at": [ - 4307 + 4325 ], "match_id": [ - 4746 + 4764 ], "match_result": [ 80 @@ -122787,13 +122953,13 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 @@ -122822,13 +122988,13 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 @@ -122848,40 +123014,40 @@ export default { }, "v_player_match_performance_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "map": [ - 2115 + 2133 ], "map_id": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_created_at": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "match_result": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "__typename": [ 78 @@ -122941,7 +123107,7 @@ export default { }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 5304 + 5312 ], "ordering": [ 236 @@ -122961,13 +123127,13 @@ export default { 38 ], "map_id": [ - 4744 + 4762 ], "match_created_at": [ - 4306 + 4324 ], "match_id": [ - 4744 + 4762 ], "match_result": [ 78 @@ -123055,28 +123221,28 @@ export default { }, "v_player_match_rating": { "adr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match": [ - 2578 + 2596 ], "match_id": [ - 4744 + 4762 ], "player": [ - 3721 + 3739 ], "rounds_played": [ 38 @@ -123090,10 +123256,10 @@ export default { }, "v_player_match_rating_aggregate": { "aggregate": [ - 5311 + 5319 ], "nodes": [ - 5309 + 5317 ], "__typename": [ 78 @@ -123101,13 +123267,13 @@ export default { }, "v_player_match_rating_aggregate_fields": { "avg": [ - 5312 + 5320 ], "count": [ 38, { "columns": [ - 5317, + 5325, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -123116,31 +123282,31 @@ export default { } ], "max": [ - 5314 + 5322 ], "min": [ - 5315 + 5323 ], "stddev": [ - 5318 + 5326 ], "stddev_pop": [ - 5319 + 5327 ], "stddev_samp": [ - 5320 + 5328 ], "sum": [ - 5323 + 5331 ], "var_pop": [ - 5324 + 5332 ], "var_samp": [ - 5325 + 5333 ], "variance": [ - 5326 + 5334 ], "__typename": [ 78 @@ -123174,37 +123340,37 @@ export default { }, "v_player_match_rating_bool_exp": { "_and": [ - 5313 + 5321 ], "_not": [ - 5313 + 5321 ], "_or": [ - 5313 + 5321 ], "adr": [ - 2762 + 2780 ], "dpr": [ - 2762 + 2780 ], "hltv_rating": [ - 2762 + 2780 ], "kast_pct": [ - 2762 + 2780 ], "kpr": [ - 2762 + 2780 ], "match": [ - 2587 + 2605 ], "match_id": [ - 4746 + 4764 ], "player": [ - 3725 + 3743 ], "rounds_played": [ 39 @@ -123218,22 +123384,22 @@ export default { }, "v_player_match_rating_max_fields": { "adr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -123247,22 +123413,22 @@ export default { }, "v_player_match_rating_min_fields": { "adr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -123276,34 +123442,34 @@ export default { }, "v_player_match_rating_order_by": { "adr": [ - 2763 + 2781 ], "dpr": [ - 2763 + 2781 ], "hltv_rating": [ - 2763 + 2781 ], "kast_pct": [ - 2763 + 2781 ], "kpr": [ - 2763 + 2781 ], "match": [ - 2598 + 2616 ], "match_id": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "rounds_played": [ - 2763 + 2781 ], "steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123390,7 +123556,7 @@ export default { }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 5322 + 5330 ], "ordering": [ 236 @@ -123401,22 +123567,22 @@ export default { }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "match_id": [ - 4744 + 4762 ], "rounds_played": [ 38 @@ -123430,19 +123596,19 @@ export default { }, "v_player_match_rating_sum_fields": { "adr": [ - 2761 + 2779 ], "dpr": [ - 2761 + 2779 ], "hltv_rating": [ - 2761 + 2779 ], "kast_pct": [ - 2761 + 2779 ], "kpr": [ - 2761 + 2779 ], "rounds_played": [ 38 @@ -123540,7 +123706,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "round": [ 38 @@ -123551,10 +123717,10 @@ export default { }, "v_player_multi_kills_aggregate": { "aggregate": [ - 5331 + 5339 ], "nodes": [ - 5327 + 5335 ], "__typename": [ 78 @@ -123562,7 +123728,7 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 5330 + 5338 ], "__typename": [ 78 @@ -123570,13 +123736,13 @@ export default { }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 5343 + 5351 ], "distinct": [ 3 ], "filter": [ - 5336 + 5344 ], "predicate": [ 39 @@ -123587,13 +123753,13 @@ export default { }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 5334 + 5342 ], "count": [ 38, { "columns": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -123602,31 +123768,31 @@ export default { } ], "max": [ - 5338 + 5346 ], "min": [ - 5340 + 5348 ], "stddev": [ - 5344 + 5352 ], "stddev_pop": [ - 5346 + 5354 ], "stddev_samp": [ - 5348 + 5356 ], "sum": [ - 5352 + 5360 ], "var_pop": [ - 5354 + 5362 ], "var_samp": [ - 5356 + 5364 ], "variance": [ - 5358 + 5366 ], "__typename": [ 78 @@ -123634,37 +123800,37 @@ export default { }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 5335 + 5343 ], "count": [ - 2763 + 2781 ], "max": [ - 5339 + 5347 ], "min": [ - 5341 + 5349 ], "stddev": [ - 5345 + 5353 ], "stddev_pop": [ - 5347 + 5355 ], "stddev_samp": [ - 5349 + 5357 ], "sum": [ - 5353 + 5361 ], "var_pop": [ - 5355 + 5363 ], "var_samp": [ - 5357 + 5365 ], "variance": [ - 5359 + 5367 ], "__typename": [ 78 @@ -123672,7 +123838,7 @@ export default { }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 5337 + 5345 ], "__typename": [ 78 @@ -123694,13 +123860,13 @@ export default { }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123708,13 +123874,13 @@ export default { }, "v_player_multi_kills_bool_exp": { "_and": [ - 5336 + 5344 ], "_not": [ - 5336 + 5344 ], "_or": [ - 5336 + 5344 ], "attacker_steam_id": [ 182 @@ -123723,7 +123889,7 @@ export default { 182 ], "match_id": [ - 4746 + 4764 ], "round": [ 39 @@ -123740,7 +123906,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "round": [ 38 @@ -123757,7 +123923,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "round": [ 38 @@ -123768,16 +123934,16 @@ export default { }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123791,7 +123957,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "round": [ 38 @@ -123802,16 +123968,16 @@ export default { }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123819,16 +123985,16 @@ export default { }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "match_id": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123851,13 +124017,13 @@ export default { }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123879,13 +124045,13 @@ export default { }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123907,13 +124073,13 @@ export default { }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123921,7 +124087,7 @@ export default { }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 5351 + 5359 ], "ordering": [ 236 @@ -123938,7 +124104,7 @@ export default { 180 ], "match_id": [ - 4744 + 4762 ], "round": [ 38 @@ -123963,13 +124129,13 @@ export default { }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -123991,13 +124157,13 @@ export default { }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -124019,13 +124185,13 @@ export default { }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -124047,13 +124213,13 @@ export default { }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "round": [ - 2763 + 2781 ], "__typename": [ 78 @@ -124084,10 +124250,10 @@ export default { }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 5362 + 5370 ], "nodes": [ - 5360 + 5368 ], "__typename": [ 78 @@ -124095,13 +124261,13 @@ export default { }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 5363 + 5371 ], "count": [ 38, { "columns": [ - 5368, + 5376, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -124110,31 +124276,31 @@ export default { } ], "max": [ - 5365 + 5373 ], "min": [ - 5366 + 5374 ], "stddev": [ - 5369 + 5377 ], "stddev_pop": [ - 5370 + 5378 ], "stddev_samp": [ - 5371 + 5379 ], "sum": [ - 5374 + 5382 ], "var_pop": [ - 5375 + 5383 ], "var_samp": [ - 5376 + 5384 ], "variance": [ - 5377 + 5385 ], "__typename": [ 78 @@ -124156,13 +124322,13 @@ export default { }, "v_player_weapon_damage_bool_exp": { "_and": [ - 5364 + 5372 ], "_not": [ - 5364 + 5372 ], "_or": [ - 5364 + 5372 ], "damage": [ 182 @@ -124234,22 +124400,22 @@ export default { }, "v_player_weapon_damage_order_by": { "damage": [ - 2763 + 2781 ], "hits": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -124300,7 +124466,7 @@ export default { }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 5373 + 5381 ], "ordering": [ 236 @@ -124413,10 +124579,10 @@ export default { }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 5380 + 5388 ], "nodes": [ - 5378 + 5386 ], "__typename": [ 78 @@ -124424,13 +124590,13 @@ export default { }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 5381 + 5389 ], "count": [ 38, { "columns": [ - 5386, + 5394, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -124439,31 +124605,31 @@ export default { } ], "max": [ - 5383 + 5391 ], "min": [ - 5384 + 5392 ], "stddev": [ - 5387 + 5395 ], "stddev_pop": [ - 5388 + 5396 ], "stddev_samp": [ - 5389 + 5397 ], "sum": [ - 5392 + 5400 ], "var_pop": [ - 5393 + 5401 ], "var_samp": [ - 5394 + 5402 ], "variance": [ - 5395 + 5403 ], "__typename": [ 78 @@ -124485,13 +124651,13 @@ export default { }, "v_player_weapon_kills_bool_exp": { "_and": [ - 5382 + 5390 ], "_not": [ - 5382 + 5390 ], "_or": [ - 5382 + 5390 ], "kill_count": [ 182 @@ -124563,22 +124729,22 @@ export default { }, "v_player_weapon_kills_order_by": { "kill_count": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "rounds": [ - 2763 + 2781 ], "source": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "with": [ - 2763 + 2781 ], "__typename": [ 78 @@ -124629,7 +124795,7 @@ export default { }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 5391 + 5399 ], "ordering": [ 236 @@ -124722,16 +124888,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool": [ - 2077 + 2095 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -124754,10 +124920,10 @@ export default { }, "v_pool_maps_aggregate": { "aggregate": [ - 5402 + 5410 ], "nodes": [ - 5396 + 5404 ], "__typename": [ 78 @@ -124765,13 +124931,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 5399 + 5407 ], "bool_or": [ - 5400 + 5408 ], "count": [ - 5401 + 5409 ], "__typename": [ 78 @@ -124779,13 +124945,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 5414 + 5422 ], "distinct": [ 3 ], "filter": [ - 5405 + 5413 ], "predicate": [ 4 @@ -124796,13 +124962,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 5415 + 5423 ], "distinct": [ 3 ], "filter": [ - 5405 + 5413 ], "predicate": [ 4 @@ -124813,13 +124979,13 @@ export default { }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 5413 + 5421 ], "distinct": [ 3 ], "filter": [ - 5405 + 5413 ], "predicate": [ 39 @@ -124833,7 +124999,7 @@ export default { 38, { "columns": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -124842,10 +125008,10 @@ export default { } ], "max": [ - 5407 + 5415 ], "min": [ - 5409 + 5417 ], "__typename": [ 78 @@ -124853,13 +125019,13 @@ export default { }, "v_pool_maps_aggregate_order_by": { "count": [ - 2763 + 2781 ], "max": [ - 5408 + 5416 ], "min": [ - 5410 + 5418 ], "__typename": [ 78 @@ -124867,7 +125033,7 @@ export default { }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 5406 + 5414 ], "__typename": [ 78 @@ -124875,28 +125041,28 @@ export default { }, "v_pool_maps_bool_exp": { "_and": [ - 5405 + 5413 ], "_not": [ - 5405 + 5413 ], "_or": [ - 5405 + 5413 ], "active_pool": [ 4 ], "id": [ - 4746 + 4764 ], "label": [ 80 ], "map_pool": [ - 2080 + 2098 ], "map_pool_id": [ - 4746 + 4764 ], "name": [ 80 @@ -124922,16 +125088,16 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool": [ - 2086 + 2104 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -124954,13 +125120,13 @@ export default { }, "v_pool_maps_max_fields": { "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -124983,28 +125149,28 @@ export default { }, "v_pool_maps_max_order_by": { "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "map_pool_id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -125012,13 +125178,13 @@ export default { }, "v_pool_maps_min_fields": { "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -125041,28 +125207,28 @@ export default { }, "v_pool_maps_min_order_by": { "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "map_pool_id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -125073,7 +125239,7 @@ export default { 38 ], "returning": [ - 5396 + 5404 ], "__typename": [ 78 @@ -125081,34 +125247,34 @@ export default { }, "v_pool_maps_order_by": { "active_pool": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "label": [ - 2763 + 2781 ], "map_pool": [ - 2088 + 2106 ], "map_pool_id": [ - 2763 + 2781 ], "name": [ - 2763 + 2781 ], "patch": [ - 2763 + 2781 ], "poster": [ - 2763 + 2781 ], "type": [ - 2763 + 2781 ], "workshop_map_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -125122,13 +125288,13 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -125151,7 +125317,7 @@ export default { }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 5418 + 5426 ], "ordering": [ 236 @@ -125165,13 +125331,13 @@ export default { 3 ], "id": [ - 4744 + 4762 ], "label": [ 78 ], "map_pool_id": [ - 4744 + 4762 ], "name": [ 78 @@ -125194,10 +125360,10 @@ export default { }, "v_pool_maps_updates": { "_set": [ - 5416 + 5424 ], "where": [ - 5405 + 5413 ], "__typename": [ 78 @@ -125222,10 +125388,10 @@ export default { }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 5422 + 5430 ], "nodes": [ - 5420 + 5428 ], "__typename": [ 78 @@ -125233,13 +125399,13 @@ export default { }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 5423 + 5431 ], "count": [ 38, { "columns": [ - 5428, + 5436, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -125248,31 +125414,31 @@ export default { } ], "max": [ - 5425 + 5433 ], "min": [ - 5426 + 5434 ], "stddev": [ - 5429 + 5437 ], "stddev_pop": [ - 5430 + 5438 ], "stddev_samp": [ - 5431 + 5439 ], "sum": [ - 5434 + 5442 ], "var_pop": [ - 5435 + 5443 ], "var_samp": [ - 5436 + 5444 ], "variance": [ - 5437 + 5445 ], "__typename": [ 78 @@ -125297,13 +125463,13 @@ export default { }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 5424 + 5432 ], "_not": [ - 5424 + 5432 ], "_or": [ - 5424 + 5432 ], "busy_accounts": [ 39 @@ -125357,16 +125523,16 @@ export default { }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 2763 + 2781 ], "free_accounts": [ - 2763 + 2781 ], "id": [ - 2763 + 2781 ], "total_accounts": [ - 2763 + 2781 ], "__typename": [ 78 @@ -125426,7 +125592,7 @@ export default { }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 5433 + 5441 ], "ordering": [ 236 @@ -125528,7 +125694,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -125543,10 +125709,10 @@ export default { 180 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -125554,10 +125720,10 @@ export default { }, "v_team_ranks_aggregate": { "aggregate": [ - 5440 + 5448 ], "nodes": [ - 5438 + 5446 ], "__typename": [ 78 @@ -125565,13 +125731,13 @@ export default { }, "v_team_ranks_aggregate_fields": { "avg": [ - 5441 + 5449 ], "count": [ 38, { "columns": [ - 5448, + 5456, "[v_team_ranks_select_column!]" ], "distinct": [ @@ -125580,31 +125746,31 @@ export default { } ], "max": [ - 5444 + 5452 ], "min": [ - 5445 + 5453 ], "stddev": [ - 5449 + 5457 ], "stddev_pop": [ - 5450 + 5458 ], "stddev_samp": [ - 5451 + 5459 ], "sum": [ - 5454 + 5462 ], "var_pop": [ - 5455 + 5463 ], "var_samp": [ - 5456 + 5464 ], "variance": [ - 5457 + 5465 ], "__typename": [ 78 @@ -125638,13 +125804,13 @@ export default { }, "v_team_ranks_bool_exp": { "_and": [ - 5442 + 5450 ], "_not": [ - 5442 + 5450 ], "_or": [ - 5442 + 5450 ], "avg_elo": [ 39 @@ -125653,7 +125819,7 @@ export default { 39 ], "avg_faceit_level": [ - 1482 + 1500 ], "avg_premier": [ 39 @@ -125668,10 +125834,10 @@ export default { 182 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -125685,7 +125851,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -125700,10 +125866,10 @@ export default { 180 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -125717,7 +125883,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -125732,7 +125898,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -125746,7 +125912,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -125761,7 +125927,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -125769,7 +125935,7 @@ export default { }, "v_team_ranks_obj_rel_insert_input": { "data": [ - 5443 + 5451 ], "__typename": [ 78 @@ -125777,31 +125943,31 @@ export default { }, "v_team_ranks_order_by": { "avg_elo": [ - 2763 + 2781 ], "avg_faceit_elo": [ - 2763 + 2781 ], "avg_faceit_level": [ - 2763 + 2781 ], "avg_premier": [ - 2763 + 2781 ], "max_elo": [ - 2763 + 2781 ], "min_elo": [ - 2763 + 2781 ], "roster_size": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -125888,7 +126054,7 @@ export default { }, "v_team_ranks_stream_cursor_input": { "initial_value": [ - 5453 + 5461 ], "ordering": [ 236 @@ -125905,7 +126071,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -125920,7 +126086,7 @@ export default { 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -125934,7 +126100,7 @@ export default { 38 ], "avg_faceit_level": [ - 1481 + 1499 ], "avg_premier": [ 38 @@ -126038,16 +126204,16 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 ], "team": [ - 4263 + 4281 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -126055,10 +126221,10 @@ export default { }, "v_team_reputation_aggregate": { "aggregate": [ - 5460 + 5468 ], "nodes": [ - 5458 + 5466 ], "__typename": [ 78 @@ -126066,13 +126232,13 @@ export default { }, "v_team_reputation_aggregate_fields": { "avg": [ - 5461 + 5469 ], "count": [ 38, { "columns": [ - 5468, + 5476, "[v_team_reputation_select_column!]" ], "distinct": [ @@ -126081,31 +126247,31 @@ export default { } ], "max": [ - 5464 + 5472 ], "min": [ - 5465 + 5473 ], "stddev": [ - 5469 + 5477 ], "stddev_pop": [ - 5470 + 5478 ], "stddev_samp": [ - 5471 + 5479 ], "sum": [ - 5474 + 5482 ], "var_pop": [ - 5475 + 5483 ], "var_samp": [ - 5476 + 5484 ], "variance": [ - 5477 + 5485 ], "__typename": [ 78 @@ -126130,13 +126296,13 @@ export default { }, "v_team_reputation_bool_exp": { "_and": [ - 5462 + 5470 ], "_not": [ - 5462 + 5470 ], "_or": [ - 5462 + 5470 ], "late_cancels": [ 182 @@ -126145,16 +126311,16 @@ export default { 182 ], "reliability_pct": [ - 2762 + 2780 ], "scrims_completed": [ 182 ], "team": [ - 4272 + 4290 ], "team_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -126168,16 +126334,16 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 ], "team": [ - 4281 + 4299 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -126191,13 +126357,13 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -126211,13 +126377,13 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -126225,7 +126391,7 @@ export default { }, "v_team_reputation_obj_rel_insert_input": { "data": [ - 5463 + 5471 ], "__typename": [ 78 @@ -126233,22 +126399,22 @@ export default { }, "v_team_reputation_order_by": { "late_cancels": [ - 2763 + 2781 ], "no_shows": [ - 2763 + 2781 ], "reliability_pct": [ - 2763 + 2781 ], "scrims_completed": [ - 2763 + 2781 ], "team": [ - 4283 + 4301 ], "team_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -126308,7 +126474,7 @@ export default { }, "v_team_reputation_stream_cursor_input": { "initial_value": [ - 5473 + 5481 ], "ordering": [ 236 @@ -126325,13 +126491,13 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 ], "team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -126345,7 +126511,7 @@ export default { 180 ], "reliability_pct": [ - 2761 + 2779 ], "scrims_completed": [ 180 @@ -126443,13 +126609,13 @@ export default { 38 ], "stage": [ - 4436 + 4454 ], "team": [ - 4569 + 4587 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -126458,10 +126624,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -126472,10 +126638,10 @@ export default { }, "v_team_stage_results_aggregate": { "aggregate": [ - 5492 + 5500 ], "nodes": [ - 5478 + 5486 ], "__typename": [ 78 @@ -126483,31 +126649,31 @@ export default { }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 5481 + 5489 ], "corr": [ - 5482 + 5490 ], "count": [ - 5484 + 5492 ], "covar_samp": [ - 5485 + 5493 ], "max": [ - 5487 + 5495 ], "min": [ - 5488 + 5496 ], "stddev_samp": [ - 5489 + 5497 ], "sum": [ - 5490 + 5498 ], "var_samp": [ - 5491 + 5499 ], "__typename": [ 78 @@ -126515,16 +126681,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 5511 + 5519 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126532,16 +126698,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 5483 + 5491 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126549,10 +126715,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5512 + 5520 ], "Y": [ - 5512 + 5520 ], "__typename": [ 78 @@ -126560,13 +126726,13 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 5510 + 5518 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ 39 @@ -126577,16 +126743,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5486 + 5494 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126594,10 +126760,10 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5513 + 5521 ], "Y": [ - 5513 + 5521 ], "__typename": [ 78 @@ -126605,16 +126771,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 5514 + 5522 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126622,16 +126788,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 5515 + 5523 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126639,16 +126805,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5516 + 5524 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126656,16 +126822,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 5517 + 5525 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126673,16 +126839,16 @@ export default { }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5518 + 5526 ], "distinct": [ 3 ], "filter": [ - 5497 + 5505 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -126690,13 +126856,13 @@ export default { }, "v_team_stage_results_aggregate_fields": { "avg": [ - 5495 + 5503 ], "count": [ 38, { "columns": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -126705,31 +126871,31 @@ export default { } ], "max": [ - 5501 + 5509 ], "min": [ - 5503 + 5511 ], "stddev": [ - 5520 + 5528 ], "stddev_pop": [ - 5522 + 5530 ], "stddev_samp": [ - 5524 + 5532 ], "sum": [ - 5528 + 5536 ], "var_pop": [ - 5532 + 5540 ], "var_samp": [ - 5534 + 5542 ], "variance": [ - 5536 + 5544 ], "__typename": [ 78 @@ -126737,37 +126903,37 @@ export default { }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 5496 + 5504 ], "count": [ - 2763 + 2781 ], "max": [ - 5502 + 5510 ], "min": [ - 5504 + 5512 ], "stddev": [ - 5521 + 5529 ], "stddev_pop": [ - 5523 + 5531 ], "stddev_samp": [ - 5525 + 5533 ], "sum": [ - 5529 + 5537 ], "var_pop": [ - 5533 + 5541 ], "var_samp": [ - 5535 + 5543 ], "variance": [ - 5537 + 5545 ], "__typename": [ 78 @@ -126775,10 +126941,10 @@ export default { }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 5500 + 5508 ], "on_conflict": [ - 5507 + 5515 ], "__typename": [ 78 @@ -126839,52 +127005,52 @@ export default { }, "v_team_stage_results_avg_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -126892,13 +127058,13 @@ export default { }, "v_team_stage_results_bool_exp": { "_and": [ - 5497 + 5505 ], "_not": [ - 5497 + 5505 ], "_or": [ - 5497 + 5505 ], "group_number": [ 39 @@ -126937,13 +127103,13 @@ export default { 39 ], "stage": [ - 4448 + 4466 ], "team": [ - 4578 + 4596 ], "team_kdr": [ - 1482 + 1500 ], "total_deaths": [ 39 @@ -126952,10 +127118,10 @@ export default { 39 ], "tournament_stage_id": [ - 4746 + 4764 ], "tournament_team_id": [ - 4746 + 4764 ], "wins": [ 39 @@ -127003,7 +127169,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127056,13 +127222,13 @@ export default { 38 ], "stage": [ - 4460 + 4478 ], "team": [ - 4587 + 4605 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127071,10 +127237,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -127121,7 +127287,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127130,10 +127296,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -127144,58 +127310,58 @@ export default { }, "v_team_stage_results_max_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127239,7 +127405,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127248,10 +127414,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -127262,58 +127428,58 @@ export default { }, "v_team_stage_results_min_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127324,7 +127490,7 @@ export default { 38 ], "returning": [ - 5478 + 5486 ], "__typename": [ 78 @@ -127332,10 +127498,10 @@ export default { }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 5500 + 5508 ], "on_conflict": [ - 5507 + 5515 ], "__typename": [ 78 @@ -127343,13 +127509,13 @@ export default { }, "v_team_stage_results_on_conflict": { "constraint": [ - 5498 + 5506 ], "update_columns": [ - 5530 + 5538 ], "where": [ - 5497 + 5505 ], "__typename": [ 78 @@ -127357,64 +127523,64 @@ export default { }, "v_team_stage_results_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "stage": [ - 4462 + 4480 ], "team": [ - 4589 + 4607 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament_stage_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127422,10 +127588,10 @@ export default { }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -127478,7 +127644,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127487,10 +127653,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -127554,52 +127720,52 @@ export default { }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127660,52 +127826,52 @@ export default { }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127766,52 +127932,52 @@ export default { }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127819,7 +127985,7 @@ export default { }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 5527 + 5535 ], "ordering": [ 236 @@ -127866,7 +128032,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127875,10 +128041,10 @@ export default { 38 ], "tournament_stage_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -127925,7 +128091,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -127942,52 +128108,52 @@ export default { }, "v_team_stage_results_sum_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -127996,13 +128162,13 @@ export default { "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 5499 + 5507 ], "_set": [ - 5519 + 5527 ], "where": [ - 5497 + 5505 ], "__typename": [ 78 @@ -128063,52 +128229,52 @@ export default { }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -128169,52 +128335,52 @@ export default { }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -128275,52 +128441,52 @@ export default { }, "v_team_stage_results_variance_order_by": { "group_number": [ - 2763 + 2781 ], "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "placement": [ - 2763 + 2781 ], "rank": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -128355,10 +128521,10 @@ export default { 38 ], "team": [ - 4569 + 4587 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -128367,13 +128533,13 @@ export default { 38 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -128384,10 +128550,10 @@ export default { }, "v_team_tournament_results_aggregate": { "aggregate": [ - 5552 + 5560 ], "nodes": [ - 5538 + 5546 ], "__typename": [ 78 @@ -128395,31 +128561,31 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 5541 + 5549 ], "corr": [ - 5542 + 5550 ], "count": [ - 5544 + 5552 ], "covar_samp": [ - 5545 + 5553 ], "max": [ - 5547 + 5555 ], "min": [ - 5548 + 5556 ], "stddev_samp": [ - 5549 + 5557 ], "sum": [ - 5550 + 5558 ], "var_samp": [ - 5551 + 5559 ], "__typename": [ 78 @@ -128427,16 +128593,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 5565 + 5573 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128444,16 +128610,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 5543 + 5551 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128461,10 +128627,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 5566 + 5574 ], "Y": [ - 5566 + 5574 ], "__typename": [ 78 @@ -128472,13 +128638,13 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 5564 + 5572 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ 39 @@ -128489,16 +128655,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 5546 + 5554 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128506,10 +128672,10 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5567 + 5575 ], "Y": [ - 5567 + 5575 ], "__typename": [ 78 @@ -128517,16 +128683,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 5568 + 5576 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128534,16 +128700,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 5569 + 5577 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128551,16 +128717,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5570 + 5578 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128568,16 +128734,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 5571 + 5579 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128585,16 +128751,16 @@ export default { }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 5572 + 5580 ], "distinct": [ 3 ], "filter": [ - 5557 + 5565 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -128602,13 +128768,13 @@ export default { }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 5555 + 5563 ], "count": [ 38, { "columns": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -128617,31 +128783,31 @@ export default { } ], "max": [ - 5559 + 5567 ], "min": [ - 5561 + 5569 ], "stddev": [ - 5573 + 5581 ], "stddev_pop": [ - 5575 + 5583 ], "stddev_samp": [ - 5577 + 5585 ], "sum": [ - 5581 + 5589 ], "var_pop": [ - 5583 + 5591 ], "var_samp": [ - 5585 + 5593 ], "variance": [ - 5587 + 5595 ], "__typename": [ 78 @@ -128649,37 +128815,37 @@ export default { }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 5556 + 5564 ], "count": [ - 2763 + 2781 ], "max": [ - 5560 + 5568 ], "min": [ - 5562 + 5570 ], "stddev": [ - 5574 + 5582 ], "stddev_pop": [ - 5576 + 5584 ], "stddev_samp": [ - 5578 + 5586 ], "sum": [ - 5582 + 5590 ], "var_pop": [ - 5584 + 5592 ], "var_samp": [ - 5586 + 5594 ], "variance": [ - 5588 + 5596 ], "__typename": [ 78 @@ -128687,7 +128853,7 @@ export default { }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 5558 + 5566 ], "__typename": [ 78 @@ -128739,43 +128905,43 @@ export default { }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -128783,13 +128949,13 @@ export default { }, "v_team_tournament_results_bool_exp": { "_and": [ - 5557 + 5565 ], "_not": [ - 5557 + 5565 ], "_or": [ - 5557 + 5565 ], "head_to_head_match_wins": [ 39 @@ -128819,10 +128985,10 @@ export default { 39 ], "team": [ - 4578 + 4596 ], "team_kdr": [ - 1482 + 1500 ], "total_deaths": [ 39 @@ -128831,13 +128997,13 @@ export default { 39 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "tournament_team_id": [ - 4746 + 4764 ], "wins": [ 39 @@ -128875,10 +129041,10 @@ export default { 38 ], "team": [ - 4587 + 4605 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -128887,13 +129053,13 @@ export default { 38 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -128931,7 +129097,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -128940,10 +129106,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -128954,49 +129120,49 @@ export default { }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129031,7 +129197,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -129040,10 +129206,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -129054,49 +129220,49 @@ export default { }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129104,55 +129270,55 @@ export default { }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team": [ - 4589 + 4607 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "tournament_team_id": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129213,43 +129379,43 @@ export default { }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129301,43 +129467,43 @@ export default { }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129389,43 +129555,43 @@ export default { }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129433,7 +129599,7 @@ export default { }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 5580 + 5588 ], "ordering": [ 236 @@ -129471,7 +129637,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -129480,10 +129646,10 @@ export default { 38 ], "tournament_id": [ - 4744 + 4762 ], "tournament_team_id": [ - 4744 + 4762 ], "wins": [ 38 @@ -129521,7 +129687,7 @@ export default { 38 ], "team_kdr": [ - 1481 + 1499 ], "total_deaths": [ 38 @@ -129538,43 +129704,43 @@ export default { }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129626,43 +129792,43 @@ export default { }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129714,43 +129880,43 @@ export default { }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129802,43 +129968,43 @@ export default { }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 2763 + 2781 ], "head_to_head_rounds_won": [ - 2763 + 2781 ], "losses": [ - 2763 + 2781 ], "maps_lost": [ - 2763 + 2781 ], "maps_won": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "matches_remaining": [ - 2763 + 2781 ], "rounds_lost": [ - 2763 + 2781 ], "rounds_won": [ - 2763 + 2781 ], "team_kdr": [ - 2763 + 2781 ], "total_deaths": [ - 2763 + 2781 ], "total_kills": [ - 2763 + 2781 ], "wins": [ - 2763 + 2781 ], "__typename": [ 78 @@ -129852,13 +130018,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -129867,16 +130033,16 @@ export default { 38 ], "player": [ - 3721 + 3739 ], "player_steam_id": [ 180 ], "tournament": [ - 4698 + 4716 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -129884,10 +130050,10 @@ export default { }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 5603 + 5611 ], "nodes": [ - 5589 + 5597 ], "__typename": [ 78 @@ -129895,31 +130061,31 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 5592 + 5600 ], "corr": [ - 5593 + 5601 ], "count": [ - 5595 + 5603 ], "covar_samp": [ - 5596 + 5604 ], "max": [ - 5598 + 5606 ], "min": [ - 5599 + 5607 ], "stddev_samp": [ - 5600 + 5608 ], "sum": [ - 5601 + 5609 ], "var_samp": [ - 5602 + 5610 ], "__typename": [ 78 @@ -129927,16 +130093,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 5616 + 5624 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -129944,16 +130110,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 5594 + 5602 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -129961,10 +130127,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 5617 + 5625 ], "Y": [ - 5617 + 5625 ], "__typename": [ 78 @@ -129972,13 +130138,13 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 5615 + 5623 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ 39 @@ -129989,16 +130155,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 5597 + 5605 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130006,10 +130172,10 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 5618 + 5626 ], "Y": [ - 5618 + 5626 ], "__typename": [ 78 @@ -130017,16 +130183,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 5619 + 5627 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130034,16 +130200,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 5620 + 5628 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130051,16 +130217,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 5621 + 5629 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130068,16 +130234,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 5622 + 5630 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130085,16 +130251,16 @@ export default { }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 5623 + 5631 ], "distinct": [ 3 ], "filter": [ - 5608 + 5616 ], "predicate": [ - 1482 + 1500 ], "__typename": [ 78 @@ -130102,13 +130268,13 @@ export default { }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 5606 + 5614 ], "count": [ 38, { "columns": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -130117,31 +130283,31 @@ export default { } ], "max": [ - 5610 + 5618 ], "min": [ - 5612 + 5620 ], "stddev": [ - 5624 + 5632 ], "stddev_pop": [ - 5626 + 5634 ], "stddev_samp": [ - 5628 + 5636 ], "sum": [ - 5632 + 5640 ], "var_pop": [ - 5634 + 5642 ], "var_samp": [ - 5636 + 5644 ], "variance": [ - 5638 + 5646 ], "__typename": [ 78 @@ -130149,37 +130315,37 @@ export default { }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 5607 + 5615 ], "count": [ - 2763 + 2781 ], "max": [ - 5611 + 5619 ], "min": [ - 5613 + 5621 ], "stddev": [ - 5625 + 5633 ], "stddev_pop": [ - 5627 + 5635 ], "stddev_samp": [ - 5629 + 5637 ], "sum": [ - 5633 + 5641 ], "var_pop": [ - 5635 + 5643 ], "var_samp": [ - 5637 + 5645 ], "variance": [ - 5639 + 5647 ], "__typename": [ 78 @@ -130187,7 +130353,7 @@ export default { }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 5609 + 5617 ], "__typename": [ 78 @@ -130224,28 +130390,28 @@ export default { }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130253,13 +130419,13 @@ export default { }, "v_tournament_player_stats_bool_exp": { "_and": [ - 5608 + 5616 ], "_not": [ - 5608 + 5616 ], "_or": [ - 5608 + 5616 ], "assists": [ 39 @@ -130268,13 +130434,13 @@ export default { 39 ], "headshot_percentage": [ - 1482 + 1500 ], "headshots": [ 39 ], "kdr": [ - 1482 + 1500 ], "kills": [ 39 @@ -130283,16 +130449,16 @@ export default { 39 ], "player": [ - 3725 + 3743 ], "player_steam_id": [ 182 ], "tournament": [ - 4709 + 4727 ], "tournament_id": [ - 4746 + 4764 ], "__typename": [ 78 @@ -130306,13 +130472,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -130321,16 +130487,16 @@ export default { 38 ], "player": [ - 3732 + 3750 ], "player_steam_id": [ 180 ], "tournament": [ - 4718 + 4736 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -130344,13 +130510,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -130362,7 +130528,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -130370,31 +130536,31 @@ export default { }, "v_tournament_player_stats_max_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130408,13 +130574,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -130426,7 +130592,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -130434,31 +130600,31 @@ export default { }, "v_tournament_player_stats_min_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130466,37 +130632,37 @@ export default { }, "v_tournament_player_stats_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player": [ - 3734 + 3752 ], "player_steam_id": [ - 2763 + 2781 ], "tournament": [ - 4720 + 4738 ], "tournament_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130542,28 +130708,28 @@ export default { }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130600,28 +130766,28 @@ export default { }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130658,28 +130824,28 @@ export default { }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130687,7 +130853,7 @@ export default { }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 5631 + 5639 ], "ordering": [ 236 @@ -130704,13 +130870,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -130722,7 +130888,7 @@ export default { 180 ], "tournament_id": [ - 4744 + 4762 ], "__typename": [ 78 @@ -130736,13 +130902,13 @@ export default { 38 ], "headshot_percentage": [ - 1481 + 1499 ], "headshots": [ 38 ], "kdr": [ - 1481 + 1499 ], "kills": [ 38 @@ -130759,28 +130925,28 @@ export default { }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130817,28 +130983,28 @@ export default { }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130875,28 +131041,28 @@ export default { }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -130933,28 +131099,28 @@ export default { }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 2763 + 2781 ], "deaths": [ - 2763 + 2781 ], "headshot_percentage": [ - 2763 + 2781 ], "headshots": [ - 2763 + 2781 ], "kdr": [ - 2763 + 2781 ], "kills": [ - 2763 + 2781 ], "matches_played": [ - 2763 + 2781 ], "player_steam_id": [ - 2763 + 2781 ], "__typename": [ 78 @@ -131009,11 +131175,11 @@ export default { 92, { "map_id": [ - 4744, + 4762, "uuid!" ], "map_pool_id": [ - 4744, + 4762, "uuid!" ] } @@ -131066,7 +131232,7 @@ export default { 111, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -131119,7 +131285,7 @@ export default { 152, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -131172,7 +131338,7 @@ export default { 185, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -131228,7 +131394,7 @@ export default { 237, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -131281,7 +131447,7 @@ export default { 264, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -131334,7 +131500,7 @@ export default { 309, { "draft_game_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -131391,7 +131557,7 @@ export default { 354, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -133569,11 +133735,68 @@ export default { ] } ], - "event_media": [ + "event_match_links": [ + 1240, + { + "distinct_on": [ + 1252, + "[event_match_links_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1250, + "[event_match_links_order_by!]" + ], + "where": [ + 1243 + ] + } + ], + "event_match_links_aggregate": [ + 1241, + { + "distinct_on": [ + 1252, + "[event_match_links_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1250, + "[event_match_links_order_by!]" + ], + "where": [ + 1243 + ] + } + ], + "event_match_links_by_pk": [ 1240, + { + "event_id": [ + 4762, + "uuid!" + ], + "match_id": [ + 4762, + "uuid!" + ] + } + ], + "event_media": [ + 1258, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -133583,19 +133806,19 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], "event_media_aggregate": [ - 1241, + 1259, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -133605,28 +133828,28 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], "event_media_by_pk": [ - 1240, + 1258, { "id": [ - 4744, + 4762, "uuid!" ] } ], "event_media_players": [ - 1262, + 1280, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -133636,19 +133859,19 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "event_media_players_aggregate": [ - 1263, + 1281, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -133658,19 +133881,19 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "event_media_players_by_pk": [ - 1262, + 1280, { "media_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -133680,10 +133903,10 @@ export default { } ], "event_organizers": [ - 1323, + 1341, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -133693,19 +133916,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "event_organizers_aggregate": [ - 1324, + 1342, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -133715,19 +133938,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "event_organizers_by_pk": [ - 1323, + 1341, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -133737,10 +133960,10 @@ export default { } ], "event_players": [ - 1364, + 1382, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -133750,19 +133973,19 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "event_players_aggregate": [ - 1365, + 1383, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -133772,19 +133995,19 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "event_players_by_pk": [ - 1364, + 1382, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -133794,10 +134017,10 @@ export default { } ], "event_teams": [ - 1405, + 1423, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -133807,19 +134030,19 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "event_teams_aggregate": [ - 1406, + 1424, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -133829,32 +134052,32 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "event_teams_by_pk": [ - 1405, + 1423, { "event_id": [ - 4744, + 4762, "uuid!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "event_tournaments": [ - 1429, + 1447, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -133864,19 +134087,19 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], "event_tournaments_aggregate": [ - 1430, + 1448, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -133886,32 +134109,32 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], "event_tournaments_by_pk": [ - 1429, + 1447, { "event_id": [ - 4744, + 4762, "uuid!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "events": [ - 1453, + 1471, { "distinct_on": [ - 1468, + 1486, "[events_select_column!]" ], "limit": [ @@ -133921,19 +134144,19 @@ export default { 38 ], "order_by": [ - 1466, + 1484, "[events_order_by!]" ], "where": [ - 1457 + 1475 ] } ], "events_aggregate": [ - 1454, + 1472, { "distinct_on": [ - 1468, + 1486, "[events_select_column!]" ], "limit": [ @@ -133943,28 +134166,28 @@ export default { 38 ], "order_by": [ - 1466, + 1484, "[events_order_by!]" ], "where": [ - 1457 + 1475 ] } ], "events_by_pk": [ - 1453, + 1471, { "id": [ - 4744, + 4762, "uuid!" ] } ], "friends": [ - 1483, + 1501, { "distinct_on": [ - 1497, + 1515, "[friends_select_column!]" ], "limit": [ @@ -133974,19 +134197,19 @@ export default { 38 ], "order_by": [ - 1495, + 1513, "[friends_order_by!]" ], "where": [ - 1487 + 1505 ] } ], "friends_aggregate": [ - 1484, + 1502, { "distinct_on": [ - 1497, + 1515, "[friends_select_column!]" ], "limit": [ @@ -133996,16 +134219,16 @@ export default { 38 ], "order_by": [ - 1495, + 1513, "[friends_order_by!]" ], "where": [ - 1487 + 1505 ] } ], "friends_by_pk": [ - 1483, + 1501, { "other_player_steam_id": [ 180, @@ -134018,10 +134241,10 @@ export default { } ], "game_server_nodes": [ - 1510, + 1528, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134031,19 +134254,19 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1511, + 1529, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -134053,16 +134276,16 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], "game_server_nodes_by_pk": [ - 1510, + 1528, { "id": [ 78, @@ -134071,10 +134294,10 @@ export default { } ], "game_versions": [ - 1561, + 1579, { "distinct_on": [ - 1581, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -134084,19 +134307,19 @@ export default { 38 ], "order_by": [ - 1578, + 1596, "[game_versions_order_by!]" ], "where": [ - 1566 + 1584 ] } ], "game_versions_aggregate": [ - 1562, + 1580, { "distinct_on": [ - 1581, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -134106,16 +134329,16 @@ export default { 38 ], "order_by": [ - 1578, + 1596, "[game_versions_order_by!]" ], "where": [ - 1566 + 1584 ] } ], "game_versions_by_pk": [ - 1561, + 1579, { "build_id": [ 38, @@ -134124,10 +134347,10 @@ export default { } ], "gamedata_signature_validations": [ - 1594, + 1612, { "distinct_on": [ - 1613, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134137,19 +134360,19 @@ export default { 38 ], "order_by": [ - 1610, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1599 + 1617 ] } ], "gamedata_signature_validations_aggregate": [ - 1595, + 1613, { "distinct_on": [ - 1613, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -134159,19 +134382,19 @@ export default { 38 ], "order_by": [ - 1610, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1599 + 1617 ] } ], "gamedata_signature_validations_by_pk": [ - 1594, + 1612, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -134207,7 +134430,7 @@ export default { 34, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "target_steam_id": [ @@ -134292,14 +134515,14 @@ export default { 89 ], "get_event_leaderboard": [ - 1637, + 1655, { "args": [ - 1626, + 1644, "get_event_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134309,23 +134532,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_event_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1626, + 1644, "get_event_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134335,23 +134558,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_leaderboard": [ - 1637, + 1655, { "args": [ - 1627, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134361,23 +134584,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1627, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134387,23 +134610,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_league_season_leaderboard": [ - 1637, + 1655, { "args": [ - 1628, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134413,23 +134636,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_league_season_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1628, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134439,23 +134662,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_player_leaderboard_rank": [ - 3204, + 3222, { "args": [ - 1629, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134465,23 +134688,23 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3205, + 3223, { "args": [ - 1629, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -134491,19 +134714,19 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "leaderboard_entries": [ - 1637, + 1655, { "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134513,19 +134736,19 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "leaderboard_entries_aggregate": [ - 1638, + 1656, { "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -134535,19 +134758,19 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "league_divisions": [ - 1661, + 1679, { "distinct_on": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -134557,19 +134780,19 @@ export default { 38 ], "order_by": [ - 1674, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1665 + 1683 ] } ], "league_divisions_aggregate": [ - 1662, + 1680, { "distinct_on": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -134579,28 +134802,28 @@ export default { 38 ], "order_by": [ - 1674, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1665 + 1683 ] } ], "league_divisions_by_pk": [ - 1661, + 1679, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_match_weeks": [ - 1689, + 1707, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134610,19 +134833,19 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], "league_match_weeks_aggregate": [ - 1690, + 1708, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -134632,28 +134855,28 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], "league_match_weeks_by_pk": [ - 1689, + 1707, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_relegation_playoffs": [ - 1730, + 1748, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134663,19 +134886,19 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], "league_relegation_playoffs_aggregate": [ - 1731, + 1749, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -134685,28 +134908,28 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], "league_relegation_playoffs_by_pk": [ - 1730, + 1748, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_scheduling_proposals": [ - 1771, + 1789, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -134716,19 +134939,19 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "league_scheduling_proposals_aggregate": [ - 1772, + 1790, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -134738,28 +134961,28 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "league_scheduling_proposals_by_pk": [ - 1771, + 1789, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_season_divisions": [ - 1812, + 1830, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -134769,19 +134992,19 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "league_season_divisions_aggregate": [ - 1813, + 1831, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -134791,28 +135014,28 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "league_season_divisions_by_pk": [ - 1812, + 1830, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_seasons": [ - 1837, + 1855, { "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -134822,19 +135045,19 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], "league_seasons_aggregate": [ - 1838, + 1856, { "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -134844,28 +135067,28 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], "league_seasons_by_pk": [ - 1837, + 1855, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_team_movements": [ - 1870, + 1888, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -134875,19 +135098,19 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "league_team_movements_aggregate": [ - 1871, + 1889, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -134897,28 +135120,28 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "league_team_movements_by_pk": [ - 1870, + 1888, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_team_rosters": [ - 1911, + 1929, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -134928,19 +135151,19 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "league_team_rosters_aggregate": [ - 1912, + 1930, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -134950,19 +135173,19 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "league_team_rosters_by_pk": [ - 1911, + 1929, { "league_team_season_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -134972,10 +135195,10 @@ export default { } ], "league_team_seasons": [ - 1952, + 1970, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -134985,19 +135208,19 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "league_team_seasons_aggregate": [ - 1953, + 1971, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -135007,28 +135230,28 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "league_team_seasons_by_pk": [ - 1952, + 1970, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_teams": [ - 1994, + 2012, { "distinct_on": [ - 2007, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -135038,19 +135261,19 @@ export default { 38 ], "order_by": [ - 2005, + 2023, "[league_teams_order_by!]" ], "where": [ - 1997 + 2015 ] } ], "league_teams_aggregate": [ - 1995, + 2013, { "distinct_on": [ - 2007, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -135060,19 +135283,19 @@ export default { 38 ], "order_by": [ - 2005, + 2023, "[league_teams_order_by!]" ], "where": [ - 1997 + 2015 ] } ], "league_teams_by_pk": [ - 1994, + 2012, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -135093,10 +135316,10 @@ export default { } ], "lobbies": [ - 2013, + 2031, { "distinct_on": [ - 2026, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -135106,19 +135329,19 @@ export default { 38 ], "order_by": [ - 2024, + 2042, "[lobbies_order_by!]" ], "where": [ - 2016 + 2034 ] } ], "lobbies_aggregate": [ - 2014, + 2032, { "distinct_on": [ - 2026, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -135128,28 +135351,28 @@ export default { 38 ], "order_by": [ - 2024, + 2042, "[lobbies_order_by!]" ], "where": [ - 2016 + 2034 ] } ], "lobbies_by_pk": [ - 2013, + 2031, { "id": [ - 4744, + 4762, "uuid!" ] } ], "lobby_players": [ - 2032, + 2050, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -135159,19 +135382,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "lobby_players_aggregate": [ - 2033, + 2051, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -135181,19 +135404,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "lobby_players_by_pk": [ - 2032, + 2050, { "lobby_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -135203,10 +135426,10 @@ export default { } ], "map_pools": [ - 2077, + 2095, { "distinct_on": [ - 2090, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -135216,19 +135439,19 @@ export default { 38 ], "order_by": [ - 2088, + 2106, "[map_pools_order_by!]" ], "where": [ - 2080 + 2098 ] } ], "map_pools_aggregate": [ - 2078, + 2096, { "distinct_on": [ - 2090, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -135238,28 +135461,28 @@ export default { 38 ], "order_by": [ - 2088, + 2106, "[map_pools_order_by!]" ], "where": [ - 2080 + 2098 ] } ], "map_pools_by_pk": [ - 2077, + 2095, { "id": [ - 4744, + 4762, "uuid!" ] } ], "maps": [ - 2096, + 2114, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -135269,19 +135492,19 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], "maps_aggregate": [ - 2097, + 2115, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -135291,28 +135514,28 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], "maps_by_pk": [ - 2096, + 2114, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_clips": [ - 2125, + 2143, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -135322,19 +135545,19 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_aggregate": [ - 2126, + 2144, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -135344,28 +135567,28 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_by_pk": [ - 2125, + 2143, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_demo_sessions": [ - 2167, + 2185, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135375,19 +135598,19 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], "match_demo_sessions_aggregate": [ - 2168, + 2186, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -135397,28 +135620,28 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], "match_demo_sessions_by_pk": [ - 2167, + 2185, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_lineup_players": [ - 2213, + 2231, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135428,19 +135651,19 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "match_lineup_players_aggregate": [ - 2214, + 2232, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -135450,28 +135673,28 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "match_lineup_players_by_pk": [ - 2213, + 2231, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_lineups": [ - 2258, + 2276, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -135481,19 +135704,19 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "match_lineups_aggregate": [ - 2259, + 2277, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -135503,28 +135726,28 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "match_lineups_by_pk": [ - 2258, + 2276, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_demos": [ - 2300, + 2318, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -135534,19 +135757,19 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "match_map_demos_aggregate": [ - 2301, + 2319, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -135556,28 +135779,28 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "match_map_demos_by_pk": [ - 2300, + 2318, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_rounds": [ - 2351, + 2369, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135587,19 +135810,19 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "match_map_rounds_aggregate": [ - 2352, + 2370, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -135609,28 +135832,28 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "match_map_rounds_by_pk": [ - 2351, + 2369, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135640,19 +135863,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_map_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -135662,28 +135885,28 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_map_veto_picks_by_pk": [ - 2392, + 2410, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_maps": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -135693,19 +135916,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -135715,28 +135938,28 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_by_pk": [ - 2416, + 2434, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_options": [ - 2458, + 2476, { "distinct_on": [ - 2473, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -135746,19 +135969,19 @@ export default { 38 ], "order_by": [ - 2471, + 2489, "[match_options_order_by!]" ], "where": [ - 2462 + 2480 ] } ], "match_options_aggregate": [ - 2459, + 2477, { "distinct_on": [ - 2473, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -135768,28 +135991,28 @@ export default { 38 ], "order_by": [ - 2471, + 2489, "[match_options_order_by!]" ], "where": [ - 2462 + 2480 ] } ], "match_options_by_pk": [ - 2458, + 2476, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_region_veto_picks": [ - 2486, + 2504, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -135799,19 +136022,19 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], "match_region_veto_picks_aggregate": [ - 2487, + 2505, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -135821,28 +136044,28 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], "match_region_veto_picks_by_pk": [ - 2486, + 2504, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_streams": [ - 2510, + 2528, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -135852,19 +136075,19 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "match_streams_aggregate": [ - 2511, + 2529, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -135874,28 +136097,28 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "match_streams_by_pk": [ - 2510, + 2528, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_type_cfgs": [ - 2560, + 2578, { "distinct_on": [ - 2572, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -135905,19 +136128,19 @@ export default { 38 ], "order_by": [ - 2570, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2563 + 2581 ] } ], "match_type_cfgs_aggregate": [ - 2561, + 2579, { "distinct_on": [ - 2572, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -135927,16 +136150,16 @@ export default { 38 ], "order_by": [ - 2570, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2563 + 2581 ] } ], "match_type_cfgs_by_pk": [ - 2560, + 2578, { "type": [ 591, @@ -135945,10 +136168,10 @@ export default { } ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -135958,19 +136181,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_aggregate": [ - 2579, + 2597, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -135980,19 +136203,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_by_pk": [ - 2578, + 2596, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -136001,10 +136224,10 @@ export default { 45 ], "migration_hashes_hashes": [ - 2620, + 2638, { "distinct_on": [ - 2632, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136014,19 +136237,19 @@ export default { 38 ], "order_by": [ - 2630, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2623 + 2641 ] } ], "migration_hashes_hashes_aggregate": [ - 2621, + 2639, { "distinct_on": [ - 2632, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -136036,16 +136259,16 @@ export default { 38 ], "order_by": [ - 2630, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2623 + 2641 ] } ], "migration_hashes_hashes_by_pk": [ - 2620, + 2638, { "name": [ 78, @@ -136054,10 +136277,10 @@ export default { } ], "my_friends": [ - 2638, + 2656, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -136067,19 +136290,19 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], "my_friends_aggregate": [ - 2639, + 2657, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -136089,11 +136312,11 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], @@ -136101,7 +136324,7 @@ export default { 48, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -136110,10 +136333,10 @@ export default { 48 ], "news_articles": [ - 2684, + 2702, { "distinct_on": [ - 2698, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -136123,19 +136346,19 @@ export default { 38 ], "order_by": [ - 2696, + 2714, "[news_articles_order_by!]" ], "where": [ - 2688 + 2706 ] } ], "news_articles_aggregate": [ - 2685, + 2703, { "distinct_on": [ - 2698, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -136145,28 +136368,28 @@ export default { 38 ], "order_by": [ - 2696, + 2714, "[news_articles_order_by!]" ], "where": [ - 2688 + 2706 ] } ], "news_articles_by_pk": [ - 2684, + 2702, { "id": [ - 4744, + 4762, "uuid!" ] } ], "notifications": [ - 2711, + 2729, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -136176,19 +136399,19 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "notifications_aggregate": [ - 2712, + 2730, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -136198,28 +136421,28 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "notifications_by_pk": [ - 2711, + 2729, { "id": [ - 4744, + 4762, "uuid!" ] } ], "pending_match_import_players": [ - 2764, + 2782, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136229,19 +136452,19 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "pending_match_import_players_aggregate": [ - 2765, + 2783, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -136251,32 +136474,32 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "pending_match_import_players_by_pk": [ - 2764, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "pending_match_imports": [ - 2805, + 2823, { "distinct_on": [ - 2820, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136286,19 +136509,19 @@ export default { 38 ], "order_by": [ - 2818, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2809 + 2827 ] } ], "pending_match_imports_aggregate": [ - 2806, + 2824, { "distinct_on": [ - 2820, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -136308,28 +136531,28 @@ export default { 38 ], "order_by": [ - 2818, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2809 + 2827 ] } ], "pending_match_imports_by_pk": [ - 2805, + 2823, { "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "player_aim_stats_demo": [ - 2833, + 2851, { "distinct_on": [ - 2847, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136339,19 +136562,19 @@ export default { 38 ], "order_by": [ - 2845, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2837 + 2855 ] } ], "player_aim_stats_demo_aggregate": [ - 2834, + 2852, { "distinct_on": [ - 2847, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -136361,32 +136584,32 @@ export default { 38 ], "order_by": [ - 2845, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2837 + 2855 ] } ], "player_aim_stats_demo_by_pk": [ - 2833, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ] } ], "player_aim_weapon_stats": [ - 2860, + 2878, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136396,19 +136619,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "player_aim_weapon_stats_aggregate": [ - 2861, + 2879, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -136418,19 +136641,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "player_aim_weapon_stats_by_pk": [ - 2860, + 2878, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -136444,10 +136667,10 @@ export default { } ], "player_assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -136457,19 +136680,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -136479,16 +136702,16 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_by_pk": [ - 2901, + 2919, { "attacked_steam_id": [ 180, @@ -136499,20 +136722,20 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_career_stats_v": [ - 2946, + 2964, { "distinct_on": [ - 2954, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136522,19 +136745,19 @@ export default { 38 ], "order_by": [ - 2953, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2950 + 2968 ] } ], "player_career_stats_v_aggregate": [ - 2947, + 2965, { "distinct_on": [ - 2954, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -136544,19 +136767,19 @@ export default { 38 ], "order_by": [ - 2953, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2950 + 2968 ] } ], "player_damages": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -136566,19 +136789,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -136588,36 +136811,36 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_by_pk": [ - 2964, + 2982, { "id": [ - 4744, + 4762, "uuid!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_elo": [ - 3005, + 3023, { "distinct_on": [ - 3019, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -136627,19 +136850,19 @@ export default { 38 ], "order_by": [ - 3017, + 3035, "[player_elo_order_by!]" ], "where": [ - 3009 + 3027 ] } ], "player_elo_aggregate": [ - 3006, + 3024, { "distinct_on": [ - 3019, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -136649,19 +136872,19 @@ export default { 38 ], "order_by": [ - 3017, + 3035, "[player_elo_order_by!]" ], "where": [ - 3009 + 3027 ] } ], "player_elo_by_pk": [ - 3005, + 3023, { "match_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -136675,10 +136898,10 @@ export default { } ], "player_faceit_rank_history": [ - 3032, + 3050, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -136688,19 +136911,19 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], "player_faceit_rank_history_aggregate": [ - 3033, + 3051, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -136710,28 +136933,28 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], "player_faceit_rank_history_by_pk": [ - 3032, + 3050, { "id": [ - 4744, + 4762, "uuid!" ] } ], "player_flashes": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -136741,19 +136964,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_flashes_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -136763,16 +136986,16 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_flashes_by_pk": [ - 3073, + 3091, { "attacked_steam_id": [ 180, @@ -136783,20 +137006,20 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -136806,19 +137029,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -136828,16 +137051,16 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_by_pk": [ - 3118, + 3136, { "attacked_steam_id": [ 180, @@ -136848,20 +137071,20 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3130, + 3148, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -136871,19 +137094,19 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], "player_kills_by_weapon_aggregate": [ - 3131, + 3149, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -136893,16 +137116,16 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], "player_kills_by_weapon_by_pk": [ - 3130, + 3148, { "player_steam_id": [ 180, @@ -136915,10 +137138,10 @@ export default { } ], "player_leaderboard_rank": [ - 3204, + 3222, { "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -136928,19 +137151,19 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "player_leaderboard_rank_aggregate": [ - 3205, + 3223, { "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -136950,19 +137173,19 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "player_match_map_stats": [ - 3227, + 3245, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -136972,19 +137195,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "player_match_map_stats_aggregate": [ - 3228, + 3246, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -136994,19 +137217,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "player_match_map_stats_by_pk": [ - 3227, + 3245, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -137016,10 +137239,10 @@ export default { } ], "player_match_performance_v": [ - 3268, + 3286, { "distinct_on": [ - 3276, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137029,19 +137252,19 @@ export default { 38 ], "order_by": [ - 3275, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 3272 + 3290 ] } ], "player_match_performance_v_aggregate": [ - 3269, + 3287, { "distinct_on": [ - 3276, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -137051,19 +137274,19 @@ export default { 38 ], "order_by": [ - 3275, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 3272 + 3290 ] } ], "player_match_stats_v": [ - 3286, + 3304, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137073,19 +137296,19 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "player_match_stats_v_aggregate": [ - 3287, + 3305, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -137095,19 +137318,19 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "player_objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -137117,19 +137340,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -137139,19 +137362,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_by_pk": [ - 3319, + 3337, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -137159,16 +137382,16 @@ export default { "bigint!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_performance_v": [ - 3360, + 3378, { "distinct_on": [ - 3368, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -137178,19 +137401,19 @@ export default { 38 ], "order_by": [ - 3367, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3364 + 3382 ] } ], "player_performance_v_aggregate": [ - 3361, + 3379, { "distinct_on": [ - 3368, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -137200,19 +137423,19 @@ export default { 38 ], "order_by": [ - 3367, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3364 + 3382 ] } ], "player_premier_rank_history": [ - 3378, + 3396, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137222,19 +137445,19 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "player_premier_rank_history_aggregate": [ - 3379, + 3397, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -137244,28 +137467,28 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "player_premier_rank_history_by_pk": [ - 3378, + 3396, { "id": [ - 4744, + 4762, "uuid!" ] } ], "player_sanctions": [ - 3419, + 3437, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -137275,19 +137498,19 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "player_sanctions_aggregate": [ - 3420, + 3438, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -137297,32 +137520,32 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "player_sanctions_by_pk": [ - 3419, + 3437, { "created_at": [ - 4306, + 4324, "timestamptz!" ], "id": [ - 4744, + 4762, "uuid!" ] } ], "player_season_stats": [ - 3460, + 3478, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -137332,19 +137555,19 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "player_season_stats_aggregate": [ - 3461, + 3479, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -137354,32 +137577,32 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "player_season_stats_by_pk": [ - 3460, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4744, + 4762, "uuid!" ] } ], "player_stats": [ - 3519, + 3537, { "distinct_on": [ - 3534, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -137389,19 +137612,19 @@ export default { 38 ], "order_by": [ - 3532, + 3550, "[player_stats_order_by!]" ], "where": [ - 3523 + 3541 ] } ], "player_stats_aggregate": [ - 3520, + 3538, { "distinct_on": [ - 3534, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -137411,16 +137634,16 @@ export default { 38 ], "order_by": [ - 3532, + 3550, "[player_stats_order_by!]" ], "where": [ - 3523 + 3541 ] } ], "player_stats_by_pk": [ - 3519, + 3537, { "player_steam_id": [ 180, @@ -137429,10 +137652,10 @@ export default { } ], "player_steam_bot_friend": [ - 3547, + 3565, { "distinct_on": [ - 3566, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137442,19 +137665,19 @@ export default { 38 ], "order_by": [ - 3563, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3552 + 3570 ] } ], "player_steam_bot_friend_aggregate": [ - 3548, + 3566, { "distinct_on": [ - 3566, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -137464,16 +137687,16 @@ export default { 38 ], "order_by": [ - 3563, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3552 + 3570 ] } ], "player_steam_bot_friend_by_pk": [ - 3547, + 3565, { "steam_id": [ 180, @@ -137482,10 +137705,10 @@ export default { } ], "player_steam_match_auth": [ - 3579, + 3597, { "distinct_on": [ - 3593, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137495,19 +137718,19 @@ export default { 38 ], "order_by": [ - 3591, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3583 + 3601 ] } ], "player_steam_match_auth_aggregate": [ - 3580, + 3598, { "distinct_on": [ - 3593, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -137517,16 +137740,16 @@ export default { 38 ], "order_by": [ - 3591, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3583 + 3601 ] } ], "player_steam_match_auth_by_pk": [ - 3579, + 3597, { "steam_id": [ 180, @@ -137535,10 +137758,10 @@ export default { } ], "player_unused_utility": [ - 3606, + 3624, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137548,19 +137771,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utility_aggregate": [ - 3607, + 3625, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -137570,19 +137793,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utility_by_pk": [ - 3606, + 3624, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -137592,10 +137815,10 @@ export default { } ], "player_utility": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -137605,19 +137828,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utility_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -137627,36 +137850,36 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utility_by_pk": [ - 3647, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 3688, + 3706, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137666,19 +137889,19 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], "player_weapon_stats_v_aggregate": [ - 3689, + 3707, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -137688,19 +137911,19 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], "players": [ - 3721, + 3739, { "distinct_on": [ - 3736, + 3754, "[players_select_column!]" ], "limit": [ @@ -137710,19 +137933,19 @@ export default { 38 ], "order_by": [ - 3734, + 3752, "[players_order_by!]" ], "where": [ - 3725 + 3743 ] } ], "players_aggregate": [ - 3722, + 3740, { "distinct_on": [ - 3736, + 3754, "[players_select_column!]" ], "limit": [ @@ -137732,16 +137955,16 @@ export default { 38 ], "order_by": [ - 3734, + 3752, "[players_order_by!]" ], "where": [ - 3725 + 3743 ] } ], "players_by_pk": [ - 3721, + 3739, { "steam_id": [ 180, @@ -137750,10 +137973,10 @@ export default { } ], "plugin_versions": [ - 3749, + 3767, { "distinct_on": [ - 3763, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -137763,19 +137986,19 @@ export default { 38 ], "order_by": [ - 3761, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3753 + 3771 ] } ], "plugin_versions_aggregate": [ - 3750, + 3768, { "distinct_on": [ - 3763, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -137785,16 +138008,16 @@ export default { 38 ], "order_by": [ - 3761, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3753 + 3771 ] } ], "plugin_versions_by_pk": [ - 3749, + 3767, { "runtime": [ 941, @@ -137823,10 +138046,10 @@ export default { } ], "seasons": [ - 3780, + 3798, { "distinct_on": [ - 3795, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -137836,19 +138059,19 @@ export default { 38 ], "order_by": [ - 3793, + 3811, "[seasons_order_by!]" ], "where": [ - 3784 + 3802 ] } ], "seasons_aggregate": [ - 3781, + 3799, { "distinct_on": [ - 3795, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -137858,28 +138081,28 @@ export default { 38 ], "order_by": [ - 3793, + 3811, "[seasons_order_by!]" ], "where": [ - 3784 + 3802 ] } ], "seasons_by_pk": [ - 3780, + 3798, { "id": [ - 4744, + 4762, "uuid!" ] } ], "server_regions": [ - 3808, + 3826, { "distinct_on": [ - 3822, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -137889,19 +138112,19 @@ export default { 38 ], "order_by": [ - 3820, + 3838, "[server_regions_order_by!]" ], "where": [ - 3812 + 3830 ] } ], "server_regions_aggregate": [ - 3809, + 3827, { "distinct_on": [ - 3822, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -137911,16 +138134,16 @@ export default { 38 ], "order_by": [ - 3820, + 3838, "[server_regions_order_by!]" ], "where": [ - 3812 + 3830 ] } ], "server_regions_by_pk": [ - 3808, + 3826, { "value": [ 78, @@ -137929,10 +138152,10 @@ export default { } ], "servers": [ - 3835, + 3853, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -137942,19 +138165,19 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_aggregate": [ - 3836, + 3854, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -137964,28 +138187,28 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_by_pk": [ - 3835, + 3853, { "id": [ - 4744, + 4762, "uuid!" ] } ], "settings": [ - 3881, + 3899, { "distinct_on": [ - 3893, + 3911, "[settings_select_column!]" ], "limit": [ @@ -137995,19 +138218,19 @@ export default { 38 ], "order_by": [ - 3891, + 3909, "[settings_order_by!]" ], "where": [ - 3884 + 3902 ] } ], "settings_aggregate": [ - 3882, + 3900, { "distinct_on": [ - 3893, + 3911, "[settings_select_column!]" ], "limit": [ @@ -138017,16 +138240,16 @@ export default { 38 ], "order_by": [ - 3891, + 3909, "[settings_order_by!]" ], "where": [ - 3884 + 3902 ] } ], "settings_by_pk": [ - 3881, + 3899, { "name": [ 78, @@ -138038,10 +138261,10 @@ export default { 72 ], "steam_account_claims": [ - 3901, + 3919, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138051,19 +138274,19 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "steam_account_claims_aggregate": [ - 3902, + 3920, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -138073,28 +138296,28 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "steam_account_claims_by_pk": [ - 3901, + 3919, { "id": [ - 4744, + 4762, "uuid!" ] } ], "steam_accounts": [ - 3925, + 3943, { "distinct_on": [ - 3940, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -138104,19 +138327,19 @@ export default { 38 ], "order_by": [ - 3938, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3929 + 3947 ] } ], "steam_accounts_aggregate": [ - 3926, + 3944, { "distinct_on": [ - 3940, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -138126,28 +138349,28 @@ export default { 38 ], "order_by": [ - 3938, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3929 + 3947 ] } ], "steam_accounts_by_pk": [ - 3925, + 3943, { "id": [ - 4744, + 4762, "uuid!" ] } ], "system_alerts": [ - 3953, + 3971, { "distinct_on": [ - 3967, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -138157,19 +138380,19 @@ export default { 38 ], "order_by": [ - 3965, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3957 + 3975 ] } ], "system_alerts_aggregate": [ - 3954, + 3972, { "distinct_on": [ - 3967, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -138179,19 +138402,19 @@ export default { 38 ], "order_by": [ - 3965, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3957 + 3975 ] } ], "system_alerts_by_pk": [ - 3953, + 3971, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -138200,16 +138423,16 @@ export default { 85, { "team_id": [ - 4744, + 4762, "uuid!" ] } ], "team_invites": [ - 3980, + 3998, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -138219,19 +138442,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_invites_aggregate": [ - 3981, + 3999, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -138241,28 +138464,28 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_invites_by_pk": [ - 3980, + 3998, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_roster": [ - 4021, + 4039, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -138272,19 +138495,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_roster_aggregate": [ - 4022, + 4040, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -138294,32 +138517,32 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_roster_by_pk": [ - 4021, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_alerts": [ - 4066, + 4084, { "distinct_on": [ - 4080, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138329,19 +138552,19 @@ export default { 38 ], "order_by": [ - 4078, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 4070 + 4088 ] } ], "team_scrim_alerts_aggregate": [ - 4067, + 4085, { "distinct_on": [ - 4080, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -138351,28 +138574,28 @@ export default { 38 ], "order_by": [ - 4078, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 4070 + 4088 ] } ], "team_scrim_alerts_by_pk": [ - 4066, + 4084, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_availability": [ - 4093, + 4111, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138382,19 +138605,19 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "team_scrim_availability_aggregate": [ - 4094, + 4112, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -138404,28 +138627,28 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "team_scrim_availability_by_pk": [ - 4093, + 4111, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_request_proposals": [ - 4121, + 4139, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138435,19 +138658,19 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "team_scrim_request_proposals_aggregate": [ - 4122, + 4140, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -138457,28 +138680,28 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "team_scrim_request_proposals_by_pk": [ - 4121, + 4139, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_requests": [ - 4162, + 4180, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138488,19 +138711,19 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], "team_scrim_requests_aggregate": [ - 4163, + 4181, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -138510,28 +138733,28 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], "team_scrim_requests_by_pk": [ - 4162, + 4180, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_settings": [ - 4208, + 4226, { "distinct_on": [ - 4223, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138541,19 +138764,19 @@ export default { 38 ], "order_by": [ - 4221, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 4212 + 4230 ] } ], "team_scrim_settings_aggregate": [ - 4209, + 4227, { "distinct_on": [ - 4223, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -138563,28 +138786,28 @@ export default { 38 ], "order_by": [ - 4221, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 4212 + 4230 ] } ], "team_scrim_settings_by_pk": [ - 4208, + 4226, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_suggestions": [ - 4236, + 4254, { "distinct_on": [ - 4250, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -138594,19 +138817,19 @@ export default { 38 ], "order_by": [ - 4248, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 4240 + 4258 ] } ], "team_suggestions_aggregate": [ - 4237, + 4255, { "distinct_on": [ - 4250, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -138616,28 +138839,28 @@ export default { 38 ], "order_by": [ - 4248, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 4240 + 4258 ] } ], "team_suggestions_by_pk": [ - 4236, + 4254, { "id": [ - 4744, + 4762, "uuid!" ] } ], "teams": [ - 4263, + 4281, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -138647,19 +138870,19 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "teams_aggregate": [ - 4264, + 4282, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -138669,19 +138892,19 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "teams_by_pk": [ - 4263, + 4281, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -138690,10 +138913,10 @@ export default { 86 ], "tournament_brackets": [ - 4308, + 4326, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -138703,19 +138926,19 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4309, + 4327, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -138725,28 +138948,28 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "tournament_brackets_by_pk": [ - 4308, + 4326, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_organizers": [ - 4354, + 4372, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -138756,19 +138979,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4355, + 4373, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -138778,32 +139001,32 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_organizers_by_pk": [ - 4354, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_stage_windows": [ - 4395, + 4413, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -138813,19 +139036,19 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], "tournament_stage_windows_aggregate": [ - 4396, + 4414, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -138835,28 +139058,28 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], "tournament_stage_windows_by_pk": [ - 4395, + 4413, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_stages": [ - 4436, + 4454, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -138866,19 +139089,19 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "tournament_stages_aggregate": [ - 4437, + 4455, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -138888,28 +139111,28 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "tournament_stages_by_pk": [ - 4436, + 4454, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_team_invites": [ - 4487, + 4505, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -138919,19 +139142,19 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], "tournament_team_invites_aggregate": [ - 4488, + 4506, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -138941,28 +139164,28 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], "tournament_team_invites_by_pk": [ - 4487, + 4505, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_team_roster": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -138972,19 +139195,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_team_roster_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -138994,32 +139217,32 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_team_roster_by_pk": [ - 4528, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_teams": [ - 4569, + 4587, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -139029,19 +139252,19 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "tournament_teams_aggregate": [ - 4570, + 4588, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -139051,28 +139274,28 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "tournament_teams_by_pk": [ - 4569, + 4587, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_trophies": [ - 4611, + 4629, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139082,19 +139305,19 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4612, + 4630, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -139104,28 +139327,28 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophies_by_pk": [ - 4611, + 4629, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_trophy_configs": [ - 4656, + 4674, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139135,19 +139358,19 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], "tournament_trophy_configs_aggregate": [ - 4657, + 4675, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -139157,28 +139380,28 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], "tournament_trophy_configs_by_pk": [ - 4656, + 4674, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournaments": [ - 4698, + 4716, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -139188,19 +139411,19 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_aggregate": [ - 4699, + 4717, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -139210,72 +139433,28 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_by_pk": [ - 4698, + 4716, { "id": [ - 4744, + 4762, "uuid!" ] } ], - "v_event_matches": [ - 4747, - { - "distinct_on": [ - 4754, - "[v_event_matches_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4753, - "[v_event_matches_order_by!]" - ], - "where": [ - 4750 - ] - } - ], - "v_event_matches_aggregate": [ - 4748, - { - "distinct_on": [ - 4754, - "[v_event_matches_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4753, - "[v_event_matches_order_by!]" - ], - "where": [ - 4750 - ] - } - ], "v_event_player_stats": [ - 4757, + 4765, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -139285,19 +139464,19 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "v_event_player_stats_aggregate": [ - 4758, + 4766, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -139307,19 +139486,19 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "v_gpu_pool_status": [ - 4808, + 4816, { "distinct_on": [ - 4816, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139329,19 +139508,19 @@ export default { 38 ], "order_by": [ - 4815, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4812 + 4820 ] } ], "v_gpu_pool_status_aggregate": [ - 4809, + 4817, { "distinct_on": [ - 4816, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -139351,19 +139530,19 @@ export default { 38 ], "order_by": [ - 4815, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4812 + 4820 ] } ], "v_league_division_standings": [ - 4826, + 4834, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139373,19 +139552,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "v_league_division_standings_aggregate": [ - 4827, + 4835, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -139395,19 +139574,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "v_league_season_player_stats": [ - 4859, + 4867, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139417,19 +139596,19 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], "v_league_season_player_stats_aggregate": [ - 4860, + 4868, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -139439,19 +139618,19 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], "v_match_captains": [ - 4910, + 4918, { "distinct_on": [ - 4922, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -139461,19 +139640,19 @@ export default { 38 ], "order_by": [ - 4921, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4914 + 4922 ] } ], "v_match_captains_aggregate": [ - 4911, + 4919, { "distinct_on": [ - 4922, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -139483,19 +139662,19 @@ export default { 38 ], "order_by": [ - 4921, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4914 + 4922 ] } ], "v_match_clutches": [ - 4934, + 4942, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139505,19 +139684,19 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], "v_match_clutches_aggregate": [ - 4935, + 4943, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -139527,19 +139706,19 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], "v_match_kill_pairs": [ - 4967, + 4975, { "distinct_on": [ - 4975, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139549,19 +139728,19 @@ export default { 38 ], "order_by": [ - 4974, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4971 + 4979 ] } ], "v_match_kill_pairs_aggregate": [ - 4968, + 4976, { "distinct_on": [ - 4975, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -139571,19 +139750,19 @@ export default { 38 ], "order_by": [ - 4974, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4971 + 4979 ] } ], "v_match_lineup_buy_types": [ - 4985, + 4993, { "distinct_on": [ - 4993, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139593,19 +139772,19 @@ export default { 38 ], "order_by": [ - 4992, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4989 + 4997 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4986, + 4994, { "distinct_on": [ - 4993, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -139615,19 +139794,19 @@ export default { 38 ], "order_by": [ - 4992, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4989 + 4997 ] } ], "v_match_lineup_map_stats": [ - 5003, + 5011, { "distinct_on": [ - 5011, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139637,19 +139816,19 @@ export default { 38 ], "order_by": [ - 5010, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5007 + 5015 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5004, + 5012, { "distinct_on": [ - 5011, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -139659,19 +139838,19 @@ export default { 38 ], "order_by": [ - 5010, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5007 + 5015 ] } ], "v_match_map_backup_rounds": [ - 5021, + 5029, { "distinct_on": [ - 5032, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139681,19 +139860,19 @@ export default { 38 ], "order_by": [ - 5031, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5025 + 5033 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5022, + 5030, { "distinct_on": [ - 5032, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -139703,19 +139882,19 @@ export default { 38 ], "order_by": [ - 5031, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5025 + 5033 ] } ], "v_match_player_buy_types": [ - 5044, + 5052, { "distinct_on": [ - 5052, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139725,19 +139904,19 @@ export default { 38 ], "order_by": [ - 5051, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5048 + 5056 ] } ], "v_match_player_buy_types_aggregate": [ - 5045, + 5053, { "distinct_on": [ - 5052, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -139747,19 +139926,19 @@ export default { 38 ], "order_by": [ - 5051, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5048 + 5056 ] } ], "v_match_player_opening_duels": [ - 5062, + 5070, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -139769,19 +139948,19 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "v_match_player_opening_duels_aggregate": [ - 5063, + 5071, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -139791,19 +139970,19 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "v_player_arch_nemesis": [ - 5095, + 5103, { "distinct_on": [ - 5103, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -139813,19 +139992,19 @@ export default { 38 ], "order_by": [ - 5102, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5099 + 5107 ] } ], "v_player_arch_nemesis_aggregate": [ - 5096, + 5104, { "distinct_on": [ - 5103, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -139835,19 +140014,19 @@ export default { 38 ], "order_by": [ - 5102, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5099 + 5107 ] } ], "v_player_damage": [ - 5113, + 5121, { "distinct_on": [ - 5121, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -139857,19 +140036,19 @@ export default { 38 ], "order_by": [ - 5120, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 5117 + 5125 ] } ], "v_player_damage_aggregate": [ - 5114, + 5122, { "distinct_on": [ - 5121, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -139879,19 +140058,19 @@ export default { 38 ], "order_by": [ - 5120, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 5117 + 5125 ] } ], "v_player_elo": [ - 5131, + 5139, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -139901,19 +140080,19 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "v_player_elo_aggregate": [ - 5132, + 5140, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -139923,19 +140102,19 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "v_player_map_losses": [ - 5182, + 5190, { "distinct_on": [ - 5190, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -139945,19 +140124,19 @@ export default { 38 ], "order_by": [ - 5189, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 5186 + 5194 ] } ], "v_player_map_losses_aggregate": [ - 5183, + 5191, { "distinct_on": [ - 5190, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -139967,19 +140146,19 @@ export default { 38 ], "order_by": [ - 5189, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 5186 + 5194 ] } ], "v_player_map_wins": [ - 5200, + 5208, { "distinct_on": [ - 5208, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -139989,19 +140168,19 @@ export default { 38 ], "order_by": [ - 5207, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 5204 + 5212 ] } ], "v_player_map_wins_aggregate": [ - 5201, + 5209, { "distinct_on": [ - 5208, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -140011,19 +140190,19 @@ export default { 38 ], "order_by": [ - 5207, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 5204 + 5212 ] } ], "v_player_match_head_to_head": [ - 5218, + 5226, { "distinct_on": [ - 5226, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140033,19 +140212,19 @@ export default { 38 ], "order_by": [ - 5225, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5222 + 5230 ] } ], "v_player_match_head_to_head_aggregate": [ - 5219, + 5227, { "distinct_on": [ - 5226, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -140055,19 +140234,19 @@ export default { 38 ], "order_by": [ - 5225, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5222 + 5230 ] } ], "v_player_match_map_hltv": [ - 5236, + 5244, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140077,19 +140256,19 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "v_player_match_map_hltv_aggregate": [ - 5237, + 5245, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -140099,19 +140278,19 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "v_player_match_map_roles": [ - 5273, + 5281, { "distinct_on": [ - 5281, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140121,19 +140300,19 @@ export default { 38 ], "order_by": [ - 5280, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5277 + 5285 ] } ], "v_player_match_map_roles_aggregate": [ - 5274, + 5282, { "distinct_on": [ - 5281, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -140143,19 +140322,19 @@ export default { 38 ], "order_by": [ - 5280, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5277 + 5285 ] } ], "v_player_match_performance": [ - 5291, + 5299, { "distinct_on": [ - 5299, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140165,19 +140344,19 @@ export default { 38 ], "order_by": [ - 5298, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 5295 + 5303 ] } ], "v_player_match_performance_aggregate": [ - 5292, + 5300, { "distinct_on": [ - 5299, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -140187,19 +140366,19 @@ export default { 38 ], "order_by": [ - 5298, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 5295 + 5303 ] } ], "v_player_match_rating": [ - 5309, + 5317, { "distinct_on": [ - 5317, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140209,19 +140388,19 @@ export default { 38 ], "order_by": [ - 5316, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 5313 + 5321 ] } ], "v_player_match_rating_aggregate": [ - 5310, + 5318, { "distinct_on": [ - 5317, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -140231,19 +140410,19 @@ export default { 38 ], "order_by": [ - 5316, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 5313 + 5321 ] } ], "v_player_multi_kills": [ - 5327, + 5335, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140253,19 +140432,19 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], "v_player_multi_kills_aggregate": [ - 5328, + 5336, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -140275,19 +140454,19 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], "v_player_weapon_damage": [ - 5360, + 5368, { "distinct_on": [ - 5368, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140297,19 +140476,19 @@ export default { 38 ], "order_by": [ - 5367, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5364 + 5372 ] } ], "v_player_weapon_damage_aggregate": [ - 5361, + 5369, { "distinct_on": [ - 5368, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -140319,19 +140498,19 @@ export default { 38 ], "order_by": [ - 5367, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5364 + 5372 ] } ], "v_player_weapon_kills": [ - 5378, + 5386, { "distinct_on": [ - 5386, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140341,19 +140520,19 @@ export default { 38 ], "order_by": [ - 5385, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5382 + 5390 ] } ], "v_player_weapon_kills_aggregate": [ - 5379, + 5387, { "distinct_on": [ - 5386, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -140363,19 +140542,19 @@ export default { 38 ], "order_by": [ - 5385, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5382 + 5390 ] } ], "v_pool_maps": [ - 5396, + 5404, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140385,19 +140564,19 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], "v_pool_maps_aggregate": [ - 5397, + 5405, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -140407,19 +140586,19 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], "v_steam_account_pool_status": [ - 5420, + 5428, { "distinct_on": [ - 5428, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140429,19 +140608,19 @@ export default { 38 ], "order_by": [ - 5427, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5424 + 5432 ] } ], "v_steam_account_pool_status_aggregate": [ - 5421, + 5429, { "distinct_on": [ - 5428, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -140451,19 +140630,19 @@ export default { 38 ], "order_by": [ - 5427, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5424 + 5432 ] } ], "v_team_ranks": [ - 5438, + 5446, { "distinct_on": [ - 5448, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140473,19 +140652,19 @@ export default { 38 ], "order_by": [ - 5447, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5442 + 5450 ] } ], "v_team_ranks_aggregate": [ - 5439, + 5447, { "distinct_on": [ - 5448, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -140495,19 +140674,19 @@ export default { 38 ], "order_by": [ - 5447, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5442 + 5450 ] } ], "v_team_reputation": [ - 5458, + 5466, { "distinct_on": [ - 5468, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140517,19 +140696,19 @@ export default { 38 ], "order_by": [ - 5467, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5462 + 5470 ] } ], "v_team_reputation_aggregate": [ - 5459, + 5467, { "distinct_on": [ - 5468, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -140539,19 +140718,19 @@ export default { 38 ], "order_by": [ - 5467, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5462 + 5470 ] } ], "v_team_stage_results": [ - 5478, + 5486, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140561,19 +140740,19 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "v_team_stage_results_aggregate": [ - 5479, + 5487, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -140583,32 +140762,32 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "v_team_stage_results_by_pk": [ - 5478, + 5486, { "tournament_stage_id": [ - 4744, + 4762, "uuid!" ], "tournament_team_id": [ - 4744, + 4762, "uuid!" ] } ], "v_team_tournament_results": [ - 5538, + 5546, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140618,19 +140797,19 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "v_team_tournament_results_aggregate": [ - 5539, + 5547, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -140640,19 +140819,19 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "v_tournament_player_stats": [ - 5589, + 5597, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140662,19 +140841,19 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], "v_tournament_player_stats_aggregate": [ - 5590, + 5598, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -140684,11 +140863,11 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], @@ -140701,7 +140880,7 @@ export default { 55, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -140710,17 +140889,17 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "reset_status": [ 78 ], "scheduled_at": [ - 4306 + 4324 ], "winning_lineup_id": [ - 4744 + 4762 ] } ], @@ -140728,7 +140907,7 @@ export default { 81, { "invite_id": [ - 4744, + 4762, "uuid!" ], "type": [ @@ -140741,7 +140920,7 @@ export default { 81, { "draftGameId": [ - 4744, + 4762, "uuid!" ], "steamId": [ @@ -140780,14 +140959,14 @@ export default { } ], "approve_league_season_movements": [ - 1870, + 1888, { "args": [ 179, "approve_league_season_movements_args!" ], "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -140797,11 +140976,11 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], @@ -140827,7 +141006,7 @@ export default { 81, { "game_server_node_id": [ - 4744, + 4762, "uuid!" ] } @@ -140848,7 +141027,7 @@ export default { 81, { "game_server_node_id": [ - 4744, + 4762, "uuid!" ] } @@ -140857,7 +141036,7 @@ export default { 81, { "job_id": [ - 4744, + 4762, "uuid!" ] } @@ -140866,7 +141045,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -140875,7 +141054,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -140893,7 +141072,7 @@ export default { 81, { "request_id": [ - 4744, + 4762, "uuid!" ] } @@ -140902,7 +141081,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -140911,7 +141090,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -140929,14 +141108,14 @@ export default { } ], "clone_league_season": [ - 1837, + 1855, { "args": [ 235, "clone_league_season_args!" ], "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -140946,11 +141125,11 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], @@ -140958,11 +141137,11 @@ export default { 81, { "proposed_scheduled_at": [ - 4306, + 4324, "timestamptz!" ], "request_id": [ - 4744, + 4762, "uuid!" ] } @@ -140983,7 +141162,7 @@ export default { 38 ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "preset": [ @@ -141018,7 +141197,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -141027,7 +141206,7 @@ export default { 14, { "settings": [ - 1634, + 1652, "jsonb!" ] } @@ -141044,7 +141223,7 @@ export default { "ScheduledLineupInput!" ], "options": [ - 1634, + 1652, "jsonb!" ], "scheduled_at": [ @@ -141073,7 +141252,7 @@ export default { 81, { "clip_id": [ - 4744, + 4762, "uuid!" ] } @@ -141091,7 +141270,7 @@ export default { 81, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141125,7 +141304,7 @@ export default { 81, { "tournament_id": [ - 4744, + 4762, "uuid!" ] } @@ -141143,11 +141322,11 @@ export default { 92, { "map_id": [ - 4744, + 4762, "uuid!" ], "map_pool_id": [ - 4744, + 4762, "uuid!" ] } @@ -141165,7 +141344,7 @@ export default { 111, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141183,7 +141362,7 @@ export default { 152, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141201,7 +141380,7 @@ export default { 185, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141219,7 +141398,7 @@ export default { 237, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141237,7 +141416,7 @@ export default { 264, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -141255,7 +141434,7 @@ export default { 309, { "draft_game_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -141277,7 +141456,7 @@ export default { 354, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -142020,38 +142199,60 @@ export default { ] } ], + "delete_event_match_links": [ + 1248, + { + "where": [ + 1243, + "event_match_links_bool_exp!" + ] + } + ], + "delete_event_match_links_by_pk": [ + 1240, + { + "event_id": [ + 4762, + "uuid!" + ], + "match_id": [ + 4762, + "uuid!" + ] + } + ], "delete_event_media": [ - 1257, + 1275, { "where": [ - 1249, + 1267, "event_media_bool_exp!" ] } ], "delete_event_media_by_pk": [ - 1240, + 1258, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_event_media_players": [ - 1279, + 1297, { "where": [ - 1271, + 1289, "event_media_players_bool_exp!" ] } ], "delete_event_media_players_by_pk": [ - 1262, + 1280, { "media_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142061,19 +142262,19 @@ export default { } ], "delete_event_organizers": [ - 1340, + 1358, { "where": [ - 1332, + 1350, "event_organizers_bool_exp!" ] } ], "delete_event_organizers_by_pk": [ - 1323, + 1341, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142083,19 +142284,19 @@ export default { } ], "delete_event_players": [ - 1381, + 1399, { "where": [ - 1373, + 1391, "event_players_bool_exp!" ] } ], "delete_event_players_by_pk": [ - 1364, + 1382, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142105,78 +142306,78 @@ export default { } ], "delete_event_teams": [ - 1419, + 1437, { "where": [ - 1412, + 1430, "event_teams_bool_exp!" ] } ], "delete_event_teams_by_pk": [ - 1405, + 1423, { "event_id": [ - 4744, + 4762, "uuid!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_event_tournaments": [ - 1443, + 1461, { "where": [ - 1436, + 1454, "event_tournaments_bool_exp!" ] } ], "delete_event_tournaments_by_pk": [ - 1429, + 1447, { "event_id": [ - 4744, + 4762, "uuid!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_events": [ - 1463, + 1481, { "where": [ - 1457, + 1475, "events_bool_exp!" ] } ], "delete_events_by_pk": [ - 1453, + 1471, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_friends": [ - 1493, + 1511, { "where": [ - 1487, + 1505, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 1483, + 1501, { "other_player_steam_id": [ 180, @@ -142189,16 +142390,16 @@ export default { } ], "delete_game_server_nodes": [ - 1533, + 1551, { "where": [ - 1522, + 1540, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 1510, + 1528, { "id": [ 78, @@ -142207,16 +142408,16 @@ export default { } ], "delete_game_versions": [ - 1575, + 1593, { "where": [ - 1566, + 1584, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 1561, + 1579, { "build_id": [ 38, @@ -142225,172 +142426,172 @@ export default { } ], "delete_gamedata_signature_validations": [ - 1608, + 1626, { "where": [ - 1599, + 1617, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 1594, + 1612, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_leaderboard_entries": [ - 1646, + 1664, { "where": [ - 1641, + 1659, "leaderboard_entries_bool_exp!" ] } ], "delete_league_divisions": [ - 1671, + 1689, { "where": [ - 1665, + 1683, "league_divisions_bool_exp!" ] } ], "delete_league_divisions_by_pk": [ - 1661, + 1679, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_match_weeks": [ - 1706, + 1724, { "where": [ - 1698, + 1716, "league_match_weeks_bool_exp!" ] } ], "delete_league_match_weeks_by_pk": [ - 1689, + 1707, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_relegation_playoffs": [ - 1747, + 1765, { "where": [ - 1739, + 1757, "league_relegation_playoffs_bool_exp!" ] } ], "delete_league_relegation_playoffs_by_pk": [ - 1730, + 1748, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_scheduling_proposals": [ - 1788, + 1806, { "where": [ - 1780, + 1798, "league_scheduling_proposals_bool_exp!" ] } ], "delete_league_scheduling_proposals_by_pk": [ - 1771, + 1789, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_season_divisions": [ - 1826, + 1844, { "where": [ - 1819, + 1837, "league_season_divisions_bool_exp!" ] } ], "delete_league_season_divisions_by_pk": [ - 1812, + 1830, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_seasons": [ - 1851, + 1869, { "where": [ - 1842, + 1860, "league_seasons_bool_exp!" ] } ], "delete_league_seasons_by_pk": [ - 1837, + 1855, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_team_movements": [ - 1887, + 1905, { "where": [ - 1879, + 1897, "league_team_movements_bool_exp!" ] } ], "delete_league_team_movements_by_pk": [ - 1870, + 1888, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_team_rosters": [ - 1928, + 1946, { "where": [ - 1920, + 1938, "league_team_rosters_bool_exp!" ] } ], "delete_league_team_rosters_by_pk": [ - 1911, + 1929, { "league_team_season_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -142400,73 +142601,73 @@ export default { } ], "delete_league_team_seasons": [ - 1969, + 1987, { "where": [ - 1961, + 1979, "league_team_seasons_bool_exp!" ] } ], "delete_league_team_seasons_by_pk": [ - 1952, + 1970, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_league_teams": [ - 2002, + 2020, { "where": [ - 1997, + 2015, "league_teams_bool_exp!" ] } ], "delete_league_teams_by_pk": [ - 1994, + 2012, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_lobbies": [ - 2021, + 2039, { "where": [ - 2016, + 2034, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 2013, + 2031, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_lobby_players": [ - 2051, + 2069, { "where": [ - 2043, + 2061, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 2032, + 2050, { "lobby_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142476,250 +142677,250 @@ export default { } ], "delete_map_pools": [ - 2085, + 2103, { "where": [ - 2080, + 2098, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 2077, + 2095, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_maps": [ - 2112, + 2130, { "where": [ - 2105, + 2123, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 2096, + 2114, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_clips": [ - 2142, + 2160, { "where": [ - 2134, + 2152, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 2125, + 2143, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_demo_sessions": [ - 2188, + 2206, { "where": [ - 2177, + 2195, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 2167, + 2185, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_lineup_players": [ - 2232, + 2250, { "where": [ - 2224, + 2242, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 2213, + 2231, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_lineups": [ - 2275, + 2293, { "where": [ - 2267, + 2285, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 2258, + 2276, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_map_demos": [ - 2323, + 2341, { "where": [ - 2312, + 2330, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 2300, + 2318, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_map_rounds": [ - 2368, + 2386, { "where": [ - 2360, + 2378, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 2351, + 2369, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 2406, + 2424, { "where": [ - 2399, + 2417, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 2392, + 2410, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_maps": [ - 2433, + 2451, { "where": [ - 2425, + 2443, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 2416, + 2434, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_options": [ - 2468, + 2486, { "where": [ - 2462, + 2480, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 2458, + 2476, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 2500, + 2518, { "where": [ - 2493, + 2511, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 2486, + 2504, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_streams": [ - 2533, + 2551, { "where": [ - 2522, + 2540, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 2510, + 2528, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_match_type_cfgs": [ - 2568, + 2586, { "where": [ - 2563, + 2581, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 2560, + 2578, { "type": [ 591, @@ -142728,34 +142929,34 @@ export default { } ], "delete_matches": [ - 2595, + 2613, { "where": [ - 2587, + 2605, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 2578, + 2596, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 2628, + 2646, { "where": [ - 2623, + 2641, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 2620, + 2638, { "name": [ 78, @@ -142764,126 +142965,126 @@ export default { } ], "delete_my_friends": [ - 2660, + 2678, { "where": [ - 2650, + 2668, "my_friends_bool_exp!" ] } ], "delete_news_articles": [ - 2694, + 2712, { "where": [ - 2688, + 2706, "news_articles_bool_exp!" ] } ], "delete_news_articles_by_pk": [ - 2684, + 2702, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_notifications": [ - 2734, + 2752, { "where": [ - 2723, + 2741, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 2711, + 2729, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_pending_match_import_players": [ - 2781, + 2799, { "where": [ - 2773, + 2791, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 2764, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "delete_pending_match_imports": [ - 2815, + 2833, { "where": [ - 2809, + 2827, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 2805, + 2823, { "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 2843, + 2861, { "where": [ - 2837, + 2855, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 2833, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 2877, + 2895, { "where": [ - 2869, + 2887, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 2860, + 2878, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142897,16 +143098,16 @@ export default { } ], "delete_player_assists": [ - 2920, + 2938, { "where": [ - 2912, + 2930, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 2901, + 2919, { "attacked_steam_id": [ 180, @@ -142917,55 +143118,55 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_player_damages": [ - 2981, + 2999, { "where": [ - 2973, + 2991, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 2964, + 2982, { "id": [ - 4744, + 4762, "uuid!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_player_elo": [ - 3015, + 3033, { "where": [ - 3009, + 3027, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 3005, + 3023, { "match_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -142979,34 +143180,34 @@ export default { } ], "delete_player_faceit_rank_history": [ - 3049, + 3067, { "where": [ - 3041, + 3059, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 3032, + 3050, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_player_flashes": [ - 3092, + 3110, { "where": [ - 3084, + 3102, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 3073, + 3091, { "attacked_steam_id": [ 180, @@ -143017,26 +143218,26 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_player_kills": [ - 3178, + 3196, { "where": [ - 3129, + 3147, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 3118, + 3136, { "attacked_steam_id": [ 180, @@ -143047,26 +143248,26 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 3147, + 3165, { "where": [ - 3139, + 3157, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 3130, + 3148, { "player_steam_id": [ 180, @@ -143079,28 +143280,28 @@ export default { } ], "delete_player_leaderboard_rank": [ - 3213, + 3231, { "where": [ - 3208, + 3226, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 3244, + 3262, { "where": [ - 3236, + 3254, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 3227, + 3245, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -143110,19 +143311,19 @@ export default { } ], "delete_player_objectives": [ - 3336, + 3354, { "where": [ - 3328, + 3346, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 3319, + 3337, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -143130,84 +143331,84 @@ export default { "bigint!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 3395, + 3413, { "where": [ - 3387, + 3405, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 3378, + 3396, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_player_sanctions": [ - 3436, + 3454, { "where": [ - 3428, + 3446, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 3419, + 3437, { "created_at": [ - 4306, + 4324, "timestamptz!" ], "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_player_season_stats": [ - 3487, + 3505, { "where": [ - 3479, + 3497, "player_season_stats_bool_exp!" ] } ], "delete_player_season_stats_by_pk": [ - 3460, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_player_stats": [ - 3529, + 3547, { "where": [ - 3523, + 3541, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 3519, + 3537, { "player_steam_id": [ 180, @@ -143216,16 +143417,16 @@ export default { } ], "delete_player_steam_bot_friend": [ - 3561, + 3579, { "where": [ - 3552, + 3570, "player_steam_bot_friend_bool_exp!" ] } ], "delete_player_steam_bot_friend_by_pk": [ - 3547, + 3565, { "steam_id": [ 180, @@ -143234,16 +143435,16 @@ export default { } ], "delete_player_steam_match_auth": [ - 3589, + 3607, { "where": [ - 3583, + 3601, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 3579, + 3597, { "steam_id": [ 180, @@ -143252,19 +143453,19 @@ export default { } ], "delete_player_unused_utility": [ - 3623, + 3641, { "where": [ - 3615, + 3633, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 3606, + 3624, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -143274,42 +143475,42 @@ export default { } ], "delete_player_utility": [ - 3664, + 3682, { "where": [ - 3656, + 3674, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 3647, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "delete_players": [ - 3731, + 3749, { "where": [ - 3725, + 3743, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 3721, + 3739, { "steam_id": [ 180, @@ -143318,16 +143519,16 @@ export default { } ], "delete_plugin_versions": [ - 3759, + 3777, { "where": [ - 3753, + 3771, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 3749, + 3767, { "runtime": [ 941, @@ -143340,34 +143541,34 @@ export default { } ], "delete_seasons": [ - 3790, + 3808, { "where": [ - 3784, + 3802, "seasons_bool_exp!" ] } ], "delete_seasons_by_pk": [ - 3780, + 3798, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_server_regions": [ - 3817, + 3835, { "where": [ - 3812, + 3830, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 3808, + 3826, { "value": [ 78, @@ -143376,34 +143577,34 @@ export default { } ], "delete_servers": [ - 3854, + 3872, { "where": [ - 3846, + 3864, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 3835, + 3853, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_settings": [ - 3889, + 3907, { "where": [ - 3884, + 3902, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 3881, + 3899, { "name": [ 78, @@ -143412,467 +143613,467 @@ export default { } ], "delete_steam_account_claims": [ - 3915, + 3933, { "where": [ - 3908, + 3926, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 3901, + 3919, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_steam_accounts": [ - 3935, + 3953, { "where": [ - 3929, + 3947, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 3925, + 3943, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_system_alerts": [ - 3963, + 3981, { "where": [ - 3957, + 3975, "system_alerts_bool_exp!" ] } ], "delete_system_alerts_by_pk": [ - 3953, + 3971, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_invites": [ - 3997, + 4015, { "where": [ - 3989, + 4007, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 3980, + 3998, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_roster": [ - 4040, + 4058, { "where": [ - 4032, + 4050, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 4021, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_scrim_alerts": [ - 4076, + 4094, { "where": [ - 4070, + 4088, "team_scrim_alerts_bool_exp!" ] } ], "delete_team_scrim_alerts_by_pk": [ - 4066, + 4084, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_scrim_availability": [ - 4109, + 4127, { "where": [ - 4102, + 4120, "team_scrim_availability_bool_exp!" ] } ], "delete_team_scrim_availability_by_pk": [ - 4093, + 4111, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_scrim_request_proposals": [ - 4138, + 4156, { "where": [ - 4130, + 4148, "team_scrim_request_proposals_bool_exp!" ] } ], "delete_team_scrim_request_proposals_by_pk": [ - 4121, + 4139, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_scrim_requests": [ - 4181, + 4199, { "where": [ - 4173, + 4191, "team_scrim_requests_bool_exp!" ] } ], "delete_team_scrim_requests_by_pk": [ - 4162, + 4180, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_scrim_settings": [ - 4218, + 4236, { "where": [ - 4212, + 4230, "team_scrim_settings_bool_exp!" ] } ], "delete_team_scrim_settings_by_pk": [ - 4208, + 4226, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_team_suggestions": [ - 4246, + 4264, { "where": [ - 4240, + 4258, "team_suggestions_bool_exp!" ] } ], "delete_team_suggestions_by_pk": [ - 4236, + 4254, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_teams": [ - 4280, + 4298, { "where": [ - 4272, + 4290, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 4263, + 4281, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_brackets": [ - 4327, + 4345, { "where": [ - 4319, + 4337, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 4308, + 4326, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_organizers": [ - 4371, + 4389, { "where": [ - 4363, + 4381, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 4354, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_stage_windows": [ - 4412, + 4430, { "where": [ - 4404, + 4422, "tournament_stage_windows_bool_exp!" ] } ], "delete_tournament_stage_windows_by_pk": [ - 4395, + 4413, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_stages": [ - 4459, + 4477, { "where": [ - 4448, + 4466, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 4436, + 4454, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_team_invites": [ - 4504, + 4522, { "where": [ - 4496, + 4514, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 4487, + 4505, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_team_roster": [ - 4545, + 4563, { "where": [ - 4537, + 4555, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 4528, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_teams": [ - 4586, + 4604, { "where": [ - 4578, + 4596, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 4569, + 4587, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_trophies": [ - 4630, + 4648, { "where": [ - 4622, + 4640, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 4611, + 4629, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 4673, + 4691, { "where": [ - 4665, + 4683, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 4656, + 4674, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_tournaments": [ - 4717, + 4735, { "where": [ - 4709, + 4727, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 4698, + 4716, { "id": [ - 4744, + 4762, "uuid!" ] } ], "delete_v_match_captains": [ - 4919, + 4927, { "where": [ - 4914, + 4922, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 5030, + 5038, { "where": [ - 5025, + 5033, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 5252, + 5260, { "where": [ - 5245, + 5253, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 5411, + 5419, { "where": [ - 5405, + 5413, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 5505, + 5513, { "where": [ - 5497, + 5505, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 5478, + 5486, { "tournament_stage_id": [ - 4744, + 4762, "uuid!" ], "tournament_team_id": [ - 4744, + 4762, "uuid!" ] } @@ -143881,7 +144082,7 @@ export default { 81, { "invite_id": [ - 4744, + 4762, "uuid!" ], "type": [ @@ -143894,11 +144095,11 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "winning_lineup_id": [ - 4744, + 4762, "uuid!" ] } @@ -143907,7 +144108,7 @@ export default { 43, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -145091,2313 +145292,2337 @@ export default { ] } ], + "insert_event_match_links": [ + 1248, + { + "objects": [ + 1245, + "[event_match_links_insert_input!]!" + ], + "on_conflict": [ + 1249 + ] + } + ], + "insert_event_match_links_one": [ + 1240, + { + "object": [ + 1245, + "event_match_links_insert_input!" + ], + "on_conflict": [ + 1249 + ] + } + ], "insert_event_media": [ - 1257, + 1275, { "objects": [ - 1252, + 1270, "[event_media_insert_input!]!" ], "on_conflict": [ - 1259 + 1277 ] } ], "insert_event_media_one": [ - 1240, + 1258, { "object": [ - 1252, + 1270, "event_media_insert_input!" ], "on_conflict": [ - 1259 + 1277 ] } ], "insert_event_media_players": [ - 1279, + 1297, { "objects": [ - 1274, + 1292, "[event_media_players_insert_input!]!" ], "on_conflict": [ - 1280 + 1298 ] } ], "insert_event_media_players_one": [ - 1262, + 1280, { "object": [ - 1274, + 1292, "event_media_players_insert_input!" ], "on_conflict": [ - 1280 + 1298 ] } ], "insert_event_organizers": [ - 1340, + 1358, { "objects": [ - 1335, + 1353, "[event_organizers_insert_input!]!" ], "on_conflict": [ - 1341 + 1359 ] } ], "insert_event_organizers_one": [ - 1323, + 1341, { "object": [ - 1335, + 1353, "event_organizers_insert_input!" ], "on_conflict": [ - 1341 + 1359 ] } ], "insert_event_players": [ - 1381, + 1399, { "objects": [ - 1376, + 1394, "[event_players_insert_input!]!" ], "on_conflict": [ - 1382 + 1400 ] } ], "insert_event_players_one": [ - 1364, + 1382, { "object": [ - 1376, + 1394, "event_players_insert_input!" ], "on_conflict": [ - 1382 + 1400 ] } ], "insert_event_teams": [ - 1419, + 1437, { "objects": [ - 1414, + 1432, "[event_teams_insert_input!]!" ], "on_conflict": [ - 1420 + 1438 ] } ], "insert_event_teams_one": [ - 1405, + 1423, { "object": [ - 1414, + 1432, "event_teams_insert_input!" ], "on_conflict": [ - 1420 + 1438 ] } ], "insert_event_tournaments": [ - 1443, + 1461, { "objects": [ - 1438, + 1456, "[event_tournaments_insert_input!]!" ], "on_conflict": [ - 1444 + 1462 ] } ], "insert_event_tournaments_one": [ - 1429, + 1447, { "object": [ - 1438, + 1456, "event_tournaments_insert_input!" ], "on_conflict": [ - 1444 + 1462 ] } ], "insert_events": [ - 1463, + 1481, { "objects": [ - 1460, + 1478, "[events_insert_input!]!" ], "on_conflict": [ - 1465 + 1483 ] } ], "insert_events_one": [ - 1453, + 1471, { "object": [ - 1460, + 1478, "events_insert_input!" ], "on_conflict": [ - 1465 + 1483 ] } ], "insert_friends": [ - 1493, + 1511, { "objects": [ - 1490, + 1508, "[friends_insert_input!]!" ], "on_conflict": [ - 1494 + 1512 ] } ], "insert_friends_one": [ - 1483, + 1501, { "object": [ - 1490, + 1508, "friends_insert_input!" ], "on_conflict": [ - 1494 + 1512 ] } ], "insert_game_server_nodes": [ - 1533, + 1551, { "objects": [ - 1528, + 1546, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 1535 + 1553 ] } ], "insert_game_server_nodes_one": [ - 1510, + 1528, { "object": [ - 1528, + 1546, "game_server_nodes_insert_input!" ], "on_conflict": [ - 1535 + 1553 ] } ], "insert_game_versions": [ - 1575, + 1593, { "objects": [ - 1572, + 1590, "[game_versions_insert_input!]!" ], "on_conflict": [ - 1577 + 1595 ] } ], "insert_game_versions_one": [ - 1561, + 1579, { "object": [ - 1572, + 1590, "game_versions_insert_input!" ], "on_conflict": [ - 1577 + 1595 ] } ], "insert_gamedata_signature_validations": [ - 1608, + 1626, { "objects": [ - 1605, + 1623, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 1609 + 1627 ] } ], "insert_gamedata_signature_validations_one": [ - 1594, + 1612, { "object": [ - 1605, + 1623, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 1609 + 1627 ] } ], "insert_leaderboard_entries": [ - 1646, + 1664, { "objects": [ - 1643, + 1661, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 1637, + 1655, { "object": [ - 1643, + 1661, "leaderboard_entries_insert_input!" ] } ], "insert_league_divisions": [ - 1671, + 1689, { "objects": [ - 1668, + 1686, "[league_divisions_insert_input!]!" ], "on_conflict": [ - 1673 + 1691 ] } ], "insert_league_divisions_one": [ - 1661, + 1679, { "object": [ - 1668, + 1686, "league_divisions_insert_input!" ], "on_conflict": [ - 1673 + 1691 ] } ], "insert_league_match_weeks": [ - 1706, + 1724, { "objects": [ - 1701, + 1719, "[league_match_weeks_insert_input!]!" ], "on_conflict": [ - 1707 + 1725 ] } ], "insert_league_match_weeks_one": [ - 1689, + 1707, { "object": [ - 1701, + 1719, "league_match_weeks_insert_input!" ], "on_conflict": [ - 1707 + 1725 ] } ], "insert_league_relegation_playoffs": [ - 1747, + 1765, { "objects": [ - 1742, + 1760, "[league_relegation_playoffs_insert_input!]!" ], "on_conflict": [ - 1748 + 1766 ] } ], "insert_league_relegation_playoffs_one": [ - 1730, + 1748, { "object": [ - 1742, + 1760, "league_relegation_playoffs_insert_input!" ], "on_conflict": [ - 1748 + 1766 ] } ], "insert_league_scheduling_proposals": [ - 1788, + 1806, { "objects": [ - 1783, + 1801, "[league_scheduling_proposals_insert_input!]!" ], "on_conflict": [ - 1789 + 1807 ] } ], "insert_league_scheduling_proposals_one": [ - 1771, + 1789, { "object": [ - 1783, + 1801, "league_scheduling_proposals_insert_input!" ], "on_conflict": [ - 1789 + 1807 ] } ], "insert_league_season_divisions": [ - 1826, + 1844, { "objects": [ - 1821, + 1839, "[league_season_divisions_insert_input!]!" ], "on_conflict": [ - 1828 + 1846 ] } ], "insert_league_season_divisions_one": [ - 1812, + 1830, { "object": [ - 1821, + 1839, "league_season_divisions_insert_input!" ], "on_conflict": [ - 1828 + 1846 ] } ], "insert_league_seasons": [ - 1851, + 1869, { "objects": [ - 1848, + 1866, "[league_seasons_insert_input!]!" ], "on_conflict": [ - 1853 + 1871 ] } ], "insert_league_seasons_one": [ - 1837, + 1855, { "object": [ - 1848, + 1866, "league_seasons_insert_input!" ], "on_conflict": [ - 1853 + 1871 ] } ], "insert_league_team_movements": [ - 1887, + 1905, { "objects": [ - 1882, + 1900, "[league_team_movements_insert_input!]!" ], "on_conflict": [ - 1888 + 1906 ] } ], "insert_league_team_movements_one": [ - 1870, + 1888, { "object": [ - 1882, + 1900, "league_team_movements_insert_input!" ], "on_conflict": [ - 1888 + 1906 ] } ], "insert_league_team_rosters": [ - 1928, + 1946, { "objects": [ - 1923, + 1941, "[league_team_rosters_insert_input!]!" ], "on_conflict": [ - 1929 + 1947 ] } ], "insert_league_team_rosters_one": [ - 1911, + 1929, { "object": [ - 1923, + 1941, "league_team_rosters_insert_input!" ], "on_conflict": [ - 1929 + 1947 ] } ], "insert_league_team_seasons": [ - 1969, + 1987, { "objects": [ - 1964, + 1982, "[league_team_seasons_insert_input!]!" ], "on_conflict": [ - 1971 + 1989 ] } ], "insert_league_team_seasons_one": [ - 1952, + 1970, { "object": [ - 1964, + 1982, "league_team_seasons_insert_input!" ], "on_conflict": [ - 1971 + 1989 ] } ], "insert_league_teams": [ - 2002, + 2020, { "objects": [ - 1999, + 2017, "[league_teams_insert_input!]!" ], "on_conflict": [ - 2004 + 2022 ] } ], "insert_league_teams_one": [ - 1994, + 2012, { "object": [ - 1999, + 2017, "league_teams_insert_input!" ], "on_conflict": [ - 2004 + 2022 ] } ], "insert_lobbies": [ - 2021, + 2039, { "objects": [ - 2018, + 2036, "[lobbies_insert_input!]!" ], "on_conflict": [ - 2023 + 2041 ] } ], "insert_lobbies_one": [ - 2013, + 2031, { "object": [ - 2018, + 2036, "lobbies_insert_input!" ], "on_conflict": [ - 2023 + 2041 ] } ], "insert_lobby_players": [ - 2051, + 2069, { "objects": [ - 2046, + 2064, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 2052 + 2070 ] } ], "insert_lobby_players_one": [ - 2032, + 2050, { "object": [ - 2046, + 2064, "lobby_players_insert_input!" ], "on_conflict": [ - 2052 + 2070 ] } ], "insert_map_pools": [ - 2085, + 2103, { "objects": [ - 2082, + 2100, "[map_pools_insert_input!]!" ], "on_conflict": [ - 2087 + 2105 ] } ], "insert_map_pools_one": [ - 2077, + 2095, { "object": [ - 2082, + 2100, "map_pools_insert_input!" ], "on_conflict": [ - 2087 + 2105 ] } ], "insert_maps": [ - 2112, + 2130, { "objects": [ - 2107, + 2125, "[maps_insert_input!]!" ], "on_conflict": [ - 2114 + 2132 ] } ], "insert_maps_one": [ - 2096, + 2114, { "object": [ - 2107, + 2125, "maps_insert_input!" ], "on_conflict": [ - 2114 + 2132 ] } ], "insert_match_clips": [ - 2142, + 2160, { "objects": [ - 2137, + 2155, "[match_clips_insert_input!]!" ], "on_conflict": [ - 2144 + 2162 ] } ], "insert_match_clips_one": [ - 2125, + 2143, { "object": [ - 2137, + 2155, "match_clips_insert_input!" ], "on_conflict": [ - 2144 + 2162 ] } ], "insert_match_demo_sessions": [ - 2188, + 2206, { "objects": [ - 2183, + 2201, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 2189 + 2207 ] } ], "insert_match_demo_sessions_one": [ - 2167, + 2185, { "object": [ - 2183, + 2201, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 2189 + 2207 ] } ], "insert_match_lineup_players": [ - 2232, + 2250, { "objects": [ - 2227, + 2245, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 2233 + 2251 ] } ], "insert_match_lineup_players_one": [ - 2213, + 2231, { "object": [ - 2227, + 2245, "match_lineup_players_insert_input!" ], "on_conflict": [ - 2233 + 2251 ] } ], "insert_match_lineups": [ - 2275, + 2293, { "objects": [ - 2270, + 2288, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 2277 + 2295 ] } ], "insert_match_lineups_one": [ - 2258, + 2276, { "object": [ - 2270, + 2288, "match_lineups_insert_input!" ], "on_conflict": [ - 2277 + 2295 ] } ], "insert_match_map_demos": [ - 2323, + 2341, { "objects": [ - 2318, + 2336, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 2325 + 2343 ] } ], "insert_match_map_demos_one": [ - 2300, + 2318, { "object": [ - 2318, + 2336, "match_map_demos_insert_input!" ], "on_conflict": [ - 2325 + 2343 ] } ], "insert_match_map_rounds": [ - 2368, + 2386, { "objects": [ - 2363, + 2381, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 2369 + 2387 ] } ], "insert_match_map_rounds_one": [ - 2351, + 2369, { "object": [ - 2363, + 2381, "match_map_rounds_insert_input!" ], "on_conflict": [ - 2369 + 2387 ] } ], "insert_match_map_veto_picks": [ - 2406, + 2424, { "objects": [ - 2401, + 2419, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 2407 + 2425 ] } ], "insert_match_map_veto_picks_one": [ - 2392, + 2410, { "object": [ - 2401, + 2419, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 2407 + 2425 ] } ], "insert_match_maps": [ - 2433, + 2451, { "objects": [ - 2428, + 2446, "[match_maps_insert_input!]!" ], "on_conflict": [ - 2435 + 2453 ] } ], "insert_match_maps_one": [ - 2416, + 2434, { "object": [ - 2428, + 2446, "match_maps_insert_input!" ], "on_conflict": [ - 2435 + 2453 ] } ], "insert_match_options": [ - 2468, + 2486, { "objects": [ - 2465, + 2483, "[match_options_insert_input!]!" ], "on_conflict": [ - 2470 + 2488 ] } ], "insert_match_options_one": [ - 2458, + 2476, { "object": [ - 2465, + 2483, "match_options_insert_input!" ], "on_conflict": [ - 2470 + 2488 ] } ], "insert_match_region_veto_picks": [ - 2500, + 2518, { "objects": [ - 2495, + 2513, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 2501 + 2519 ] } ], "insert_match_region_veto_picks_one": [ - 2486, + 2504, { "object": [ - 2495, + 2513, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 2501 + 2519 ] } ], "insert_match_streams": [ - 2533, + 2551, { "objects": [ - 2528, + 2546, "[match_streams_insert_input!]!" ], "on_conflict": [ - 2534 + 2552 ] } ], "insert_match_streams_one": [ - 2510, + 2528, { "object": [ - 2528, + 2546, "match_streams_insert_input!" ], "on_conflict": [ - 2534 + 2552 ] } ], "insert_match_type_cfgs": [ - 2568, + 2586, { "objects": [ - 2565, + 2583, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 2569 + 2587 ] } ], "insert_match_type_cfgs_one": [ - 2560, + 2578, { "object": [ - 2565, + 2583, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 2569 + 2587 ] } ], "insert_matches": [ - 2595, + 2613, { "objects": [ - 2590, + 2608, "[matches_insert_input!]!" ], "on_conflict": [ - 2597 + 2615 ] } ], "insert_matches_one": [ - 2578, + 2596, { "object": [ - 2590, + 2608, "matches_insert_input!" ], "on_conflict": [ - 2597 + 2615 ] } ], "insert_migration_hashes_hashes": [ - 2628, + 2646, { "objects": [ - 2625, + 2643, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 2629 + 2647 ] } ], "insert_migration_hashes_hashes_one": [ - 2620, + 2638, { "object": [ - 2625, + 2643, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 2629 + 2647 ] } ], "insert_my_friends": [ - 2660, + 2678, { "objects": [ - 2655, + 2673, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 2638, + 2656, { "object": [ - 2655, + 2673, "my_friends_insert_input!" ] } ], "insert_news_articles": [ - 2694, + 2712, { "objects": [ - 2691, + 2709, "[news_articles_insert_input!]!" ], "on_conflict": [ - 2695 + 2713 ] } ], "insert_news_articles_one": [ - 2684, + 2702, { "object": [ - 2691, + 2709, "news_articles_insert_input!" ], "on_conflict": [ - 2695 + 2713 ] } ], "insert_notifications": [ - 2734, + 2752, { "objects": [ - 2729, + 2747, "[notifications_insert_input!]!" ], "on_conflict": [ - 2735 + 2753 ] } ], "insert_notifications_one": [ - 2711, + 2729, { "object": [ - 2729, + 2747, "notifications_insert_input!" ], "on_conflict": [ - 2735 + 2753 ] } ], "insert_pending_match_import_players": [ - 2781, + 2799, { "objects": [ - 2776, + 2794, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 2782 + 2800 ] } ], "insert_pending_match_import_players_one": [ - 2764, + 2782, { "object": [ - 2776, + 2794, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 2782 + 2800 ] } ], "insert_pending_match_imports": [ - 2815, + 2833, { "objects": [ - 2812, + 2830, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 2817 + 2835 ] } ], "insert_pending_match_imports_one": [ - 2805, + 2823, { "object": [ - 2812, + 2830, "pending_match_imports_insert_input!" ], "on_conflict": [ - 2817 + 2835 ] } ], "insert_player_aim_stats_demo": [ - 2843, + 2861, { "objects": [ - 2840, + 2858, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 2844 + 2862 ] } ], "insert_player_aim_stats_demo_one": [ - 2833, + 2851, { "object": [ - 2840, + 2858, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 2844 + 2862 ] } ], "insert_player_aim_weapon_stats": [ - 2877, + 2895, { "objects": [ - 2872, + 2890, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 2878 + 2896 ] } ], "insert_player_aim_weapon_stats_one": [ - 2860, + 2878, { "object": [ - 2872, + 2890, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 2878 + 2896 ] } ], "insert_player_assists": [ - 2920, + 2938, { "objects": [ - 2915, + 2933, "[player_assists_insert_input!]!" ], "on_conflict": [ - 2921 + 2939 ] } ], "insert_player_assists_one": [ - 2901, + 2919, { "object": [ - 2915, + 2933, "player_assists_insert_input!" ], "on_conflict": [ - 2921 + 2939 ] } ], "insert_player_damages": [ - 2981, + 2999, { "objects": [ - 2976, + 2994, "[player_damages_insert_input!]!" ], "on_conflict": [ - 2982 + 3000 ] } ], "insert_player_damages_one": [ - 2964, + 2982, { "object": [ - 2976, + 2994, "player_damages_insert_input!" ], "on_conflict": [ - 2982 + 3000 ] } ], "insert_player_elo": [ - 3015, + 3033, { "objects": [ - 3012, + 3030, "[player_elo_insert_input!]!" ], "on_conflict": [ - 3016 + 3034 ] } ], "insert_player_elo_one": [ - 3005, + 3023, { "object": [ - 3012, + 3030, "player_elo_insert_input!" ], "on_conflict": [ - 3016 + 3034 ] } ], "insert_player_faceit_rank_history": [ - 3049, + 3067, { "objects": [ - 3044, + 3062, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 3050 + 3068 ] } ], "insert_player_faceit_rank_history_one": [ - 3032, + 3050, { "object": [ - 3044, + 3062, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 3050 + 3068 ] } ], "insert_player_flashes": [ - 3092, + 3110, { "objects": [ - 3087, + 3105, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 3093 + 3111 ] } ], "insert_player_flashes_one": [ - 3073, + 3091, { "object": [ - 3087, + 3105, "player_flashes_insert_input!" ], "on_conflict": [ - 3093 + 3111 ] } ], "insert_player_kills": [ - 3178, + 3196, { "objects": [ - 3173, + 3191, "[player_kills_insert_input!]!" ], "on_conflict": [ - 3179 + 3197 ] } ], "insert_player_kills_by_weapon": [ - 3147, + 3165, { "objects": [ - 3142, + 3160, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 3148 + 3166 ] } ], "insert_player_kills_by_weapon_one": [ - 3130, + 3148, { "object": [ - 3142, + 3160, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 3148 + 3166 ] } ], "insert_player_kills_one": [ - 3118, + 3136, { "object": [ - 3173, + 3191, "player_kills_insert_input!" ], "on_conflict": [ - 3179 + 3197 ] } ], "insert_player_leaderboard_rank": [ - 3213, + 3231, { "objects": [ - 3210, + 3228, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 3204, + 3222, { "object": [ - 3210, + 3228, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 3244, + 3262, { "objects": [ - 3239, + 3257, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 3245 + 3263 ] } ], "insert_player_match_map_stats_one": [ - 3227, + 3245, { "object": [ - 3239, + 3257, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 3245 + 3263 ] } ], "insert_player_objectives": [ - 3336, + 3354, { "objects": [ - 3331, + 3349, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 3337 + 3355 ] } ], "insert_player_objectives_one": [ - 3319, + 3337, { "object": [ - 3331, + 3349, "player_objectives_insert_input!" ], "on_conflict": [ - 3337 + 3355 ] } ], "insert_player_premier_rank_history": [ - 3395, + 3413, { "objects": [ - 3390, + 3408, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 3396 + 3414 ] } ], "insert_player_premier_rank_history_one": [ - 3378, + 3396, { "object": [ - 3390, + 3408, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 3396 + 3414 ] } ], "insert_player_sanctions": [ - 3436, + 3454, { "objects": [ - 3431, + 3449, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 3437 + 3455 ] } ], "insert_player_sanctions_one": [ - 3419, + 3437, { "object": [ - 3431, + 3449, "player_sanctions_insert_input!" ], "on_conflict": [ - 3437 + 3455 ] } ], "insert_player_season_stats": [ - 3487, + 3505, { "objects": [ - 3482, + 3500, "[player_season_stats_insert_input!]!" ], "on_conflict": [ - 3488 + 3506 ] } ], "insert_player_season_stats_one": [ - 3460, + 3478, { "object": [ - 3482, + 3500, "player_season_stats_insert_input!" ], "on_conflict": [ - 3488 + 3506 ] } ], "insert_player_stats": [ - 3529, + 3547, { "objects": [ - 3526, + 3544, "[player_stats_insert_input!]!" ], "on_conflict": [ - 3531 + 3549 ] } ], "insert_player_stats_one": [ - 3519, + 3537, { "object": [ - 3526, + 3544, "player_stats_insert_input!" ], "on_conflict": [ - 3531 + 3549 ] } ], "insert_player_steam_bot_friend": [ - 3561, + 3579, { "objects": [ - 3558, + 3576, "[player_steam_bot_friend_insert_input!]!" ], "on_conflict": [ - 3562 + 3580 ] } ], "insert_player_steam_bot_friend_one": [ - 3547, + 3565, { "object": [ - 3558, + 3576, "player_steam_bot_friend_insert_input!" ], "on_conflict": [ - 3562 + 3580 ] } ], "insert_player_steam_match_auth": [ - 3589, + 3607, { "objects": [ - 3586, + 3604, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 3590 + 3608 ] } ], "insert_player_steam_match_auth_one": [ - 3579, + 3597, { "object": [ - 3586, + 3604, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 3590 + 3608 ] } ], "insert_player_unused_utility": [ - 3623, + 3641, { "objects": [ - 3618, + 3636, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 3624 + 3642 ] } ], "insert_player_unused_utility_one": [ - 3606, + 3624, { "object": [ - 3618, + 3636, "player_unused_utility_insert_input!" ], "on_conflict": [ - 3624 + 3642 ] } ], "insert_player_utility": [ - 3664, + 3682, { "objects": [ - 3659, + 3677, "[player_utility_insert_input!]!" ], "on_conflict": [ - 3665 + 3683 ] } ], "insert_player_utility_one": [ - 3647, + 3665, { "object": [ - 3659, + 3677, "player_utility_insert_input!" ], "on_conflict": [ - 3665 + 3683 ] } ], "insert_players": [ - 3731, + 3749, { "objects": [ - 3728, + 3746, "[players_insert_input!]!" ], "on_conflict": [ - 3733 + 3751 ] } ], "insert_players_one": [ - 3721, + 3739, { "object": [ - 3728, + 3746, "players_insert_input!" ], "on_conflict": [ - 3733 + 3751 ] } ], "insert_plugin_versions": [ - 3759, + 3777, { "objects": [ - 3756, + 3774, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 3760 + 3778 ] } ], "insert_plugin_versions_one": [ - 3749, + 3767, { "object": [ - 3756, + 3774, "plugin_versions_insert_input!" ], "on_conflict": [ - 3760 + 3778 ] } ], "insert_seasons": [ - 3790, + 3808, { "objects": [ - 3787, + 3805, "[seasons_insert_input!]!" ], "on_conflict": [ - 3792 + 3810 ] } ], "insert_seasons_one": [ - 3780, + 3798, { "object": [ - 3787, + 3805, "seasons_insert_input!" ], "on_conflict": [ - 3792 + 3810 ] } ], "insert_server_regions": [ - 3817, + 3835, { "objects": [ - 3814, + 3832, "[server_regions_insert_input!]!" ], "on_conflict": [ - 3819 + 3837 ] } ], "insert_server_regions_one": [ - 3808, + 3826, { "object": [ - 3814, + 3832, "server_regions_insert_input!" ], "on_conflict": [ - 3819 + 3837 ] } ], "insert_servers": [ - 3854, + 3872, { "objects": [ - 3849, + 3867, "[servers_insert_input!]!" ], "on_conflict": [ - 3856 + 3874 ] } ], "insert_servers_one": [ - 3835, + 3853, { "object": [ - 3849, + 3867, "servers_insert_input!" ], "on_conflict": [ - 3856 + 3874 ] } ], "insert_settings": [ - 3889, + 3907, { "objects": [ - 3886, + 3904, "[settings_insert_input!]!" ], "on_conflict": [ - 3890 + 3908 ] } ], "insert_settings_one": [ - 3881, + 3899, { "object": [ - 3886, + 3904, "settings_insert_input!" ], "on_conflict": [ - 3890 + 3908 ] } ], "insert_steam_account_claims": [ - 3915, + 3933, { "objects": [ - 3910, + 3928, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 3916 + 3934 ] } ], "insert_steam_account_claims_one": [ - 3901, + 3919, { "object": [ - 3910, + 3928, "steam_account_claims_insert_input!" ], "on_conflict": [ - 3916 + 3934 ] } ], "insert_steam_accounts": [ - 3935, + 3953, { "objects": [ - 3932, + 3950, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 3937 + 3955 ] } ], "insert_steam_accounts_one": [ - 3925, + 3943, { "object": [ - 3932, + 3950, "steam_accounts_insert_input!" ], "on_conflict": [ - 3937 + 3955 ] } ], "insert_system_alerts": [ - 3963, + 3981, { "objects": [ - 3960, + 3978, "[system_alerts_insert_input!]!" ], "on_conflict": [ - 3964 + 3982 ] } ], "insert_system_alerts_one": [ - 3953, + 3971, { "object": [ - 3960, + 3978, "system_alerts_insert_input!" ], "on_conflict": [ - 3964 + 3982 ] } ], "insert_team_invites": [ - 3997, + 4015, { "objects": [ - 3992, + 4010, "[team_invites_insert_input!]!" ], "on_conflict": [ - 3998 + 4016 ] } ], "insert_team_invites_one": [ - 3980, + 3998, { "object": [ - 3992, + 4010, "team_invites_insert_input!" ], "on_conflict": [ - 3998 + 4016 ] } ], "insert_team_roster": [ - 4040, + 4058, { "objects": [ - 4035, + 4053, "[team_roster_insert_input!]!" ], "on_conflict": [ - 4041 + 4059 ] } ], "insert_team_roster_one": [ - 4021, + 4039, { "object": [ - 4035, + 4053, "team_roster_insert_input!" ], "on_conflict": [ - 4041 + 4059 ] } ], "insert_team_scrim_alerts": [ - 4076, + 4094, { "objects": [ - 4073, + 4091, "[team_scrim_alerts_insert_input!]!" ], "on_conflict": [ - 4077 + 4095 ] } ], "insert_team_scrim_alerts_one": [ - 4066, + 4084, { "object": [ - 4073, + 4091, "team_scrim_alerts_insert_input!" ], "on_conflict": [ - 4077 + 4095 ] } ], "insert_team_scrim_availability": [ - 4109, + 4127, { "objects": [ - 4104, + 4122, "[team_scrim_availability_insert_input!]!" ], "on_conflict": [ - 4110 + 4128 ] } ], "insert_team_scrim_availability_one": [ - 4093, + 4111, { "object": [ - 4104, + 4122, "team_scrim_availability_insert_input!" ], "on_conflict": [ - 4110 + 4128 ] } ], "insert_team_scrim_request_proposals": [ - 4138, + 4156, { "objects": [ - 4133, + 4151, "[team_scrim_request_proposals_insert_input!]!" ], "on_conflict": [ - 4139 + 4157 ] } ], "insert_team_scrim_request_proposals_one": [ - 4121, + 4139, { "object": [ - 4133, + 4151, "team_scrim_request_proposals_insert_input!" ], "on_conflict": [ - 4139 + 4157 ] } ], "insert_team_scrim_requests": [ - 4181, + 4199, { "objects": [ - 4176, + 4194, "[team_scrim_requests_insert_input!]!" ], "on_conflict": [ - 4183 + 4201 ] } ], "insert_team_scrim_requests_one": [ - 4162, + 4180, { "object": [ - 4176, + 4194, "team_scrim_requests_insert_input!" ], "on_conflict": [ - 4183 + 4201 ] } ], "insert_team_scrim_settings": [ - 4218, + 4236, { "objects": [ - 4215, + 4233, "[team_scrim_settings_insert_input!]!" ], "on_conflict": [ - 4220 + 4238 ] } ], "insert_team_scrim_settings_one": [ - 4208, + 4226, { "object": [ - 4215, + 4233, "team_scrim_settings_insert_input!" ], "on_conflict": [ - 4220 + 4238 ] } ], "insert_team_suggestions": [ - 4246, + 4264, { "objects": [ - 4243, + 4261, "[team_suggestions_insert_input!]!" ], "on_conflict": [ - 4247 + 4265 ] } ], "insert_team_suggestions_one": [ - 4236, + 4254, { "object": [ - 4243, + 4261, "team_suggestions_insert_input!" ], "on_conflict": [ - 4247 + 4265 ] } ], "insert_teams": [ - 4280, + 4298, { "objects": [ - 4275, + 4293, "[teams_insert_input!]!" ], "on_conflict": [ - 4282 + 4300 ] } ], "insert_teams_one": [ - 4263, + 4281, { "object": [ - 4275, + 4293, "teams_insert_input!" ], "on_conflict": [ - 4282 + 4300 ] } ], "insert_tournament_brackets": [ - 4327, + 4345, { "objects": [ - 4322, + 4340, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 4329 + 4347 ] } ], "insert_tournament_brackets_one": [ - 4308, + 4326, { "object": [ - 4322, + 4340, "tournament_brackets_insert_input!" ], "on_conflict": [ - 4329 + 4347 ] } ], "insert_tournament_organizers": [ - 4371, + 4389, { "objects": [ - 4366, + 4384, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 4372 + 4390 ] } ], "insert_tournament_organizers_one": [ - 4354, + 4372, { "object": [ - 4366, + 4384, "tournament_organizers_insert_input!" ], "on_conflict": [ - 4372 + 4390 ] } ], "insert_tournament_stage_windows": [ - 4412, + 4430, { "objects": [ - 4407, + 4425, "[tournament_stage_windows_insert_input!]!" ], "on_conflict": [ - 4413 + 4431 ] } ], "insert_tournament_stage_windows_one": [ - 4395, + 4413, { "object": [ - 4407, + 4425, "tournament_stage_windows_insert_input!" ], "on_conflict": [ - 4413 + 4431 ] } ], "insert_tournament_stages": [ - 4459, + 4477, { "objects": [ - 4454, + 4472, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 4461 + 4479 ] } ], "insert_tournament_stages_one": [ - 4436, + 4454, { "object": [ - 4454, + 4472, "tournament_stages_insert_input!" ], "on_conflict": [ - 4461 + 4479 ] } ], "insert_tournament_team_invites": [ - 4504, + 4522, { "objects": [ - 4499, + 4517, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 4505 + 4523 ] } ], "insert_tournament_team_invites_one": [ - 4487, + 4505, { "object": [ - 4499, + 4517, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 4505 + 4523 ] } ], "insert_tournament_team_roster": [ - 4545, + 4563, { "objects": [ - 4540, + 4558, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 4546 + 4564 ] } ], "insert_tournament_team_roster_one": [ - 4528, + 4546, { "object": [ - 4540, + 4558, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 4546 + 4564 ] } ], "insert_tournament_teams": [ - 4586, + 4604, { "objects": [ - 4581, + 4599, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 4588 + 4606 ] } ], "insert_tournament_teams_one": [ - 4569, + 4587, { "object": [ - 4581, + 4599, "tournament_teams_insert_input!" ], "on_conflict": [ - 4588 + 4606 ] } ], "insert_tournament_trophies": [ - 4630, + 4648, { "objects": [ - 4625, + 4643, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 4631 + 4649 ] } ], "insert_tournament_trophies_one": [ - 4611, + 4629, { "object": [ - 4625, + 4643, "tournament_trophies_insert_input!" ], "on_conflict": [ - 4631 + 4649 ] } ], "insert_tournament_trophy_configs": [ - 4673, + 4691, { "objects": [ - 4668, + 4686, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 4675 + 4693 ] } ], "insert_tournament_trophy_configs_one": [ - 4656, + 4674, { "object": [ - 4668, + 4686, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 4675 + 4693 ] } ], "insert_tournaments": [ - 4717, + 4735, { "objects": [ - 4712, + 4730, "[tournaments_insert_input!]!" ], "on_conflict": [ - 4719 + 4737 ] } ], "insert_tournaments_one": [ - 4698, + 4716, { "object": [ - 4712, + 4730, "tournaments_insert_input!" ], "on_conflict": [ - 4719 + 4737 ] } ], "insert_v_match_captains": [ - 4919, + 4927, { "objects": [ - 4916, + 4924, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 4910, + 4918, { "object": [ - 4916, + 4924, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 5030, + 5038, { "objects": [ - 5027, + 5035, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 5021, + 5029, { "object": [ - 5027, + 5035, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 5252, + 5260, { "objects": [ - 5247, + 5255, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 5236, + 5244, { "object": [ - 5247, + 5255, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 5411, + 5419, { "objects": [ - 5406, + 5414, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 5396, + 5404, { "object": [ - 5406, + 5414, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 5505, + 5513, { "objects": [ - 5500, + 5508, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 5507 + 5515 ] } ], "insert_v_team_stage_results_one": [ - 5478, + 5486, { "object": [ - 5500, + 5508, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 5507 + 5515 ] } ], @@ -147405,7 +147630,7 @@ export default { 81, { "draftGameId": [ - 4744, + 4762, "uuid!" ], "inviteCode": [ @@ -147417,7 +147642,7 @@ export default { 81, { "draftGameId": [ - 4744, + 4762, "uuid!" ], "inviteCode": [ @@ -147442,14 +147667,14 @@ export default { } ], "league_award_forfeit": [ - 2578, + 2596, { "args": [ - 1660, + 1678, "league_award_forfeit_args!" ], "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -147459,11 +147684,11 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], @@ -147522,7 +147747,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -147534,7 +147759,7 @@ export default { 22, { "draftGameId": [ - 4744, + 4762, "uuid!" ], "inviteCode": [ @@ -147549,7 +147774,7 @@ export default { 38 ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "preset": [ @@ -147575,7 +147800,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -147584,20 +147809,20 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 4611, + 4629, { "args": [ - 3776, + 3794, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -147607,11 +147832,11 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], @@ -147625,7 +147850,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -147649,7 +147874,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -147676,14 +147901,14 @@ export default { } ], "remove_league_team_from_season": [ - 1952, + 1970, { "args": [ - 3777, + 3795, "remove_league_team_from_season_args!" ], "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -147693,11 +147918,11 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], @@ -147722,14 +147947,14 @@ export default { } ], "reorder_league_divisions": [ - 1661, + 1679, { "args": [ - 3778, + 3796, "reorder_league_divisions_args!" ], "distinct_on": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -147739,11 +147964,11 @@ export default { 38 ], "order_by": [ - 1674, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1665 + 1683 ] } ], @@ -147757,7 +147982,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -147766,7 +147991,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -147788,7 +148013,7 @@ export default { 81, { "job_id": [ - 4744, + 4762, "uuid!" ] } @@ -147801,7 +148026,7 @@ export default { "Boolean!" ], "draftGameId": [ - 4744, + 4762, "uuid!" ] } @@ -147814,7 +148039,7 @@ export default { "Boolean!" ], "request_id": [ - 4744, + 4762, "uuid!" ] } @@ -147829,14 +148054,14 @@ export default { } ], "restart_league_season": [ - 1837, + 1855, { "args": [ - 3779, + 3797, "restart_league_season_args!" ], "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -147846,11 +148071,11 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], @@ -147858,7 +148083,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -147867,7 +148092,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "only_failed": [ @@ -147917,7 +148142,7 @@ export default { 78 ], "id": [ - 4744 + 4762 ], "teaser": [ 78 @@ -147938,11 +148163,11 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306 + 4324 ] } ], @@ -147953,18 +148178,18 @@ export default { 38 ], "from_team_id": [ - 4744, + 4762, "uuid!" ], "proposed_scheduled_at": [ - 4306, + 4324, "timestamptz!" ], "region": [ 78 ], "to_team_id": [ - 4744, + 4762, "uuid!" ] } @@ -147986,7 +148211,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "mode": [ @@ -147999,15 +148224,15 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "winning_lineup_id": [ - 4744, + 4762, "uuid!" ] } @@ -148016,11 +148241,11 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "winning_lineup_id": [ - 4744, + 4762, "uuid!" ] } @@ -148029,7 +148254,7 @@ export default { 48, { "id": [ - 4744, + 4762, "uuid!" ], "status": [ @@ -148045,7 +148270,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148058,7 +148283,7 @@ export default { "Boolean!" ], "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148071,7 +148296,7 @@ export default { "String!" ], "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148080,7 +148305,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "visible": [ @@ -148093,7 +148318,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148102,7 +148327,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148115,7 +148340,7 @@ export default { "Int!" ], "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148124,7 +148349,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "show": [ @@ -148137,7 +148362,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "slot": [ @@ -148154,7 +148379,7 @@ export default { "Boolean!" ], "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148163,7 +148388,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "mode": [ @@ -148176,11 +148401,11 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ], "server_id": [ - 4744 + 4762 ] } ], @@ -148188,7 +148413,7 @@ export default { 81, { "game_server_node_id": [ - 4744, + 4762, "uuid!" ] } @@ -148197,7 +148422,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148206,7 +148431,7 @@ export default { 81, { "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -148228,7 +148453,7 @@ export default { 81, { "match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148246,7 +148471,7 @@ export default { 81, { "from_match_id": [ - 4744, + 4762, "uuid!" ], "mode": [ @@ -148254,7 +148479,7 @@ export default { "String!" ], "to_match_id": [ - 4744, + 4762, "uuid!" ] } @@ -148294,7 +148519,7 @@ export default { 81, { "clip_id": [ - 4744, + 4762, "uuid!" ], "target_steam_id": [ @@ -148315,7 +148540,7 @@ export default { 78 ], "game_server_node_id": [ - 4744 + 4762 ] } ], @@ -148323,11 +148548,11 @@ export default { 81, { "draftGameId": [ - 4744, + 4762, "uuid!" ], "settings": [ - 1634, + 1652, "jsonb!" ] } @@ -150024,3941 +150249,3974 @@ export default { ] } ], + "update_event_match_links": [ + 1248, + { + "_set": [ + 1253 + ], + "where": [ + 1243, + "event_match_links_bool_exp!" + ] + } + ], + "update_event_match_links_by_pk": [ + 1240, + { + "_set": [ + 1253 + ], + "pk_columns": [ + 1251, + "event_match_links_pk_columns_input!" + ] + } + ], + "update_event_match_links_many": [ + 1248, + { + "updates": [ + 1257, + "[event_match_links_updates!]!" + ] + } + ], "update_event_media": [ - 1257, + 1275, { "_inc": [ - 1251 + 1269 ], "_set": [ - 1304 + 1322 ], "where": [ - 1249, + 1267, "event_media_bool_exp!" ] } ], "update_event_media_by_pk": [ - 1240, + 1258, { "_inc": [ - 1251 + 1269 ], "_set": [ - 1304 + 1322 ], "pk_columns": [ - 1261, + 1279, "event_media_pk_columns_input!" ] } ], "update_event_media_many": [ - 1257, + 1275, { "updates": [ - 1316, + 1334, "[event_media_updates!]!" ] } ], "update_event_media_players": [ - 1279, + 1297, { "_inc": [ - 1273 + 1291 ], "_set": [ - 1284 + 1302 ], "where": [ - 1271, + 1289, "event_media_players_bool_exp!" ] } ], "update_event_media_players_by_pk": [ - 1262, + 1280, { "_inc": [ - 1273 + 1291 ], "_set": [ - 1284 + 1302 ], "pk_columns": [ - 1282, + 1300, "event_media_players_pk_columns_input!" ] } ], "update_event_media_players_many": [ - 1279, + 1297, { "updates": [ - 1296, + 1314, "[event_media_players_updates!]!" ] } ], "update_event_organizers": [ - 1340, + 1358, { "_inc": [ - 1334 + 1352 ], "_set": [ - 1345 + 1363 ], "where": [ - 1332, + 1350, "event_organizers_bool_exp!" ] } ], "update_event_organizers_by_pk": [ - 1323, + 1341, { "_inc": [ - 1334 + 1352 ], "_set": [ - 1345 + 1363 ], "pk_columns": [ - 1343, + 1361, "event_organizers_pk_columns_input!" ] } ], "update_event_organizers_many": [ - 1340, + 1358, { "updates": [ - 1357, + 1375, "[event_organizers_updates!]!" ] } ], "update_event_players": [ - 1381, + 1399, { "_inc": [ - 1375 + 1393 ], "_set": [ - 1386 + 1404 ], "where": [ - 1373, + 1391, "event_players_bool_exp!" ] } ], "update_event_players_by_pk": [ - 1364, + 1382, { "_inc": [ - 1375 + 1393 ], "_set": [ - 1386 + 1404 ], "pk_columns": [ - 1384, + 1402, "event_players_pk_columns_input!" ] } ], "update_event_players_many": [ - 1381, + 1399, { "updates": [ - 1398, + 1416, "[event_players_updates!]!" ] } ], "update_event_teams": [ - 1419, + 1437, { "_set": [ - 1424 + 1442 ], "where": [ - 1412, + 1430, "event_teams_bool_exp!" ] } ], "update_event_teams_by_pk": [ - 1405, + 1423, { "_set": [ - 1424 + 1442 ], "pk_columns": [ - 1422, + 1440, "event_teams_pk_columns_input!" ] } ], "update_event_teams_many": [ - 1419, + 1437, { "updates": [ - 1428, + 1446, "[event_teams_updates!]!" ] } ], "update_event_tournaments": [ - 1443, + 1461, { "_set": [ - 1448 + 1466 ], "where": [ - 1436, + 1454, "event_tournaments_bool_exp!" ] } ], "update_event_tournaments_by_pk": [ - 1429, + 1447, { "_set": [ - 1448 + 1466 ], "pk_columns": [ - 1446, + 1464, "event_tournaments_pk_columns_input!" ] } ], "update_event_tournaments_many": [ - 1443, + 1461, { "updates": [ - 1452, + 1470, "[event_tournaments_updates!]!" ] } ], "update_events": [ - 1463, + 1481, { "_inc": [ - 1459 + 1477 ], "_set": [ - 1469 + 1487 ], "where": [ - 1457, + 1475, "events_bool_exp!" ] } ], "update_events_by_pk": [ - 1453, + 1471, { "_inc": [ - 1459 + 1477 ], "_set": [ - 1469 + 1487 ], "pk_columns": [ - 1467, + 1485, "events_pk_columns_input!" ] } ], "update_events_many": [ - 1463, + 1481, { "updates": [ - 1477, + 1495, "[events_updates!]!" ] } ], "update_friends": [ - 1493, + 1511, { "_inc": [ - 1489 + 1507 ], "_set": [ - 1498 + 1516 ], "where": [ - 1487, + 1505, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 1483, + 1501, { "_inc": [ - 1489 + 1507 ], "_set": [ - 1498 + 1516 ], "pk_columns": [ - 1496, + 1514, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 1493, + 1511, { "updates": [ - 1506, + 1524, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 1533, + 1551, { "_append": [ - 1518 + 1536 ], "_delete_at_path": [ - 1524 + 1542 ], "_delete_elem": [ - 1525 + 1543 ], "_delete_key": [ - 1526 + 1544 ], "_inc": [ - 1527 + 1545 ], "_prepend": [ - 1538 + 1556 ], "_set": [ - 1542 + 1560 ], "where": [ - 1522, + 1540, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 1510, + 1528, { "_append": [ - 1518 + 1536 ], "_delete_at_path": [ - 1524 + 1542 ], "_delete_elem": [ - 1525 + 1543 ], "_delete_key": [ - 1526 + 1544 ], "_inc": [ - 1527 + 1545 ], "_prepend": [ - 1538 + 1556 ], "_set": [ - 1542 + 1560 ], "pk_columns": [ - 1537, + 1555, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 1533, + 1551, { "updates": [ - 1554, + 1572, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 1575, + 1593, { "_append": [ - 1564 + 1582 ], "_delete_at_path": [ - 1568 + 1586 ], "_delete_elem": [ - 1569 + 1587 ], "_delete_key": [ - 1570 + 1588 ], "_inc": [ - 1571 + 1589 ], "_prepend": [ - 1580 + 1598 ], "_set": [ - 1582 + 1600 ], "where": [ - 1566, + 1584, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 1561, + 1579, { "_append": [ - 1564 + 1582 ], "_delete_at_path": [ - 1568 + 1586 ], "_delete_elem": [ - 1569 + 1587 ], "_delete_key": [ - 1570 + 1588 ], "_inc": [ - 1571 + 1589 ], "_prepend": [ - 1580 + 1598 ], "_set": [ - 1582 + 1600 ], "pk_columns": [ - 1579, + 1597, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 1575, + 1593, { "updates": [ - 1590, + 1608, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 1608, + 1626, { "_append": [ - 1597 + 1615 ], "_delete_at_path": [ - 1601 + 1619 ], "_delete_elem": [ - 1602 + 1620 ], "_delete_key": [ - 1603 + 1621 ], "_inc": [ - 1604 + 1622 ], "_prepend": [ - 1612 + 1630 ], "_set": [ - 1614 + 1632 ], "where": [ - 1599, + 1617, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 1594, + 1612, { "_append": [ - 1597 + 1615 ], "_delete_at_path": [ - 1601 + 1619 ], "_delete_elem": [ - 1602 + 1620 ], "_delete_key": [ - 1603 + 1621 ], "_inc": [ - 1604 + 1622 ], "_prepend": [ - 1612 + 1630 ], "_set": [ - 1614 + 1632 ], "pk_columns": [ - 1611, + 1629, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 1608, + 1626, { "updates": [ - 1622, + 1640, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 1646, + 1664, { "_inc": [ - 1642 + 1660 ], "_set": [ - 1649 + 1667 ], "where": [ - 1641, + 1659, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 1646, + 1664, { "updates": [ - 1656, + 1674, "[leaderboard_entries_updates!]!" ] } ], "update_league_divisions": [ - 1671, + 1689, { "_inc": [ - 1667 + 1685 ], "_set": [ - 1677 + 1695 ], "where": [ - 1665, + 1683, "league_divisions_bool_exp!" ] } ], "update_league_divisions_by_pk": [ - 1661, + 1679, { "_inc": [ - 1667 + 1685 ], "_set": [ - 1677 + 1695 ], "pk_columns": [ - 1675, + 1693, "league_divisions_pk_columns_input!" ] } ], "update_league_divisions_many": [ - 1671, + 1689, { "updates": [ - 1685, + 1703, "[league_divisions_updates!]!" ] } ], "update_league_match_weeks": [ - 1706, + 1724, { "_inc": [ - 1700 + 1718 ], "_set": [ - 1711 + 1729 ], "where": [ - 1698, + 1716, "league_match_weeks_bool_exp!" ] } ], "update_league_match_weeks_by_pk": [ - 1689, + 1707, { "_inc": [ - 1700 + 1718 ], "_set": [ - 1711 + 1729 ], "pk_columns": [ - 1709, + 1727, "league_match_weeks_pk_columns_input!" ] } ], "update_league_match_weeks_many": [ - 1706, + 1724, { "updates": [ - 1723, + 1741, "[league_match_weeks_updates!]!" ] } ], "update_league_relegation_playoffs": [ - 1747, + 1765, { "_inc": [ - 1741 + 1759 ], "_set": [ - 1752 + 1770 ], "where": [ - 1739, + 1757, "league_relegation_playoffs_bool_exp!" ] } ], "update_league_relegation_playoffs_by_pk": [ - 1730, + 1748, { "_inc": [ - 1741 + 1759 ], "_set": [ - 1752 + 1770 ], "pk_columns": [ - 1750, + 1768, "league_relegation_playoffs_pk_columns_input!" ] } ], "update_league_relegation_playoffs_many": [ - 1747, + 1765, { "updates": [ - 1764, + 1782, "[league_relegation_playoffs_updates!]!" ] } ], "update_league_scheduling_proposals": [ - 1788, + 1806, { "_inc": [ - 1782 + 1800 ], "_set": [ - 1793 + 1811 ], "where": [ - 1780, + 1798, "league_scheduling_proposals_bool_exp!" ] } ], "update_league_scheduling_proposals_by_pk": [ - 1771, + 1789, { "_inc": [ - 1782 + 1800 ], "_set": [ - 1793 + 1811 ], "pk_columns": [ - 1791, + 1809, "league_scheduling_proposals_pk_columns_input!" ] } ], "update_league_scheduling_proposals_many": [ - 1788, + 1806, { "updates": [ - 1805, + 1823, "[league_scheduling_proposals_updates!]!" ] } ], "update_league_season_divisions": [ - 1826, + 1844, { "_set": [ - 1832 + 1850 ], "where": [ - 1819, + 1837, "league_season_divisions_bool_exp!" ] } ], "update_league_season_divisions_by_pk": [ - 1812, + 1830, { "_set": [ - 1832 + 1850 ], "pk_columns": [ - 1830, + 1848, "league_season_divisions_pk_columns_input!" ] } ], "update_league_season_divisions_many": [ - 1826, + 1844, { "updates": [ - 1836, + 1854, "[league_season_divisions_updates!]!" ] } ], "update_league_seasons": [ - 1851, + 1869, { "_append": [ - 1840 + 1858 ], "_delete_at_path": [ - 1844 + 1862 ], "_delete_elem": [ - 1845 + 1863 ], "_delete_key": [ - 1846 + 1864 ], "_inc": [ - 1847 + 1865 ], "_prepend": [ - 1856 + 1874 ], "_set": [ - 1858 + 1876 ], "where": [ - 1842, + 1860, "league_seasons_bool_exp!" ] } ], "update_league_seasons_by_pk": [ - 1837, + 1855, { "_append": [ - 1840 + 1858 ], "_delete_at_path": [ - 1844 + 1862 ], "_delete_elem": [ - 1845 + 1863 ], "_delete_key": [ - 1846 + 1864 ], "_inc": [ - 1847 + 1865 ], "_prepend": [ - 1856 + 1874 ], "_set": [ - 1858 + 1876 ], "pk_columns": [ - 1855, + 1873, "league_seasons_pk_columns_input!" ] } ], "update_league_seasons_many": [ - 1851, + 1869, { "updates": [ - 1866, + 1884, "[league_seasons_updates!]!" ] } ], "update_league_team_movements": [ - 1887, + 1905, { "_inc": [ - 1881 + 1899 ], "_set": [ - 1892 + 1910 ], "where": [ - 1879, + 1897, "league_team_movements_bool_exp!" ] } ], "update_league_team_movements_by_pk": [ - 1870, + 1888, { "_inc": [ - 1881 + 1899 ], "_set": [ - 1892 + 1910 ], "pk_columns": [ - 1890, + 1908, "league_team_movements_pk_columns_input!" ] } ], "update_league_team_movements_many": [ - 1887, + 1905, { "updates": [ - 1904, + 1922, "[league_team_movements_updates!]!" ] } ], "update_league_team_rosters": [ - 1928, + 1946, { "_inc": [ - 1922 + 1940 ], "_set": [ - 1933 + 1951 ], "where": [ - 1920, + 1938, "league_team_rosters_bool_exp!" ] } ], "update_league_team_rosters_by_pk": [ - 1911, + 1929, { "_inc": [ - 1922 + 1940 ], "_set": [ - 1933 + 1951 ], "pk_columns": [ - 1931, + 1949, "league_team_rosters_pk_columns_input!" ] } ], "update_league_team_rosters_many": [ - 1928, + 1946, { "updates": [ - 1945, + 1963, "[league_team_rosters_updates!]!" ] } ], "update_league_team_seasons": [ - 1969, + 1987, { "_inc": [ - 1963 + 1981 ], "_set": [ - 1975 + 1993 ], "where": [ - 1961, + 1979, "league_team_seasons_bool_exp!" ] } ], "update_league_team_seasons_by_pk": [ - 1952, + 1970, { "_inc": [ - 1963 + 1981 ], "_set": [ - 1975 + 1993 ], "pk_columns": [ - 1973, + 1991, "league_team_seasons_pk_columns_input!" ] } ], "update_league_team_seasons_many": [ - 1969, + 1987, { "updates": [ - 1987, + 2005, "[league_team_seasons_updates!]!" ] } ], "update_league_teams": [ - 2002, + 2020, { "_set": [ - 2008 + 2026 ], "where": [ - 1997, + 2015, "league_teams_bool_exp!" ] } ], "update_league_teams_by_pk": [ - 1994, + 2012, { "_set": [ - 2008 + 2026 ], "pk_columns": [ - 2006, + 2024, "league_teams_pk_columns_input!" ] } ], "update_league_teams_many": [ - 2002, + 2020, { "updates": [ - 2012, + 2030, "[league_teams_updates!]!" ] } ], "update_lobbies": [ - 2021, + 2039, { "_set": [ - 2027 + 2045 ], "where": [ - 2016, + 2034, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 2013, + 2031, { "_set": [ - 2027 + 2045 ], "pk_columns": [ - 2025, + 2043, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 2021, + 2039, { "updates": [ - 2031, + 2049, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 2051, + 2069, { "_inc": [ - 2045 + 2063 ], "_set": [ - 2058 + 2076 ], "where": [ - 2043, + 2061, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 2032, + 2050, { "_inc": [ - 2045 + 2063 ], "_set": [ - 2058 + 2076 ], "pk_columns": [ - 2054, + 2072, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 2051, + 2069, { "updates": [ - 2070, + 2088, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 2085, + 2103, { "_set": [ - 2091 + 2109 ], "where": [ - 2080, + 2098, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 2077, + 2095, { "_set": [ - 2091 + 2109 ], "pk_columns": [ - 2089, + 2107, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 2085, + 2103, { "updates": [ - 2095, + 2113, "[map_pools_updates!]!" ] } ], "update_maps": [ - 2112, + 2130, { "_set": [ - 2120 + 2138 ], "where": [ - 2105, + 2123, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 2096, + 2114, { "_set": [ - 2120 + 2138 ], "pk_columns": [ - 2116, + 2134, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 2112, + 2130, { "updates": [ - 2124, + 2142, "[maps_updates!]!" ] } ], "update_match_clips": [ - 2142, + 2160, { "_inc": [ - 2136 + 2154 ], "_set": [ - 2148 + 2166 ], "where": [ - 2134, + 2152, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 2125, + 2143, { "_inc": [ - 2136 + 2154 ], "_set": [ - 2148 + 2166 ], "pk_columns": [ - 2146, + 2164, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 2142, + 2160, { "updates": [ - 2160, + 2178, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 2188, + 2206, { "_append": [ - 2173 + 2191 ], "_delete_at_path": [ - 2179 + 2197 ], "_delete_elem": [ - 2180 + 2198 ], "_delete_key": [ - 2181 + 2199 ], "_inc": [ - 2182 + 2200 ], "_prepend": [ - 2192 + 2210 ], "_set": [ - 2194 + 2212 ], "where": [ - 2177, + 2195, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 2167, + 2185, { "_append": [ - 2173 + 2191 ], "_delete_at_path": [ - 2179 + 2197 ], "_delete_elem": [ - 2180 + 2198 ], "_delete_key": [ - 2181 + 2199 ], "_inc": [ - 2182 + 2200 ], "_prepend": [ - 2192 + 2210 ], "_set": [ - 2194 + 2212 ], "pk_columns": [ - 2191, + 2209, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 2188, + 2206, { "updates": [ - 2206, + 2224, "[match_demo_sessions_updates!]!" ] } ], "update_match_lineup_players": [ - 2232, + 2250, { "_inc": [ - 2226 + 2244 ], "_set": [ - 2239 + 2257 ], "where": [ - 2224, + 2242, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 2213, + 2231, { "_inc": [ - 2226 + 2244 ], "_set": [ - 2239 + 2257 ], "pk_columns": [ - 2235, + 2253, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 2232, + 2250, { "updates": [ - 2251, + 2269, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 2275, + 2293, { "_inc": [ - 2269 + 2287 ], "_set": [ - 2281 + 2299 ], "where": [ - 2267, + 2285, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 2258, + 2276, { "_inc": [ - 2269 + 2287 ], "_set": [ - 2281 + 2299 ], "pk_columns": [ - 2279, + 2297, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 2275, + 2293, { "updates": [ - 2293, + 2311, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 2323, + 2341, { "_append": [ - 2308 + 2326 ], "_delete_at_path": [ - 2314 + 2332 ], "_delete_elem": [ - 2315 + 2333 ], "_delete_key": [ - 2316 + 2334 ], "_inc": [ - 2317 + 2335 ], "_prepend": [ - 2328 + 2346 ], "_set": [ - 2332 + 2350 ], "where": [ - 2312, + 2330, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 2300, + 2318, { "_append": [ - 2308 + 2326 ], "_delete_at_path": [ - 2314 + 2332 ], "_delete_elem": [ - 2315 + 2333 ], "_delete_key": [ - 2316 + 2334 ], "_inc": [ - 2317 + 2335 ], "_prepend": [ - 2328 + 2346 ], "_set": [ - 2332 + 2350 ], "pk_columns": [ - 2327, + 2345, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 2323, + 2341, { "updates": [ - 2344, + 2362, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 2368, + 2386, { "_inc": [ - 2362 + 2380 ], "_set": [ - 2373 + 2391 ], "where": [ - 2360, + 2378, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 2351, + 2369, { "_inc": [ - 2362 + 2380 ], "_set": [ - 2373 + 2391 ], "pk_columns": [ - 2371, + 2389, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 2368, + 2386, { "updates": [ - 2385, + 2403, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 2406, + 2424, { "_set": [ - 2411 + 2429 ], "where": [ - 2399, + 2417, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 2392, + 2410, { "_set": [ - 2411 + 2429 ], "pk_columns": [ - 2409, + 2427, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 2406, + 2424, { "updates": [ - 2415, + 2433, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 2433, + 2451, { "_inc": [ - 2427 + 2445 ], "_set": [ - 2439 + 2457 ], "where": [ - 2425, + 2443, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 2416, + 2434, { "_inc": [ - 2427 + 2445 ], "_set": [ - 2439 + 2457 ], "pk_columns": [ - 2437, + 2455, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 2433, + 2451, { "updates": [ - 2451, + 2469, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 2468, + 2486, { "_inc": [ - 2464 + 2482 ], "_set": [ - 2474 + 2492 ], "where": [ - 2462, + 2480, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 2458, + 2476, { "_inc": [ - 2464 + 2482 ], "_set": [ - 2474 + 2492 ], "pk_columns": [ - 2472, + 2490, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 2468, + 2486, { "updates": [ - 2482, + 2500, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 2500, + 2518, { "_set": [ - 2505 + 2523 ], "where": [ - 2493, + 2511, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 2486, + 2504, { "_set": [ - 2505 + 2523 ], "pk_columns": [ - 2503, + 2521, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 2500, + 2518, { "updates": [ - 2509, + 2527, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 2533, + 2551, { "_append": [ - 2518 + 2536 ], "_delete_at_path": [ - 2524 + 2542 ], "_delete_elem": [ - 2525 + 2543 ], "_delete_key": [ - 2526 + 2544 ], "_inc": [ - 2527 + 2545 ], "_prepend": [ - 2537 + 2555 ], "_set": [ - 2541 + 2559 ], "where": [ - 2522, + 2540, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 2510, + 2528, { "_append": [ - 2518 + 2536 ], "_delete_at_path": [ - 2524 + 2542 ], "_delete_elem": [ - 2525 + 2543 ], "_delete_key": [ - 2526 + 2544 ], "_inc": [ - 2527 + 2545 ], "_prepend": [ - 2537 + 2555 ], "_set": [ - 2541 + 2559 ], "pk_columns": [ - 2536, + 2554, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 2533, + 2551, { "updates": [ - 2553, + 2571, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 2568, + 2586, { "_set": [ - 2573 + 2591 ], "where": [ - 2563, + 2581, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 2560, + 2578, { "_set": [ - 2573 + 2591 ], "pk_columns": [ - 2571, + 2589, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 2568, + 2586, { "updates": [ - 2577, + 2595, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 2595, + 2613, { "_inc": [ - 2589 + 2607 ], "_set": [ - 2601 + 2619 ], "where": [ - 2587, + 2605, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 2578, + 2596, { "_inc": [ - 2589 + 2607 ], "_set": [ - 2601 + 2619 ], "pk_columns": [ - 2599, + 2617, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 2595, + 2613, { "updates": [ - 2613, + 2631, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 2628, + 2646, { "_set": [ - 2633 + 2651 ], "where": [ - 2623, + 2641, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 2620, + 2638, { "_set": [ - 2633 + 2651 ], "pk_columns": [ - 2631, + 2649, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 2628, + 2646, { "updates": [ - 2637, + 2655, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 2660, + 2678, { "_append": [ - 2646 + 2664 ], "_delete_at_path": [ - 2651 + 2669 ], "_delete_elem": [ - 2652 + 2670 ], "_delete_key": [ - 2653 + 2671 ], "_inc": [ - 2654 + 2672 ], "_prepend": [ - 2662 + 2680 ], "_set": [ - 2666 + 2684 ], "where": [ - 2650, + 2668, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 2660, + 2678, { "updates": [ - 2677, + 2695, "[my_friends_updates!]!" ] } ], "update_news_articles": [ - 2694, + 2712, { "_inc": [ - 2690 + 2708 ], "_set": [ - 2699 + 2717 ], "where": [ - 2688, + 2706, "news_articles_bool_exp!" ] } ], "update_news_articles_by_pk": [ - 2684, + 2702, { "_inc": [ - 2690 + 2708 ], "_set": [ - 2699 + 2717 ], "pk_columns": [ - 2697, + 2715, "news_articles_pk_columns_input!" ] } ], "update_news_articles_many": [ - 2694, + 2712, { "updates": [ - 2707, + 2725, "[news_articles_updates!]!" ] } ], "update_notifications": [ - 2734, + 2752, { "_append": [ - 2719 + 2737 ], "_delete_at_path": [ - 2725 + 2743 ], "_delete_elem": [ - 2726 + 2744 ], "_delete_key": [ - 2727 + 2745 ], "_inc": [ - 2728 + 2746 ], "_prepend": [ - 2738 + 2756 ], "_set": [ - 2742 + 2760 ], "where": [ - 2723, + 2741, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 2711, + 2729, { "_append": [ - 2719 + 2737 ], "_delete_at_path": [ - 2725 + 2743 ], "_delete_elem": [ - 2726 + 2744 ], "_delete_key": [ - 2727 + 2745 ], "_inc": [ - 2728 + 2746 ], "_prepend": [ - 2738 + 2756 ], "_set": [ - 2742 + 2760 ], "pk_columns": [ - 2737, + 2755, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 2734, + 2752, { "updates": [ - 2754, + 2772, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 2781, + 2799, { "_inc": [ - 2775 + 2793 ], "_set": [ - 2786 + 2804 ], "where": [ - 2773, + 2791, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 2764, + 2782, { "_inc": [ - 2775 + 2793 ], "_set": [ - 2786 + 2804 ], "pk_columns": [ - 2784, + 2802, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 2781, + 2799, { "updates": [ - 2798, + 2816, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 2815, + 2833, { "_inc": [ - 2811 + 2829 ], "_set": [ - 2821 + 2839 ], "where": [ - 2809, + 2827, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 2805, + 2823, { "_inc": [ - 2811 + 2829 ], "_set": [ - 2821 + 2839 ], "pk_columns": [ - 2819, + 2837, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 2815, + 2833, { "updates": [ - 2829, + 2847, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 2843, + 2861, { "_inc": [ - 2839 + 2857 ], "_set": [ - 2848 + 2866 ], "where": [ - 2837, + 2855, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 2833, + 2851, { "_inc": [ - 2839 + 2857 ], "_set": [ - 2848 + 2866 ], "pk_columns": [ - 2846, + 2864, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 2843, + 2861, { "updates": [ - 2856, + 2874, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 2877, + 2895, { "_inc": [ - 2871 + 2889 ], "_set": [ - 2882 + 2900 ], "where": [ - 2869, + 2887, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 2860, + 2878, { "_inc": [ - 2871 + 2889 ], "_set": [ - 2882 + 2900 ], "pk_columns": [ - 2880, + 2898, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 2877, + 2895, { "updates": [ - 2894, + 2912, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 2920, + 2938, { "_inc": [ - 2914 + 2932 ], "_set": [ - 2927 + 2945 ], "where": [ - 2912, + 2930, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 2901, + 2919, { "_inc": [ - 2914 + 2932 ], "_set": [ - 2927 + 2945 ], "pk_columns": [ - 2923, + 2941, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 2920, + 2938, { "updates": [ - 2939, + 2957, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 2981, + 2999, { "_inc": [ - 2975 + 2993 ], "_set": [ - 2986 + 3004 ], "where": [ - 2973, + 2991, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 2964, + 2982, { "_inc": [ - 2975 + 2993 ], "_set": [ - 2986 + 3004 ], "pk_columns": [ - 2984, + 3002, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 2981, + 2999, { "updates": [ - 2998, + 3016, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 3015, + 3033, { "_inc": [ - 3011 + 3029 ], "_set": [ - 3020 + 3038 ], "where": [ - 3009, + 3027, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 3005, + 3023, { "_inc": [ - 3011 + 3029 ], "_set": [ - 3020 + 3038 ], "pk_columns": [ - 3018, + 3036, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 3015, + 3033, { "updates": [ - 3028, + 3046, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 3049, + 3067, { "_inc": [ - 3043 + 3061 ], "_set": [ - 3054 + 3072 ], "where": [ - 3041, + 3059, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 3032, + 3050, { "_inc": [ - 3043 + 3061 ], "_set": [ - 3054 + 3072 ], "pk_columns": [ - 3052, + 3070, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 3049, + 3067, { "updates": [ - 3066, + 3084, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 3092, + 3110, { "_inc": [ - 3086 + 3104 ], "_set": [ - 3099 + 3117 ], "where": [ - 3084, + 3102, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 3073, + 3091, { "_inc": [ - 3086 + 3104 ], "_set": [ - 3099 + 3117 ], "pk_columns": [ - 3095, + 3113, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 3092, + 3110, { "updates": [ - 3111, + 3129, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 3178, + 3196, { "_inc": [ - 3172 + 3190 ], "_set": [ - 3185 + 3203 ], "where": [ - 3129, + 3147, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 3118, + 3136, { "_inc": [ - 3172 + 3190 ], "_set": [ - 3185 + 3203 ], "pk_columns": [ - 3181, + 3199, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 3147, + 3165, { "_inc": [ - 3141 + 3159 ], "_set": [ - 3152 + 3170 ], "where": [ - 3139, + 3157, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 3130, + 3148, { "_inc": [ - 3141 + 3159 ], "_set": [ - 3152 + 3170 ], "pk_columns": [ - 3150, + 3168, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 3147, + 3165, { "updates": [ - 3164, + 3182, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 3178, + 3196, { "updates": [ - 3197, + 3215, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 3213, + 3231, { "_inc": [ - 3209 + 3227 ], "_set": [ - 3216 + 3234 ], "where": [ - 3208, + 3226, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 3213, + 3231, { "updates": [ - 3223, + 3241, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 3244, + 3262, { "_inc": [ - 3238 + 3256 ], "_set": [ - 3249 + 3267 ], "where": [ - 3236, + 3254, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 3227, + 3245, { "_inc": [ - 3238 + 3256 ], "_set": [ - 3249 + 3267 ], "pk_columns": [ - 3247, + 3265, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 3244, + 3262, { "updates": [ - 3261, + 3279, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 3336, + 3354, { "_inc": [ - 3330 + 3348 ], "_set": [ - 3341 + 3359 ], "where": [ - 3328, + 3346, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 3319, + 3337, { "_inc": [ - 3330 + 3348 ], "_set": [ - 3341 + 3359 ], "pk_columns": [ - 3339, + 3357, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 3336, + 3354, { "updates": [ - 3353, + 3371, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 3395, + 3413, { "_inc": [ - 3389 + 3407 ], "_set": [ - 3400 + 3418 ], "where": [ - 3387, + 3405, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 3378, + 3396, { "_inc": [ - 3389 + 3407 ], "_set": [ - 3400 + 3418 ], "pk_columns": [ - 3398, + 3416, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 3395, + 3413, { "updates": [ - 3412, + 3430, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 3436, + 3454, { "_inc": [ - 3430 + 3448 ], "_set": [ - 3441 + 3459 ], "where": [ - 3428, + 3446, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 3419, + 3437, { "_inc": [ - 3430 + 3448 ], "_set": [ - 3441 + 3459 ], "pk_columns": [ - 3439, + 3457, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 3436, + 3454, { "updates": [ - 3453, + 3471, "[player_sanctions_updates!]!" ] } ], "update_player_season_stats": [ - 3487, + 3505, { "_inc": [ - 3481 + 3499 ], "_set": [ - 3500 + 3518 ], "where": [ - 3479, + 3497, "player_season_stats_bool_exp!" ] } ], "update_player_season_stats_by_pk": [ - 3460, + 3478, { "_inc": [ - 3481 + 3499 ], "_set": [ - 3500 + 3518 ], "pk_columns": [ - 3490, + 3508, "player_season_stats_pk_columns_input!" ] } ], "update_player_season_stats_many": [ - 3487, + 3505, { "updates": [ - 3512, + 3530, "[player_season_stats_updates!]!" ] } ], "update_player_stats": [ - 3529, + 3547, { "_inc": [ - 3525 + 3543 ], "_set": [ - 3535 + 3553 ], "where": [ - 3523, + 3541, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 3519, + 3537, { "_inc": [ - 3525 + 3543 ], "_set": [ - 3535 + 3553 ], "pk_columns": [ - 3533, + 3551, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 3529, + 3547, { "updates": [ - 3543, + 3561, "[player_stats_updates!]!" ] } ], "update_player_steam_bot_friend": [ - 3561, + 3579, { "_append": [ - 3550 + 3568 ], "_delete_at_path": [ - 3554 + 3572 ], "_delete_elem": [ - 3555 + 3573 ], "_delete_key": [ - 3556 + 3574 ], "_inc": [ - 3557 + 3575 ], "_prepend": [ - 3565 + 3583 ], "_set": [ - 3567 + 3585 ], "where": [ - 3552, + 3570, "player_steam_bot_friend_bool_exp!" ] } ], "update_player_steam_bot_friend_by_pk": [ - 3547, + 3565, { "_append": [ - 3550 + 3568 ], "_delete_at_path": [ - 3554 + 3572 ], "_delete_elem": [ - 3555 + 3573 ], "_delete_key": [ - 3556 + 3574 ], "_inc": [ - 3557 + 3575 ], "_prepend": [ - 3565 + 3583 ], "_set": [ - 3567 + 3585 ], "pk_columns": [ - 3564, + 3582, "player_steam_bot_friend_pk_columns_input!" ] } ], "update_player_steam_bot_friend_many": [ - 3561, + 3579, { "updates": [ - 3575, + 3593, "[player_steam_bot_friend_updates!]!" ] } ], "update_player_steam_match_auth": [ - 3589, + 3607, { "_inc": [ - 3585 + 3603 ], "_set": [ - 3594 + 3612 ], "where": [ - 3583, + 3601, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 3579, + 3597, { "_inc": [ - 3585 + 3603 ], "_set": [ - 3594 + 3612 ], "pk_columns": [ - 3592, + 3610, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 3589, + 3607, { "updates": [ - 3602, + 3620, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 3623, + 3641, { "_inc": [ - 3617 + 3635 ], "_set": [ - 3628 + 3646 ], "where": [ - 3615, + 3633, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 3606, + 3624, { "_inc": [ - 3617 + 3635 ], "_set": [ - 3628 + 3646 ], "pk_columns": [ - 3626, + 3644, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 3623, + 3641, { "updates": [ - 3640, + 3658, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 3664, + 3682, { "_inc": [ - 3658 + 3676 ], "_set": [ - 3669 + 3687 ], "where": [ - 3656, + 3674, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 3647, + 3665, { "_inc": [ - 3658 + 3676 ], "_set": [ - 3669 + 3687 ], "pk_columns": [ - 3667, + 3685, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 3664, + 3682, { "updates": [ - 3681, + 3699, "[player_utility_updates!]!" ] } ], "update_players": [ - 3731, + 3749, { "_inc": [ - 3727 + 3745 ], "_set": [ - 3737 + 3755 ], "where": [ - 3725, + 3743, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 3721, + 3739, { "_inc": [ - 3727 + 3745 ], "_set": [ - 3737 + 3755 ], "pk_columns": [ - 3735, + 3753, "players_pk_columns_input!" ] } ], "update_players_many": [ - 3731, + 3749, { "updates": [ - 3745, + 3763, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 3759, + 3777, { "_inc": [ - 3755 + 3773 ], "_set": [ - 3764 + 3782 ], "where": [ - 3753, + 3771, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 3749, + 3767, { "_inc": [ - 3755 + 3773 ], "_set": [ - 3764 + 3782 ], "pk_columns": [ - 3762, + 3780, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 3759, + 3777, { "updates": [ - 3772, + 3790, "[plugin_versions_updates!]!" ] } ], "update_seasons": [ - 3790, + 3808, { "_inc": [ - 3786 + 3804 ], "_set": [ - 3796 + 3814 ], "where": [ - 3784, + 3802, "seasons_bool_exp!" ] } ], "update_seasons_by_pk": [ - 3780, + 3798, { "_inc": [ - 3786 + 3804 ], "_set": [ - 3796 + 3814 ], "pk_columns": [ - 3794, + 3812, "seasons_pk_columns_input!" ] } ], "update_seasons_many": [ - 3790, + 3808, { "updates": [ - 3804, + 3822, "[seasons_updates!]!" ] } ], "update_server_regions": [ - 3817, + 3835, { "_set": [ - 3823 + 3841 ], "where": [ - 3812, + 3830, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 3808, + 3826, { "_set": [ - 3823 + 3841 ], "pk_columns": [ - 3821, + 3839, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 3817, + 3835, { "updates": [ - 3831, + 3849, "[server_regions_updates!]!" ] } ], "update_servers": [ - 3854, + 3872, { "_inc": [ - 3848 + 3866 ], "_set": [ - 3862 + 3880 ], "where": [ - 3846, + 3864, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 3835, + 3853, { "_inc": [ - 3848 + 3866 ], "_set": [ - 3862 + 3880 ], "pk_columns": [ - 3858, + 3876, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 3854, + 3872, { "updates": [ - 3874, + 3892, "[servers_updates!]!" ] } ], "update_settings": [ - 3889, + 3907, { "_set": [ - 3894 + 3912 ], "where": [ - 3884, + 3902, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 3881, + 3899, { "_set": [ - 3894 + 3912 ], "pk_columns": [ - 3892, + 3910, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 3889, + 3907, { "updates": [ - 3898, + 3916, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 3915, + 3933, { "_set": [ - 3920 + 3938 ], "where": [ - 3908, + 3926, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 3901, + 3919, { "_set": [ - 3920 + 3938 ], "pk_columns": [ - 3918, + 3936, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 3915, + 3933, { "updates": [ - 3924, + 3942, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 3935, + 3953, { "_inc": [ - 3931 + 3949 ], "_set": [ - 3941 + 3959 ], "where": [ - 3929, + 3947, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 3925, + 3943, { "_inc": [ - 3931 + 3949 ], "_set": [ - 3941 + 3959 ], "pk_columns": [ - 3939, + 3957, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 3935, + 3953, { "updates": [ - 3949, + 3967, "[steam_accounts_updates!]!" ] } ], "update_system_alerts": [ - 3963, + 3981, { "_inc": [ - 3959 + 3977 ], "_set": [ - 3968 + 3986 ], "where": [ - 3957, + 3975, "system_alerts_bool_exp!" ] } ], "update_system_alerts_by_pk": [ - 3953, + 3971, { "_inc": [ - 3959 + 3977 ], "_set": [ - 3968 + 3986 ], "pk_columns": [ - 3966, + 3984, "system_alerts_pk_columns_input!" ] } ], "update_system_alerts_many": [ - 3963, + 3981, { "updates": [ - 3976, + 3994, "[system_alerts_updates!]!" ] } ], "update_team_invites": [ - 3997, + 4015, { "_inc": [ - 3991 + 4009 ], "_set": [ - 4002 + 4020 ], "where": [ - 3989, + 4007, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 3980, + 3998, { "_inc": [ - 3991 + 4009 ], "_set": [ - 4002 + 4020 ], "pk_columns": [ - 4000, + 4018, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 3997, + 4015, { "updates": [ - 4014, + 4032, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 4040, + 4058, { "_inc": [ - 4034 + 4052 ], "_set": [ - 4047 + 4065 ], "where": [ - 4032, + 4050, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 4021, + 4039, { "_inc": [ - 4034 + 4052 ], "_set": [ - 4047 + 4065 ], "pk_columns": [ - 4043, + 4061, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 4040, + 4058, { "updates": [ - 4059, + 4077, "[team_roster_updates!]!" ] } ], "update_team_scrim_alerts": [ - 4076, + 4094, { "_inc": [ - 4072 + 4090 ], "_set": [ - 4081 + 4099 ], "where": [ - 4070, + 4088, "team_scrim_alerts_bool_exp!" ] } ], "update_team_scrim_alerts_by_pk": [ - 4066, + 4084, { "_inc": [ - 4072 + 4090 ], "_set": [ - 4081 + 4099 ], "pk_columns": [ - 4079, + 4097, "team_scrim_alerts_pk_columns_input!" ] } ], "update_team_scrim_alerts_many": [ - 4076, + 4094, { "updates": [ - 4089, + 4107, "[team_scrim_alerts_updates!]!" ] } ], "update_team_scrim_availability": [ - 4109, + 4127, { "_set": [ - 4116 + 4134 ], "where": [ - 4102, + 4120, "team_scrim_availability_bool_exp!" ] } ], "update_team_scrim_availability_by_pk": [ - 4093, + 4111, { "_set": [ - 4116 + 4134 ], "pk_columns": [ - 4112, + 4130, "team_scrim_availability_pk_columns_input!" ] } ], "update_team_scrim_availability_many": [ - 4109, + 4127, { "updates": [ - 4120, + 4138, "[team_scrim_availability_updates!]!" ] } ], "update_team_scrim_request_proposals": [ - 4138, + 4156, { "_inc": [ - 4132 + 4150 ], "_set": [ - 4143 + 4161 ], "where": [ - 4130, + 4148, "team_scrim_request_proposals_bool_exp!" ] } ], "update_team_scrim_request_proposals_by_pk": [ - 4121, + 4139, { "_inc": [ - 4132 + 4150 ], "_set": [ - 4143 + 4161 ], "pk_columns": [ - 4141, + 4159, "team_scrim_request_proposals_pk_columns_input!" ] } ], "update_team_scrim_request_proposals_many": [ - 4138, + 4156, { "updates": [ - 4155, + 4173, "[team_scrim_request_proposals_updates!]!" ] } ], "update_team_scrim_requests": [ - 4181, + 4199, { "_inc": [ - 4175 + 4193 ], "_set": [ - 4189 + 4207 ], "where": [ - 4173, + 4191, "team_scrim_requests_bool_exp!" ] } ], "update_team_scrim_requests_by_pk": [ - 4162, + 4180, { "_inc": [ - 4175 + 4193 ], "_set": [ - 4189 + 4207 ], "pk_columns": [ - 4185, + 4203, "team_scrim_requests_pk_columns_input!" ] } ], "update_team_scrim_requests_many": [ - 4181, + 4199, { "updates": [ - 4201, + 4219, "[team_scrim_requests_updates!]!" ] } ], "update_team_scrim_settings": [ - 4218, + 4236, { "_inc": [ - 4214 + 4232 ], "_set": [ - 4224 + 4242 ], "where": [ - 4212, + 4230, "team_scrim_settings_bool_exp!" ] } ], "update_team_scrim_settings_by_pk": [ - 4208, + 4226, { "_inc": [ - 4214 + 4232 ], "_set": [ - 4224 + 4242 ], "pk_columns": [ - 4222, + 4240, "team_scrim_settings_pk_columns_input!" ] } ], "update_team_scrim_settings_many": [ - 4218, + 4236, { "updates": [ - 4232, + 4250, "[team_scrim_settings_updates!]!" ] } ], "update_team_suggestions": [ - 4246, + 4264, { "_inc": [ - 4242 + 4260 ], "_set": [ - 4251 + 4269 ], "where": [ - 4240, + 4258, "team_suggestions_bool_exp!" ] } ], "update_team_suggestions_by_pk": [ - 4236, + 4254, { "_inc": [ - 4242 + 4260 ], "_set": [ - 4251 + 4269 ], "pk_columns": [ - 4249, + 4267, "team_suggestions_pk_columns_input!" ] } ], "update_team_suggestions_many": [ - 4246, + 4264, { "updates": [ - 4259, + 4277, "[team_suggestions_updates!]!" ] } ], "update_teams": [ - 4280, + 4298, { "_inc": [ - 4274 + 4292 ], "_set": [ - 4286 + 4304 ], "where": [ - 4272, + 4290, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 4263, + 4281, { "_inc": [ - 4274 + 4292 ], "_set": [ - 4286 + 4304 ], "pk_columns": [ - 4284, + 4302, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 4280, + 4298, { "updates": [ - 4298, + 4316, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 4327, + 4345, { "_inc": [ - 4321 + 4339 ], "_set": [ - 4335 + 4353 ], "where": [ - 4319, + 4337, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 4308, + 4326, { "_inc": [ - 4321 + 4339 ], "_set": [ - 4335 + 4353 ], "pk_columns": [ - 4331, + 4349, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 4327, + 4345, { "updates": [ - 4347, + 4365, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 4371, + 4389, { "_inc": [ - 4365 + 4383 ], "_set": [ - 4376 + 4394 ], "where": [ - 4363, + 4381, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 4354, + 4372, { "_inc": [ - 4365 + 4383 ], "_set": [ - 4376 + 4394 ], "pk_columns": [ - 4374, + 4392, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 4371, + 4389, { "updates": [ - 4388, + 4406, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stage_windows": [ - 4412, + 4430, { "_inc": [ - 4406 + 4424 ], "_set": [ - 4417 + 4435 ], "where": [ - 4404, + 4422, "tournament_stage_windows_bool_exp!" ] } ], "update_tournament_stage_windows_by_pk": [ - 4395, + 4413, { "_inc": [ - 4406 + 4424 ], "_set": [ - 4417 + 4435 ], "pk_columns": [ - 4415, + 4433, "tournament_stage_windows_pk_columns_input!" ] } ], "update_tournament_stage_windows_many": [ - 4412, + 4430, { "updates": [ - 4429, + 4447, "[tournament_stage_windows_updates!]!" ] } ], "update_tournament_stages": [ - 4459, + 4477, { "_append": [ - 4444 + 4462 ], "_delete_at_path": [ - 4450 + 4468 ], "_delete_elem": [ - 4451 + 4469 ], "_delete_key": [ - 4452 + 4470 ], "_inc": [ - 4453 + 4471 ], "_prepend": [ - 4464 + 4482 ], "_set": [ - 4468 + 4486 ], "where": [ - 4448, + 4466, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 4436, + 4454, { "_append": [ - 4444 + 4462 ], "_delete_at_path": [ - 4450 + 4468 ], "_delete_elem": [ - 4451 + 4469 ], "_delete_key": [ - 4452 + 4470 ], "_inc": [ - 4453 + 4471 ], "_prepend": [ - 4464 + 4482 ], "_set": [ - 4468 + 4486 ], "pk_columns": [ - 4463, + 4481, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 4459, + 4477, { "updates": [ - 4480, + 4498, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 4504, + 4522, { "_inc": [ - 4498 + 4516 ], "_set": [ - 4509 + 4527 ], "where": [ - 4496, + 4514, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 4487, + 4505, { "_inc": [ - 4498 + 4516 ], "_set": [ - 4509 + 4527 ], "pk_columns": [ - 4507, + 4525, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 4504, + 4522, { "updates": [ - 4521, + 4539, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 4545, + 4563, { "_inc": [ - 4539 + 4557 ], "_set": [ - 4550 + 4568 ], "where": [ - 4537, + 4555, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 4528, + 4546, { "_inc": [ - 4539 + 4557 ], "_set": [ - 4550 + 4568 ], "pk_columns": [ - 4548, + 4566, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 4545, + 4563, { "updates": [ - 4562, + 4580, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 4586, + 4604, { "_inc": [ - 4580 + 4598 ], "_set": [ - 4592 + 4610 ], "where": [ - 4578, + 4596, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 4569, + 4587, { "_inc": [ - 4580 + 4598 ], "_set": [ - 4592 + 4610 ], "pk_columns": [ - 4590, + 4608, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 4586, + 4604, { "updates": [ - 4604, + 4622, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 4630, + 4648, { "_inc": [ - 4624 + 4642 ], "_set": [ - 4637 + 4655 ], "where": [ - 4622, + 4640, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 4611, + 4629, { "_inc": [ - 4624 + 4642 ], "_set": [ - 4637 + 4655 ], "pk_columns": [ - 4633, + 4651, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 4630, + 4648, { "updates": [ - 4649, + 4667, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 4673, + 4691, { "_inc": [ - 4667 + 4685 ], "_set": [ - 4679 + 4697 ], "where": [ - 4665, + 4683, "tournament_trophy_configs_bool_exp!" ] } ], "update_tournament_trophy_configs_by_pk": [ - 4656, + 4674, { "_inc": [ - 4667 + 4685 ], "_set": [ - 4679 + 4697 ], "pk_columns": [ - 4677, + 4695, "tournament_trophy_configs_pk_columns_input!" ] } ], "update_tournament_trophy_configs_many": [ - 4673, + 4691, { "updates": [ - 4691, + 4709, "[tournament_trophy_configs_updates!]!" ] } ], "update_tournaments": [ - 4717, + 4735, { "_inc": [ - 4711 + 4729 ], "_set": [ - 4725 + 4743 ], "where": [ - 4709, + 4727, "tournaments_bool_exp!" ] } ], "update_tournaments_by_pk": [ - 4698, + 4716, { "_inc": [ - 4711 + 4729 ], "_set": [ - 4725 + 4743 ], "pk_columns": [ - 4721, + 4739, "tournaments_pk_columns_input!" ] } ], "update_tournaments_many": [ - 4717, + 4735, { "updates": [ - 4737, + 4755, "[tournaments_updates!]!" ] } ], "update_v_match_captains": [ - 4919, + 4927, { "_inc": [ - 4915 + 4923 ], "_set": [ - 4923 + 4931 ], "where": [ - 4914, + 4922, "v_match_captains_bool_exp!" ] } ], "update_v_match_captains_many": [ - 4919, + 4927, { "updates": [ - 4930, + 4938, "[v_match_captains_updates!]!" ] } ], "update_v_match_map_backup_rounds": [ - 5030, + 5038, { "_inc": [ - 5026 + 5034 ], "_set": [ - 5033 + 5041 ], "where": [ - 5025, + 5033, "v_match_map_backup_rounds_bool_exp!" ] } ], "update_v_match_map_backup_rounds_many": [ - 5030, + 5038, { "updates": [ - 5040, + 5048, "[v_match_map_backup_rounds_updates!]!" ] } ], "update_v_player_match_map_hltv": [ - 5252, + 5260, { "_inc": [ - 5246 + 5254 ], "_set": [ - 5255 + 5263 ], "where": [ - 5245, + 5253, "v_player_match_map_hltv_bool_exp!" ] } ], "update_v_player_match_map_hltv_many": [ - 5252, + 5260, { "updates": [ - 5266, + 5274, "[v_player_match_map_hltv_updates!]!" ] } ], "update_v_pool_maps": [ - 5411, + 5419, { "_set": [ - 5416 + 5424 ], "where": [ - 5405, + 5413, "v_pool_maps_bool_exp!" ] } ], "update_v_pool_maps_many": [ - 5411, + 5419, { "updates": [ - 5419, + 5427, "[v_pool_maps_updates!]!" ] } ], "update_v_team_stage_results": [ - 5505, + 5513, { "_inc": [ - 5499 + 5507 ], "_set": [ - 5519 + 5527 ], "where": [ - 5497, + 5505, "v_team_stage_results_bool_exp!" ] } ], "update_v_team_stage_results_by_pk": [ - 5478, + 5486, { "_inc": [ - 5499 + 5507 ], "_set": [ - 5519 + 5527 ], "pk_columns": [ - 5509, + 5517, "v_team_stage_results_pk_columns_input!" ] } ], "update_v_team_stage_results_many": [ - 5505, + 5513, { "updates": [ - 5531, + 5539, "[v_team_stage_results_updates!]!" ] } @@ -153967,7 +154225,7 @@ export default { 81, { "game_server_node_id": [ - 4744, + 4762, "uuid!" ] } @@ -153976,10 +154234,10 @@ export default { 91, { "match_map_demo_id": [ - 4744 + 4762 ], "match_map_id": [ - 4744, + 4762, "uuid!" ] } @@ -154057,11 +154315,11 @@ export default { 92, { "map_id": [ - 4744, + 4762, "uuid!" ], "map_pool_id": [ - 4744, + 4762, "uuid!" ] } @@ -154130,7 +154388,7 @@ export default { 111, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -154199,7 +154457,7 @@ export default { 152, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -154268,7 +154526,7 @@ export default { 185, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -154337,7 +154595,7 @@ export default { 237, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -154406,7 +154664,7 @@ export default { 264, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -154475,7 +154733,7 @@ export default { 309, { "draft_game_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -154548,7 +154806,7 @@ export default { 354, { "id": [ - 4744, + 4762, "uuid!" ] } @@ -157398,11 +157656,84 @@ export default { ] } ], - "event_media": [ + "event_match_links": [ + 1240, + { + "distinct_on": [ + 1252, + "[event_match_links_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1250, + "[event_match_links_order_by!]" + ], + "where": [ + 1243 + ] + } + ], + "event_match_links_aggregate": [ + 1241, + { + "distinct_on": [ + 1252, + "[event_match_links_select_column!]" + ], + "limit": [ + 38 + ], + "offset": [ + 38 + ], + "order_by": [ + 1250, + "[event_match_links_order_by!]" + ], + "where": [ + 1243 + ] + } + ], + "event_match_links_by_pk": [ + 1240, + { + "event_id": [ + 4762, + "uuid!" + ], + "match_id": [ + 4762, + "uuid!" + ] + } + ], + "event_match_links_stream": [ 1240, + { + "batch_size": [ + 38, + "Int!" + ], + "cursor": [ + 1254, + "[event_match_links_stream_cursor_input]!" + ], + "where": [ + 1243 + ] + } + ], + "event_media": [ + 1258, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -157412,19 +157743,19 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], "event_media_aggregate": [ - 1241, + 1259, { "distinct_on": [ - 1303, + 1321, "[event_media_select_column!]" ], "limit": [ @@ -157434,28 +157765,28 @@ export default { 38 ], "order_by": [ - 1260, + 1278, "[event_media_order_by!]" ], "where": [ - 1249 + 1267 ] } ], "event_media_by_pk": [ - 1240, + 1258, { "id": [ - 4744, + 4762, "uuid!" ] } ], "event_media_players": [ - 1262, + 1280, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -157465,19 +157796,19 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "event_media_players_aggregate": [ - 1263, + 1281, { "distinct_on": [ - 1283, + 1301, "[event_media_players_select_column!]" ], "limit": [ @@ -157487,19 +157818,19 @@ export default { 38 ], "order_by": [ - 1281, + 1299, "[event_media_players_order_by!]" ], "where": [ - 1271 + 1289 ] } ], "event_media_players_by_pk": [ - 1262, + 1280, { "media_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -157509,42 +157840,42 @@ export default { } ], "event_media_players_stream": [ - 1262, + 1280, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1291, + 1309, "[event_media_players_stream_cursor_input]!" ], "where": [ - 1271 + 1289 ] } ], "event_media_stream": [ - 1240, + 1258, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1311, + 1329, "[event_media_stream_cursor_input]!" ], "where": [ - 1249 + 1267 ] } ], "event_organizers": [ - 1323, + 1341, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -157554,19 +157885,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "event_organizers_aggregate": [ - 1324, + 1342, { "distinct_on": [ - 1344, + 1362, "[event_organizers_select_column!]" ], "limit": [ @@ -157576,19 +157907,19 @@ export default { 38 ], "order_by": [ - 1342, + 1360, "[event_organizers_order_by!]" ], "where": [ - 1332 + 1350 ] } ], "event_organizers_by_pk": [ - 1323, + 1341, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -157598,26 +157929,26 @@ export default { } ], "event_organizers_stream": [ - 1323, + 1341, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1352, + 1370, "[event_organizers_stream_cursor_input]!" ], "where": [ - 1332 + 1350 ] } ], "event_players": [ - 1364, + 1382, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -157627,19 +157958,19 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "event_players_aggregate": [ - 1365, + 1383, { "distinct_on": [ - 1385, + 1403, "[event_players_select_column!]" ], "limit": [ @@ -157649,19 +157980,19 @@ export default { 38 ], "order_by": [ - 1383, + 1401, "[event_players_order_by!]" ], "where": [ - 1373 + 1391 ] } ], "event_players_by_pk": [ - 1364, + 1382, { "event_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -157671,26 +158002,26 @@ export default { } ], "event_players_stream": [ - 1364, + 1382, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1393, + 1411, "[event_players_stream_cursor_input]!" ], "where": [ - 1373 + 1391 ] } ], "event_teams": [ - 1405, + 1423, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -157700,19 +158031,19 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "event_teams_aggregate": [ - 1406, + 1424, { "distinct_on": [ - 1423, + 1441, "[event_teams_select_column!]" ], "limit": [ @@ -157722,48 +158053,48 @@ export default { 38 ], "order_by": [ - 1421, + 1439, "[event_teams_order_by!]" ], "where": [ - 1412 + 1430 ] } ], "event_teams_by_pk": [ - 1405, + 1423, { "event_id": [ - 4744, + 4762, "uuid!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "event_teams_stream": [ - 1405, + 1423, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1425, + 1443, "[event_teams_stream_cursor_input]!" ], "where": [ - 1412 + 1430 ] } ], "event_tournaments": [ - 1429, + 1447, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -157773,19 +158104,19 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], "event_tournaments_aggregate": [ - 1430, + 1448, { "distinct_on": [ - 1447, + 1465, "[event_tournaments_select_column!]" ], "limit": [ @@ -157795,48 +158126,48 @@ export default { 38 ], "order_by": [ - 1445, + 1463, "[event_tournaments_order_by!]" ], "where": [ - 1436 + 1454 ] } ], "event_tournaments_by_pk": [ - 1429, + 1447, { "event_id": [ - 4744, + 4762, "uuid!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "event_tournaments_stream": [ - 1429, + 1447, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1449, + 1467, "[event_tournaments_stream_cursor_input]!" ], "where": [ - 1436 + 1454 ] } ], "events": [ - 1453, + 1471, { "distinct_on": [ - 1468, + 1486, "[events_select_column!]" ], "limit": [ @@ -157846,19 +158177,19 @@ export default { 38 ], "order_by": [ - 1466, + 1484, "[events_order_by!]" ], "where": [ - 1457 + 1475 ] } ], "events_aggregate": [ - 1454, + 1472, { "distinct_on": [ - 1468, + 1486, "[events_select_column!]" ], "limit": [ @@ -157868,44 +158199,44 @@ export default { 38 ], "order_by": [ - 1466, + 1484, "[events_order_by!]" ], "where": [ - 1457 + 1475 ] } ], "events_by_pk": [ - 1453, + 1471, { "id": [ - 4744, + 4762, "uuid!" ] } ], "events_stream": [ - 1453, + 1471, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1473, + 1491, "[events_stream_cursor_input]!" ], "where": [ - 1457 + 1475 ] } ], "friends": [ - 1483, + 1501, { "distinct_on": [ - 1497, + 1515, "[friends_select_column!]" ], "limit": [ @@ -157915,19 +158246,19 @@ export default { 38 ], "order_by": [ - 1495, + 1513, "[friends_order_by!]" ], "where": [ - 1487 + 1505 ] } ], "friends_aggregate": [ - 1484, + 1502, { "distinct_on": [ - 1497, + 1515, "[friends_select_column!]" ], "limit": [ @@ -157937,16 +158268,16 @@ export default { 38 ], "order_by": [ - 1495, + 1513, "[friends_order_by!]" ], "where": [ - 1487 + 1505 ] } ], "friends_by_pk": [ - 1483, + 1501, { "other_player_steam_id": [ 180, @@ -157959,26 +158290,26 @@ export default { } ], "friends_stream": [ - 1483, + 1501, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1502, + 1520, "[friends_stream_cursor_input]!" ], "where": [ - 1487 + 1505 ] } ], "game_server_nodes": [ - 1510, + 1528, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -157988,19 +158319,19 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], "game_server_nodes_aggregate": [ - 1511, + 1529, { "distinct_on": [ - 1539, + 1557, "[game_server_nodes_select_column!]" ], "limit": [ @@ -158010,16 +158341,16 @@ export default { 38 ], "order_by": [ - 1536, + 1554, "[game_server_nodes_order_by!]" ], "where": [ - 1522 + 1540 ] } ], "game_server_nodes_by_pk": [ - 1510, + 1528, { "id": [ 78, @@ -158028,26 +158359,26 @@ export default { } ], "game_server_nodes_stream": [ - 1510, + 1528, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1549, + 1567, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 1522 + 1540 ] } ], "game_versions": [ - 1561, + 1579, { "distinct_on": [ - 1581, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -158057,19 +158388,19 @@ export default { 38 ], "order_by": [ - 1578, + 1596, "[game_versions_order_by!]" ], "where": [ - 1566 + 1584 ] } ], "game_versions_aggregate": [ - 1562, + 1580, { "distinct_on": [ - 1581, + 1599, "[game_versions_select_column!]" ], "limit": [ @@ -158079,16 +158410,16 @@ export default { 38 ], "order_by": [ - 1578, + 1596, "[game_versions_order_by!]" ], "where": [ - 1566 + 1584 ] } ], "game_versions_by_pk": [ - 1561, + 1579, { "build_id": [ 38, @@ -158097,26 +158428,26 @@ export default { } ], "game_versions_stream": [ - 1561, + 1579, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1586, + 1604, "[game_versions_stream_cursor_input]!" ], "where": [ - 1566 + 1584 ] } ], "gamedata_signature_validations": [ - 1594, + 1612, { "distinct_on": [ - 1613, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158126,19 +158457,19 @@ export default { 38 ], "order_by": [ - 1610, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1599 + 1617 ] } ], "gamedata_signature_validations_aggregate": [ - 1595, + 1613, { "distinct_on": [ - 1613, + 1631, "[gamedata_signature_validations_select_column!]" ], "limit": [ @@ -158148,48 +158479,48 @@ export default { 38 ], "order_by": [ - 1610, + 1628, "[gamedata_signature_validations_order_by!]" ], "where": [ - 1599 + 1617 ] } ], "gamedata_signature_validations_by_pk": [ - 1594, + 1612, { "id": [ - 4744, + 4762, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 1594, + 1612, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1618, + 1636, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 1599 + 1617 ] } ], "get_event_leaderboard": [ - 1637, + 1655, { "args": [ - 1626, + 1644, "get_event_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158199,23 +158530,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_event_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1626, + 1644, "get_event_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158225,23 +158556,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_leaderboard": [ - 1637, + 1655, { "args": [ - 1627, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158251,23 +158582,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1627, + 1645, "get_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158277,23 +158608,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_league_season_leaderboard": [ - 1637, + 1655, { "args": [ - 1628, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158303,23 +158634,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_league_season_leaderboard_aggregate": [ - 1638, + 1656, { "args": [ - 1628, + 1646, "get_league_season_leaderboard_args!" ], "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158329,23 +158660,23 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "get_player_leaderboard_rank": [ - 3204, + 3222, { "args": [ - 1629, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158355,23 +158686,23 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "get_player_leaderboard_rank_aggregate": [ - 3205, + 3223, { "args": [ - 1629, + 1647, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -158381,19 +158712,19 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "leaderboard_entries": [ - 1637, + 1655, { "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158403,19 +158734,19 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "leaderboard_entries_aggregate": [ - 1638, + 1656, { "distinct_on": [ - 1648, + 1666, "[leaderboard_entries_select_column!]" ], "limit": [ @@ -158425,35 +158756,35 @@ export default { 38 ], "order_by": [ - 1647, + 1665, "[leaderboard_entries_order_by!]" ], "where": [ - 1641 + 1659 ] } ], "leaderboard_entries_stream": [ - 1637, + 1655, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1653, + 1671, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 1641 + 1659 ] } ], "league_divisions": [ - 1661, + 1679, { "distinct_on": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -158463,19 +158794,19 @@ export default { 38 ], "order_by": [ - 1674, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1665 + 1683 ] } ], "league_divisions_aggregate": [ - 1662, + 1680, { "distinct_on": [ - 1676, + 1694, "[league_divisions_select_column!]" ], "limit": [ @@ -158485,44 +158816,44 @@ export default { 38 ], "order_by": [ - 1674, + 1692, "[league_divisions_order_by!]" ], "where": [ - 1665 + 1683 ] } ], "league_divisions_by_pk": [ - 1661, + 1679, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_divisions_stream": [ - 1661, + 1679, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1681, + 1699, "[league_divisions_stream_cursor_input]!" ], "where": [ - 1665 + 1683 ] } ], "league_match_weeks": [ - 1689, + 1707, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158532,19 +158863,19 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], "league_match_weeks_aggregate": [ - 1690, + 1708, { "distinct_on": [ - 1710, + 1728, "[league_match_weeks_select_column!]" ], "limit": [ @@ -158554,44 +158885,44 @@ export default { 38 ], "order_by": [ - 1708, + 1726, "[league_match_weeks_order_by!]" ], "where": [ - 1698 + 1716 ] } ], "league_match_weeks_by_pk": [ - 1689, + 1707, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_match_weeks_stream": [ - 1689, + 1707, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1718, + 1736, "[league_match_weeks_stream_cursor_input]!" ], "where": [ - 1698 + 1716 ] } ], "league_relegation_playoffs": [ - 1730, + 1748, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -158601,19 +158932,19 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], "league_relegation_playoffs_aggregate": [ - 1731, + 1749, { "distinct_on": [ - 1751, + 1769, "[league_relegation_playoffs_select_column!]" ], "limit": [ @@ -158623,44 +158954,44 @@ export default { 38 ], "order_by": [ - 1749, + 1767, "[league_relegation_playoffs_order_by!]" ], "where": [ - 1739 + 1757 ] } ], "league_relegation_playoffs_by_pk": [ - 1730, + 1748, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_relegation_playoffs_stream": [ - 1730, + 1748, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1759, + 1777, "[league_relegation_playoffs_stream_cursor_input]!" ], "where": [ - 1739 + 1757 ] } ], "league_scheduling_proposals": [ - 1771, + 1789, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -158670,19 +159001,19 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "league_scheduling_proposals_aggregate": [ - 1772, + 1790, { "distinct_on": [ - 1792, + 1810, "[league_scheduling_proposals_select_column!]" ], "limit": [ @@ -158692,44 +159023,44 @@ export default { 38 ], "order_by": [ - 1790, + 1808, "[league_scheduling_proposals_order_by!]" ], "where": [ - 1780 + 1798 ] } ], "league_scheduling_proposals_by_pk": [ - 1771, + 1789, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_scheduling_proposals_stream": [ - 1771, + 1789, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1800, + 1818, "[league_scheduling_proposals_stream_cursor_input]!" ], "where": [ - 1780 + 1798 ] } ], "league_season_divisions": [ - 1812, + 1830, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -158739,19 +159070,19 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "league_season_divisions_aggregate": [ - 1813, + 1831, { "distinct_on": [ - 1831, + 1849, "[league_season_divisions_select_column!]" ], "limit": [ @@ -158761,44 +159092,44 @@ export default { 38 ], "order_by": [ - 1829, + 1847, "[league_season_divisions_order_by!]" ], "where": [ - 1819 + 1837 ] } ], "league_season_divisions_by_pk": [ - 1812, + 1830, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_season_divisions_stream": [ - 1812, + 1830, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1833, + 1851, "[league_season_divisions_stream_cursor_input]!" ], "where": [ - 1819 + 1837 ] } ], "league_seasons": [ - 1837, + 1855, { "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -158808,19 +159139,19 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], "league_seasons_aggregate": [ - 1838, + 1856, { "distinct_on": [ - 1857, + 1875, "[league_seasons_select_column!]" ], "limit": [ @@ -158830,44 +159161,44 @@ export default { 38 ], "order_by": [ - 1854, + 1872, "[league_seasons_order_by!]" ], "where": [ - 1842 + 1860 ] } ], "league_seasons_by_pk": [ - 1837, + 1855, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_seasons_stream": [ - 1837, + 1855, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1862, + 1880, "[league_seasons_stream_cursor_input]!" ], "where": [ - 1842 + 1860 ] } ], "league_team_movements": [ - 1870, + 1888, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -158877,19 +159208,19 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "league_team_movements_aggregate": [ - 1871, + 1889, { "distinct_on": [ - 1891, + 1909, "[league_team_movements_select_column!]" ], "limit": [ @@ -158899,44 +159230,44 @@ export default { 38 ], "order_by": [ - 1889, + 1907, "[league_team_movements_order_by!]" ], "where": [ - 1879 + 1897 ] } ], "league_team_movements_by_pk": [ - 1870, + 1888, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_team_movements_stream": [ - 1870, + 1888, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1899, + 1917, "[league_team_movements_stream_cursor_input]!" ], "where": [ - 1879 + 1897 ] } ], "league_team_rosters": [ - 1911, + 1929, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -158946,19 +159277,19 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "league_team_rosters_aggregate": [ - 1912, + 1930, { "distinct_on": [ - 1932, + 1950, "[league_team_rosters_select_column!]" ], "limit": [ @@ -158968,19 +159299,19 @@ export default { 38 ], "order_by": [ - 1930, + 1948, "[league_team_rosters_order_by!]" ], "where": [ - 1920 + 1938 ] } ], "league_team_rosters_by_pk": [ - 1911, + 1929, { "league_team_season_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -158990,26 +159321,26 @@ export default { } ], "league_team_rosters_stream": [ - 1911, + 1929, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1940, + 1958, "[league_team_rosters_stream_cursor_input]!" ], "where": [ - 1920 + 1938 ] } ], "league_team_seasons": [ - 1952, + 1970, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159019,19 +159350,19 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "league_team_seasons_aggregate": [ - 1953, + 1971, { "distinct_on": [ - 1974, + 1992, "[league_team_seasons_select_column!]" ], "limit": [ @@ -159041,44 +159372,44 @@ export default { 38 ], "order_by": [ - 1972, + 1990, "[league_team_seasons_order_by!]" ], "where": [ - 1961 + 1979 ] } ], "league_team_seasons_by_pk": [ - 1952, + 1970, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_team_seasons_stream": [ - 1952, + 1970, { "batch_size": [ 38, "Int!" ], "cursor": [ - 1982, + 2000, "[league_team_seasons_stream_cursor_input]!" ], "where": [ - 1961 + 1979 ] } ], "league_teams": [ - 1994, + 2012, { "distinct_on": [ - 2007, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -159088,19 +159419,19 @@ export default { 38 ], "order_by": [ - 2005, + 2023, "[league_teams_order_by!]" ], "where": [ - 1997 + 2015 ] } ], "league_teams_aggregate": [ - 1995, + 2013, { "distinct_on": [ - 2007, + 2025, "[league_teams_select_column!]" ], "limit": [ @@ -159110,44 +159441,44 @@ export default { 38 ], "order_by": [ - 2005, + 2023, "[league_teams_order_by!]" ], "where": [ - 1997 + 2015 ] } ], "league_teams_by_pk": [ - 1994, + 2012, { "id": [ - 4744, + 4762, "uuid!" ] } ], "league_teams_stream": [ - 1994, + 2012, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2009, + 2027, "[league_teams_stream_cursor_input]!" ], "where": [ - 1997 + 2015 ] } ], "lobbies": [ - 2013, + 2031, { "distinct_on": [ - 2026, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -159157,19 +159488,19 @@ export default { 38 ], "order_by": [ - 2024, + 2042, "[lobbies_order_by!]" ], "where": [ - 2016 + 2034 ] } ], "lobbies_aggregate": [ - 2014, + 2032, { "distinct_on": [ - 2026, + 2044, "[lobbies_select_column!]" ], "limit": [ @@ -159179,44 +159510,44 @@ export default { 38 ], "order_by": [ - 2024, + 2042, "[lobbies_order_by!]" ], "where": [ - 2016 + 2034 ] } ], "lobbies_by_pk": [ - 2013, + 2031, { "id": [ - 4744, + 4762, "uuid!" ] } ], "lobbies_stream": [ - 2013, + 2031, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2028, + 2046, "[lobbies_stream_cursor_input]!" ], "where": [ - 2016 + 2034 ] } ], "lobby_players": [ - 2032, + 2050, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -159226,19 +159557,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "lobby_players_aggregate": [ - 2033, + 2051, { "distinct_on": [ - 2055, + 2073, "[lobby_players_select_column!]" ], "limit": [ @@ -159248,19 +159579,19 @@ export default { 38 ], "order_by": [ - 2053, + 2071, "[lobby_players_order_by!]" ], "where": [ - 2043 + 2061 ] } ], "lobby_players_by_pk": [ - 2032, + 2050, { "lobby_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -159270,26 +159601,26 @@ export default { } ], "lobby_players_stream": [ - 2032, + 2050, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2065, + 2083, "[lobby_players_stream_cursor_input]!" ], "where": [ - 2043 + 2061 ] } ], "map_pools": [ - 2077, + 2095, { "distinct_on": [ - 2090, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -159299,19 +159630,19 @@ export default { 38 ], "order_by": [ - 2088, + 2106, "[map_pools_order_by!]" ], "where": [ - 2080 + 2098 ] } ], "map_pools_aggregate": [ - 2078, + 2096, { "distinct_on": [ - 2090, + 2108, "[map_pools_select_column!]" ], "limit": [ @@ -159321,44 +159652,44 @@ export default { 38 ], "order_by": [ - 2088, + 2106, "[map_pools_order_by!]" ], "where": [ - 2080 + 2098 ] } ], "map_pools_by_pk": [ - 2077, + 2095, { "id": [ - 4744, + 4762, "uuid!" ] } ], "map_pools_stream": [ - 2077, + 2095, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2092, + 2110, "[map_pools_stream_cursor_input]!" ], "where": [ - 2080 + 2098 ] } ], "maps": [ - 2096, + 2114, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -159368,19 +159699,19 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], "maps_aggregate": [ - 2097, + 2115, { "distinct_on": [ - 2117, + 2135, "[maps_select_column!]" ], "limit": [ @@ -159390,44 +159721,44 @@ export default { 38 ], "order_by": [ - 2115, + 2133, "[maps_order_by!]" ], "where": [ - 2105 + 2123 ] } ], "maps_by_pk": [ - 2096, + 2114, { "id": [ - 4744, + 4762, "uuid!" ] } ], "maps_stream": [ - 2096, + 2114, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2121, + 2139, "[maps_stream_cursor_input]!" ], "where": [ - 2105 + 2123 ] } ], "match_clips": [ - 2125, + 2143, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -159437,19 +159768,19 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_aggregate": [ - 2126, + 2144, { "distinct_on": [ - 2147, + 2165, "[match_clips_select_column!]" ], "limit": [ @@ -159459,44 +159790,44 @@ export default { 38 ], "order_by": [ - 2145, + 2163, "[match_clips_order_by!]" ], "where": [ - 2134 + 2152 ] } ], "match_clips_by_pk": [ - 2125, + 2143, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_clips_stream": [ - 2125, + 2143, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2155, + 2173, "[match_clips_stream_cursor_input]!" ], "where": [ - 2134 + 2152 ] } ], "match_demo_sessions": [ - 2167, + 2185, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159506,19 +159837,19 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], "match_demo_sessions_aggregate": [ - 2168, + 2186, { "distinct_on": [ - 2193, + 2211, "[match_demo_sessions_select_column!]" ], "limit": [ @@ -159528,44 +159859,44 @@ export default { 38 ], "order_by": [ - 2190, + 2208, "[match_demo_sessions_order_by!]" ], "where": [ - 2177 + 2195 ] } ], "match_demo_sessions_by_pk": [ - 2167, + 2185, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_demo_sessions_stream": [ - 2167, + 2185, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2201, + 2219, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 2177 + 2195 ] } ], "match_lineup_players": [ - 2213, + 2231, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159575,19 +159906,19 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "match_lineup_players_aggregate": [ - 2214, + 2232, { "distinct_on": [ - 2236, + 2254, "[match_lineup_players_select_column!]" ], "limit": [ @@ -159597,44 +159928,44 @@ export default { 38 ], "order_by": [ - 2234, + 2252, "[match_lineup_players_order_by!]" ], "where": [ - 2224 + 2242 ] } ], "match_lineup_players_by_pk": [ - 2213, + 2231, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_lineup_players_stream": [ - 2213, + 2231, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2246, + 2264, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 2224 + 2242 ] } ], "match_lineups": [ - 2258, + 2276, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -159644,19 +159975,19 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "match_lineups_aggregate": [ - 2259, + 2277, { "distinct_on": [ - 2280, + 2298, "[match_lineups_select_column!]" ], "limit": [ @@ -159666,44 +159997,44 @@ export default { 38 ], "order_by": [ - 2278, + 2296, "[match_lineups_order_by!]" ], "where": [ - 2267 + 2285 ] } ], "match_lineups_by_pk": [ - 2258, + 2276, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_lineups_stream": [ - 2258, + 2276, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2288, + 2306, "[match_lineups_stream_cursor_input]!" ], "where": [ - 2267 + 2285 ] } ], "match_map_demos": [ - 2300, + 2318, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -159713,19 +160044,19 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "match_map_demos_aggregate": [ - 2301, + 2319, { "distinct_on": [ - 2329, + 2347, "[match_map_demos_select_column!]" ], "limit": [ @@ -159735,44 +160066,44 @@ export default { 38 ], "order_by": [ - 2326, + 2344, "[match_map_demos_order_by!]" ], "where": [ - 2312 + 2330 ] } ], "match_map_demos_by_pk": [ - 2300, + 2318, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_demos_stream": [ - 2300, + 2318, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2339, + 2357, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 2312 + 2330 ] } ], "match_map_rounds": [ - 2351, + 2369, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -159782,19 +160113,19 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "match_map_rounds_aggregate": [ - 2352, + 2370, { "distinct_on": [ - 2372, + 2390, "[match_map_rounds_select_column!]" ], "limit": [ @@ -159804,44 +160135,44 @@ export default { 38 ], "order_by": [ - 2370, + 2388, "[match_map_rounds_order_by!]" ], "where": [ - 2360 + 2378 ] } ], "match_map_rounds_by_pk": [ - 2351, + 2369, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_rounds_stream": [ - 2351, + 2369, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2380, + 2398, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 2360 + 2378 ] } ], "match_map_veto_picks": [ - 2392, + 2410, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -159851,19 +160182,19 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_map_veto_picks_aggregate": [ - 2393, + 2411, { "distinct_on": [ - 2410, + 2428, "[match_map_veto_picks_select_column!]" ], "limit": [ @@ -159873,44 +160204,44 @@ export default { 38 ], "order_by": [ - 2408, + 2426, "[match_map_veto_picks_order_by!]" ], "where": [ - 2399 + 2417 ] } ], "match_map_veto_picks_by_pk": [ - 2392, + 2410, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 2392, + 2410, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2412, + 2430, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 2399 + 2417 ] } ], "match_maps": [ - 2416, + 2434, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -159920,19 +160251,19 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_aggregate": [ - 2417, + 2435, { "distinct_on": [ - 2438, + 2456, "[match_maps_select_column!]" ], "limit": [ @@ -159942,44 +160273,44 @@ export default { 38 ], "order_by": [ - 2436, + 2454, "[match_maps_order_by!]" ], "where": [ - 2425 + 2443 ] } ], "match_maps_by_pk": [ - 2416, + 2434, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_maps_stream": [ - 2416, + 2434, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2446, + 2464, "[match_maps_stream_cursor_input]!" ], "where": [ - 2425 + 2443 ] } ], "match_options": [ - 2458, + 2476, { "distinct_on": [ - 2473, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -159989,19 +160320,19 @@ export default { 38 ], "order_by": [ - 2471, + 2489, "[match_options_order_by!]" ], "where": [ - 2462 + 2480 ] } ], "match_options_aggregate": [ - 2459, + 2477, { "distinct_on": [ - 2473, + 2491, "[match_options_select_column!]" ], "limit": [ @@ -160011,44 +160342,44 @@ export default { 38 ], "order_by": [ - 2471, + 2489, "[match_options_order_by!]" ], "where": [ - 2462 + 2480 ] } ], "match_options_by_pk": [ - 2458, + 2476, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_options_stream": [ - 2458, + 2476, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2478, + 2496, "[match_options_stream_cursor_input]!" ], "where": [ - 2462 + 2480 ] } ], "match_region_veto_picks": [ - 2486, + 2504, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160058,19 +160389,19 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], "match_region_veto_picks_aggregate": [ - 2487, + 2505, { "distinct_on": [ - 2504, + 2522, "[match_region_veto_picks_select_column!]" ], "limit": [ @@ -160080,44 +160411,44 @@ export default { 38 ], "order_by": [ - 2502, + 2520, "[match_region_veto_picks_order_by!]" ], "where": [ - 2493 + 2511 ] } ], "match_region_veto_picks_by_pk": [ - 2486, + 2504, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 2486, + 2504, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2506, + 2524, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 2493 + 2511 ] } ], "match_streams": [ - 2510, + 2528, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -160127,19 +160458,19 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "match_streams_aggregate": [ - 2511, + 2529, { "distinct_on": [ - 2538, + 2556, "[match_streams_select_column!]" ], "limit": [ @@ -160149,44 +160480,44 @@ export default { 38 ], "order_by": [ - 2535, + 2553, "[match_streams_order_by!]" ], "where": [ - 2522 + 2540 ] } ], "match_streams_by_pk": [ - 2510, + 2528, { "id": [ - 4744, + 4762, "uuid!" ] } ], "match_streams_stream": [ - 2510, + 2528, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2548, + 2566, "[match_streams_stream_cursor_input]!" ], "where": [ - 2522 + 2540 ] } ], "match_type_cfgs": [ - 2560, + 2578, { "distinct_on": [ - 2572, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160196,19 +160527,19 @@ export default { 38 ], "order_by": [ - 2570, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2563 + 2581 ] } ], "match_type_cfgs_aggregate": [ - 2561, + 2579, { "distinct_on": [ - 2572, + 2590, "[match_type_cfgs_select_column!]" ], "limit": [ @@ -160218,16 +160549,16 @@ export default { 38 ], "order_by": [ - 2570, + 2588, "[match_type_cfgs_order_by!]" ], "where": [ - 2563 + 2581 ] } ], "match_type_cfgs_by_pk": [ - 2560, + 2578, { "type": [ 591, @@ -160236,26 +160567,26 @@ export default { } ], "match_type_cfgs_stream": [ - 2560, + 2578, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2574, + 2592, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 2563 + 2581 ] } ], "matches": [ - 2578, + 2596, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -160265,19 +160596,19 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_aggregate": [ - 2579, + 2597, { "distinct_on": [ - 2600, + 2618, "[matches_select_column!]" ], "limit": [ @@ -160287,44 +160618,44 @@ export default { 38 ], "order_by": [ - 2598, + 2616, "[matches_order_by!]" ], "where": [ - 2587 + 2605 ] } ], "matches_by_pk": [ - 2578, + 2596, { "id": [ - 4744, + 4762, "uuid!" ] } ], "matches_stream": [ - 2578, + 2596, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2608, + 2626, "[matches_stream_cursor_input]!" ], "where": [ - 2587 + 2605 ] } ], "migration_hashes_hashes": [ - 2620, + 2638, { "distinct_on": [ - 2632, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160334,19 +160665,19 @@ export default { 38 ], "order_by": [ - 2630, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2623 + 2641 ] } ], "migration_hashes_hashes_aggregate": [ - 2621, + 2639, { "distinct_on": [ - 2632, + 2650, "[migration_hashes_hashes_select_column!]" ], "limit": [ @@ -160356,16 +160687,16 @@ export default { 38 ], "order_by": [ - 2630, + 2648, "[migration_hashes_hashes_order_by!]" ], "where": [ - 2623 + 2641 ] } ], "migration_hashes_hashes_by_pk": [ - 2620, + 2638, { "name": [ 78, @@ -160374,26 +160705,26 @@ export default { } ], "migration_hashes_hashes_stream": [ - 2620, + 2638, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2634, + 2652, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 2623 + 2641 ] } ], "my_friends": [ - 2638, + 2656, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -160403,19 +160734,19 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], "my_friends_aggregate": [ - 2639, + 2657, { "distinct_on": [ - 2663, + 2681, "[my_friends_select_column!]" ], "limit": [ @@ -160425,35 +160756,35 @@ export default { 38 ], "order_by": [ - 2661, + 2679, "[my_friends_order_by!]" ], "where": [ - 2650 + 2668 ] } ], "my_friends_stream": [ - 2638, + 2656, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2673, + 2691, "[my_friends_stream_cursor_input]!" ], "where": [ - 2650 + 2668 ] } ], "news_articles": [ - 2684, + 2702, { "distinct_on": [ - 2698, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -160463,19 +160794,19 @@ export default { 38 ], "order_by": [ - 2696, + 2714, "[news_articles_order_by!]" ], "where": [ - 2688 + 2706 ] } ], "news_articles_aggregate": [ - 2685, + 2703, { "distinct_on": [ - 2698, + 2716, "[news_articles_select_column!]" ], "limit": [ @@ -160485,44 +160816,44 @@ export default { 38 ], "order_by": [ - 2696, + 2714, "[news_articles_order_by!]" ], "where": [ - 2688 + 2706 ] } ], "news_articles_by_pk": [ - 2684, + 2702, { "id": [ - 4744, + 4762, "uuid!" ] } ], "news_articles_stream": [ - 2684, + 2702, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2703, + 2721, "[news_articles_stream_cursor_input]!" ], "where": [ - 2688 + 2706 ] } ], "notifications": [ - 2711, + 2729, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -160532,19 +160863,19 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "notifications_aggregate": [ - 2712, + 2730, { "distinct_on": [ - 2739, + 2757, "[notifications_select_column!]" ], "limit": [ @@ -160554,44 +160885,44 @@ export default { 38 ], "order_by": [ - 2736, + 2754, "[notifications_order_by!]" ], "where": [ - 2723 + 2741 ] } ], "notifications_by_pk": [ - 2711, + 2729, { "id": [ - 4744, + 4762, "uuid!" ] } ], "notifications_stream": [ - 2711, + 2729, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2749, + 2767, "[notifications_stream_cursor_input]!" ], "where": [ - 2723 + 2741 ] } ], "pending_match_import_players": [ - 2764, + 2782, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -160601,19 +160932,19 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "pending_match_import_players_aggregate": [ - 2765, + 2783, { "distinct_on": [ - 2785, + 2803, "[pending_match_import_players_select_column!]" ], "limit": [ @@ -160623,48 +160954,48 @@ export default { 38 ], "order_by": [ - 2783, + 2801, "[pending_match_import_players_order_by!]" ], "where": [ - 2773 + 2791 ] } ], "pending_match_import_players_by_pk": [ - 2764, + 2782, { "steam_id": [ 180, "bigint!" ], "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "pending_match_import_players_stream": [ - 2764, + 2782, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2793, + 2811, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 2773 + 2791 ] } ], "pending_match_imports": [ - 2805, + 2823, { "distinct_on": [ - 2820, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -160674,19 +161005,19 @@ export default { 38 ], "order_by": [ - 2818, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2809 + 2827 ] } ], "pending_match_imports_aggregate": [ - 2806, + 2824, { "distinct_on": [ - 2820, + 2838, "[pending_match_imports_select_column!]" ], "limit": [ @@ -160696,44 +161027,44 @@ export default { 38 ], "order_by": [ - 2818, + 2836, "[pending_match_imports_order_by!]" ], "where": [ - 2809 + 2827 ] } ], "pending_match_imports_by_pk": [ - 2805, + 2823, { "valve_match_id": [ - 2761, + 2779, "numeric!" ] } ], "pending_match_imports_stream": [ - 2805, + 2823, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2825, + 2843, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 2809 + 2827 ] } ], "player_aim_stats_demo": [ - 2833, + 2851, { "distinct_on": [ - 2847, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -160743,19 +161074,19 @@ export default { 38 ], "order_by": [ - 2845, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2837 + 2855 ] } ], "player_aim_stats_demo_aggregate": [ - 2834, + 2852, { "distinct_on": [ - 2847, + 2865, "[player_aim_stats_demo_select_column!]" ], "limit": [ @@ -160765,48 +161096,48 @@ export default { 38 ], "order_by": [ - 2845, + 2863, "[player_aim_stats_demo_order_by!]" ], "where": [ - 2837 + 2855 ] } ], "player_aim_stats_demo_by_pk": [ - 2833, + 2851, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 2833, + 2851, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2852, + 2870, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 2837 + 2855 ] } ], "player_aim_weapon_stats": [ - 2860, + 2878, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -160816,19 +161147,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "player_aim_weapon_stats_aggregate": [ - 2861, + 2879, { "distinct_on": [ - 2881, + 2899, "[player_aim_weapon_stats_select_column!]" ], "limit": [ @@ -160838,19 +161169,19 @@ export default { 38 ], "order_by": [ - 2879, + 2897, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 2869 + 2887 ] } ], "player_aim_weapon_stats_by_pk": [ - 2860, + 2878, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -160864,26 +161195,26 @@ export default { } ], "player_aim_weapon_stats_stream": [ - 2860, + 2878, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2889, + 2907, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 2869 + 2887 ] } ], "player_assists": [ - 2901, + 2919, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -160893,19 +161224,19 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_aggregate": [ - 2902, + 2920, { "distinct_on": [ - 2924, + 2942, "[player_assists_select_column!]" ], "limit": [ @@ -160915,16 +161246,16 @@ export default { 38 ], "order_by": [ - 2922, + 2940, "[player_assists_order_by!]" ], "where": [ - 2912 + 2930 ] } ], "player_assists_by_pk": [ - 2901, + 2919, { "attacked_steam_id": [ 180, @@ -160935,36 +161266,36 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_assists_stream": [ - 2901, + 2919, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2934, + 2952, "[player_assists_stream_cursor_input]!" ], "where": [ - 2912 + 2930 ] } ], "player_career_stats_v": [ - 2946, + 2964, { "distinct_on": [ - 2954, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -160974,19 +161305,19 @@ export default { 38 ], "order_by": [ - 2953, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2950 + 2968 ] } ], "player_career_stats_v_aggregate": [ - 2947, + 2965, { "distinct_on": [ - 2954, + 2972, "[player_career_stats_v_select_column!]" ], "limit": [ @@ -160996,35 +161327,35 @@ export default { 38 ], "order_by": [ - 2953, + 2971, "[player_career_stats_v_order_by!]" ], "where": [ - 2950 + 2968 ] } ], "player_career_stats_v_stream": [ - 2946, + 2964, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2958, + 2976, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 2950 + 2968 ] } ], "player_damages": [ - 2964, + 2982, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -161034,19 +161365,19 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_aggregate": [ - 2965, + 2983, { "distinct_on": [ - 2985, + 3003, "[player_damages_select_column!]" ], "limit": [ @@ -161056,52 +161387,52 @@ export default { 38 ], "order_by": [ - 2983, + 3001, "[player_damages_order_by!]" ], "where": [ - 2973 + 2991 ] } ], "player_damages_by_pk": [ - 2964, + 2982, { "id": [ - 4744, + 4762, "uuid!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_damages_stream": [ - 2964, + 2982, { "batch_size": [ 38, "Int!" ], "cursor": [ - 2993, + 3011, "[player_damages_stream_cursor_input]!" ], "where": [ - 2973 + 2991 ] } ], "player_elo": [ - 3005, + 3023, { "distinct_on": [ - 3019, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -161111,19 +161442,19 @@ export default { 38 ], "order_by": [ - 3017, + 3035, "[player_elo_order_by!]" ], "where": [ - 3009 + 3027 ] } ], "player_elo_aggregate": [ - 3006, + 3024, { "distinct_on": [ - 3019, + 3037, "[player_elo_select_column!]" ], "limit": [ @@ -161133,19 +161464,19 @@ export default { 38 ], "order_by": [ - 3017, + 3035, "[player_elo_order_by!]" ], "where": [ - 3009 + 3027 ] } ], "player_elo_by_pk": [ - 3005, + 3023, { "match_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -161159,26 +161490,26 @@ export default { } ], "player_elo_stream": [ - 3005, + 3023, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3024, + 3042, "[player_elo_stream_cursor_input]!" ], "where": [ - 3009 + 3027 ] } ], "player_faceit_rank_history": [ - 3032, + 3050, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161188,19 +161519,19 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], "player_faceit_rank_history_aggregate": [ - 3033, + 3051, { "distinct_on": [ - 3053, + 3071, "[player_faceit_rank_history_select_column!]" ], "limit": [ @@ -161210,44 +161541,44 @@ export default { 38 ], "order_by": [ - 3051, + 3069, "[player_faceit_rank_history_order_by!]" ], "where": [ - 3041 + 3059 ] } ], "player_faceit_rank_history_by_pk": [ - 3032, + 3050, { "id": [ - 4744, + 4762, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 3032, + 3050, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3061, + 3079, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 3041 + 3059 ] } ], "player_flashes": [ - 3073, + 3091, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -161257,19 +161588,19 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_flashes_aggregate": [ - 3074, + 3092, { "distinct_on": [ - 3096, + 3114, "[player_flashes_select_column!]" ], "limit": [ @@ -161279,16 +161610,16 @@ export default { 38 ], "order_by": [ - 3094, + 3112, "[player_flashes_order_by!]" ], "where": [ - 3084 + 3102 ] } ], "player_flashes_by_pk": [ - 3073, + 3091, { "attacked_steam_id": [ 180, @@ -161299,36 +161630,36 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_flashes_stream": [ - 3073, + 3091, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3106, + 3124, "[player_flashes_stream_cursor_input]!" ], "where": [ - 3084 + 3102 ] } ], "player_kills": [ - 3118, + 3136, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -161338,19 +161669,19 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_aggregate": [ - 3119, + 3137, { "distinct_on": [ - 3182, + 3200, "[player_kills_select_column!]" ], "limit": [ @@ -161360,16 +161691,16 @@ export default { 38 ], "order_by": [ - 3180, + 3198, "[player_kills_order_by!]" ], "where": [ - 3129 + 3147 ] } ], "player_kills_by_pk": [ - 3118, + 3136, { "attacked_steam_id": [ 180, @@ -161380,20 +161711,20 @@ export default { "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 3130, + 3148, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161403,19 +161734,19 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], "player_kills_by_weapon_aggregate": [ - 3131, + 3149, { "distinct_on": [ - 3151, + 3169, "[player_kills_by_weapon_select_column!]" ], "limit": [ @@ -161425,16 +161756,16 @@ export default { 38 ], "order_by": [ - 3149, + 3167, "[player_kills_by_weapon_order_by!]" ], "where": [ - 3139 + 3157 ] } ], "player_kills_by_weapon_by_pk": [ - 3130, + 3148, { "player_steam_id": [ 180, @@ -161447,42 +161778,42 @@ export default { } ], "player_kills_by_weapon_stream": [ - 3130, + 3148, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3159, + 3177, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 3139 + 3157 ] } ], "player_kills_stream": [ - 3118, + 3136, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3192, + 3210, "[player_kills_stream_cursor_input]!" ], "where": [ - 3129 + 3147 ] } ], "player_leaderboard_rank": [ - 3204, + 3222, { "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161492,19 +161823,19 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "player_leaderboard_rank_aggregate": [ - 3205, + 3223, { "distinct_on": [ - 3215, + 3233, "[player_leaderboard_rank_select_column!]" ], "limit": [ @@ -161514,35 +161845,35 @@ export default { 38 ], "order_by": [ - 3214, + 3232, "[player_leaderboard_rank_order_by!]" ], "where": [ - 3208 + 3226 ] } ], "player_leaderboard_rank_stream": [ - 3204, + 3222, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3220, + 3238, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 3208 + 3226 ] } ], "player_match_map_stats": [ - 3227, + 3245, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161552,19 +161883,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "player_match_map_stats_aggregate": [ - 3228, + 3246, { "distinct_on": [ - 3248, + 3266, "[player_match_map_stats_select_column!]" ], "limit": [ @@ -161574,19 +161905,19 @@ export default { 38 ], "order_by": [ - 3246, + 3264, "[player_match_map_stats_order_by!]" ], "where": [ - 3236 + 3254 ] } ], "player_match_map_stats_by_pk": [ - 3227, + 3245, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "steam_id": [ @@ -161596,26 +161927,26 @@ export default { } ], "player_match_map_stats_stream": [ - 3227, + 3245, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3256, + 3274, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 3236 + 3254 ] } ], "player_match_performance_v": [ - 3268, + 3286, { "distinct_on": [ - 3276, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -161625,19 +161956,19 @@ export default { 38 ], "order_by": [ - 3275, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 3272 + 3290 ] } ], "player_match_performance_v_aggregate": [ - 3269, + 3287, { "distinct_on": [ - 3276, + 3294, "[player_match_performance_v_select_column!]" ], "limit": [ @@ -161647,35 +161978,35 @@ export default { 38 ], "order_by": [ - 3275, + 3293, "[player_match_performance_v_order_by!]" ], "where": [ - 3272 + 3290 ] } ], "player_match_performance_v_stream": [ - 3268, + 3286, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3280, + 3298, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 3272 + 3290 ] } ], "player_match_stats_v": [ - 3286, + 3304, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -161685,19 +162016,19 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "player_match_stats_v_aggregate": [ - 3287, + 3305, { "distinct_on": [ - 3302, + 3320, "[player_match_stats_v_select_column!]" ], "limit": [ @@ -161707,35 +162038,35 @@ export default { 38 ], "order_by": [ - 3301, + 3319, "[player_match_stats_v_order_by!]" ], "where": [ - 3295 + 3313 ] } ], "player_match_stats_v_stream": [ - 3286, + 3304, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3309, + 3327, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 3295 + 3313 ] } ], "player_objectives": [ - 3319, + 3337, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -161745,19 +162076,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_aggregate": [ - 3320, + 3338, { "distinct_on": [ - 3340, + 3358, "[player_objectives_select_column!]" ], "limit": [ @@ -161767,19 +162098,19 @@ export default { 38 ], "order_by": [ - 3338, + 3356, "[player_objectives_order_by!]" ], "where": [ - 3328 + 3346 ] } ], "player_objectives_by_pk": [ - 3319, + 3337, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -161787,32 +162118,32 @@ export default { "bigint!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_objectives_stream": [ - 3319, + 3337, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3348, + 3366, "[player_objectives_stream_cursor_input]!" ], "where": [ - 3328 + 3346 ] } ], "player_performance_v": [ - 3360, + 3378, { "distinct_on": [ - 3368, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -161822,19 +162153,19 @@ export default { 38 ], "order_by": [ - 3367, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3364 + 3382 ] } ], "player_performance_v_aggregate": [ - 3361, + 3379, { "distinct_on": [ - 3368, + 3386, "[player_performance_v_select_column!]" ], "limit": [ @@ -161844,35 +162175,35 @@ export default { 38 ], "order_by": [ - 3367, + 3385, "[player_performance_v_order_by!]" ], "where": [ - 3364 + 3382 ] } ], "player_performance_v_stream": [ - 3360, + 3378, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3372, + 3390, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 3364 + 3382 ] } ], "player_premier_rank_history": [ - 3378, + 3396, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -161882,19 +162213,19 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "player_premier_rank_history_aggregate": [ - 3379, + 3397, { "distinct_on": [ - 3399, + 3417, "[player_premier_rank_history_select_column!]" ], "limit": [ @@ -161904,44 +162235,44 @@ export default { 38 ], "order_by": [ - 3397, + 3415, "[player_premier_rank_history_order_by!]" ], "where": [ - 3387 + 3405 ] } ], "player_premier_rank_history_by_pk": [ - 3378, + 3396, { "id": [ - 4744, + 4762, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 3378, + 3396, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3407, + 3425, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 3387 + 3405 ] } ], "player_sanctions": [ - 3419, + 3437, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -161951,19 +162282,19 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "player_sanctions_aggregate": [ - 3420, + 3438, { "distinct_on": [ - 3440, + 3458, "[player_sanctions_select_column!]" ], "limit": [ @@ -161973,48 +162304,48 @@ export default { 38 ], "order_by": [ - 3438, + 3456, "[player_sanctions_order_by!]" ], "where": [ - 3428 + 3446 ] } ], "player_sanctions_by_pk": [ - 3419, + 3437, { "created_at": [ - 4306, + 4324, "timestamptz!" ], "id": [ - 4744, + 4762, "uuid!" ] } ], "player_sanctions_stream": [ - 3419, + 3437, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3448, + 3466, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 3428 + 3446 ] } ], "player_season_stats": [ - 3460, + 3478, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -162024,19 +162355,19 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "player_season_stats_aggregate": [ - 3461, + 3479, { "distinct_on": [ - 3491, + 3509, "[player_season_stats_select_column!]" ], "limit": [ @@ -162046,48 +162377,48 @@ export default { 38 ], "order_by": [ - 3489, + 3507, "[player_season_stats_order_by!]" ], "where": [ - 3479 + 3497 ] } ], "player_season_stats_by_pk": [ - 3460, + 3478, { "player_steam_id": [ 180, "bigint!" ], "season_id": [ - 4744, + 4762, "uuid!" ] } ], "player_season_stats_stream": [ - 3460, + 3478, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3507, + 3525, "[player_season_stats_stream_cursor_input]!" ], "where": [ - 3479 + 3497 ] } ], "player_stats": [ - 3519, + 3537, { "distinct_on": [ - 3534, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -162097,19 +162428,19 @@ export default { 38 ], "order_by": [ - 3532, + 3550, "[player_stats_order_by!]" ], "where": [ - 3523 + 3541 ] } ], "player_stats_aggregate": [ - 3520, + 3538, { "distinct_on": [ - 3534, + 3552, "[player_stats_select_column!]" ], "limit": [ @@ -162119,16 +162450,16 @@ export default { 38 ], "order_by": [ - 3532, + 3550, "[player_stats_order_by!]" ], "where": [ - 3523 + 3541 ] } ], "player_stats_by_pk": [ - 3519, + 3537, { "player_steam_id": [ 180, @@ -162137,26 +162468,26 @@ export default { } ], "player_stats_stream": [ - 3519, + 3537, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3539, + 3557, "[player_stats_stream_cursor_input]!" ], "where": [ - 3523 + 3541 ] } ], "player_steam_bot_friend": [ - 3547, + 3565, { "distinct_on": [ - 3566, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162166,19 +162497,19 @@ export default { 38 ], "order_by": [ - 3563, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3552 + 3570 ] } ], "player_steam_bot_friend_aggregate": [ - 3548, + 3566, { "distinct_on": [ - 3566, + 3584, "[player_steam_bot_friend_select_column!]" ], "limit": [ @@ -162188,16 +162519,16 @@ export default { 38 ], "order_by": [ - 3563, + 3581, "[player_steam_bot_friend_order_by!]" ], "where": [ - 3552 + 3570 ] } ], "player_steam_bot_friend_by_pk": [ - 3547, + 3565, { "steam_id": [ 180, @@ -162206,26 +162537,26 @@ export default { } ], "player_steam_bot_friend_stream": [ - 3547, + 3565, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3571, + 3589, "[player_steam_bot_friend_stream_cursor_input]!" ], "where": [ - 3552 + 3570 ] } ], "player_steam_match_auth": [ - 3579, + 3597, { "distinct_on": [ - 3593, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162235,19 +162566,19 @@ export default { 38 ], "order_by": [ - 3591, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3583 + 3601 ] } ], "player_steam_match_auth_aggregate": [ - 3580, + 3598, { "distinct_on": [ - 3593, + 3611, "[player_steam_match_auth_select_column!]" ], "limit": [ @@ -162257,16 +162588,16 @@ export default { 38 ], "order_by": [ - 3591, + 3609, "[player_steam_match_auth_order_by!]" ], "where": [ - 3583 + 3601 ] } ], "player_steam_match_auth_by_pk": [ - 3579, + 3597, { "steam_id": [ 180, @@ -162275,26 +162606,26 @@ export default { } ], "player_steam_match_auth_stream": [ - 3579, + 3597, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3598, + 3616, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 3583 + 3601 ] } ], "player_unused_utility": [ - 3606, + 3624, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162304,19 +162635,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utility_aggregate": [ - 3607, + 3625, { "distinct_on": [ - 3627, + 3645, "[player_unused_utility_select_column!]" ], "limit": [ @@ -162326,19 +162657,19 @@ export default { 38 ], "order_by": [ - 3625, + 3643, "[player_unused_utility_order_by!]" ], "where": [ - 3615 + 3633 ] } ], "player_unused_utility_by_pk": [ - 3606, + 3624, { "match_map_id": [ - 4744, + 4762, "uuid!" ], "player_steam_id": [ @@ -162348,26 +162679,26 @@ export default { } ], "player_unused_utility_stream": [ - 3606, + 3624, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3635, + 3653, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 3615 + 3633 ] } ], "player_utility": [ - 3647, + 3665, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -162377,19 +162708,19 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utility_aggregate": [ - 3648, + 3666, { "distinct_on": [ - 3668, + 3686, "[player_utility_select_column!]" ], "limit": [ @@ -162399,52 +162730,52 @@ export default { 38 ], "order_by": [ - 3666, + 3684, "[player_utility_order_by!]" ], "where": [ - 3656 + 3674 ] } ], "player_utility_by_pk": [ - 3647, + 3665, { "attacker_steam_id": [ 180, "bigint!" ], "match_map_id": [ - 4744, + 4762, "uuid!" ], "time": [ - 4306, + 4324, "timestamptz!" ] } ], "player_utility_stream": [ - 3647, + 3665, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3676, + 3694, "[player_utility_stream_cursor_input]!" ], "where": [ - 3656 + 3674 ] } ], "player_weapon_stats_v": [ - 3688, + 3706, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162454,19 +162785,19 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], "player_weapon_stats_v_aggregate": [ - 3689, + 3707, { "distinct_on": [ - 3704, + 3722, "[player_weapon_stats_v_select_column!]" ], "limit": [ @@ -162476,35 +162807,35 @@ export default { 38 ], "order_by": [ - 3703, + 3721, "[player_weapon_stats_v_order_by!]" ], "where": [ - 3697 + 3715 ] } ], "player_weapon_stats_v_stream": [ - 3688, + 3706, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3711, + 3729, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 3697 + 3715 ] } ], "players": [ - 3721, + 3739, { "distinct_on": [ - 3736, + 3754, "[players_select_column!]" ], "limit": [ @@ -162514,19 +162845,19 @@ export default { 38 ], "order_by": [ - 3734, + 3752, "[players_order_by!]" ], "where": [ - 3725 + 3743 ] } ], "players_aggregate": [ - 3722, + 3740, { "distinct_on": [ - 3736, + 3754, "[players_select_column!]" ], "limit": [ @@ -162536,16 +162867,16 @@ export default { 38 ], "order_by": [ - 3734, + 3752, "[players_order_by!]" ], "where": [ - 3725 + 3743 ] } ], "players_by_pk": [ - 3721, + 3739, { "steam_id": [ 180, @@ -162554,26 +162885,26 @@ export default { } ], "players_stream": [ - 3721, + 3739, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3741, + 3759, "[players_stream_cursor_input]!" ], "where": [ - 3725 + 3743 ] } ], "plugin_versions": [ - 3749, + 3767, { "distinct_on": [ - 3763, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -162583,19 +162914,19 @@ export default { 38 ], "order_by": [ - 3761, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3753 + 3771 ] } ], "plugin_versions_aggregate": [ - 3750, + 3768, { "distinct_on": [ - 3763, + 3781, "[plugin_versions_select_column!]" ], "limit": [ @@ -162605,16 +162936,16 @@ export default { 38 ], "order_by": [ - 3761, + 3779, "[plugin_versions_order_by!]" ], "where": [ - 3753 + 3771 ] } ], "plugin_versions_by_pk": [ - 3749, + 3767, { "runtime": [ 941, @@ -162627,26 +162958,26 @@ export default { } ], "plugin_versions_stream": [ - 3749, + 3767, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3768, + 3786, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 3753 + 3771 ] } ], "seasons": [ - 3780, + 3798, { "distinct_on": [ - 3795, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -162656,19 +162987,19 @@ export default { 38 ], "order_by": [ - 3793, + 3811, "[seasons_order_by!]" ], "where": [ - 3784 + 3802 ] } ], "seasons_aggregate": [ - 3781, + 3799, { "distinct_on": [ - 3795, + 3813, "[seasons_select_column!]" ], "limit": [ @@ -162678,44 +163009,44 @@ export default { 38 ], "order_by": [ - 3793, + 3811, "[seasons_order_by!]" ], "where": [ - 3784 + 3802 ] } ], "seasons_by_pk": [ - 3780, + 3798, { "id": [ - 4744, + 4762, "uuid!" ] } ], "seasons_stream": [ - 3780, + 3798, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3800, + 3818, "[seasons_stream_cursor_input]!" ], "where": [ - 3784 + 3802 ] } ], "server_regions": [ - 3808, + 3826, { "distinct_on": [ - 3822, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -162725,19 +163056,19 @@ export default { 38 ], "order_by": [ - 3820, + 3838, "[server_regions_order_by!]" ], "where": [ - 3812 + 3830 ] } ], "server_regions_aggregate": [ - 3809, + 3827, { "distinct_on": [ - 3822, + 3840, "[server_regions_select_column!]" ], "limit": [ @@ -162747,16 +163078,16 @@ export default { 38 ], "order_by": [ - 3820, + 3838, "[server_regions_order_by!]" ], "where": [ - 3812 + 3830 ] } ], "server_regions_by_pk": [ - 3808, + 3826, { "value": [ 78, @@ -162765,26 +163096,26 @@ export default { } ], "server_regions_stream": [ - 3808, + 3826, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3827, + 3845, "[server_regions_stream_cursor_input]!" ], "where": [ - 3812 + 3830 ] } ], "servers": [ - 3835, + 3853, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -162794,19 +163125,19 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_aggregate": [ - 3836, + 3854, { "distinct_on": [ - 3859, + 3877, "[servers_select_column!]" ], "limit": [ @@ -162816,44 +163147,44 @@ export default { 38 ], "order_by": [ - 3857, + 3875, "[servers_order_by!]" ], "where": [ - 3846 + 3864 ] } ], "servers_by_pk": [ - 3835, + 3853, { "id": [ - 4744, + 4762, "uuid!" ] } ], "servers_stream": [ - 3835, + 3853, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3869, + 3887, "[servers_stream_cursor_input]!" ], "where": [ - 3846 + 3864 ] } ], "settings": [ - 3881, + 3899, { "distinct_on": [ - 3893, + 3911, "[settings_select_column!]" ], "limit": [ @@ -162863,19 +163194,19 @@ export default { 38 ], "order_by": [ - 3891, + 3909, "[settings_order_by!]" ], "where": [ - 3884 + 3902 ] } ], "settings_aggregate": [ - 3882, + 3900, { "distinct_on": [ - 3893, + 3911, "[settings_select_column!]" ], "limit": [ @@ -162885,16 +163216,16 @@ export default { 38 ], "order_by": [ - 3891, + 3909, "[settings_order_by!]" ], "where": [ - 3884 + 3902 ] } ], "settings_by_pk": [ - 3881, + 3899, { "name": [ 78, @@ -162903,26 +163234,26 @@ export default { } ], "settings_stream": [ - 3881, + 3899, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3895, + 3913, "[settings_stream_cursor_input]!" ], "where": [ - 3884 + 3902 ] } ], "steam_account_claims": [ - 3901, + 3919, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -162932,19 +163263,19 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "steam_account_claims_aggregate": [ - 3902, + 3920, { "distinct_on": [ - 3919, + 3937, "[steam_account_claims_select_column!]" ], "limit": [ @@ -162954,44 +163285,44 @@ export default { 38 ], "order_by": [ - 3917, + 3935, "[steam_account_claims_order_by!]" ], "where": [ - 3908 + 3926 ] } ], "steam_account_claims_by_pk": [ - 3901, + 3919, { "id": [ - 4744, + 4762, "uuid!" ] } ], "steam_account_claims_stream": [ - 3901, + 3919, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3921, + 3939, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 3908 + 3926 ] } ], "steam_accounts": [ - 3925, + 3943, { "distinct_on": [ - 3940, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -163001,19 +163332,19 @@ export default { 38 ], "order_by": [ - 3938, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3929 + 3947 ] } ], "steam_accounts_aggregate": [ - 3926, + 3944, { "distinct_on": [ - 3940, + 3958, "[steam_accounts_select_column!]" ], "limit": [ @@ -163023,44 +163354,44 @@ export default { 38 ], "order_by": [ - 3938, + 3956, "[steam_accounts_order_by!]" ], "where": [ - 3929 + 3947 ] } ], "steam_accounts_by_pk": [ - 3925, + 3943, { "id": [ - 4744, + 4762, "uuid!" ] } ], "steam_accounts_stream": [ - 3925, + 3943, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3945, + 3963, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 3929 + 3947 ] } ], "system_alerts": [ - 3953, + 3971, { "distinct_on": [ - 3967, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -163070,19 +163401,19 @@ export default { 38 ], "order_by": [ - 3965, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3957 + 3975 ] } ], "system_alerts_aggregate": [ - 3954, + 3972, { "distinct_on": [ - 3967, + 3985, "[system_alerts_select_column!]" ], "limit": [ @@ -163092,44 +163423,44 @@ export default { 38 ], "order_by": [ - 3965, + 3983, "[system_alerts_order_by!]" ], "where": [ - 3957 + 3975 ] } ], "system_alerts_by_pk": [ - 3953, + 3971, { "id": [ - 4744, + 4762, "uuid!" ] } ], "system_alerts_stream": [ - 3953, + 3971, { "batch_size": [ 38, "Int!" ], "cursor": [ - 3972, + 3990, "[system_alerts_stream_cursor_input]!" ], "where": [ - 3957 + 3975 ] } ], "team_invites": [ - 3980, + 3998, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -163139,19 +163470,19 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_invites_aggregate": [ - 3981, + 3999, { "distinct_on": [ - 4001, + 4019, "[team_invites_select_column!]" ], "limit": [ @@ -163161,44 +163492,44 @@ export default { 38 ], "order_by": [ - 3999, + 4017, "[team_invites_order_by!]" ], "where": [ - 3989 + 4007 ] } ], "team_invites_by_pk": [ - 3980, + 3998, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_invites_stream": [ - 3980, + 3998, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4009, + 4027, "[team_invites_stream_cursor_input]!" ], "where": [ - 3989 + 4007 ] } ], "team_roster": [ - 4021, + 4039, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -163208,19 +163539,19 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_roster_aggregate": [ - 4022, + 4040, { "distinct_on": [ - 4044, + 4062, "[team_roster_select_column!]" ], "limit": [ @@ -163230,48 +163561,48 @@ export default { 38 ], "order_by": [ - 4042, + 4060, "[team_roster_order_by!]" ], "where": [ - 4032 + 4050 ] } ], "team_roster_by_pk": [ - 4021, + 4039, { "player_steam_id": [ 180, "bigint!" ], "team_id": [ - 4744, + 4762, "uuid!" ] } ], "team_roster_stream": [ - 4021, + 4039, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4054, + 4072, "[team_roster_stream_cursor_input]!" ], "where": [ - 4032 + 4050 ] } ], "team_scrim_alerts": [ - 4066, + 4084, { "distinct_on": [ - 4080, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163281,19 +163612,19 @@ export default { 38 ], "order_by": [ - 4078, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 4070 + 4088 ] } ], "team_scrim_alerts_aggregate": [ - 4067, + 4085, { "distinct_on": [ - 4080, + 4098, "[team_scrim_alerts_select_column!]" ], "limit": [ @@ -163303,44 +163634,44 @@ export default { 38 ], "order_by": [ - 4078, + 4096, "[team_scrim_alerts_order_by!]" ], "where": [ - 4070 + 4088 ] } ], "team_scrim_alerts_by_pk": [ - 4066, + 4084, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_alerts_stream": [ - 4066, + 4084, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4085, + 4103, "[team_scrim_alerts_stream_cursor_input]!" ], "where": [ - 4070 + 4088 ] } ], "team_scrim_availability": [ - 4093, + 4111, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163350,19 +163681,19 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "team_scrim_availability_aggregate": [ - 4094, + 4112, { "distinct_on": [ - 4113, + 4131, "[team_scrim_availability_select_column!]" ], "limit": [ @@ -163372,44 +163703,44 @@ export default { 38 ], "order_by": [ - 4111, + 4129, "[team_scrim_availability_order_by!]" ], "where": [ - 4102 + 4120 ] } ], "team_scrim_availability_by_pk": [ - 4093, + 4111, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_availability_stream": [ - 4093, + 4111, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4117, + 4135, "[team_scrim_availability_stream_cursor_input]!" ], "where": [ - 4102 + 4120 ] } ], "team_scrim_request_proposals": [ - 4121, + 4139, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163419,19 +163750,19 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "team_scrim_request_proposals_aggregate": [ - 4122, + 4140, { "distinct_on": [ - 4142, + 4160, "[team_scrim_request_proposals_select_column!]" ], "limit": [ @@ -163441,44 +163772,44 @@ export default { 38 ], "order_by": [ - 4140, + 4158, "[team_scrim_request_proposals_order_by!]" ], "where": [ - 4130 + 4148 ] } ], "team_scrim_request_proposals_by_pk": [ - 4121, + 4139, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_request_proposals_stream": [ - 4121, + 4139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4150, + 4168, "[team_scrim_request_proposals_stream_cursor_input]!" ], "where": [ - 4130 + 4148 ] } ], "team_scrim_requests": [ - 4162, + 4180, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163488,19 +163819,19 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], "team_scrim_requests_aggregate": [ - 4163, + 4181, { "distinct_on": [ - 4186, + 4204, "[team_scrim_requests_select_column!]" ], "limit": [ @@ -163510,44 +163841,44 @@ export default { 38 ], "order_by": [ - 4184, + 4202, "[team_scrim_requests_order_by!]" ], "where": [ - 4173 + 4191 ] } ], "team_scrim_requests_by_pk": [ - 4162, + 4180, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_requests_stream": [ - 4162, + 4180, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4196, + 4214, "[team_scrim_requests_stream_cursor_input]!" ], "where": [ - 4173 + 4191 ] } ], "team_scrim_settings": [ - 4208, + 4226, { "distinct_on": [ - 4223, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163557,19 +163888,19 @@ export default { 38 ], "order_by": [ - 4221, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 4212 + 4230 ] } ], "team_scrim_settings_aggregate": [ - 4209, + 4227, { "distinct_on": [ - 4223, + 4241, "[team_scrim_settings_select_column!]" ], "limit": [ @@ -163579,44 +163910,44 @@ export default { 38 ], "order_by": [ - 4221, + 4239, "[team_scrim_settings_order_by!]" ], "where": [ - 4212 + 4230 ] } ], "team_scrim_settings_by_pk": [ - 4208, + 4226, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_scrim_settings_stream": [ - 4208, + 4226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4228, + 4246, "[team_scrim_settings_stream_cursor_input]!" ], "where": [ - 4212 + 4230 ] } ], "team_suggestions": [ - 4236, + 4254, { "distinct_on": [ - 4250, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -163626,19 +163957,19 @@ export default { 38 ], "order_by": [ - 4248, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 4240 + 4258 ] } ], "team_suggestions_aggregate": [ - 4237, + 4255, { "distinct_on": [ - 4250, + 4268, "[team_suggestions_select_column!]" ], "limit": [ @@ -163648,44 +163979,44 @@ export default { 38 ], "order_by": [ - 4248, + 4266, "[team_suggestions_order_by!]" ], "where": [ - 4240 + 4258 ] } ], "team_suggestions_by_pk": [ - 4236, + 4254, { "id": [ - 4744, + 4762, "uuid!" ] } ], "team_suggestions_stream": [ - 4236, + 4254, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4255, + 4273, "[team_suggestions_stream_cursor_input]!" ], "where": [ - 4240 + 4258 ] } ], "teams": [ - 4263, + 4281, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -163695,19 +164026,19 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "teams_aggregate": [ - 4264, + 4282, { "distinct_on": [ - 4285, + 4303, "[teams_select_column!]" ], "limit": [ @@ -163717,44 +164048,44 @@ export default { 38 ], "order_by": [ - 4283, + 4301, "[teams_order_by!]" ], "where": [ - 4272 + 4290 ] } ], "teams_by_pk": [ - 4263, + 4281, { "id": [ - 4744, + 4762, "uuid!" ] } ], "teams_stream": [ - 4263, + 4281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4293, + 4311, "[teams_stream_cursor_input]!" ], "where": [ - 4272 + 4290 ] } ], "tournament_brackets": [ - 4308, + 4326, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -163764,19 +164095,19 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "tournament_brackets_aggregate": [ - 4309, + 4327, { "distinct_on": [ - 4332, + 4350, "[tournament_brackets_select_column!]" ], "limit": [ @@ -163786,44 +164117,44 @@ export default { 38 ], "order_by": [ - 4330, + 4348, "[tournament_brackets_order_by!]" ], "where": [ - 4319 + 4337 ] } ], "tournament_brackets_by_pk": [ - 4308, + 4326, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_brackets_stream": [ - 4308, + 4326, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4342, + 4360, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 4319 + 4337 ] } ], "tournament_organizers": [ - 4354, + 4372, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -163833,19 +164164,19 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_organizers_aggregate": [ - 4355, + 4373, { "distinct_on": [ - 4375, + 4393, "[tournament_organizers_select_column!]" ], "limit": [ @@ -163855,48 +164186,48 @@ export default { 38 ], "order_by": [ - 4373, + 4391, "[tournament_organizers_order_by!]" ], "where": [ - 4363 + 4381 ] } ], "tournament_organizers_by_pk": [ - 4354, + 4372, { "steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_organizers_stream": [ - 4354, + 4372, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4383, + 4401, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 4363 + 4381 ] } ], "tournament_stage_windows": [ - 4395, + 4413, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -163906,19 +164237,19 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], "tournament_stage_windows_aggregate": [ - 4396, + 4414, { "distinct_on": [ - 4416, + 4434, "[tournament_stage_windows_select_column!]" ], "limit": [ @@ -163928,44 +164259,44 @@ export default { 38 ], "order_by": [ - 4414, + 4432, "[tournament_stage_windows_order_by!]" ], "where": [ - 4404 + 4422 ] } ], "tournament_stage_windows_by_pk": [ - 4395, + 4413, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_stage_windows_stream": [ - 4395, + 4413, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4424, + 4442, "[tournament_stage_windows_stream_cursor_input]!" ], "where": [ - 4404 + 4422 ] } ], "tournament_stages": [ - 4436, + 4454, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -163975,19 +164306,19 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "tournament_stages_aggregate": [ - 4437, + 4455, { "distinct_on": [ - 4465, + 4483, "[tournament_stages_select_column!]" ], "limit": [ @@ -163997,44 +164328,44 @@ export default { 38 ], "order_by": [ - 4462, + 4480, "[tournament_stages_order_by!]" ], "where": [ - 4448 + 4466 ] } ], "tournament_stages_by_pk": [ - 4436, + 4454, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_stages_stream": [ - 4436, + 4454, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4475, + 4493, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 4448 + 4466 ] } ], "tournament_team_invites": [ - 4487, + 4505, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164044,19 +164375,19 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], "tournament_team_invites_aggregate": [ - 4488, + 4506, { "distinct_on": [ - 4508, + 4526, "[tournament_team_invites_select_column!]" ], "limit": [ @@ -164066,44 +164397,44 @@ export default { 38 ], "order_by": [ - 4506, + 4524, "[tournament_team_invites_order_by!]" ], "where": [ - 4496 + 4514 ] } ], "tournament_team_invites_by_pk": [ - 4487, + 4505, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_team_invites_stream": [ - 4487, + 4505, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4516, + 4534, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 4496 + 4514 ] } ], "tournament_team_roster": [ - 4528, + 4546, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164113,19 +164444,19 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_team_roster_aggregate": [ - 4529, + 4547, { "distinct_on": [ - 4549, + 4567, "[tournament_team_roster_select_column!]" ], "limit": [ @@ -164135,48 +164466,48 @@ export default { 38 ], "order_by": [ - 4547, + 4565, "[tournament_team_roster_order_by!]" ], "where": [ - 4537 + 4555 ] } ], "tournament_team_roster_by_pk": [ - 4528, + 4546, { "player_steam_id": [ 180, "bigint!" ], "tournament_id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_team_roster_stream": [ - 4528, + 4546, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4557, + 4575, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 4537 + 4555 ] } ], "tournament_teams": [ - 4569, + 4587, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -164186,19 +164517,19 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "tournament_teams_aggregate": [ - 4570, + 4588, { "distinct_on": [ - 4591, + 4609, "[tournament_teams_select_column!]" ], "limit": [ @@ -164208,44 +164539,44 @@ export default { 38 ], "order_by": [ - 4589, + 4607, "[tournament_teams_order_by!]" ], "where": [ - 4578 + 4596 ] } ], "tournament_teams_by_pk": [ - 4569, + 4587, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_teams_stream": [ - 4569, + 4587, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4599, + 4617, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 4578 + 4596 ] } ], "tournament_trophies": [ - 4611, + 4629, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164255,19 +164586,19 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophies_aggregate": [ - 4612, + 4630, { "distinct_on": [ - 4634, + 4652, "[tournament_trophies_select_column!]" ], "limit": [ @@ -164277,44 +164608,44 @@ export default { 38 ], "order_by": [ - 4632, + 4650, "[tournament_trophies_order_by!]" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophies_by_pk": [ - 4611, + 4629, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_trophies_stream": [ - 4611, + 4629, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4644, + 4662, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 4622 + 4640 ] } ], "tournament_trophy_configs": [ - 4656, + 4674, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164324,19 +164655,19 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], "tournament_trophy_configs_aggregate": [ - 4657, + 4675, { "distinct_on": [ - 4678, + 4696, "[tournament_trophy_configs_select_column!]" ], "limit": [ @@ -164346,44 +164677,44 @@ export default { 38 ], "order_by": [ - 4676, + 4694, "[tournament_trophy_configs_order_by!]" ], "where": [ - 4665 + 4683 ] } ], "tournament_trophy_configs_by_pk": [ - 4656, + 4674, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 4656, + 4674, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4686, + 4704, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 4665 + 4683 ] } ], "tournaments": [ - 4698, + 4716, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -164393,19 +164724,19 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_aggregate": [ - 4699, + 4717, { "distinct_on": [ - 4722, + 4740, "[tournaments_select_column!]" ], "limit": [ @@ -164415,104 +164746,44 @@ export default { 38 ], "order_by": [ - 4720, + 4738, "[tournaments_order_by!]" ], "where": [ - 4709 + 4727 ] } ], "tournaments_by_pk": [ - 4698, + 4716, { "id": [ - 4744, + 4762, "uuid!" ] } ], "tournaments_stream": [ - 4698, + 4716, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4732, + 4750, "[tournaments_stream_cursor_input]!" ], "where": [ - 4709 - ] - } - ], - "v_event_matches": [ - 4747, - { - "distinct_on": [ - 4754, - "[v_event_matches_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4753, - "[v_event_matches_order_by!]" - ], - "where": [ - 4750 - ] - } - ], - "v_event_matches_aggregate": [ - 4748, - { - "distinct_on": [ - 4754, - "[v_event_matches_select_column!]" - ], - "limit": [ - 38 - ], - "offset": [ - 38 - ], - "order_by": [ - 4753, - "[v_event_matches_order_by!]" - ], - "where": [ - 4750 - ] - } - ], - "v_event_matches_stream": [ - 4747, - { - "batch_size": [ - 38, - "Int!" - ], - "cursor": [ - 4755, - "[v_event_matches_stream_cursor_input]!" - ], - "where": [ - 4750 + 4727 ] } ], "v_event_player_stats": [ - 4757, + 4765, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -164522,19 +164793,19 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "v_event_player_stats_aggregate": [ - 4758, + 4766, { "distinct_on": [ - 4783, + 4791, "[v_event_player_stats_select_column!]" ], "limit": [ @@ -164544,35 +164815,35 @@ export default { 38 ], "order_by": [ - 4782, + 4790, "[v_event_player_stats_order_by!]" ], "where": [ - 4776 + 4784 ] } ], "v_event_player_stats_stream": [ - 4757, + 4765, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4798, + 4806, "[v_event_player_stats_stream_cursor_input]!" ], "where": [ - 4776 + 4784 ] } ], "v_gpu_pool_status": [ - 4808, + 4816, { "distinct_on": [ - 4816, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164582,19 +164853,19 @@ export default { 38 ], "order_by": [ - 4815, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4812 + 4820 ] } ], "v_gpu_pool_status_aggregate": [ - 4809, + 4817, { "distinct_on": [ - 4816, + 4824, "[v_gpu_pool_status_select_column!]" ], "limit": [ @@ -164604,35 +164875,35 @@ export default { 38 ], "order_by": [ - 4815, + 4823, "[v_gpu_pool_status_order_by!]" ], "where": [ - 4812 + 4820 ] } ], "v_gpu_pool_status_stream": [ - 4808, + 4816, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4820, + 4828, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 4812 + 4820 ] } ], "v_league_division_standings": [ - 4826, + 4834, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -164642,19 +164913,19 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "v_league_division_standings_aggregate": [ - 4827, + 4835, { "distinct_on": [ - 4842, + 4850, "[v_league_division_standings_select_column!]" ], "limit": [ @@ -164664,35 +164935,35 @@ export default { 38 ], "order_by": [ - 4841, + 4849, "[v_league_division_standings_order_by!]" ], "where": [ - 4835 + 4843 ] } ], "v_league_division_standings_stream": [ - 4826, + 4834, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4849, + 4857, "[v_league_division_standings_stream_cursor_input]!" ], "where": [ - 4835 + 4843 ] } ], "v_league_season_player_stats": [ - 4859, + 4867, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -164702,19 +164973,19 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], "v_league_season_player_stats_aggregate": [ - 4860, + 4868, { "distinct_on": [ - 4885, + 4893, "[v_league_season_player_stats_select_column!]" ], "limit": [ @@ -164724,35 +164995,35 @@ export default { 38 ], "order_by": [ - 4884, + 4892, "[v_league_season_player_stats_order_by!]" ], "where": [ - 4878 + 4886 ] } ], "v_league_season_player_stats_stream": [ - 4859, + 4867, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4900, + 4908, "[v_league_season_player_stats_stream_cursor_input]!" ], "where": [ - 4878 + 4886 ] } ], "v_match_captains": [ - 4910, + 4918, { "distinct_on": [ - 4922, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -164762,19 +165033,19 @@ export default { 38 ], "order_by": [ - 4921, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4914 + 4922 ] } ], "v_match_captains_aggregate": [ - 4911, + 4919, { "distinct_on": [ - 4922, + 4930, "[v_match_captains_select_column!]" ], "limit": [ @@ -164784,35 +165055,35 @@ export default { 38 ], "order_by": [ - 4921, + 4929, "[v_match_captains_order_by!]" ], "where": [ - 4914 + 4922 ] } ], "v_match_captains_stream": [ - 4910, + 4918, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4927, + 4935, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 4914 + 4922 ] } ], "v_match_clutches": [ - 4934, + 4942, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -164822,19 +165093,19 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], "v_match_clutches_aggregate": [ - 4935, + 4943, { "distinct_on": [ - 4950, + 4958, "[v_match_clutches_select_column!]" ], "limit": [ @@ -164844,35 +165115,35 @@ export default { 38 ], "order_by": [ - 4949, + 4957, "[v_match_clutches_order_by!]" ], "where": [ - 4943 + 4951 ] } ], "v_match_clutches_stream": [ - 4934, + 4942, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4957, + 4965, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 4943 + 4951 ] } ], "v_match_kill_pairs": [ - 4967, + 4975, { "distinct_on": [ - 4975, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -164882,19 +165153,19 @@ export default { 38 ], "order_by": [ - 4974, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4971 + 4979 ] } ], "v_match_kill_pairs_aggregate": [ - 4968, + 4976, { "distinct_on": [ - 4975, + 4983, "[v_match_kill_pairs_select_column!]" ], "limit": [ @@ -164904,35 +165175,35 @@ export default { 38 ], "order_by": [ - 4974, + 4982, "[v_match_kill_pairs_order_by!]" ], "where": [ - 4971 + 4979 ] } ], "v_match_kill_pairs_stream": [ - 4967, + 4975, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4979, + 4987, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 4971 + 4979 ] } ], "v_match_lineup_buy_types": [ - 4985, + 4993, { "distinct_on": [ - 4993, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -164942,19 +165213,19 @@ export default { 38 ], "order_by": [ - 4992, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4989 + 4997 ] } ], "v_match_lineup_buy_types_aggregate": [ - 4986, + 4994, { "distinct_on": [ - 4993, + 5001, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ @@ -164964,35 +165235,35 @@ export default { 38 ], "order_by": [ - 4992, + 5000, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 4989 + 4997 ] } ], "v_match_lineup_buy_types_stream": [ - 4985, + 4993, { "batch_size": [ 38, "Int!" ], "cursor": [ - 4997, + 5005, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 4989 + 4997 ] } ], "v_match_lineup_map_stats": [ - 5003, + 5011, { "distinct_on": [ - 5011, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165002,19 +165273,19 @@ export default { 38 ], "order_by": [ - 5010, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5007 + 5015 ] } ], "v_match_lineup_map_stats_aggregate": [ - 5004, + 5012, { "distinct_on": [ - 5011, + 5019, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ @@ -165024,35 +165295,35 @@ export default { 38 ], "order_by": [ - 5010, + 5018, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 5007 + 5015 ] } ], "v_match_lineup_map_stats_stream": [ - 5003, + 5011, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5015, + 5023, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 5007 + 5015 ] } ], "v_match_map_backup_rounds": [ - 5021, + 5029, { "distinct_on": [ - 5032, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165062,19 +165333,19 @@ export default { 38 ], "order_by": [ - 5031, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5025 + 5033 ] } ], "v_match_map_backup_rounds_aggregate": [ - 5022, + 5030, { "distinct_on": [ - 5032, + 5040, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ @@ -165084,35 +165355,35 @@ export default { 38 ], "order_by": [ - 5031, + 5039, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 5025 + 5033 ] } ], "v_match_map_backup_rounds_stream": [ - 5021, + 5029, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5037, + 5045, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 5025 + 5033 ] } ], "v_match_player_buy_types": [ - 5044, + 5052, { "distinct_on": [ - 5052, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165122,19 +165393,19 @@ export default { 38 ], "order_by": [ - 5051, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5048 + 5056 ] } ], "v_match_player_buy_types_aggregate": [ - 5045, + 5053, { "distinct_on": [ - 5052, + 5060, "[v_match_player_buy_types_select_column!]" ], "limit": [ @@ -165144,35 +165415,35 @@ export default { 38 ], "order_by": [ - 5051, + 5059, "[v_match_player_buy_types_order_by!]" ], "where": [ - 5048 + 5056 ] } ], "v_match_player_buy_types_stream": [ - 5044, + 5052, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5056, + 5064, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 5048 + 5056 ] } ], "v_match_player_opening_duels": [ - 5062, + 5070, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165182,19 +165453,19 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "v_match_player_opening_duels_aggregate": [ - 5063, + 5071, { "distinct_on": [ - 5078, + 5086, "[v_match_player_opening_duels_select_column!]" ], "limit": [ @@ -165204,35 +165475,35 @@ export default { 38 ], "order_by": [ - 5077, + 5085, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 5071 + 5079 ] } ], "v_match_player_opening_duels_stream": [ - 5062, + 5070, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5085, + 5093, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 5071 + 5079 ] } ], "v_player_arch_nemesis": [ - 5095, + 5103, { "distinct_on": [ - 5103, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165242,19 +165513,19 @@ export default { 38 ], "order_by": [ - 5102, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5099 + 5107 ] } ], "v_player_arch_nemesis_aggregate": [ - 5096, + 5104, { "distinct_on": [ - 5103, + 5111, "[v_player_arch_nemesis_select_column!]" ], "limit": [ @@ -165264,35 +165535,35 @@ export default { 38 ], "order_by": [ - 5102, + 5110, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 5099 + 5107 ] } ], "v_player_arch_nemesis_stream": [ - 5095, + 5103, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5107, + 5115, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 5099 + 5107 ] } ], "v_player_damage": [ - 5113, + 5121, { "distinct_on": [ - 5121, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -165302,19 +165573,19 @@ export default { 38 ], "order_by": [ - 5120, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 5117 + 5125 ] } ], "v_player_damage_aggregate": [ - 5114, + 5122, { "distinct_on": [ - 5121, + 5129, "[v_player_damage_select_column!]" ], "limit": [ @@ -165324,35 +165595,35 @@ export default { 38 ], "order_by": [ - 5120, + 5128, "[v_player_damage_order_by!]" ], "where": [ - 5117 + 5125 ] } ], "v_player_damage_stream": [ - 5113, + 5121, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5125, + 5133, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 5117 + 5125 ] } ], "v_player_elo": [ - 5131, + 5139, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -165362,19 +165633,19 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "v_player_elo_aggregate": [ - 5132, + 5140, { "distinct_on": [ - 5157, + 5165, "[v_player_elo_select_column!]" ], "limit": [ @@ -165384,35 +165655,35 @@ export default { 38 ], "order_by": [ - 5156, + 5164, "[v_player_elo_order_by!]" ], "where": [ - 5150 + 5158 ] } ], "v_player_elo_stream": [ - 5131, + 5139, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5172, + 5180, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 5150 + 5158 ] } ], "v_player_map_losses": [ - 5182, + 5190, { "distinct_on": [ - 5190, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165422,19 +165693,19 @@ export default { 38 ], "order_by": [ - 5189, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 5186 + 5194 ] } ], "v_player_map_losses_aggregate": [ - 5183, + 5191, { "distinct_on": [ - 5190, + 5198, "[v_player_map_losses_select_column!]" ], "limit": [ @@ -165444,35 +165715,35 @@ export default { 38 ], "order_by": [ - 5189, + 5197, "[v_player_map_losses_order_by!]" ], "where": [ - 5186 + 5194 ] } ], "v_player_map_losses_stream": [ - 5182, + 5190, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5194, + 5202, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 5186 + 5194 ] } ], "v_player_map_wins": [ - 5200, + 5208, { "distinct_on": [ - 5208, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165482,19 +165753,19 @@ export default { 38 ], "order_by": [ - 5207, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 5204 + 5212 ] } ], "v_player_map_wins_aggregate": [ - 5201, + 5209, { "distinct_on": [ - 5208, + 5216, "[v_player_map_wins_select_column!]" ], "limit": [ @@ -165504,35 +165775,35 @@ export default { 38 ], "order_by": [ - 5207, + 5215, "[v_player_map_wins_order_by!]" ], "where": [ - 5204 + 5212 ] } ], "v_player_map_wins_stream": [ - 5200, + 5208, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5212, + 5220, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 5204 + 5212 ] } ], "v_player_match_head_to_head": [ - 5218, + 5226, { "distinct_on": [ - 5226, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165542,19 +165813,19 @@ export default { 38 ], "order_by": [ - 5225, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5222 + 5230 ] } ], "v_player_match_head_to_head_aggregate": [ - 5219, + 5227, { "distinct_on": [ - 5226, + 5234, "[v_player_match_head_to_head_select_column!]" ], "limit": [ @@ -165564,35 +165835,35 @@ export default { 38 ], "order_by": [ - 5225, + 5233, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 5222 + 5230 ] } ], "v_player_match_head_to_head_stream": [ - 5218, + 5226, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5230, + 5238, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 5222 + 5230 ] } ], "v_player_match_map_hltv": [ - 5236, + 5244, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165602,19 +165873,19 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "v_player_match_map_hltv_aggregate": [ - 5237, + 5245, { "distinct_on": [ - 5254, + 5262, "[v_player_match_map_hltv_select_column!]" ], "limit": [ @@ -165624,35 +165895,35 @@ export default { 38 ], "order_by": [ - 5253, + 5261, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 5245 + 5253 ] } ], "v_player_match_map_hltv_stream": [ - 5236, + 5244, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5262, + 5270, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 5245 + 5253 ] } ], "v_player_match_map_roles": [ - 5273, + 5281, { "distinct_on": [ - 5281, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -165662,19 +165933,19 @@ export default { 38 ], "order_by": [ - 5280, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5277 + 5285 ] } ], "v_player_match_map_roles_aggregate": [ - 5274, + 5282, { "distinct_on": [ - 5281, + 5289, "[v_player_match_map_roles_select_column!]" ], "limit": [ @@ -165684,35 +165955,35 @@ export default { 38 ], "order_by": [ - 5280, + 5288, "[v_player_match_map_roles_order_by!]" ], "where": [ - 5277 + 5285 ] } ], "v_player_match_map_roles_stream": [ - 5273, + 5281, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5285, + 5293, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 5277 + 5285 ] } ], "v_player_match_performance": [ - 5291, + 5299, { "distinct_on": [ - 5299, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -165722,19 +165993,19 @@ export default { 38 ], "order_by": [ - 5298, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 5295 + 5303 ] } ], "v_player_match_performance_aggregate": [ - 5292, + 5300, { "distinct_on": [ - 5299, + 5307, "[v_player_match_performance_select_column!]" ], "limit": [ @@ -165744,35 +166015,35 @@ export default { 38 ], "order_by": [ - 5298, + 5306, "[v_player_match_performance_order_by!]" ], "where": [ - 5295 + 5303 ] } ], "v_player_match_performance_stream": [ - 5291, + 5299, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5303, + 5311, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 5295 + 5303 ] } ], "v_player_match_rating": [ - 5309, + 5317, { "distinct_on": [ - 5317, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -165782,19 +166053,19 @@ export default { 38 ], "order_by": [ - 5316, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 5313 + 5321 ] } ], "v_player_match_rating_aggregate": [ - 5310, + 5318, { "distinct_on": [ - 5317, + 5325, "[v_player_match_rating_select_column!]" ], "limit": [ @@ -165804,35 +166075,35 @@ export default { 38 ], "order_by": [ - 5316, + 5324, "[v_player_match_rating_order_by!]" ], "where": [ - 5313 + 5321 ] } ], "v_player_match_rating_stream": [ - 5309, + 5317, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5321, + 5329, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 5313 + 5321 ] } ], "v_player_multi_kills": [ - 5327, + 5335, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -165842,19 +166113,19 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], "v_player_multi_kills_aggregate": [ - 5328, + 5336, { "distinct_on": [ - 5343, + 5351, "[v_player_multi_kills_select_column!]" ], "limit": [ @@ -165864,35 +166135,35 @@ export default { 38 ], "order_by": [ - 5342, + 5350, "[v_player_multi_kills_order_by!]" ], "where": [ - 5336 + 5344 ] } ], "v_player_multi_kills_stream": [ - 5327, + 5335, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5350, + 5358, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 5336 + 5344 ] } ], "v_player_weapon_damage": [ - 5360, + 5368, { "distinct_on": [ - 5368, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -165902,19 +166173,19 @@ export default { 38 ], "order_by": [ - 5367, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5364 + 5372 ] } ], "v_player_weapon_damage_aggregate": [ - 5361, + 5369, { "distinct_on": [ - 5368, + 5376, "[v_player_weapon_damage_select_column!]" ], "limit": [ @@ -165924,35 +166195,35 @@ export default { 38 ], "order_by": [ - 5367, + 5375, "[v_player_weapon_damage_order_by!]" ], "where": [ - 5364 + 5372 ] } ], "v_player_weapon_damage_stream": [ - 5360, + 5368, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5372, + 5380, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 5364 + 5372 ] } ], "v_player_weapon_kills": [ - 5378, + 5386, { "distinct_on": [ - 5386, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -165962,19 +166233,19 @@ export default { 38 ], "order_by": [ - 5385, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5382 + 5390 ] } ], "v_player_weapon_kills_aggregate": [ - 5379, + 5387, { "distinct_on": [ - 5386, + 5394, "[v_player_weapon_kills_select_column!]" ], "limit": [ @@ -165984,35 +166255,35 @@ export default { 38 ], "order_by": [ - 5385, + 5393, "[v_player_weapon_kills_order_by!]" ], "where": [ - 5382 + 5390 ] } ], "v_player_weapon_kills_stream": [ - 5378, + 5386, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5390, + 5398, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 5382 + 5390 ] } ], "v_pool_maps": [ - 5396, + 5404, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166022,19 +166293,19 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], "v_pool_maps_aggregate": [ - 5397, + 5405, { "distinct_on": [ - 5413, + 5421, "[v_pool_maps_select_column!]" ], "limit": [ @@ -166044,35 +166315,35 @@ export default { 38 ], "order_by": [ - 5412, + 5420, "[v_pool_maps_order_by!]" ], "where": [ - 5405 + 5413 ] } ], "v_pool_maps_stream": [ - 5396, + 5404, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5417, + 5425, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 5405 + 5413 ] } ], "v_steam_account_pool_status": [ - 5420, + 5428, { "distinct_on": [ - 5428, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166082,19 +166353,19 @@ export default { 38 ], "order_by": [ - 5427, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5424 + 5432 ] } ], "v_steam_account_pool_status_aggregate": [ - 5421, + 5429, { "distinct_on": [ - 5428, + 5436, "[v_steam_account_pool_status_select_column!]" ], "limit": [ @@ -166104,35 +166375,35 @@ export default { 38 ], "order_by": [ - 5427, + 5435, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 5424 + 5432 ] } ], "v_steam_account_pool_status_stream": [ - 5420, + 5428, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5432, + 5440, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 5424 + 5432 ] } ], "v_team_ranks": [ - 5438, + 5446, { "distinct_on": [ - 5448, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166142,19 +166413,19 @@ export default { 38 ], "order_by": [ - 5447, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5442 + 5450 ] } ], "v_team_ranks_aggregate": [ - 5439, + 5447, { "distinct_on": [ - 5448, + 5456, "[v_team_ranks_select_column!]" ], "limit": [ @@ -166164,35 +166435,35 @@ export default { 38 ], "order_by": [ - 5447, + 5455, "[v_team_ranks_order_by!]" ], "where": [ - 5442 + 5450 ] } ], "v_team_ranks_stream": [ - 5438, + 5446, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5452, + 5460, "[v_team_ranks_stream_cursor_input]!" ], "where": [ - 5442 + 5450 ] } ], "v_team_reputation": [ - 5458, + 5466, { "distinct_on": [ - 5468, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166202,19 +166473,19 @@ export default { 38 ], "order_by": [ - 5467, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5462 + 5470 ] } ], "v_team_reputation_aggregate": [ - 5459, + 5467, { "distinct_on": [ - 5468, + 5476, "[v_team_reputation_select_column!]" ], "limit": [ @@ -166224,35 +166495,35 @@ export default { 38 ], "order_by": [ - 5467, + 5475, "[v_team_reputation_order_by!]" ], "where": [ - 5462 + 5470 ] } ], "v_team_reputation_stream": [ - 5458, + 5466, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5472, + 5480, "[v_team_reputation_stream_cursor_input]!" ], "where": [ - 5462 + 5470 ] } ], "v_team_stage_results": [ - 5478, + 5486, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166262,19 +166533,19 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "v_team_stage_results_aggregate": [ - 5479, + 5487, { "distinct_on": [ - 5510, + 5518, "[v_team_stage_results_select_column!]" ], "limit": [ @@ -166284,48 +166555,48 @@ export default { 38 ], "order_by": [ - 5508, + 5516, "[v_team_stage_results_order_by!]" ], "where": [ - 5497 + 5505 ] } ], "v_team_stage_results_by_pk": [ - 5478, + 5486, { "tournament_stage_id": [ - 4744, + 4762, "uuid!" ], "tournament_team_id": [ - 4744, + 4762, "uuid!" ] } ], "v_team_stage_results_stream": [ - 5478, + 5486, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5526, + 5534, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 5497 + 5505 ] } ], "v_team_tournament_results": [ - 5538, + 5546, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166335,19 +166606,19 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "v_team_tournament_results_aggregate": [ - 5539, + 5547, { "distinct_on": [ - 5564, + 5572, "[v_team_tournament_results_select_column!]" ], "limit": [ @@ -166357,35 +166628,35 @@ export default { 38 ], "order_by": [ - 5563, + 5571, "[v_team_tournament_results_order_by!]" ], "where": [ - 5557 + 5565 ] } ], "v_team_tournament_results_stream": [ - 5538, + 5546, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5579, + 5587, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 5557 + 5565 ] } ], "v_tournament_player_stats": [ - 5589, + 5597, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166395,19 +166666,19 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], "v_tournament_player_stats_aggregate": [ - 5590, + 5598, { "distinct_on": [ - 5615, + 5623, "[v_tournament_player_stats_select_column!]" ], "limit": [ @@ -166417,27 +166688,27 @@ export default { 38 ], "order_by": [ - 5614, + 5622, "[v_tournament_player_stats_order_by!]" ], "where": [ - 5608 + 5616 ] } ], "v_tournament_player_stats_stream": [ - 5589, + 5597, { "batch_size": [ 38, "Int!" ], "cursor": [ - 5630, + 5638, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 5608 + 5616 ] } ], From ed0288097c4e602f59b150d11eae6bfe5d205061 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 11:01:57 -0400 Subject: [PATCH 05/11] wip --- .../default/1867000000300_events/down.sql | 36 ----- .../default/1867000000300_events/up.sql | 56 -------- .../default/1870000000100_events/down.sql | 64 +++++++++ .../default/1870000000100_events/up.sql | 133 ++++++++++++++++++ .../down.sql | 33 ----- .../up.sql | 62 -------- .../down.sql | 31 ---- .../1872000000000_remove_event_status/up.sql | 7 - .../1873000000000_event_media_meta/down.sql | 2 - .../1873000000000_event_media_meta/up.sql | 12 -- .../1874000000000_event_match_links/down.sql | 35 ----- .../1874000000000_event_match_links/up.sql | 12 -- .../down.sql | 1 - .../up.sql | 4 - .../down.sql | 1 - .../up.sql | 4 - 16 files changed, 197 insertions(+), 296 deletions(-) delete mode 100644 hasura/migrations/default/1867000000300_events/down.sql delete mode 100644 hasura/migrations/default/1867000000300_events/up.sql create mode 100644 hasura/migrations/default/1870000000100_events/down.sql create mode 100644 hasura/migrations/default/1870000000100_events/up.sql delete mode 100644 hasura/migrations/default/1871000000000_event_visibility_media/down.sql delete mode 100644 hasura/migrations/default/1871000000000_event_visibility_media/up.sql delete mode 100644 hasura/migrations/default/1872000000000_remove_event_status/down.sql delete mode 100644 hasura/migrations/default/1872000000000_remove_event_status/up.sql delete mode 100644 hasura/migrations/default/1873000000000_event_media_meta/down.sql delete mode 100644 hasura/migrations/default/1873000000000_event_media_meta/up.sql delete mode 100644 hasura/migrations/default/1874000000000_event_match_links/down.sql delete mode 100644 hasura/migrations/default/1874000000000_event_match_links/up.sql delete mode 100644 hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql delete mode 100644 hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql delete mode 100644 hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql delete mode 100644 hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql diff --git a/hasura/migrations/default/1867000000300_events/down.sql b/hasura/migrations/default/1867000000300_events/down.sql deleted file mode 100644 index 8e037e19..00000000 --- a/hasura/migrations/default/1867000000300_events/down.sql +++ /dev/null @@ -1,36 +0,0 @@ --- These are created in later boot phases (hasura/functions, hasura/views) --- and are not reverted by re-running migrations, so they must be dropped --- here before the tables they depend on: v_event_player_stats reads --- event_tournaments, and is_event_organizer takes public.events as its --- first argument (a hard dependency on the table's row type). -DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); -DROP VIEW IF EXISTS public.v_event_player_stats; -DROP VIEW IF EXISTS public.v_event_matches; -DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); - --- The boot loader (HasuraService.apply) skips re-creating a boot-phase object --- when its stored digest is unchanged, so dropping the objects above is not --- enough: without clearing their digests a later forward deploy would leave --- the tables present but the view/functions gone. Clear the digests so the --- next boot re-applies them. The setting name is the cwd-relative path minus --- ".sql". Guard with to_regclass so this is a no-op when migration_hashes has --- not been created yet (e.g. a rollback before the app has ever booted). -DO $$ -BEGIN - IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN - DELETE FROM migration_hashes.hashes - WHERE name IN ( - 'hasura/functions/events/get_event_leaderboard', - 'hasura/functions/events/is_event_organizer', - 'hasura/views/v_event_matches', - 'hasura/views/v_event_player_stats' - ); - END IF; -END $$; - -DROP TABLE IF EXISTS public.event_players; -DROP TABLE IF EXISTS public.event_teams; -DROP TABLE IF EXISTS public.event_tournaments; -DROP TABLE IF EXISTS public.event_organizers; -DROP TABLE IF EXISTS public.events; -DROP TABLE IF EXISTS public.e_event_status; diff --git a/hasura/migrations/default/1867000000300_events/up.sql b/hasura/migrations/default/1867000000300_events/up.sql deleted file mode 100644 index 5ae53aaa..00000000 --- a/hasura/migrations/default/1867000000300_events/up.sql +++ /dev/null @@ -1,56 +0,0 @@ --- Events: curated mini-season containers grouping selected tournaments. --- Design: docs/plans/2026-07-03-events-feature-design.md (polyrepo root). - -CREATE TABLE IF NOT EXISTS public.e_event_status ( - value text NOT NULL PRIMARY KEY, - description text NOT NULL -); - -INSERT INTO public.e_event_status (value, description) VALUES - ('Setup', 'Event is being set up; hidden from the public'), - ('Live', 'Event is in progress'), - ('Finished', 'Event has finished') -ON CONFLICT (value) DO NOTHING; - -CREATE TABLE IF NOT EXISTS public.events ( - id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, - name text NOT NULL, - description text, - starts_at timestamptz, - ends_at timestamptz, - status text NOT NULL DEFAULT 'Setup' REFERENCES public.e_event_status(value), - organizer_steam_id bigint NOT NULL REFERENCES public.players(steam_id), - created_at timestamptz NOT NULL DEFAULT now() -); - -CREATE TABLE IF NOT EXISTS public.event_organizers ( - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (event_id, steam_id) -); - -CREATE TABLE IF NOT EXISTS public.event_tournaments ( - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - tournament_id uuid NOT NULL REFERENCES public.tournaments(id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (event_id, tournament_id) -); -CREATE INDEX IF NOT EXISTS idx_event_tournaments_tournament - ON public.event_tournaments(tournament_id); - -CREATE TABLE IF NOT EXISTS public.event_teams ( - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - team_id uuid NOT NULL REFERENCES public.teams(id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (event_id, team_id) -); -CREATE INDEX IF NOT EXISTS idx_event_teams_team ON public.event_teams(team_id); - -CREATE TABLE IF NOT EXISTS public.event_players ( - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (event_id, steam_id) -); -CREATE INDEX IF NOT EXISTS idx_event_players_steam ON public.event_players(steam_id); diff --git a/hasura/migrations/default/1870000000100_events/down.sql b/hasura/migrations/default/1870000000100_events/down.sql new file mode 100644 index 00000000..6fa56616 --- /dev/null +++ b/hasura/migrations/default/1870000000100_events/down.sql @@ -0,0 +1,64 @@ +-- These are created in later boot phases (hasura/functions, hasura/views, +-- hasura/triggers) and are not reverted by re-running migrations, so they +-- must be dropped here before the tables they depend on. +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); +DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); +DROP VIEW IF EXISTS public.v_event_player_stats; +DROP VIEW IF EXISTS public.v_event_matches; +DROP FUNCTION IF EXISTS public.can_upload_event_media(public.events, json); +DROP FUNCTION IF EXISTS public.can_view_event(public.events, json); +DROP FUNCTION IF EXISTS public.is_event_member(public.events, bigint); +DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); + +DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; +DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; +DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; +DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; +DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; +DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; +DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_membership(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_bracket(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_match(); +DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_mlp(); +DROP FUNCTION IF EXISTS public.sync_event_match_links(uuid); +DROP FUNCTION IF EXISTS public.sync_match_event_links(uuid); + +-- The boot loader (HasuraService.apply) skips re-creating a boot-phase object +-- when its stored digest is unchanged, so dropping the objects above is not +-- enough: without clearing their digests a later forward deploy would leave +-- the tables present but the views/functions/triggers gone. Clear the digests +-- so the next boot re-applies them. The setting name is the cwd-relative path +-- minus ".sql". Guard with to_regclass so this is a no-op when +-- migration_hashes has not been created yet (e.g. a rollback before the app +-- has ever booted). +DO $$ +BEGIN + IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN + DELETE FROM migration_hashes.hashes + WHERE name IN ( + 'hasura/functions/events/event_access', + 'hasura/functions/events/get_event_leaderboard', + 'hasura/functions/events/is_event_organizer', + 'hasura/views/v_event_matches', + 'hasura/views/v_event_player_stats', + 'hasura/triggers/event_match_links' + ); + END IF; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +DROP FUNCTION IF EXISTS public.tg_events_banner_same_event(); + +DROP TABLE IF EXISTS public.event_match_links; +DROP TABLE IF EXISTS public.event_media_players; +ALTER TABLE public.events DROP COLUMN IF EXISTS banner_media_id; +DROP TABLE IF EXISTS public.event_media; +DROP TABLE IF EXISTS public.event_players; +DROP TABLE IF EXISTS public.event_teams; +DROP TABLE IF EXISTS public.event_tournaments; +DROP TABLE IF EXISTS public.event_organizers; +DROP TABLE IF EXISTS public.events; +DROP TABLE IF EXISTS public.e_event_visibility; +DROP TABLE IF EXISTS public.e_event_media_access; diff --git a/hasura/migrations/default/1870000000100_events/up.sql b/hasura/migrations/default/1870000000100_events/up.sql new file mode 100644 index 00000000..7b359490 --- /dev/null +++ b/hasura/migrations/default/1870000000100_events/up.sql @@ -0,0 +1,133 @@ +-- Events: curated mini-season containers grouping selected tournaments. +-- Design: docs/plans/2026-07-03-events-feature-design.md (polyrepo root). + +CREATE TABLE IF NOT EXISTS public.e_event_visibility ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_visibility (value, description) VALUES + ('Private', 'Only people involved in the event'), + ('Friends', 'Involved people and their friends'), + ('Public', 'Anyone') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.e_event_media_access ( + value text NOT NULL PRIMARY KEY, + description text NOT NULL +); + +INSERT INTO public.e_event_media_access (value, description) VALUES + ('Organizers', 'Organizers only'), + ('Involved', 'Anyone involved in the event') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE IF NOT EXISTS public.events ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + name text NOT NULL, + description text, + starts_at timestamptz, + ends_at timestamptz, + visibility text NOT NULL DEFAULT 'Public' + REFERENCES public.e_event_visibility(value), + media_access text NOT NULL DEFAULT 'Organizers' + REFERENCES public.e_event_media_access(value), + -- The creator is shown in "Organized by" by default but can be hidden + -- from that display (they remain the owner for permissions). + hide_creator_organizer boolean NOT NULL DEFAULT false, + organizer_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + created_at timestamptz NOT NULL DEFAULT now() +); + +CREATE TABLE IF NOT EXISTS public.event_organizers ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); + +CREATE TABLE IF NOT EXISTS public.event_tournaments ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + tournament_id uuid NOT NULL REFERENCES public.tournaments(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, tournament_id) +); +CREATE INDEX IF NOT EXISTS idx_event_tournaments_tournament + ON public.event_tournaments(tournament_id); + +CREATE TABLE IF NOT EXISTS public.event_teams ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + team_id uuid NOT NULL REFERENCES public.teams(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, team_id) +); +CREATE INDEX IF NOT EXISTS idx_event_teams_team ON public.event_teams(team_id); + +CREATE TABLE IF NOT EXISTS public.event_players ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_players_steam ON public.event_players(steam_id); + +CREATE TABLE IF NOT EXISTS public.event_media ( + id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + uploader_steam_id bigint NOT NULL REFERENCES public.players(steam_id), + filename text NOT NULL, + mime_type text NOT NULL, + size bigint NOT NULL DEFAULT 0, + title text, + -- Poster frame for video media, captured client-side at upload time so + -- gallery tiles never fetch the mp4 itself. + thumbnail_filename text, + created_at timestamptz NOT NULL DEFAULT now(), + UNIQUE (event_id, filename) +); +CREATE INDEX IF NOT EXISTS idx_event_media_event ON public.event_media(event_id); + +ALTER TABLE public.events + ADD COLUMN IF NOT EXISTS banner_media_id uuid + REFERENCES public.event_media(id) ON DELETE SET NULL; + +-- A single-column FK cannot enforce that the banner belongs to this event. +CREATE OR REPLACE FUNCTION public.tg_events_banner_same_event() RETURNS trigger +LANGUAGE plpgsql AS $$ +BEGIN + IF NEW.banner_media_id IS NOT NULL AND NOT EXISTS ( + SELECT 1 FROM public.event_media m + WHERE m.id = NEW.banner_media_id AND m.event_id = NEW.id + ) THEN + RAISE EXCEPTION 'banner_media_id must reference media of the same event'; + END IF; + RETURN NEW; +END $$; + +DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; +CREATE TRIGGER tg_events_banner_same_event + BEFORE INSERT OR UPDATE OF banner_media_id ON public.events + FOR EACH ROW EXECUTE FUNCTION public.tg_events_banner_same_event(); + +-- Media items can tag the players featured in them. +CREATE TABLE IF NOT EXISTS public.event_media_players ( + media_id uuid NOT NULL REFERENCES public.event_media(id) ON DELETE CASCADE, + steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (media_id, steam_id) +); +CREATE INDEX IF NOT EXISTS idx_event_media_players_steam + ON public.event_media_players(steam_id); + +-- Materialized event->match links. v_event_matches stays the single source +-- of truth for the derivation; triggers (hasura/triggers/event_match_links) +-- keep this table in sync so list queries paginate over an indexed table and +-- stats aggregate without re-deriving the windowed joins per query. +CREATE TABLE IF NOT EXISTS public.event_match_links ( + event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, + match_id uuid NOT NULL REFERENCES public.matches(id) ON DELETE CASCADE, + created_at timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY (event_id, match_id) +); +CREATE INDEX IF NOT EXISTS idx_event_match_links_match + ON public.event_match_links(match_id); diff --git a/hasura/migrations/default/1871000000000_event_visibility_media/down.sql b/hasura/migrations/default/1871000000000_event_visibility_media/down.sql deleted file mode 100644 index 3b97af61..00000000 --- a/hasura/migrations/default/1871000000000_event_visibility_media/down.sql +++ /dev/null @@ -1,33 +0,0 @@ --- The access functions are created in a later boot phase (hasura/functions) --- and depend on the columns dropped below (public.events row type includes --- visibility/media_access/banner_media_id), so they must be dropped first. --- get_event_leaderboard gains a hasura_session parameter in the same boot --- phase; drop both signatures so either deployed version can re-apply. -DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); -DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); -DROP FUNCTION IF EXISTS public.can_upload_event_media(public.events, json); -DROP FUNCTION IF EXISTS public.can_view_event(public.events, json); -DROP FUNCTION IF EXISTS public.is_event_member(public.events, bigint); - --- Clear the boot-loader digests so the next boot re-applies the dropped --- functions (see 1867000000300_events/down.sql for the full rationale). -DO $$ -BEGIN - IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN - DELETE FROM migration_hashes.hashes - WHERE name IN ( - 'hasura/functions/events/event_access', - 'hasura/functions/events/get_event_leaderboard' - ); - END IF; -END $$; - -DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; -DROP FUNCTION IF EXISTS public.tg_events_banner_same_event(); - -ALTER TABLE public.events DROP COLUMN IF EXISTS banner_media_id; -DROP TABLE IF EXISTS public.event_media; -ALTER TABLE public.events DROP COLUMN IF EXISTS visibility; -ALTER TABLE public.events DROP COLUMN IF EXISTS media_access; -DROP TABLE IF EXISTS public.e_event_visibility; -DROP TABLE IF EXISTS public.e_event_media_access; diff --git a/hasura/migrations/default/1871000000000_event_visibility_media/up.sql b/hasura/migrations/default/1871000000000_event_visibility_media/up.sql deleted file mode 100644 index 77df8bcf..00000000 --- a/hasura/migrations/default/1871000000000_event_visibility_media/up.sql +++ /dev/null @@ -1,62 +0,0 @@ -CREATE TABLE IF NOT EXISTS public.e_event_visibility ( - value text NOT NULL PRIMARY KEY, - description text NOT NULL -); - -INSERT INTO public.e_event_visibility (value, description) VALUES - ('Private', 'Only people involved in the event'), - ('Friends', 'Involved people and their friends'), - ('Public', 'Anyone') -ON CONFLICT (value) DO NOTHING; - -CREATE TABLE IF NOT EXISTS public.e_event_media_access ( - value text NOT NULL PRIMARY KEY, - description text NOT NULL -); - -INSERT INTO public.e_event_media_access (value, description) VALUES - ('Organizers', 'Organizers only'), - ('Involved', 'Anyone involved in the event') -ON CONFLICT (value) DO NOTHING; - -ALTER TABLE public.events - ADD COLUMN IF NOT EXISTS visibility text NOT NULL DEFAULT 'Public' - REFERENCES public.e_event_visibility(value); - -ALTER TABLE public.events - ADD COLUMN IF NOT EXISTS media_access text NOT NULL DEFAULT 'Organizers' - REFERENCES public.e_event_media_access(value); - -CREATE TABLE IF NOT EXISTS public.event_media ( - id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - uploader_steam_id bigint NOT NULL REFERENCES public.players(steam_id), - filename text NOT NULL, - mime_type text NOT NULL, - size bigint NOT NULL DEFAULT 0, - created_at timestamptz NOT NULL DEFAULT now(), - UNIQUE (event_id, filename) -); -CREATE INDEX IF NOT EXISTS idx_event_media_event ON public.event_media(event_id); - -ALTER TABLE public.events - ADD COLUMN IF NOT EXISTS banner_media_id uuid - REFERENCES public.event_media(id) ON DELETE SET NULL; - --- A single-column FK cannot enforce that the banner belongs to this event. -CREATE OR REPLACE FUNCTION public.tg_events_banner_same_event() RETURNS trigger -LANGUAGE plpgsql AS $$ -BEGIN - IF NEW.banner_media_id IS NOT NULL AND NOT EXISTS ( - SELECT 1 FROM public.event_media m - WHERE m.id = NEW.banner_media_id AND m.event_id = NEW.id - ) THEN - RAISE EXCEPTION 'banner_media_id must reference media of the same event'; - END IF; - RETURN NEW; -END $$; - -DROP TRIGGER IF EXISTS tg_events_banner_same_event ON public.events; -CREATE TRIGGER tg_events_banner_same_event - BEFORE INSERT OR UPDATE OF banner_media_id ON public.events - FOR EACH ROW EXECUTE FUNCTION public.tg_events_banner_same_event(); diff --git a/hasura/migrations/default/1872000000000_remove_event_status/down.sql b/hasura/migrations/default/1872000000000_remove_event_status/down.sql deleted file mode 100644 index 289c94de..00000000 --- a/hasura/migrations/default/1872000000000_remove_event_status/down.sql +++ /dev/null @@ -1,31 +0,0 @@ --- get_event_leaderboard's pre-1872 file version references e.status; drop it --- and clear its boot digest so the next boot of the older release re-applies --- its own version cleanly (see 1867000000300_events/down.sql for the pattern). -DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT, JSON); -DROP FUNCTION IF EXISTS public.get_event_leaderboard(UUID, TEXT, TEXT, INT); -DO $$ -BEGIN - IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN - DELETE FROM migration_hashes.hashes - WHERE name = 'hasura/functions/events/get_event_leaderboard'; - END IF; -END $$; - -CREATE TABLE IF NOT EXISTS public.e_event_status ( - value text NOT NULL PRIMARY KEY, - description text NOT NULL -); - -INSERT INTO public.e_event_status (value, description) VALUES - ('Setup', 'Event is being set up; hidden from the public'), - ('Live', 'Event is in progress'), - ('Finished', 'Event has finished') -ON CONFLICT (value) DO NOTHING; - --- Backfill existing rows as Live (visible) rather than the original Setup --- default, so a rollback does not hide every event on the instance; new rows --- then get the original Setup default. -ALTER TABLE public.events - ADD COLUMN IF NOT EXISTS status text NOT NULL DEFAULT 'Live' - REFERENCES public.e_event_status(value); -ALTER TABLE public.events ALTER COLUMN status SET DEFAULT 'Setup'; diff --git a/hasura/migrations/default/1872000000000_remove_event_status/up.sql b/hasura/migrations/default/1872000000000_remove_event_status/up.sql deleted file mode 100644 index c66c1c4c..00000000 --- a/hasura/migrations/default/1872000000000_remove_event_status/up.sql +++ /dev/null @@ -1,7 +0,0 @@ --- Event lifecycle is derived from starts_at/ends_at and hiding is handled by --- the visibility column (Private/Friends/Public), so the status machine is --- redundant. get_event_leaderboard referenced e.status and is re-applied in --- the functions boot phase (its file changed in the same release); nothing --- else reads the column. -ALTER TABLE public.events DROP COLUMN IF EXISTS status; -DROP TABLE IF EXISTS public.e_event_status; diff --git a/hasura/migrations/default/1873000000000_event_media_meta/down.sql b/hasura/migrations/default/1873000000000_event_media_meta/down.sql deleted file mode 100644 index e71bee27..00000000 --- a/hasura/migrations/default/1873000000000_event_media_meta/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP TABLE IF EXISTS public.event_media_players; -ALTER TABLE public.event_media DROP COLUMN IF EXISTS title; diff --git a/hasura/migrations/default/1873000000000_event_media_meta/up.sql b/hasura/migrations/default/1873000000000_event_media_meta/up.sql deleted file mode 100644 index cc03ddd3..00000000 --- a/hasura/migrations/default/1873000000000_event_media_meta/up.sql +++ /dev/null @@ -1,12 +0,0 @@ -ALTER TABLE public.event_media - ADD COLUMN IF NOT EXISTS title text; - --- Media items can tag the players featured in them. -CREATE TABLE IF NOT EXISTS public.event_media_players ( - media_id uuid NOT NULL REFERENCES public.event_media(id) ON DELETE CASCADE, - steam_id bigint NOT NULL REFERENCES public.players(steam_id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (media_id, steam_id) -); -CREATE INDEX IF NOT EXISTS idx_event_media_players_steam - ON public.event_media_players(steam_id); diff --git a/hasura/migrations/default/1874000000000_event_match_links/down.sql b/hasura/migrations/default/1874000000000_event_match_links/down.sql deleted file mode 100644 index 26775901..00000000 --- a/hasura/migrations/default/1874000000000_event_match_links/down.sql +++ /dev/null @@ -1,35 +0,0 @@ --- The sync functions/triggers are created in the triggers boot phase and --- depend on this table; drop them and clear their digest so the next boot of --- an older release is consistent (see 1867000000300_events/down.sql). -DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; -DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; -DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; -DROP TRIGGER IF EXISTS tg_event_tournaments_sync_match_links ON public.event_tournaments; -DROP TRIGGER IF EXISTS tg_brackets_sync_event_match_links ON public.tournament_brackets; -DROP TRIGGER IF EXISTS tg_matches_sync_event_match_links ON public.matches; -DROP TRIGGER IF EXISTS tg_mlp_sync_event_match_links ON public.match_lineup_players; -DROP FUNCTION IF EXISTS public.tg_sync_event_match_links(); -DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_membership(); -DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_bracket(); -DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_match(); -DROP FUNCTION IF EXISTS public.tg_sync_event_match_links_mlp(); -DROP FUNCTION IF EXISTS public.sync_event_match_links(uuid); -DROP FUNCTION IF EXISTS public.sync_match_event_links(uuid); - --- v_event_player_stats reads from the link table in this release; drop it so --- the table drop succeeds, and clear its digest so the previous release's --- version re-applies on next boot. -DROP VIEW IF EXISTS public.v_event_player_stats; - -DO $$ -BEGIN - IF to_regclass('migration_hashes.hashes') IS NOT NULL THEN - DELETE FROM migration_hashes.hashes - WHERE name IN ( - 'hasura/triggers/event_match_links', - 'hasura/views/v_event_player_stats' - ); - END IF; -END $$; - -DROP TABLE IF EXISTS public.event_match_links; diff --git a/hasura/migrations/default/1874000000000_event_match_links/up.sql b/hasura/migrations/default/1874000000000_event_match_links/up.sql deleted file mode 100644 index 5ca70317..00000000 --- a/hasura/migrations/default/1874000000000_event_match_links/up.sql +++ /dev/null @@ -1,12 +0,0 @@ --- Materialized event->match links. v_event_matches stays the single source --- of truth for the derivation; triggers (hasura/triggers/event_match_links) --- keep this table in sync so list queries paginate over an indexed table and --- stats aggregate without re-deriving the windowed joins per query. -CREATE TABLE IF NOT EXISTS public.event_match_links ( - event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, - match_id uuid NOT NULL REFERENCES public.matches(id) ON DELETE CASCADE, - created_at timestamptz NOT NULL DEFAULT now(), - PRIMARY KEY (event_id, match_id) -); -CREATE INDEX IF NOT EXISTS idx_event_match_links_match - ON public.event_match_links(match_id); diff --git a/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql b/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql deleted file mode 100644 index c6731093..00000000 --- a/hasura/migrations/default/1875000000000_event_media_thumbnails/down.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE public.event_media DROP COLUMN IF EXISTS thumbnail_filename; diff --git a/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql b/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql deleted file mode 100644 index 69a79b97..00000000 --- a/hasura/migrations/default/1875000000000_event_media_thumbnails/up.sql +++ /dev/null @@ -1,4 +0,0 @@ --- Poster frame for video media, captured client-side at upload time so --- gallery tiles never fetch the mp4 itself. -ALTER TABLE public.event_media - ADD COLUMN IF NOT EXISTS thumbnail_filename text; diff --git a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql deleted file mode 100644 index a8b5f68b..00000000 --- a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/down.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE public.events DROP COLUMN IF EXISTS hide_creator_organizer; diff --git a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql b/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql deleted file mode 100644 index 9dce66e7..00000000 --- a/hasura/migrations/default/1876000000000_event_hide_creator_organizer/up.sql +++ /dev/null @@ -1,4 +0,0 @@ --- "Organized by" reflects the organizer list; the creator is shown by default --- but can be hidden from that display (they remain the owner for permissions). -ALTER TABLE public.events - ADD COLUMN IF NOT EXISTS hide_creator_organizer boolean NOT NULL DEFAULT false; From 4cbf51022b2e163263304752d121ea02058e3b26 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 13:40:12 -0400 Subject: [PATCH 06/11] wip --- hasura/functions/events/is_event_organizer.sql | 6 ++++-- src/events/events.controller.ts | 12 ++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/hasura/functions/events/is_event_organizer.sql b/hasura/functions/events/is_event_organizer.sql index 3528b97c..cdd9afa0 100644 --- a/hasura/functions/events/is_event_organizer.sql +++ b/hasura/functions/events/is_event_organizer.sql @@ -7,11 +7,13 @@ STABLE AS $$ SELECT hasura_session ->> 'x-hasura-role' IN ('admin', 'administrator', 'tournament_organizer') - OR event.organizer_steam_id = (hasura_session ->> 'x-hasura-user-id')::bigint + -- nullif guard matches event_access.sql: an empty x-hasura-user-id + -- must read as anonymous rather than fail the ::bigint cast. + OR event.organizer_steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint OR EXISTS ( SELECT 1 FROM public.event_organizers WHERE event_id = event.id - AND steam_id = (hasura_session ->> 'x-hasura-user-id')::bigint + AND steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint ); $$; diff --git a/src/events/events.controller.ts b/src/events/events.controller.ts index 91d58407..ff3a39d1 100644 --- a/src/events/events.controller.ts +++ b/src/events/events.controller.ts @@ -348,17 +348,14 @@ export class EventsController { throw new NotFoundException("media not found"); } + // 404 (not 403) when the viewer lacks access, so probing a URL never + // confirms that a Private event exists at that id. const canView = await this.eventsService.canView( eventId, request.user as User | undefined, ); - if (canView === null) { - throw new NotFoundException("media not found"); - } if (!canView) { - throw new ForbiddenException( - "you do not have permission to view this event", - ); + throw new NotFoundException("media not found"); } const media = await this.eventsService.getMedia(eventId, filename); @@ -493,6 +490,9 @@ export class EventsController { const size = stat.size; response.setHeader("Content-Type", contentType); response.setHeader("Accept-Ranges", "bytes"); + // Image mimetypes are client-claimed at upload (only audio/video get + // magic-byte checks), so forbid content sniffing on the way back out. + response.setHeader("X-Content-Type-Options", "nosniff"); // Filenames are immutable but event visibility is not: never allow // shared caches to hold media for an event that may go Private later. response.setHeader("Cache-Control", "private, max-age=3600"); From 6ce13194ac374d04d245772d0cde695e66891432 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 14:07:08 -0400 Subject: [PATCH 07/11] wip --- .../functions/events/is_event_organizer.sql | 11 +++++--- .../match/get_match_server_plugin_runtime.sql | 6 ++--- .../default/1870000000100_events/down.sql | 6 ++++- hasura/triggers/event_media_players.sql | 27 +++++++++++++++++++ test/utils/jest-global-setup.ts | 2 +- 5 files changed, 43 insertions(+), 9 deletions(-) create mode 100644 hasura/triggers/event_media_players.sql diff --git a/hasura/functions/events/is_event_organizer.sql b/hasura/functions/events/is_event_organizer.sql index cdd9afa0..d54e9064 100644 --- a/hasura/functions/events/is_event_organizer.sql +++ b/hasura/functions/events/is_event_organizer.sql @@ -5,15 +5,18 @@ CREATE OR REPLACE FUNCTION public.is_event_organizer( LANGUAGE sql STABLE AS $$ - SELECT + -- nullif guard matches event_access.sql: an empty x-hasura-user-id must + -- read as anonymous rather than fail the ::bigint cast. COALESCE because + -- a NULL user id makes the organizer comparison NULL, not false. + SELECT COALESCE( hasura_session ->> 'x-hasura-role' IN ('admin', 'administrator', 'tournament_organizer') - -- nullif guard matches event_access.sql: an empty x-hasura-user-id - -- must read as anonymous rather than fail the ::bigint cast. OR event.organizer_steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint OR EXISTS ( SELECT 1 FROM public.event_organizers WHERE event_id = event.id AND steam_id = nullif(hasura_session ->> 'x-hasura-user-id', '')::bigint - ); + ), + false + ); $$; diff --git a/hasura/functions/match/get_match_server_plugin_runtime.sql b/hasura/functions/match/get_match_server_plugin_runtime.sql index 0725c786..1fb82812 100644 --- a/hasura/functions/match/get_match_server_plugin_runtime.sql +++ b/hasura/functions/match/get_match_server_plugin_runtime.sql @@ -11,9 +11,9 @@ BEGIN END IF; SELECT plugin_runtime - INTO runtime - FROM servers - WHERE id = match.server_id; + INTO runtime + FROM servers + WHERE id = match.server_id; RETURN runtime; END diff --git a/hasura/migrations/default/1870000000100_events/down.sql b/hasura/migrations/default/1870000000100_events/down.sql index 6fa56616..043fe5ca 100644 --- a/hasura/migrations/default/1870000000100_events/down.sql +++ b/hasura/migrations/default/1870000000100_events/down.sql @@ -10,6 +10,9 @@ DROP FUNCTION IF EXISTS public.can_view_event(public.events, json); DROP FUNCTION IF EXISTS public.is_event_member(public.events, bigint); DROP FUNCTION IF EXISTS public.is_event_organizer(public.events, json); +DROP TRIGGER IF EXISTS tg_event_media_players_member ON public.event_media_players; +DROP FUNCTION IF EXISTS public.tg_event_media_players_member(); + DROP TRIGGER IF EXISTS tg_events_sync_match_links ON public.events; DROP TRIGGER IF EXISTS tg_event_teams_sync_match_links ON public.event_teams; DROP TRIGGER IF EXISTS tg_event_players_sync_match_links ON public.event_players; @@ -43,7 +46,8 @@ BEGIN 'hasura/functions/events/is_event_organizer', 'hasura/views/v_event_matches', 'hasura/views/v_event_player_stats', - 'hasura/triggers/event_match_links' + 'hasura/triggers/event_match_links', + 'hasura/triggers/event_media_players' ); END IF; END $$; diff --git a/hasura/triggers/event_media_players.sql b/hasura/triggers/event_media_players.sql new file mode 100644 index 00000000..e0c4db46 --- /dev/null +++ b/hasura/triggers/event_media_players.sql @@ -0,0 +1,27 @@ +-- Tags on event media must reference people actually involved in the event. +-- The Hasura insert permission only proves the *tagger* is the uploader or an +-- organizer; without this the FK would let them tag any player on the +-- platform. Lives in the triggers boot phase (not the migration) so +-- is_event_member (functions phase) exists before the first execution and so +-- digest tracking applies it to databases that already ran the migration. +CREATE OR REPLACE FUNCTION public.tg_event_media_players_member() RETURNS trigger +LANGUAGE plpgsql AS $$ +DECLARE + _event public.events; +BEGIN + SELECT e.* INTO _event + FROM public.events e + JOIN public.event_media m ON m.event_id = e.id + WHERE m.id = NEW.media_id; + + IF _event.id IS NULL + OR NOT public.is_event_member(_event, NEW.steam_id) THEN + RAISE EXCEPTION 'tagged player must be involved in the event'; + END IF; + RETURN NEW; +END $$; + +DROP TRIGGER IF EXISTS tg_event_media_players_member ON public.event_media_players; +CREATE TRIGGER tg_event_media_players_member + BEFORE INSERT ON public.event_media_players + FOR EACH ROW EXECUTE FUNCTION public.tg_event_media_players_member(); diff --git a/test/utils/jest-global-setup.ts b/test/utils/jest-global-setup.ts index 2e25db74..c1befd33 100644 --- a/test/utils/jest-global-setup.ts +++ b/test/utils/jest-global-setup.ts @@ -2,7 +2,7 @@ import type { StartedPostgreSqlContainer } from "@testcontainers/postgresql"; import { bootContainerAndMigrate, endPool } from "./sql-test-db"; declare global { - // eslint-disable-next-line no-var + var __SQL_TEST_CONTAINER__: StartedPostgreSqlContainer | undefined; } From 0c92037b829560f7da8cb7e3edfdb5237ff2e438 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 14:23:31 -0400 Subject: [PATCH 08/11] wip --- generated/schema.graphql | 20 +++++++- generated/schema.ts | 30 +++++++----- generated/types.ts | 30 ++++++++++++ .../servers/get_server_connection.sql | 8 ++- .../default/tables/public_event_media.yaml | 2 + .../down.sql | 5 ++ .../up.sql | 6 +++ .../dedicated-servers.service.ts | 7 ++- .../jobs/PingDedicatedServers.ts | 11 +++-- src/events/events.controller.ts | 49 ++++++++++++++++++- src/events/events.service.ts | 41 ++++++++++++++-- .../game-server-node.controller.ts | 8 +-- 12 files changed, 188 insertions(+), 29 deletions(-) create mode 100644 hasura/migrations/default/1870000000200_event_media_external_links/down.sql create mode 100644 hasura/migrations/default/1870000000200_event_media_external_links/up.sql diff --git a/generated/schema.graphql b/generated/schema.graphql index d804f719..a3ecbd86 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -12907,9 +12907,10 @@ type event_media { """An object relationship""" event: events! event_id: uuid! - filename: String! + external_url: String + filename: String id: uuid! - mime_type: String! + mime_type: String """An array relationship""" players( @@ -13042,6 +13043,7 @@ input event_media_bool_exp { created_at: timestamptz_comparison_exp event: events_bool_exp event_id: uuid_comparison_exp + external_url: String_comparison_exp filename: String_comparison_exp id: uuid_comparison_exp mime_type: String_comparison_exp @@ -13084,6 +13086,7 @@ input event_media_insert_input { created_at: timestamptz event: events_obj_rel_insert_input event_id: uuid + external_url: String filename: String id: uuid mime_type: String @@ -13099,6 +13102,7 @@ input event_media_insert_input { type event_media_max_fields { created_at: timestamptz event_id: uuid + external_url: String filename: String id: uuid mime_type: String @@ -13114,6 +13118,7 @@ order by max() on columns of table "event_media" input event_media_max_order_by { created_at: order_by event_id: order_by + external_url: order_by filename: order_by id: order_by mime_type: order_by @@ -13127,6 +13132,7 @@ input event_media_max_order_by { type event_media_min_fields { created_at: timestamptz event_id: uuid + external_url: String filename: String id: uuid mime_type: String @@ -13142,6 +13148,7 @@ order by min() on columns of table "event_media" input event_media_min_order_by { created_at: order_by event_id: order_by + external_url: order_by filename: order_by id: order_by mime_type: order_by @@ -13186,6 +13193,7 @@ input event_media_order_by { created_at: order_by event: events_order_by event_id: order_by + external_url: order_by filename: order_by id: order_by mime_type: order_by @@ -13561,6 +13569,9 @@ enum event_media_select_column { """column name""" event_id + """column name""" + external_url + """column name""" filename @@ -13589,6 +13600,7 @@ input type for updating data in table "event_media" input event_media_set_input { created_at: timestamptz event_id: uuid + external_url: String filename: String id: uuid mime_type: String @@ -13655,6 +13667,7 @@ input event_media_stream_cursor_input { input event_media_stream_cursor_value_input { created_at: timestamptz event_id: uuid + external_url: String filename: String id: uuid mime_type: String @@ -13688,6 +13701,9 @@ enum event_media_update_column { """column name""" event_id + """column name""" + external_url + """column name""" filename diff --git a/generated/schema.ts b/generated/schema.ts index fd42978d..bf5c679e 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -4791,9 +4791,10 @@ export interface event_media { /** An object relationship */ event: events event_id: Scalars['uuid'] - filename: Scalars['String'] + external_url: (Scalars['String'] | null) + filename: (Scalars['String'] | null) id: Scalars['uuid'] - mime_type: Scalars['String'] + mime_type: (Scalars['String'] | null) /** An array relationship */ players: event_media_players[] /** An aggregate relationship */ @@ -4849,6 +4850,7 @@ export type event_media_constraint = 'event_media_event_id_filename_key' | 'even export interface event_media_max_fields { created_at: (Scalars['timestamptz'] | null) event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) filename: (Scalars['String'] | null) id: (Scalars['uuid'] | null) mime_type: (Scalars['String'] | null) @@ -4864,6 +4866,7 @@ export interface event_media_max_fields { export interface event_media_min_fields { created_at: (Scalars['timestamptz'] | null) event_id: (Scalars['uuid'] | null) + external_url: (Scalars['String'] | null) filename: (Scalars['String'] | null) id: (Scalars['uuid'] | null) mime_type: (Scalars['String'] | null) @@ -5020,7 +5023,7 @@ export interface event_media_players_variance_fields { /** select columns of table "event_media" */ -export type event_media_select_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' +export type event_media_select_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' /** aggregate stddev on columns */ @@ -5056,7 +5059,7 @@ export interface event_media_sum_fields { /** update columns of table "event_media" */ -export type event_media_update_column = 'created_at' | 'event_id' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' +export type event_media_update_column = 'created_at' | 'event_id' | 'external_url' | 'filename' | 'id' | 'mime_type' | 'size' | 'thumbnail_filename' | 'title' | 'uploader_steam_id' /** aggregate var_pop on columns */ @@ -41854,6 +41857,7 @@ export interface event_mediaGenqlSelection{ /** An object relationship */ event?: eventsGenqlSelection event_id?: boolean | number + external_url?: boolean | number filename?: boolean | number id?: boolean | number mime_type?: boolean | number @@ -41947,7 +41951,7 @@ export interface event_media_avg_order_by {size?: (order_by | null),uploader_ste /** Boolean expression to filter rows from the table "event_media". All fields are combined with a logical 'AND'. */ -export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),thumbnail_filename?: (String_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} +export interface event_media_bool_exp {_and?: (event_media_bool_exp[] | null),_not?: (event_media_bool_exp | null),_or?: (event_media_bool_exp[] | null),created_at?: (timestamptz_comparison_exp | null),event?: (events_bool_exp | null),event_id?: (uuid_comparison_exp | null),external_url?: (String_comparison_exp | null),filename?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),mime_type?: (String_comparison_exp | null),players?: (event_media_players_bool_exp | null),players_aggregate?: (event_media_players_aggregate_bool_exp | null),size?: (bigint_comparison_exp | null),thumbnail_filename?: (String_comparison_exp | null),title?: (String_comparison_exp | null),uploader?: (players_bool_exp | null),uploader_steam_id?: (bigint_comparison_exp | null)} /** input type for incrementing numeric columns in table "event_media" */ @@ -41955,13 +41959,14 @@ export interface event_media_inc_input {size?: (Scalars['bigint'] | null),upload /** input type for inserting data into table "event_media" */ -export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_insert_input {created_at?: (Scalars['timestamptz'] | null),event?: (events_obj_rel_insert_input | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),players?: (event_media_players_arr_rel_insert_input | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader?: (players_obj_rel_insert_input | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate max on columns */ export interface event_media_max_fieldsGenqlSelection{ created_at?: boolean | number event_id?: boolean | number + external_url?: boolean | number filename?: boolean | number id?: boolean | number mime_type?: boolean | number @@ -41975,13 +41980,14 @@ export interface event_media_max_fieldsGenqlSelection{ /** order by max() on columns of table "event_media" */ -export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_max_order_by {created_at?: (order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} /** aggregate min on columns */ export interface event_media_min_fieldsGenqlSelection{ created_at?: boolean | number event_id?: boolean | number + external_url?: boolean | number filename?: boolean | number id?: boolean | number mime_type?: boolean | number @@ -41995,7 +42001,7 @@ export interface event_media_min_fieldsGenqlSelection{ /** order by min() on columns of table "event_media" */ -export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_min_order_by {created_at?: (order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader_steam_id?: (order_by | null)} /** response of any mutation on the table "event_media" */ @@ -42020,7 +42026,7 @@ export interface event_media_on_conflict {constraint: event_media_constraint,upd /** Ordering options when selecting data from "event_media". */ -export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} +export interface event_media_order_by {created_at?: (order_by | null),event?: (events_order_by | null),event_id?: (order_by | null),external_url?: (order_by | null),filename?: (order_by | null),id?: (order_by | null),mime_type?: (order_by | null),players_aggregate?: (event_media_players_aggregate_order_by | null),size?: (order_by | null),thumbnail_filename?: (order_by | null),title?: (order_by | null),uploader?: (players_order_by | null),uploader_steam_id?: (order_by | null)} /** primary key columns input for table: event_media */ @@ -42266,7 +42272,7 @@ export interface event_media_players_variance_order_by {steam_id?: (order_by | n /** input type for updating data in table "event_media" */ -export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_set_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate stddev on columns */ @@ -42317,7 +42323,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} +export interface event_media_stream_cursor_value_input {created_at?: (Scalars['timestamptz'] | null),event_id?: (Scalars['uuid'] | null),external_url?: (Scalars['String'] | null),filename?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),mime_type?: (Scalars['String'] | null),size?: (Scalars['bigint'] | null),thumbnail_filename?: (Scalars['String'] | null),title?: (Scalars['String'] | null),uploader_steam_id?: (Scalars['bigint'] | null)} /** aggregate sum on columns */ @@ -113586,6 +113592,7 @@ export const enumEventMediaPlayersUpdateColumn = { export const enumEventMediaSelectColumn = { created_at: 'created_at' as const, event_id: 'event_id' as const, + external_url: 'external_url' as const, filename: 'filename' as const, id: 'id' as const, mime_type: 'mime_type' as const, @@ -113598,6 +113605,7 @@ export const enumEventMediaSelectColumn = { export const enumEventMediaUpdateColumn = { created_at: 'created_at' as const, event_id: 'event_id' as const, + external_url: 'external_url' as const, filename: 'filename' as const, id: 'id' as const, mime_type: 'mime_type' as const, diff --git a/generated/types.ts b/generated/types.ts index 2c19fd80..974028df 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -18244,6 +18244,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], @@ -18489,6 +18492,9 @@ export default { "event_id": [ 4764 ], + "external_url": [ + 80 + ], "filename": [ 80 ], @@ -18545,6 +18551,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], @@ -18583,6 +18592,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], @@ -18615,6 +18627,9 @@ export default { "event_id": [ 2781 ], + "external_url": [ + 2781 + ], "filename": [ 2781 ], @@ -18647,6 +18662,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], @@ -18679,6 +18697,9 @@ export default { "event_id": [ 2781 ], + "external_url": [ + 2781 + ], "filename": [ 2781 ], @@ -18750,6 +18771,9 @@ export default { "event_id": [ 2781 ], + "external_url": [ + 2781 + ], "filename": [ 2781 ], @@ -19302,6 +19326,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], @@ -19411,6 +19438,9 @@ export default { "event_id": [ 4762 ], + "external_url": [ + 78 + ], "filename": [ 78 ], diff --git a/hasura/functions/servers/get_server_connection.sql b/hasura/functions/servers/get_server_connection.sql index fbc05d35..f7efe5d3 100644 --- a/hasura/functions/servers/get_server_connection.sql +++ b/hasura/functions/servers/get_server_connection.sql @@ -5,7 +5,9 @@ DECLARE connection_string text; min_role_to_connect text; BEGIN - IF server.connected = false OR server.enabled = false OR server.type = 'Ranked' OR server.host IS NULL OR server.port IS NULL THEN + -- A disabled server can still be online (external servers keep running), + -- so gate on connected rather than enabled. + IF server.connected = false OR server.type = 'Ranked' OR server.host IS NULL OR server.port IS NULL THEN RETURN NULL; END IF; @@ -32,7 +34,9 @@ DECLARE server_host text; min_role_to_connect text; BEGIN - IF server.connected = false OR server.enabled = false OR server.type = 'Ranked' OR NULLIF(server.connect_password, '') IS NOT NULL THEN + -- A disabled server can still be online (external servers keep running), + -- so gate on connected rather than enabled. + IF server.connected = false OR server.type = 'Ranked' OR NULLIF(server.connect_password, '') IS NOT NULL THEN RETURN NULL; END IF; diff --git a/hasura/metadata/databases/default/tables/public_event_media.yaml b/hasura/metadata/databases/default/tables/public_event_media.yaml index 706588d5..a59ff7e0 100644 --- a/hasura/metadata/databases/default/tables/public_event_media.yaml +++ b/hasura/metadata/databases/default/tables/public_event_media.yaml @@ -22,6 +22,7 @@ select_permissions: columns: - created_at - event_id + - external_url - filename - id - mime_type @@ -40,6 +41,7 @@ select_permissions: columns: - created_at - event_id + - external_url - filename - id - mime_type diff --git a/hasura/migrations/default/1870000000200_event_media_external_links/down.sql b/hasura/migrations/default/1870000000200_event_media_external_links/down.sql new file mode 100644 index 00000000..78f62ccd --- /dev/null +++ b/hasura/migrations/default/1870000000200_event_media_external_links/down.sql @@ -0,0 +1,5 @@ +ALTER TABLE public.event_media + DROP CONSTRAINT event_media_source_chk, + ALTER COLUMN mime_type SET NOT NULL, + ALTER COLUMN filename SET NOT NULL, + DROP COLUMN external_url; diff --git a/hasura/migrations/default/1870000000200_event_media_external_links/up.sql b/hasura/migrations/default/1870000000200_event_media_external_links/up.sql new file mode 100644 index 00000000..6c67f141 --- /dev/null +++ b/hasura/migrations/default/1870000000200_event_media_external_links/up.sql @@ -0,0 +1,6 @@ +ALTER TABLE public.event_media + ADD COLUMN external_url text, + ALTER COLUMN filename DROP NOT NULL, + ALTER COLUMN mime_type DROP NOT NULL, + ADD CONSTRAINT event_media_source_chk + CHECK (num_nonnulls(filename, external_url) = 1); diff --git a/src/dedicated-servers/dedicated-servers.service.ts b/src/dedicated-servers/dedicated-servers.service.ts index 39e11aaf..766fc946 100644 --- a/src/dedicated-servers/dedicated-servers.service.ts +++ b/src/dedicated-servers/dedicated-servers.service.ts @@ -703,14 +703,17 @@ export class DedicatedServersService { enabled: true, connected: true, steam_relay: true, + game_server_node_id: true, server_region: { steam_relay: true, }, }, }); - // disabled servers may still be shutting down; never bring them online - if (!server.enabled) { + // A disabled node-managed server has its deployment torn down and may still + // be shutting down; never bring it back online. External servers keep + // running independently, so a disabled one can still be online. + if (!server.enabled && server.game_server_node_id) { if (server.connected) { await this.hasura.mutation({ update_servers_by_pk: { diff --git a/src/dedicated-servers/jobs/PingDedicatedServers.ts b/src/dedicated-servers/jobs/PingDedicatedServers.ts index 9648466f..3db946a4 100644 --- a/src/dedicated-servers/jobs/PingDedicatedServers.ts +++ b/src/dedicated-servers/jobs/PingDedicatedServers.ts @@ -17,15 +17,20 @@ export class PingDedicatedServers extends WorkerHost { servers: { __args: { where: { - enabled: { - _eq: true, - }, type: { _neq: "Ranked", }, is_dedicated: { _eq: true, }, + // Node-managed servers have their deployment torn down when + // disabled, so a disabled one is genuinely offline. External + // servers keep running on their own host, so still ping disabled + // ones to reflect their real online state. + _or: [ + { enabled: { _eq: true } }, + { game_server_node_id: { _is_null: true } }, + ], }, }, id: true, diff --git a/src/events/events.controller.ts b/src/events/events.controller.ts index ff3a39d1..c89d39fc 100644 --- a/src/events/events.controller.ts +++ b/src/events/events.controller.ts @@ -131,6 +131,32 @@ export class EventsController { return { success: true, id, filename }; } + @Post(":eventId/link") + public async addLink( + @Param("eventId") eventId: string, + @Req() request: Request, + @Body() body: { url?: string; title?: string }, + ): Promise<{ success: boolean; id: string }> { + const user = await this.assertCanUpload( + eventId, + request.user as User | undefined, + ); + + const externalUrl = this.normalizeExternalUrl(body.url); + const title = + body.title?.trim().slice(0, 120) || + this.eventsService.titleFromFilename(new URL(externalUrl).hostname); + + const id = await this.eventsService.saveExternalMedia({ + eventId, + uploaderSteamId: user.steam_id, + externalUrl, + title, + }); + + return { success: true, id }; + } + // Poster frame for a video item, captured client-side by the uploader at // upload time so viewers never download the mp4 for a gallery tile. @Post(":eventId/:mediaId/thumbnail") @@ -365,7 +391,9 @@ export class EventsController { await this.stream( this.eventsService.mediaKey(eventId, filename), - media.is_thumbnail ? "image/webp" : media.mime_type, + media.is_thumbnail + ? "image/webp" + : (media.mime_type ?? "application/octet-stream"), request, response, ); @@ -433,6 +461,25 @@ export class EventsController { return user; } + // Provider detection/embedding is done client-side, so only enforce that the + // link is a plausible http(s) URL of sane length before storing it. + private normalizeExternalUrl(raw?: string): string { + const value = raw?.trim(); + if (!value || value.length > 2048) { + throw new BadRequestException("invalid url"); + } + let parsed: URL; + try { + parsed = new URL(value); + } catch { + throw new BadRequestException("invalid url"); + } + if (parsed.protocol !== "http:" && parsed.protocol !== "https:") { + throw new BadRequestException("url must be http or https"); + } + return parsed.toString(); + } + private assertEventKey( eventId: string, key?: string, diff --git a/src/events/events.service.ts b/src/events/events.service.ts index d541a927..6a36ed53 100644 --- a/src/events/events.service.ts +++ b/src/events/events.service.ts @@ -9,10 +9,11 @@ export type EventMediaRow = { id: string; event_id: string; uploader_steam_id: string; - filename: string; - mime_type: string; + filename: string | null; + mime_type: string | null; size: string; thumbnail_filename: string | null; + external_url: string | null; }; @Injectable() @@ -107,6 +108,33 @@ export class EventsService { return row.id; } + // External-link media (YouTube/Twitch/etc.) has no stored file: only the URL + // and an optional title. The CHECK constraint enforces exactly one of + // filename / external_url, so filename/mime_type stay null here. + public async saveExternalMedia(media: { + eventId: string; + uploaderSteamId: string; + externalUrl: string; + title?: string | null; + }): Promise { + const [row] = await this.postgres.query>( + `INSERT INTO public.event_media + (event_id, uploader_steam_id, external_url, title) + VALUES ($1, $2, $3, $4) + RETURNING id`, + [ + media.eventId, + media.uploaderSteamId, + media.externalUrl, + media.title ?? null, + ], + ); + this.logger.log( + `event media link saved event=${media.eventId} url=${media.externalUrl}`, + ); + return row.id; + } + // Matches either the media file itself or its poster frame, so both are // served (with the right mime) from the same GET route. public async getMedia( @@ -117,7 +145,7 @@ export class EventsService { Array >( `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, - thumbnail_filename, (thumbnail_filename = $2) AS is_thumbnail + thumbnail_filename, external_url, (thumbnail_filename = $2) AS is_thumbnail FROM public.event_media WHERE event_id = $1 AND (filename = $2 OR thumbnail_filename = $2)`, [eventId, filename], @@ -131,7 +159,7 @@ export class EventsService { ): Promise { const [row] = await this.postgres.query>( `SELECT id, event_id, uploader_steam_id::text, filename, mime_type, size::text, - thumbnail_filename + thumbnail_filename, external_url FROM public.event_media WHERE event_id = $1 AND id = $2`, [eventId, mediaId], @@ -160,7 +188,10 @@ export class EventsService { this.mediaKey(media.event_id, media.thumbnail_filename), ); } - await this.s3.remove(this.mediaKey(media.event_id, media.filename)); + // External-link rows have no stored object to remove. + if (media.filename) { + await this.s3.remove(this.mediaKey(media.event_id, media.filename)); + } await this.postgres.query(`DELETE FROM public.event_media WHERE id = $1`, [ media.id, ]); diff --git a/src/game-server-node/game-server-node.controller.ts b/src/game-server-node/game-server-node.controller.ts index aa5c9b32..b8b9b614 100644 --- a/src/game-server-node/game-server-node.controller.ts +++ b/src/game-server-node/game-server-node.controller.ts @@ -834,6 +834,7 @@ UNIT enabled: true, steam_relay: true, is_dedicated: true, + game_server_node_id: true, current_match: { current_match_map_id: true, match_maps: { @@ -851,9 +852,10 @@ UNIT throw Error("server not found"); } - // disabled servers may still be shutting down and pinging; refuse to - // bring them back online and force them offline immediately - if (server.enabled === false) { + // A disabled node-managed server is being torn down; refuse to bring it + // back online. External servers keep running independently, so a disabled + // one that's still heartbeating is genuinely online. + if (server.enabled === false && server.game_server_node_id) { if (server.connected) { await this.hasura.mutation({ update_servers_by_pk: { From f9cc0b1cacd83ff86783f2e95b1236593a0ed000 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 14:24:51 -0400 Subject: [PATCH 09/11] wip From c7f30d1049bfeea47388cae2d1416fe3260b102a Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 14:25:06 -0400 Subject: [PATCH 10/11] wip From 75d998ee4e9547010c03d0700392f5ce6de996a3 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 11 Jul 2026 14:26:50 -0400 Subject: [PATCH 11/11] wip --- .../1870000000200_event_media_external_links/down.sql | 5 ----- .../1870000000200_event_media_external_links/up.sql | 6 ------ .../down.sql | 0 .../up.sql | 11 ++++++++--- 4 files changed, 8 insertions(+), 14 deletions(-) delete mode 100644 hasura/migrations/default/1870000000200_event_media_external_links/down.sql delete mode 100644 hasura/migrations/default/1870000000200_event_media_external_links/up.sql rename hasura/migrations/default/{1870000000100_events => 1870000000200_events}/down.sql (100%) rename hasura/migrations/default/{1870000000100_events => 1870000000200_events}/up.sql (94%) diff --git a/hasura/migrations/default/1870000000200_event_media_external_links/down.sql b/hasura/migrations/default/1870000000200_event_media_external_links/down.sql deleted file mode 100644 index 78f62ccd..00000000 --- a/hasura/migrations/default/1870000000200_event_media_external_links/down.sql +++ /dev/null @@ -1,5 +0,0 @@ -ALTER TABLE public.event_media - DROP CONSTRAINT event_media_source_chk, - ALTER COLUMN mime_type SET NOT NULL, - ALTER COLUMN filename SET NOT NULL, - DROP COLUMN external_url; diff --git a/hasura/migrations/default/1870000000200_event_media_external_links/up.sql b/hasura/migrations/default/1870000000200_event_media_external_links/up.sql deleted file mode 100644 index 6c67f141..00000000 --- a/hasura/migrations/default/1870000000200_event_media_external_links/up.sql +++ /dev/null @@ -1,6 +0,0 @@ -ALTER TABLE public.event_media - ADD COLUMN external_url text, - ALTER COLUMN filename DROP NOT NULL, - ALTER COLUMN mime_type DROP NOT NULL, - ADD CONSTRAINT event_media_source_chk - CHECK (num_nonnulls(filename, external_url) = 1); diff --git a/hasura/migrations/default/1870000000100_events/down.sql b/hasura/migrations/default/1870000000200_events/down.sql similarity index 100% rename from hasura/migrations/default/1870000000100_events/down.sql rename to hasura/migrations/default/1870000000200_events/down.sql diff --git a/hasura/migrations/default/1870000000100_events/up.sql b/hasura/migrations/default/1870000000200_events/up.sql similarity index 94% rename from hasura/migrations/default/1870000000100_events/up.sql rename to hasura/migrations/default/1870000000200_events/up.sql index 7b359490..de8de8aa 100644 --- a/hasura/migrations/default/1870000000100_events/up.sql +++ b/hasura/migrations/default/1870000000200_events/up.sql @@ -75,15 +75,20 @@ CREATE TABLE IF NOT EXISTS public.event_media ( id uuid NOT NULL DEFAULT gen_random_uuid() PRIMARY KEY, event_id uuid NOT NULL REFERENCES public.events(id) ON DELETE CASCADE, uploader_steam_id bigint NOT NULL REFERENCES public.players(steam_id), - filename text NOT NULL, - mime_type text NOT NULL, + -- Uploaded-file media has filename + mime_type; external-link media + -- (YouTube/Twitch/etc.) has external_url instead. The CHECK enforces + -- exactly one source. + filename text, + mime_type text, + external_url text, size bigint NOT NULL DEFAULT 0, title text, -- Poster frame for video media, captured client-side at upload time so -- gallery tiles never fetch the mp4 itself. thumbnail_filename text, created_at timestamptz NOT NULL DEFAULT now(), - UNIQUE (event_id, filename) + UNIQUE (event_id, filename), + CONSTRAINT event_media_source_chk CHECK (num_nonnulls(filename, external_url) = 1) ); CREATE INDEX IF NOT EXISTS idx_event_media_event ON public.event_media(event_id);